:root{
  --header-background-color: #03292f;
  --header-border-color: #066167;
  --header-text-color: #fff; 
  --header-active-text-color: #ecc561; 

  --primary-btn-bg: #066167;
  --primary-btn-color: #fff;

  --secondary-btn-bg: #ecc561;
  --secondary-btn-color: #022025;
  
  --bordered-btn-border: #088c95;
  --bordered-btn-color: #fff;

  --primary-bg: #022025;
  --primary-color: #fff;

  --secondary-bg: #03292f;
  --secondary-color: #fff;

  --modal-bg: #043032;
  --modal-color: #fff;

  --sidebar-balance-bg: #03292f;
  
  --sidebar-balance-title-color: #159ca5;
  --sidebar-balance-value-color: #fff;
  
  --sidebar-deposit-btn-bg: #28a745;
  --sidebar-deposit-btn-color: #fff;
  
  --sidebar-navigation-bg: #03292f;
  --sidebar-navigation-color: #fff;
  --sidebar-navigation-border: #06494b;
  
  --sidebar-active-color: #ecc561;
  
  --sidebar-logout-bg: #fe4e4e;
  --sidebar-logout-color: #fff;
  
  --mobile-width: 768px;

  --casino-game-title-bg: #159ca5;

  --casino-game-play-bg: #ecc561;
  --casino-game-play-color: #fff;

  --casino-game-demo-bg: #033335;
  --casino-game-play-color: #fff;

  --footer-seperator-color: #159ca5;
  --footer-color: #159ca5;

  --mobile-navigation-color: #fff;
  --mobile-navigation-bg: #06494b;
  
  --home-step-bg: #033335;
  
  --user-block-title-color: #159ca5;
  --user-block-active-color: #ecc561;

  --checkbox-bg: #7c989a;

  --checkbox-active-bg: #ecc561;
  --checkbox-active-color: #fff;


  --input-bg: #022025;
  --input-color: #fff;

  --preloader-bg: #0b2433;
  --registration-bg: radial-gradient(circle, #06494b 61%, #022025 100%);

  --deposit-method-bg: #06494b;
  --deposit-method-color: #fff;
  --deposit-method-details-bg: #033335;
  --deposit-method-active-color: #ecc561;

  --casino-search-input-bg: #159ca5;
  --casino-search-input-color: #fff;

  --home-separator-color: #088c95;

  --promotions-bg: #272b42;
  --promotions-color: #fff;
  --promotions-btn-bg: #28a745;
  --promotions-btn-color: #fff;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Poppins',sans-serif;
  font-size: 12px;
  font-weight: 400;
  background: var(--primary-bg);
  color: var(--primary-color);
}

*, :after, :before {
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5;
  font-size: 12px;
  background: var(--primary-btn-bg);
  color: var(--primary-btn-color);
  border: 1px solid transparent;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out, opacity .2s ease-in-out;
}

.btn.secondary{
  background: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}
.btn.bordered{
  border: 2px solid var(--bordered-btn-border);
  color: var(--bordered-btn-color);
  background: transparent;
}

.page-container{
  margin-top: 60px;
}

.pageloader{
  background: var(--preloader-bg);
}

.checkbox-container {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%!important;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--checkbox-bg);
  border: 2px solid rgba(0,0,0,.54);
  border-radius: 4px;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--checkbox-active-bg);
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid var(--checkbox-active-color);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.vnotify-container {
  position: fixed; 
  z-index: 100000;
}
.vnotify-container.vn-top-right {
  right: 10px;
  top: 10px; 
}

.vnotify-container.vn-top-left {
  top: 10px;
  left: 10px;
 }

.vnotify-container.vn-bottom-right {
  bottom: 10px;
  right: 10px;
}

.vnotify-container.vn-bottom-left {
  bottom: 10px;
  left: 10px; 
}

.vnotify-container.vn-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

.vnotify-container .vn-close {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 15px;
  height: 15px;
  padding: 2px;
  cursor: pointer; 
}
.vnotify-container .vn-close:before, .vnotify-container .vn-close:after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  height: 2px;
  background: #fff; 
}

.vnotify-container .vn-close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); 
}

.vnotify-container .vn-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg); 
}

.vnotify-item {
  width: 20em;
  padding: 15px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px; 
}

.vnotify-item:hover {
  opacity: 1; 
}

