:root {
	--b: #001021;
	--p: #e9a722;
	--b1: #0f2032;
	--inp: #132c46;
	--gray: #5060714d;
	--halfBlack: #00000088;
	--halfWhite: #ffffff88;
	--leftRightBackGrad: linear-gradient(90deg, #001021ff 0%, #5060714d 100%);
	--bottomTopBackGrad: linear-gradient(0deg, #001021 0%, #132c46 100%);
}

body, #container, #container *,
body, #admin_container, #admin_container * {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
	font-family: sans-serif;
}

body { background-color: var(--b); }

#message {
	color: white;
	font-size: bold;
	border-radius: 10px;
	background: var(--b1);
	padding: 10px;
	margin: 10px 10px 0 10px;
	text-align: center;
}

#container {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	margin-bottom: 70px;
}

#admin_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}

a { text-decoration: none; }

.all_arrow {
	display: flex;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: var(--p);
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
}

.go_arrow {
	display: flex;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: white;
	border-width: 0 3px 3px 0;
	transform: rotate(-45deg);
}

.up_arrow {
	display: flex;
	width: 10px;
	height: 10px;
	border-style: solid;
	border-color: white;
	border-width: 0 4px 4px 0;
	transform: rotate(-135deg);
}

.return_arrow {
	display: flex;
	width: 7px;
	height: 7px;
	border-style: solid;
	border-color: white;
	border-width: 0 3px 3px 0;
	transform: rotate(135deg);
}

.next_arrow {
	display: flex;
	width: 7px;
	height: 7px;
	border-style: solid;
	border-color: white;
	border-width: 0 3px 3px 0;
	transform: rotate(-45deg);
}

.hide_eye { display: none; }

.small_loader {
    display: flex;
    justify-self: center;
    align-self: center;
    border: 5px solid var(--p);
    border-top: 5px solid white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 2s linear infinite;
}

.big_loader {
    display: flex;
    justify-self: center;
    align-self: center;
    border: 5px solid var(--p);
    border-top: 5px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#top_nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid gray;
}
#top_nav .left {
	display: flex;
	align-items: center;
	margin: 5px;
	gap: 10px;
}
#top_nav .left .logo span {
	color: var(--p);
	font-size: 16px;
	font-weight: 700;
}
#top_nav .login_dash_btn {
	display: flex;
	align-items: center;
	padding: 5px 20px;
	margin: 5px 10px;
	font-size: 14px;
	font-weight: 900;
	color: white;
	background: var(--p);
	border-radius: 10px;
}

#banner {
	border-radius: 10px;
	margin: 10px 10px 0 10px;
}

#bonus {
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: white;
	margin: 10px;
	padding: 10px;
	border-radius: 10px;
	background: var(--b1);	
}

#promotions {
	background: radial-gradient(210.59% 103.16% at 81.52% 42.86%, #fbe964 0%, #e5592e 100%);
	border-radius: 10px;
	margin: 10px;
	height: 40px;
}
#promotions .wrapper {
	display: flex;
	align-items: center;
	position: relative;
	background-position: calc(100% - 20px) center;
	background-image: url(../icons/linkBack5.webp);
	background-size: auto 100%, auto;
	background-repeat: no-repeat;
	height: 40px;
}
#promotions .wrapper .description {
	display: flex;
	color: white;
	font-size: 16px;
	font-weight: 900;
	width: 200px;
	margin: 0 15px;
	white-space: normal;
}
#promotions .wrapper img {
	position: absolute;
	right: -5px;
	top: -15px;
}

#sport_links {
	display: flex;
	gap: 10px;
	margin: 7px 7px 14px 7px;
	width: calc(100% - 20px);
}
#sport_links .wrapper {
	width: 100%;
	height: 50px;
	padding: 0 0 5px 0;
	border-radius: 10px;
	background: var(--leftRightBackGrad);
}
#sport_links .wrapper .link {
	padding: 5px 0;
	height: 50px;
	background-size: auto 100%, auto;
	background-repeat: no-repeat;
	background-position: calc(100% + 20px) calc(100% + 10px);
}
#sport_links .wrapper .link_clock { background-image: url(../icons/trophy_back.svg); }
#sport_links .wrapper .link_live { background-image: url(../icons/clock_back.svg); }
#sport_links .wrapper .link_trophy { background-image: url(../icons/live_back.svg); }
#sport_links .link .front {
	color: white;
	font-size: 12px;
	font-weight: 900;
	margin-left: 10px;
}

#show_wrapper { margin: 7px; }
#show_wrapper .head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	font-size: 12px;
	font-weight: 900;
	padding: 15px 7px 7px 7px;
}
#show_wrapper .head .right {
	display: flex;
	gap: 5px;
	align-items: center;
}
#show_wrapper .head .right .number {
	font-size: 12px;
	color: var(--p);
}
#show_wrapper .show_swiper .show_cell {
	position: relative;
	width: 120px;
}
#show_wrapper .show_swiper .show_cell img {
	width: 120px;
	height: 120px;
	border-radius: 10px;
}
#show_wrapper .show_swiper .provider_cell { 
	display: flex;
	flex-direction: column;
	align-items: center;
	width: auto;
	padding: 0 5px;
	background: var(--gray);
	border-radius: 10px;
	border: 3px solid var(--gray);
}
#show_wrapper .show_swiper .provider_cell img { height: 35px; }
#show_wrapper .show_swiper .provider_cell span {
	font-size: 16px;
	font-weight: 900;
	color: white;
	padding: 8px;
}

.game_swiper_slide_small_loader {
	position: absolute;
	left: calc(50% - 15px);
	top: calc(50% - 15px);
    display: flex;
    justify-self: center;
    align-self: center;
    border: 5px solid white;
    border-top: 5px solid var(--p);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 2s linear infinite;
}

#footer_nav {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	position: fixed;
	left: 0;
	bottom: -1px;
	gap: 5px;
	padding: 0 5px;
	width: calc(100% - 10px);
	background: var(--bottomTopBackGrad);
	z-index: 1;
}
#footer_nav .link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid gray;
	width: 100%;
	padding: 2px;
	margin: 5px;
	border-radius: 10px;
}
#footer_nav .link span {
	white-space: nowrap;
	text-align: center;
	font-size: 12px;
	color: var(--halfWhite);
	font-weight: 900;
}

#not_found {
	display: flex;
	justify-content: center;
	margin: 10px;
	padding: 10px;
	width: calc(100% - 40px);
	color: white;
	font-weight: 900;
	border-radius: 10px;
	background: var(--b1);
}
