* {
  margin: 0;
  padding: 0;
}

:root {
  /* Colors: */
  --primary-color: #ffb900;
  --primary-color-hover: #ffcb00;
  --secondary-color: #d29f53;
  --brown-color:#3B2314;
  --late-color: #A87C4F;
  --nav-color: #c3c4c7;
  --navborder-color: #707070;
  --nav-bg-color: #100f0f;
  --black-color: #000000;
  --dark-bg-color: #303c44;
  --dark-hover: #222b31;
  --white-color: #ffffff;
  --gray-color: #c4c4c4;

  /* Font/text values */

  /* Font Families */
  --font-primary: Open Sans;
  --font-secondary: sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.625rem; /* 10px */
  --font-size-small: 0.813rem; /* 13px */
  --font-size-medium: 1rem; /* 16px */
  --font-size-large: 1.5rem; /* 24px */
  --font-size-xlarge: 2.5rem; /* 40px */

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /*Font Transforms*/
  --font-capitalize: capitalize;
  --font-uppercase: uppercase;
  --font-lowercase: lowercase;

  /* Line Heights Spacing*/
  --line-height-normal: 1.5;
  --line-height-tight: 1.25;
  --line-height-loose: 2.5;

  /* Spacing Units */
  --space-xxs: 0.25rem; /* 4px */
  --space-xs: 0.5rem; /* 8px */
  --space-sm: 0.75rem; /* 12px */
  --space-md: 1rem; /* 16px */
  --space-lg: 1.5rem; /* 24px */
  --space-xl: 2rem; /* 32px */
  --space-xxl: 3rem; /* 48px */
}

body {
  font-family: var(--font-primary), var(--font-secondary);
  font-size: var(--font-size-medium);
  line-height: var(--line-height-normal);
  color: var(--white-color);
  background-color: var(--dark-bg-color);
}
/*Modal*/

modal-dialog::backdrop{
  background-color: gba(0, 0, 0, 0.8) !important;
}

.modal-content{
  background-color: var(--black-color)!important;
  color: var(--white-color)!important;
}

/*CAROUSEL INDEX BANNER MOBILE*/
.block-views-blockindex-banner-mobile-block-1{
  display:block;
}

.block-views-blockindex-banner-mobile-block-1 .carousel-indicators{
  margin-bottom: 0.2rem !important;
}

.block-views-blockindex-banner-mobile-block-1 .carousel-indicators [data-bs-target]{
  border-radius: 50%;
  width: 5px !important;
  height: 5px !important;
  background-color: var(--primary-color) !important;
}

.block-views-blockindex-banner-mobile-block-1 .carousel img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 950px){
  .block-views-blockindex-banner-mobile-block-1{
  display: none;
}
}


/*BUTTON UP*/

#upbutton {
  display: none; 
  position: fixed;
  bottom: 120px; 
  right: 30px; 
  z-index: 1009; 
  border: none; 
  outline: none; 
  background: url(/themes/custom/bogartcasino_theme/images/skin/icon-up.png) no-repeat center;
  color: rgb(6, 5, 5); 
  cursor: pointer; 
  padding: 5px; 
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#upbutton:hover {
  background-color: var(--primary-color); 
}

/* INTERNAL PAGES*/