.vnotify-title {
  font-weight: bold; }

.vnotify-info {
  background: #3498db;
  color: #fff; 
}

.vnotify-success {
  background: #2ecc71;
  color: #fff; 
}

.vnotify-error {
  background: #e74c3c;
  color: #fff; 
}

.vnotify-warning {
  background: #f39c12;
  color: #fff; 
}

.vnotify-notify {
  background: #333;
  color: #fff; 
}

.drop_lang{
  flex-wrap: wrap;
  background: #fff;
  border-radius: var(--main_radius);
  padding: 5px 0;
}
.drop_lang a{
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--main_radius);
}
.drop_lang a:hover{
  background: #e3e3e3;
}
.drop_lang a > div{
  margin: 0px 3.5px;
}
.drop_lang img{
  display: block;
  margin: 0;
  padding: 0;
  width: 21px;
  border-radius: 100px;
}

.drop_lang_btn{
  display: flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  background: var(--lang_bg);
  color: var(--lang_color);
  padding: 5px 10px;
  border-radius: var(--main_radius);
}
.drop_lang_btn img{
  display: block;
  margin: 0;
  padding: 0;
  width: 17px;
  border-radius: 100px;
}
.drop_lang_btn > div{
  margin: 0px 3.5px;
}

.iti{width: 100%; color: #000;}
.iti__flag{
    background-image: url("/img/flags.png?c=1");
}
.modal button.iti__selected-country{
    margin: 0;
    padding: 0;
    background: none;
}
.iti--container {z-index: 99999;}
.phonePluginReg .iti--allow-dropdown{width:100%;}
.phonePluginAcc .iti--allow-dropdown{width:100%; margin-bottom:10px; margin-right:10px;}
.iti__search-input{margin:0px!important; padding:10px;}
.phonePluginAcc input{width:100%!important;}
.iti--inline-dropdown .iti__dropdown-content{
    top: -11px;
    max-width: 349px;
    width: 100%;
    overflow-x: hidden;
    border: 0px;
    border-radius: var(--secondary_radius);
}
.iti__country-list::-webkit-scrollbar {
    width: 4px;
}
.iti__country-list::-webkit-scrollbar-track {
    background: none;
    border-radius: 0;
}
.iti__country-list::-webkit-scrollbar-thumb {
    border-radius: 50px;
    border: 0 solid rgba(0, 0, 0, 0);
    background-color: #edf0f7;
}
.iti__country-name{
    font-size: 11px;
    color: #575a64;
}
.iti__dial-code{
    font-weight: 700;
}

.header{
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  background: var(--header-background-color);
  color: var(--header-text-color);
  border-bottom: 4px solid var(--header-border-color);
  padding: 0 15px 0 30px;
  width: 100%;
  z-index: 999;
}

.header__navigation{
  display: flex;
  align-items: center;
}

.header__panel{
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}

.header__navigation .header__link{
  font-size: 13px;
  text-transform: uppercase;
  padding: 0 12px;
  height: 56px;
  line-height: 56px;
  transition: color .2s ease-in-out;
  white-space: nowrap;
  color: var(--header-text-color);
}

.header .header__details{
  cursor: pointer;
}


.header .btn:hover{
  color: var(--header-active-text-color);
}

.header .btn-icon {
  cursor: pointer;
  font-size: 20px;
  padding: 0px 12px;
  transition: color .2s ease-in-out;
}

.header .btn-icon:hover{
  color: var(--header-active-text-color);
}

.header a.header__link:hover,
.header a.header__link.active{
  color: var(--header-active-text-color);
}
.header .header__logo{
  margin-right: 15px;
}
.header .header__logo img{
  height: 45px;
}

.header .header__menu{
  display: none;
}

@media (max-width: 980px){
  .page-container{
    margin-top: 47px;
  }
  
  .header{
    padding: 0 15px 0 5px;
  }
  .header__navigation {
    display: none;
  }
  .header .header__logo img{
    height: 40px;
  }

  .header .btn{
    display: none;
  }
  .header .header__panel .btn-icon{
    display: none;
  }
  
  .header .header__menu{
    display: block;
  }
}

.home_casino_head{
  margin-bottom: 10px;
}
.foot_menu{
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: end;
  background: var(--mobile-navigation-bg);
  z-index: 99991;
  padding-bottom: 11px;
}
.foot_menu > div:nth-child(3){
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot_menu > div > a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  color: var(--mobile-navigation-color);
  cursor: pointer;
}
.foot_menu > div > a > div:last-child{
  margin-top: 7px;
}
.foot_menu > div > a > div:nth-child(1){
  font-size: 20px;
}

.foot_menu .coupon-bets-count{
  font-weight: 700;
  font-size: 22px!important;
}

.foot_menu .coupon div:nth-child(2){
  margin-top: 3px;
}

.sidebar{
  position: fixed;
  max-width: 280px;
  right: -300px;
  top: 60px;
  height: calc(100% - 105px);
  width: 40%;
  min-width: 250px;
  padding: 5px;
  -webkit-transition: right .3s;
  transition: right .5s;
  box-shadow: none;
  background: var(--primary-bg);
  color: var(--primary-color);
  z-index: 999;
  overflow: auto;
  margin-right: -17px;
  padding-right: 17px;
}

.sidebar.active{
  right: 0;
}

.sidebar .sidebar-balance-row{
  padding: 14px 15px;
  background: var(--sidebar-balance-bg);
  margin-bottom: 5px;
}


.sidebar .sidebar-balance-row__title{
  color: var(--sidebar-balance-title-color);
  margin-bottom: 5px;
}

.sidebar .sidebar-balance-row__value{
  color: var(--sidebar-balance-value-color);
  font-weight: 700;
}
.sidebar .btn{
  width: 100%;
}

.sidebar .btn.deposit{
  background: var(--sidebar-deposit-btn-bg);
  color: var(--sidebar-deposit-btn-color);
}

.sidebar .btn.logout{
  background: var(--sidebar-logout-bg);
  color: var(--sidebar-logout-color);
}

.sidebar .btn:hover,
.sidebar .btn.logout:hover{
  opacity: .8;
}
.sidebar > .btn{
  margin-bottom: 5px;
}
.sidebar .sidebar__navigation{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 10px 0;
}

.sidebar .sidebar__navigation.links{
  display: none;
  grid-template-columns: 1fr;
}

.sidebar .sidebar__navigation .navigation__btn{
  display: block;
  background: var(--sidebar-navigation-bg);
  color: var(--sidebar-navigation-color);
  border: 1px solid var(--sidebar-navigation-border);
  padding: 14px 10px;
  border-radius: 5px;
  flex: 1;
  cursor: pointer;
  transition: border-color .2s ease-in-out;
}
.sidebar .sidebar__navigation .navigation__icon{
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2px;
}
.sidebar .sidebar__navigation .navigation__title{
  font-weight: 800;
  font-size: 11px;
  text-align: center;
}

.sidebar .sidebar__navigation .navigation__btn:hover,
.sidebar .sidebar__navigation .navigation__btn.active{
  border-color: var(--sidebar-active-color);
}

@media (max-width: 980px){
  .foot_menu{
    display: grid;
  }
  .sidebar .sidebar__navigation.links{
    display: grid;
  }
  .sidebar{
    top: 47px
  }
}

a{
  text-decoration: none;
  color: #fff;
}

section{
  padding: 50px;
}

section#banners{
  border-bottom: 4px solid var(--home-separator-color);
  margin-bottom: 10px;
}
section .section-content{
  margin: 0 auto;
  max-width: 1720px;
}
.banners-container img{
  display: block;
  margin: 0;
  padding: 0;
  border-radius: var(--main_radius);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banners-container a {
  display: block;
  width: 100%;
  height: 100%;
}

section#banners .steps{
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

section#banners .steps .step{
  display: flex;
  align-items: center;
  flex: 1;
  background: var(--secondary-bg);
  color: var(--secondary-color);
}

