.slots__item.hidden, .gamesBox--title.hidden {
  display: none;
}
p.get-image {
    display: flex;
    margin-bottom: 0px!important;
}

.slots__wrapper {
    display: grid;
    gap: 20px;
    margin-top:20px;
    margin-bottom:20px;
}

.slots__image-block {
    display: flex;
    justify-content: center;
}


.slots__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.slots__item {
    overflow: hidden;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensure the content is evenly distributed */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
    padding:10px;
    align-items:center;
}
.slots__item img {
  max-width: 100%;
  height: auto;
}
.slots__item-content {
    padding: 8px;
}

.slots__item-title {
    margin: 0 auto;
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.slots__button {
    padding: 8px 8px;
    flex-grow: 1;
}
@media (max-width: 800px) {
  .slots__list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.button-slots {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    background-color: #FFBB01;
    color: #232323;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}
/*second type*/
.gamenav {
    background: transparent;
    margin-top: 48px;
}

@media only screen and (min-width: 812px) {
    .gamenav {
        width: 100%;
        height: 90px;
        background: #000;
        background: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(0, 0, 0, 0.2)));
        background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.2));
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 1;
        margin-top: 0;
    }
}

@media only screen and (min-width: 1279px) {
    .gamenav {
        height: 120px;
        z-index: 2;
    }
}

.gamenav.scroll {
    position: fixed;
    top: 48px;
}

@media only screen and (min-width: 1279px) {
    .gamenav.scroll {
        top: 70px;
    }
}

.gamenav .gm_gl_cnt {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
}

@media only screen and (min-width: 812px) {
    .gamenav.container.pc-none {
        display: none;
    }

    .gamenav .gm_gl_cnt {
        width: 100%;
        height: 100%;
    }
}

.gamenav ul.gamenav__list {
    max-width: 1280px;
    margin: 0 auto;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gamenav ul.gamenav__list.mobile-none {
    display: none;
}

@media only screen and (min-width: 812px) {
    .gamenav ul.gamenav__list.mobile-none {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
    }
}

.gamenav ul.gamenav__list li {
    width: 14%;
}

.gamenav ul.gamenav__list li p {
    color: #fff;
}

.gamenav ul.gamenav__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 0.78rem;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-align: center;
    opacity: 1;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

@media only screen and (min-width: 1279px) {
    .gamenav ul.gamenav__list li a {
        font-size: 0.88rem;
    }
}

.gamenav ul.gamenav__list li a::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 30.58824%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 60%;
    mask-size: 60%;
    -webkit-mask-position: top center;
}

@media only screen and (min-width: 1279px) {
    .gamenav ul.gamenav__list li a::before {
        padding-bottom: 35.29412%;
        -webkit-mask-size: 70%;
        mask-size: 70%;
    }
}

.gamenav ul.gamenav__list li.active,
.gamenav ul.gamenav__list li:hover {
    background-color: rgba(255, 222, 0, 0.9);
}

.gamenav ul.gamenav__list li.active p,
.gamenav ul.gamenav__list li:hover p {
    color: #000;
}

.gamenav ul.gamenav__list li.active a::before,
.gamenav ul.gamenav__list li:hover a::before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
    background-image: linear-gradient(to bottom, #000 0%, #000 100%);
}

.gamenav ul.gamenav__list li.active {
    opacity: 1;
}


.gamenav .gamenav__selector {
    padding: 24px 0 0 0;
}

.gamenav .gamenav__selector.pc-none {
    display: block;
}

@media only screen and (min-width: 812px) {
    .gamenav .gamenav__selector.pc-none {
        display: none;
    }
}

.gamenav .gamenav__selector .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.gamenav .gamenav__selector .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.gamenav .gamenav__selector .select-styled {
    color: #fcc40d;
    background-color: transparent;
    font-size: 1.35rem;
    font-weight: bold;
    padding: 0;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 420px) {
    .gamenav .gamenav__selector .select-styled {
        font-size: 1.75rem;
    }
}

@media only screen and (min-width: 812px) {
    .gamenav .gamenav__selector .select-styled {
        font-size: 2.6rem;
    }
}

.gamenav .gamenav__selector .select-styled::after {
    content: '\f078';
    font-family: "FontAwesome";
    font-size: 1rem;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    text-align: center;
    background: #fcc40d;
    color: #fff;
    border-radius: 10px;
    -webkit-transition: .25s all ease;
    transition: .25s all ease;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gamenav .gamenav__selector .select-styled:hover::after {
    background: #fcc40d;
}

.gamenav .gamenav__selector .select-styled:active,
.gamenav .gamenav__selector .select-styled.active {
    color: #fcc40d;
}

.gamenav .gamenav__selector .select-styled:active:after,
.gamenav .gamenav__selector .select-styled.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.gamenav .gamenav__selector .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 8px 0px #000;
    box-shadow: 0 0 8px 0px #000;
    min-width: 10.5em;
}

