/*
    Created on : 23.06.2022, 00:56:00
    Author     : Alekhnovich Oleg (https://webplatinum.net)
*/

/* CUSTOMIZE THE MAIN CAROUSEL
-------------------------------------------------- */
:root {
  --vox-orange: #ff8f1f;
  --vox-dark-orange: #d67414;
  --vox-glow: rgba(255, 143, 31, 0.25);
  --card-bg: #141215;
  --border-glow: #2a272f;
}

body {
  font-family: "Roboto", sans-serif, sans-serif;
  font-weight: normal;
  font-style: normal;
  background-color: #111;
  color: #F8F9FA;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(204, 0, 0, 0.05) 0%, transparent 20%);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto", sans-serif, sans-serif;
  font-weight: 700;
}



.italic {
  font-family: "Roboto", sans-serif, sans-serif;
  font-style: italic;
}

h1 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2rem;
}

h2 {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.75rem;
  margin-top: 1.5rem;
}

h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

p,
li {

  font-size: .875rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
  text-align: left !important;
}

#mainCarousel .carousel {
  margin-bottom: 4rem;
}

#mainCarousel .carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

#mainCarousel .carousel-item {
  height: 32rem;
}

#mainCarousel .carousel-bg-filter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: black;
  background: rgba(0, 0, 0, 0.5);
}

/* CUSTOMIZE THE JUMBOTRON
-------------------------------------------------- */
.jumbotron-bg-filter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #e9ecef;
  background: rgba(0, 0, 0, 0.4);
}

/* PAGINATION
-------------------------------------------------- */
.pagination {
  --bs-pagination-color: #333;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #003b77;
  --bs-pagination-active-border-color: #003b77;
}

/* CARD
-------------------------------------------------- */
.blog-card-body a {
  color: #003b77;
}

.blog-card-body:hover {
  background-color: #003b77;
  color: lightgrey !important;
  transition: all .6s;
}

.blog-card-body a:hover {
  color: #fff !important;
}

.img-square {
  width: 100%;
  margin: auto;
  overflow: hidden;
  /* clearfix */
}

.img-square:before {
  content: "";
  padding-top: 100%;
  float: left;
}

.img-fluid-square {
  max-width: 100%;
  max-height: 100%;
}

/* MAIN CONTENT
-------------------------------------------------- */
a {
  color: #f4881d;
  text-decoration: none;
}

a:hover {
  color: #fc6bb1;
}

.text-darkblue {
  color: #003b77;
}

.text-orange {
  color: #e64c16;
}

.bg-darkblue {
  background-color: #003b77;
}

.bg-orange {
  background-color: #e64c16;
}

.text-lightgrey {
  color: #eaf0fb;
}

.error404 {
  font-size: 5rem;
}

@media (min-width: 390px) {
  .error404 {
    font-size: 7rem;
  }
}

@media (min-width: 576px) {
  .error404 {
    font-size: 10rem;
  }
}

@media (min-width: 768px) {
  .error404 {
    font-size: 14rem;
  }
}

@media (min-width: 1200px) {
  .error404 {
    font-size: 14rem;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #003b77;
}

/* USER ACCOUNT
-------------------------------------------------- */
@media (min-width: 768px) {
  .sidebar .offcanvas-lg {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
  }

  .navbar-search {
    display: block;
  }
}

.sidebar .nav-link {
  font-size: .875rem;
}

.sidebar .nav-link.active {
  font-weight: 500;
  color: #e64c16 !important;
}

.sidebar-heading {
  font-size: .75rem;
}

/* BOOTSTRAP SUBMENU 3 LEVEL
-------------------------------------------------- */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

/* BUTTON UP
-------------------------------------------------- */
#btn-back-to-top {
  position: fixed;
  bottom: 7px;
  right: 7px;
  display: none;
}

/* CSS3 EFFECTS
-------------------------------------------------- */
.fade-img {
  -webkit-transition: all 0.3s ease;
  ;
  -moz-transition: all 0.3s ease;
  ;
  -o-transition: all 0.3s ease;
  ;
  transition: all 0.3s ease;
  opacity: 1;
}

.fade-img:hover {
  -webkit-transition: all 0.3s ease;
  ;
  -moz-transition: all 0.3s ease;
  ;
  -o-transition: all 0.3s ease;
  ;
  transition: all 0.3s ease;
  opacity: 0.5;
}

/*=======================================================*/

h1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

h2 {
  position: relative;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #d67414, rgb(215, 66, 16));
  border: none;
  border-radius: 3px;
}

/***************------------------*******************/

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  font-weight: 600;
}

.nav-item {
  padding: 5px;
}

.nav-link {
  color: white;
  text-transform: uppercase;
  /*padding: 10px;*/
  font-weight: 700;
  font-size: 14px;
}

.nav-link:hover {
  color: #d67414;
  border-radius: 10px;
}

.nav-link.nav-link.active {
  color: #d67414;
  border-radius: 10px;
}

.navbar-toggler {
  background-color: #dee2e6 !important;
  color: #ffffff !important;
  border: #ffffff !important;
}

.btn-danger {
  --bs-btn-color: #fff;
  font-size: .75rem;
  line-height: 1rem;
  --bs-btn-bg: #8F4200;
  --bs-btn-border-color: #8F4200;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(227, 88, 41);
  --bs-btn-hover-border-color: rgb(227, 88, 41);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #d67414;
  --bs-btn-active-border-color: #d67414;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d67414;
  --bs-btn-disabled-border-color: #d67414;
}

.btn-info {
  --bs-btn-color: #fff;
  font-size: .75rem;
  /* font-weight: 700;*/
  line-height: 1rem;

  --bs-btn-bg: rgb(28 28 28);
  --bs-btn-border-color: rgb(28 28 28);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(48, 48, 48);
  --bs-btn-hover-border-color: rgb(48, 48, 48);
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(28 28 28);
  --bs-btn-active-border-color: rgb(28 28 28);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}