section#banners .steps .step .step__title{
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

section#banners .steps .step .step__desc{
  margin-top: 5px;
  font-size: 14px;
}

section#banners .steps .step .step__icon{
  width: 100px;
  font-size: 40px;
  color: #ecc561;
  text-shadow:  rgb(236, 197, 97) 1px 1px 15px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 1400px){
  section#banners .steps{
    flex-direction: column;
    align-items: normal;
  }
  section#banners .steps .step{
    flex: 1;
  }
}

@media (max-width: 900px){
  section{
    padding: 10px;
  }
  section#banners .steps .step .step__icon{
    width: 80px;
    padding: 15px;
  }
}


.section__head > svg,
.section__head > i{
  font-size: 24px;
  height: 24px;
  width: 24px;
  color: #ecc561;
  fill: #ecc561;
}

.section__head{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.section__head .head__title{
  font-size: clamp(14px, 1.2vw, 60px); 
  font-weight: 700;
  margin-left: 10px;
  user-select: none;
}

.section__head .btn{
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}

section#home-casino .section__head .btn,
section#home-sport .section__head .btn{
  border: 1px solid #ecc561;
  background: none;
}

section .sport-container{
  display: flex;
  position: relative;
  margin-bottom: 40px;
}

section .sport-container .swiper{
  margin-bottom: 0;
}