/**LOGIN**/
input.bp-login-submit {
  background: var(--primary-color);
  color: #000;
  border: 0;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.bp-login-input-field, input.bp-login-submit {
  width: 100%;
}

.bp-login-field {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 10px 10px;
  margin: 5px auto;
  border: none;
}

.btn-show-pass{
    background: url(/themes/custom/bogartcasino_theme/images/skin/icon-show-pass.svg) no-repeat center;
    background-size: 20px;
}

.btn-hide-pass{
    background: url(/themes/custom/bogartcasino_theme/images/skin/icon-hide-pass.svg) no-repeat center;
    background-size: 20px;
}

.bp-login-submit {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 10px 50px;
  margin: 5px auto;
  width: 75%;
}

.myLogin label{
 margin: 0px 10px;
}

/*REGISTER*/

.signup-container form .btn {
  background: #ffb900;
  border: #ffb900;
  color: #000;
}

.signup-container form .btn:hover {
  background: var(--primary-color-hover);
  color: #000;
}

.register__bg {
  position: relative;
	background-color: rgba(48, 60, 68, 1);
  background: linear-gradient(to bottom,rgba(48, 60, 68, 0.5) 0%,rgba(48, 60, 68, 0.7) 100%),url("/themes/custom/bogartcasino_theme/images/internal-pages/register/bogartcasino-signup-420x926.jpg")top no-repeat;
  height: 100%;
  overflow: hidden;
	z-index: 1;
 }

 .register__bg::before{
  content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,rgba(48, 60, 68, 0.5) 0%,rgba(48, 60, 68, 0.7) 100%),url("/themes/custom/bogartcasino_theme/images/internal-pages/register/bogartcasino-signup-420x926.jpg")top no-repeat;
	background-color:  rgba(48, 60, 68, 0.5);
	background-size: cover;
  background-position: center;
	transform: scale(1);
	animation: zoomInOut 40s infinite ease-in-out;
  z-index: -1;
}

@keyframes zoomInOut {
  0%, 100%{ transform: scale(1);}
  50% {transform: scale(1.2);} }

/*Home*/
details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

details summary::before {
  content: "+";
  font-size: 1.5em;
  color: var(--primary-color);
  position: absolute;
  left: 36.5em;
  top: -0.5em;
}

details[open] summary::before {
  content: "-";
  color: var(--nav-color);
}

/**Grid Juegos**/

.grid-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grid-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.grid-item img {
  width: 100%;
  display: block;
}