/**********************VOX*******************/

.header-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #CC0000 150%);
  border-bottom: 5px solid #d6a000;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.header-section::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffd700' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.badge-casino {
  background-color: #CC0000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.btn-casino {
  background: linear-gradient(to right, #ff8f1f, #d67414);
  color: #0A0A0A;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

.btn-casino:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  color: #0A0A0A;
}

.age-warning {
  background-color: #CC0000;
  color: white;
  padding: 15px;
  border-radius: 10px;
  border-left: 5px solid #d6a000;
  margin: 25px 0;
}

/************* CARD *************/

.info-card {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  border-top: 4px solid #d67414;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.info-card i {
  color: #e67f18;
  font-size: 2rem;
  margin-bottom: 15px;
}

.bonus-card {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(204, 0, 0, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}


/************/

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #FFD700, #d67414);
  border-radius: 2px;
}

/******************* FAQ*************/

.accordion-button {
  background-color: #3d4950;
  color: white;
  font-weight: 600;
  border: none;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #d67414;
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(214, 116, 20, 0.25);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-item {
  border: 1px solid #95b6c9;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-body {
  background-color: white;
  padding: 1.5rem;
  line-height: 1.6;
}

.accordion-body p {
  margin-bottom: 0;
}

.faq-header {
  border-bottom: 3px solid #d67414;
  padding-bottom: 1rem;
}

/**************** GAME CARD ******************/


.game {
  aspect-ratio: 187/252;
  border-radius: 8px;
  display: block;
  height: 100%;
  margin: 0 0 1.5rem 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game img {
  width: 100%;
  object-fit: cover;
}

.game__action {
  align-items: center;
  background-color: rgba(17, 15, 14, .85);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 5px;
  position: absolute;
  top: 0;
  transition: opacity .3s ease;
  width: 100%;
  border-radius: 8px;
}

.game:hover .game__action {
  opacity: 1;
}

.gameBtnsPlay___m5Zzv svg circle {
  fill: #d67414;
  transition: all .3s;
}

.gameBtnsPlay___m5Zzv {
  cursor: pointer;
  left: 30%;
  position: absolute;
  top: 25%;
  width: 5.6rem;
}

/***************************** FOOTER **************************/
.payments___RJvA9 {
  padding: 3.2rem 0;
}

.paymentsList___RW_Jq {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 110rem;
}

.paymentsItem___cWr4Q {
  height: 3rem;
  margin: .8rem 0;
  max-width: 7rem;
  min-width: 10%;
}

.paymentsItem___cWr4Q img {
  display: block;
  margin: 0 auto;
  max-width: 6rem;
}

.payments___Gr5M3 {
  padding: 3.2rem 0;
}

.paymentsList___YMUms {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: .4rem 1.6rem;
  margin: 0 auto;
  max-width: 110rem;
}

@media (max-width: 1024px) {
  .paymentsList___YMUms {
    flex-wrap: wrap;
    padding: 0 1.6rem;
  }
}

.paymentsItemLicense___o1v_U img,
.paymentsItemLicense___o1v_U svg,
.paymentsItem___Z15bX img,
.paymentsItem___Z15bX svg {
  display: block;
  height: 3rem;
  width: auto;
}

.lead {
  line-height: 1.6rem;
}

/************** NEW VOX ****************/
.table-custom {
  background: #1a181e !important;
  border-radius: 20px;
  overflow: hidden;
  border-collapse: collapse;
  /* вместо separate */
  border-spacing: 0;
}

.table-custom thead th {
  background: #ff8f1f20;
  color: #ffb96a;
  font-weight: 600;
  border-bottom: 2px solid #ff8f1f;
  padding: 1rem;
}

.table-custom td,
.table-custom th {
  padding: 1rem;
  vertical-align: middle;
  border-color: #2f2a36;
  color: #ecedee;
  background: #1a181e;
}

.table-custom tbody tr:hover {
  background: #4c4757;
}

.star-list {
  list-style: none;
  padding-left: 0;
}

.star-list li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: 0.7rem;
}

.star-list li::before {
  content: "\F586";
  /* bi-star-fill */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #ffb347;
  font-size: 1rem;
}

/* custom list styling: unique pointers using Bootstrap Icons + custom bullet */
.custom-list-icon {
  list-style: none;
  padding-left: 0;
}

.custom-list-icon li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.custom-list-icon li::before {
  content: "\F633";
  /* bi-gem (diamond) default, but we override per type? we can set generic */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--vox-orange);
  font-size: 1.2rem;
}


.text-vox {
  color: var(--vox-orange) !important;
}

.border-vox {
  border-color: var(--vox-orange) !important;
}

.nevox .card {
  background: linear-gradient(145deg, rgb(255 215 0 / 21%), rgb(204 0 0 / 15%));
  border: 1px solid #26222b;
  border-radius: 24px;
  backdrop-filter: blur(0px);
  transition: transform 0.2s, border-color 0.2s;
  color: #ffffff;
}

.nevox .card:hover {
  border-color: #ff9832a3;
  transform: translateY(-3px);
}

/* for OL lists - original numeric with orange style */
ol.custom-ol {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

ol.custom-ol li {
  counter-increment: step-counter;
  margin-bottom: 1rem;
  padding-left: 2.8rem;
  position: relative;
  font-weight: 500;
}

ol.custom-ol li::before {
  content: counter(step-counter);
  background: var(--vox-orange);
  color: #0c0b0e;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.section-bg {
  background: #332214;
  border-radius: 32px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  border: 1px solid #2a252f;
}