.gamenav .gamenav__selector .select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.gamenav .gamenav__selector .select-options li:hover,
.gamenav .gamenav__selector .select-options li.is-selected {
    color: #fcc40d
}

.gamenav .gamenav__selector .select-options li[rel="hide"] {
    display: none;
}

.games_gallery_cnt_index {
    padding-top: 0;
    position: relative;
}

@media only screen and (min-width: 812px) {
    .games_gallery_cnt_index .gamesExhibit {
        padding-top: 80px;
    }
}

.games_gallery_cnt_index .gamesExhibit .gm_gl_cnt {
    width: 90%;
    padding: 0;
}

.games_gallery_cnt_index .gamesExhibit .title {
    display: none;
}

@media only screen and (max-width: 811px) {
    .indianPoker .gm_gl_cnt .title {
        color: #452914;
        background-color: transparent;
        font-size: 1.35rem;
        font-weight: bold;
        padding: 0;
        -webkit-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 812px) {
    .games_gallery_cnt_index .gamesExhibit .title {
        display: block;
        color: #fcc40d;
        position: absolute;
        top: -0.8em;
        padding: 0;
        left: 0;
        z-index: 1;
    }

    .indianPoker .gm_gl_cnt .title {
        display: block;
        color: #FF8200;
        position: absolute;
        top: -0.8em;
        padding: 0;
        left: 0;
        z-index: 1;
    }
}





.games_gallery_cnt_index .gamesExhibit__list ul {
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
}

.games_gallery_cnt_index .gamesExhibit__list ul li {
    width: calc(45% - 12px);
    margin: 12px;
    position: relative;
    cursor: pointer;
}

.games_gallery_cnt_index .gamesExhibit__list ul li:has(.comingsoon) {
    cursor: default;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .info.active a {
    width: 100%;
    max-width: 180px;
}


@media only screen and (min-width: 812px) {
    .games_gallery_cnt_index .gamesExhibit__list ul li {
        width: calc(25% - 24px);
        margin: 16px 12px;
    }

    .games_gallery_cnt_index .gamesExhibit__list ul li .info.active a {
        width: 70%;
        font-size: 14px;
    }

}

.games_gallery_cnt_index .gamesExhibit__list ul li img {
    display: block;
    width: 100%;
    overflow: hidden;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .info {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.games_gallery_cnt_index .container .button-gallery a {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 18px;
  background-color: #fcc40d;
  font-weight: 500;
  color: #000;
  border-radius: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.info.active .gm_gl_cnt a{
    text-decoration: none;
}
.games_gallery_cnt_index .container .button-gallery {
  font-size: 1rem;
  line-height: 1.25em;
  text-align: center;
  font-size: 1rem;
}
.button-gallery {
  user-select: none;
}
.games_gallery_cnt_index .gamesExhibit__list ul li .info.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction:column;
}
.games_gallery_cnt_index .container .gm_gl_cnt {
  width: 100%;
  max-width: 1230px;
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
}
.games_gallery_cnt_index .gamesExhibit .gm_gl_cnt {
  width: 90%;
  padding: 0;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .info.active a {
    z-index: 1;
    display: inline-block;
    border-radius: 8px;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .info.active .subtitle {
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.34rem;
    font-weight: bold;
    text-shadow: 0 0 10px #000;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .info.active .button-playNow {
    margin-bottom: 12px;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .info.active .button-gameInfo a {
    background: #000;
    color: #fff;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .comingsoon {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .comingsoon .gm_gl_cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .comingsoon .gm_gl_cnt .state {
    width: 100%;
    color: #fff56e;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 15px #FF8200, 0 0 10px #000, 0 0 5px #000;
    margin-bottom: 8px;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .comingsoon .gm_gl_cnt .time {
    width: 80%;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: inset 0 0 4px 1px #ffeb3b;
    box-shadow: inset 0 0 4px 1px #ffeb3b;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(3%, rgba(0, 0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(50%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 3%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 97%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(3%, rgba(0, 0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(50%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 3%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 97%);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    margin-bottom: 16px;
    line-height: 2em;
}

.games_gallery_cnt_index .gamesExhibit__list ul li .comingsoon .gm_gl_cnt .subtitle {
    width: 100%;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 0 0 10px #000, 0 0 5px #000;
}