.grid-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.grid-item:hover .overlay {
  opacity: 1;
}
.overlay button {
  background-color: var(--primary-color);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

/**Lottery**/

.container__bogart-general{
  margin: 0 auto;
  width: 100%;
  max-width: 1495px;
  padding: 15px 0;
}

.container__content-lottery {
  margin-top: var(--space-lg) 0;
}

.item__lottery-icons h3 {
  font-weight: bold;
  position: relative;
  padding-bottom: 10px; 
}

.item__lottery-icons h3::after {
  content: "";
  display: block;
  width: 57%; 
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 26px;
}

.item__lottery-icons p:last-child {
  text-wrap: wrap;
  /* letter-spacing: -1px;*/
}

.item__lottery-info {
  color: var(--white-color);
  background-color: var(--brown-color);
  width: 49% !important;
  height: auto;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-left-radius: 15px;
}

.item__lottery-info-light {
  color: var(--white-color);
  background-color: var(--late-color);
  width: 49% !important;
  height: auto;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  border-bottom-right-radius: 15px;
}

.item__lottery-info h4, .item__lottery-info-light h4 {
  letter-spacing: -1px;
  font-weight: bold;
}

.lottery__icon-img {
  filter: grayscale();
}

/**How to Play**/

.lotto__ball-img{
  width: 30px;
  height: auto;
}

.translate-middle {
  transform: translate(-50%,-20%) !important;
}

.position-relative ~ p {
  margin-top: 40px!important;
}

/**End How to Play**/

.header__table{
  background-color: var(--brown-color);
  color: #fff;
}

.table__one{
  background-color: var(--brown-color);
  color: #fff;
  height: 1045px;
  max-width: 1492px;
  margin: 0 auto;
}

.table__two{
  background-color: var(--brown-color);
  color: #fff;
  height: 1885px;
  max-width: 1492px;
  margin: 0 auto 50px;
}

.table__img, .table__info{
  color: #fff;
  background-color: var(--brown-color);
}

.table__img img{
  width: 89px;
  height: auto;
}

.table th {
  text-align: start;
  vertical-align: top;
}

/**Ends Lottery**/

/**MENU FOOTER**/

.menu__footer-item {
  text-decoration: none;
  color: var(--white-color) !important;
  font-weight: bold !important;
}

.menu__footer-item:hover {
  border-bottom: 0.20rem solid var(--secondary-color);
  color: var(--white-color) !important;
}

/**BANKING**/

.banking_card {
  height: 681px;
  margin: -2rem;
}

/*CONTACT*/

.contact__card{
  height: 361px;
}

/*RULES*/

.flex-column a.nav-link {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.flex-column a.nav-link::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background-color: var(--brown-color); 
  transition: all 0.3s ease;
}

.rules__container{
  height: 350px;
}

.flex-column a.nav-link:hover {
  color: var(--navborder-color) !important;
        transform: translateX(5px);
}

.flex-column a.nav-link:hover::before{
  height: 70%;
}

/*GAMES SLIDER*/
/* Slider container styles */
.swiper__games {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.swiper__wrapper {
  display: flex;
  gap: 10px;
  position: relative;
  padding: 20px 0;
}

/* Individual slides */
.swiper__item {
  flex: 0 0 calc(50% - 10px); /* Adjust width for 2 slides */
  margin-right: 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.swiper__item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.swiper__item:hover {
  z-index: 10;
  transform: scale(1.05); /* Slightly enlarge the image on hover */
  transition: transform 0.3s ease; /* Smooth transition */
}

.swiper__item:hover img{
  transform: scale(1.1);
}

.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-bg-color);
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  text-align: center;
  padding: 5rem 0 0 0;
  cursor: pointer;
}

/* Navigation buttons */
.swiper__button-prev,
.swiper__button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

  .swiper__button-prev,
  .swiper__button-next {
    top: 50%;
    transform: translateY(-50%);
  }

  .swiper__button-prev {
    left: 10px;
  }
  
  .swiper__button-next {
    right: 10px;
  }


.swiper__button-prev:disabled,
.swiper__button-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*Grid all Games*/
.game__item{
  margin: 10px;
}

.game__item img{
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 125px;
}

.game__item:hover img{
  transform: scale(1.05);
  transition: transform 0.3s ease; /* Smooth transition */
}

@media (min-width: 789px) {

  .game__item img{
    max-width: 180px;
  }

  .swiper__item {
    flex: 0 0 calc(25% - 10px);
    margin-right: 11px;
  }

  /*Register*/
   .register__bg::before{
    background: linear-gradient(to bottom,rgba(48, 60, 68, 0.5) 0%,rgba(48, 60, 68, 0.7) 100%),url("/themes/custom/bogartcasino_theme/images/internal-pages/register/bogartcasino-signup-810x1280.jpg")top no-repeat;
  }

  .item__lottery-icons h3::after {
    width: 55%; /* Makes the line match the text width */
    left: 55px;
  }

  .lotto__ball-img{
    width: 80px;
  }

  .position-relative ~ p {
    margin-top: 80px!important;
  }
  
  .table__one{
    height: 640px;
  }
  
  .table__two{
    height: 1080px;
  }

  .banking_card {
    height: 675px;
    margin: 0px;
  }
}

@media (min-width: 1050px) {

  #upbutton {
    bottom: 125px;
  }

/*Register*/
.register__bg::before{
  background: linear-gradient(to bottom,rgba(48, 60, 68, 0.5) 0%,rgba(48, 60, 68, 0.7) 100%),url("/themes/custom/bogartcasino_theme/images/internal-pages/register/bogardcasino-signup-1920x1050.jpg")top no-repeat;
}

  /*GAMES SLIDER*/
/* Slider container styles */

/* Individual slides */
.swiper__item {
  flex: 0 0 calc(13% - 10px); /* Adjust the width as needed */
  margin-right: 22px;
}

.swiper__wrapper {
  padding: 20px 0 20px 0px;
}

.game__item img{
  max-width: 150px;
}

.game__item{
  margin: 7px;
}

  /**BANKING**/
  .banking_card {
    height: 522px;
    margin: 2px;
  }
  .container__content-lottery {
    margin: var(--space-lg) var(--space-md);
  }

  .item__lottery-icons h3::after {
    width: 77%; 
    left: 22px;
  }

  .table__one{
    height: 449px;
  }
  
  .table__two{
    height: 838px;
  }
   
  .table__img img{
    width: auto;
    height: auto;
  }

  .table__img, .table__info{
    height: 400px;
  }
}

@media (min-width: 1440px) {
  .container__content-lottery {
    margin-top: var(--space-lg);
  }

  .item__lottery-icons h3::after {
    width: 72%; 
    left: 29px;
  }
}

/* Captcha */
.grecaptcha-badge {
    bottom:120px!important
}