section .sport-container .swiper-custom-nav{
  display: flex;
  align-items: center;
  background: var(--primary-btn-bg);
  color: var(--primary-btn-color);
  min-height: 64px;
}
section .sport-container .swiper-custom-nav svg{
  fill: var(--primary-btn-color);
  height: 16px;
}
section .sport-container .sport-block{
  width: auto;
  background: var(--secondary-bg);
  color: var(--secondary-color);
}

section .sport-container .sport-block a{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  min-width: 100px;
}

section .sport-container .sport-block__icon{
  max-width: 22px;
  max-height: 22px;
  margin-bottom: 8px;
}

section .sport-container .sport-block__icon img{
  width: 100%;
}

section .sport-container .sport-block__title{
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}


.footer{
  background: var(--primary-bg);
  color: var(--primary-color);
  padding: 15px;
  padding-top: 50px;
}

.footer .footer__content{
  margin: 0 auto;
  max-width: 1720px;
}
.footer .footer__row{
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer .footer__row a{
  color: var(--footer-color);
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 700;
}

.footer .footer__row a svg{
  fill: var(--footer-color);
}

.footer .footer__separator{
  background: var(--footer-seperator-color);
  height: 1px;
}

.footer .footer__banners{
  width: 100%;
  padding: 21px 0;
  overflow-x: auto;
  flex-wrap: wrap;
}

.footer .footer__banners{
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}

.footer .footer__banners svg, 
.footer .footer__banners img{
  height: 25px;
}

.footer .footer__copy{
  padding: 15px;
  text-align: center;
  color: var(--footer-color);
  font-weight: 700;
}


.modal{
  width: 389px;
  padding: 20px;
  height: max-content;
  border-radius: var(--radius_modal);
  box-shadow: 0px 0px 0px;
  background: var(--modal-bg);
  color: var(--modal-color);
}

.modal .modal_link{
  cursor: pointer;
  text-decoration: none;
}

.modal a.close-modal{
  display: none;
}
.blocker{
  z-index: 99999;
  background: linear-gradient(135deg,#000000b8 0,#01010161 100%);
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  padding-top: 10vh;
}
.blocker:before{
  display: none;
}
.modal_head{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.modal_head > div{
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}
.modal_head a{
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/modal_close.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: var(--main_radius);
}

.modal_double_head{
  margin-top: 15px;
  font-size: 15px;
  font-weight: 700;
}
.modal input{
  width: 100%;
  margin-bottom: 10px;
  padding: 15px 15px;
  background-color: #edf0f7;
  color: rgba(7, 12, 25, .8);
  border: 0;
  border-radius: var(--radius_input);
}
.modal select{
  width: 100%;
  margin-top: 10px;
  padding: 15px 15px;
  background-color: #edf0f7;
  color: rgba(7, 12, 25, .8);
  border: 0;
  border-radius: var(--radius_input);
}

.modal .btn{
  width: 100%;
  margin-bottom: 10px;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #033335;
}

::-webkit-scrollbar
{
	width: 8px;
	height: 8px;
	background-color: #033335;
}

::-webkit-scrollbar-thumb
{
	background-color: #022025;
}


#sport-container div.betcore-container{
  --top-margin: 70px;
}

#sport-container{
  position: relative;
  padding-top: 10px;
}

#auth.modal .auth_forgot{
  margin: 10px 0;
  text-align: center;
}

#auth.modal .auth__inputs{
  margin-bottom: 20px;
}

#historyCount{
  margin-left: 5px;
  background: tomato;
  padding: 1px 5px;
  border-radius: 155px;
  font-size: 11.5px;
}

#historyCount:empty{
  display: none;
}