/*style resetting*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*style resetting*/

body {
    font-family: "Baloo Tammudu 2";
    color: #F3EFF4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.auth_header {
    background: linear-gradient(90deg, #191819 39%, rgba(155, 79, 252, 0.8) 94.5%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 29px 0;

}
.auth_header_logo__wrapper {
    width: 325px;
    height: 110px;
    margin: 0 auto;
}
.auth_header_logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.auth_container_left img {
    max-width: 760px;
}
.auth_container_left_register {
    padding-bottom: 88px;
    display: flex;
}
.auth_container_right {
    width: 100%;
    display: flex;
    align-items: center;
    /*border: 2px solid white;*/
}
.auth_container {
    background: linear-gradient(269.77deg, #523C90 0.2%, #191819 99.8%);
}
.auth_row {
    display: flex;
    justify-content: center;
    gap: 95px;
    padding: 35px 10px;
    max-width: 1440px;
    margin: 0 auto;
}
.auth_btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.social_btn__wrapper {
    transition: 1s;
}
.social_btn__wrapper:hover {
    transform: scale(1.05);
}
.social_btn__wrapper.disabled {
    pointer-events: none;
    cursor: auto;
    opacity: 0.5;
}
.auth_form {
    width: 100%;
}
.auth__header {
    margin-top: 20px;
    margin-bottom: 50px;
}
.auth__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
    margin-bottom: 22px;
    color: #F08034;
}
.auth__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 6px;
}
.auth__subtitle .auth__link {
    color: #855EF1;
}
.auth__link {
    text-decoration: none;
    color: #EF7F33;
}
.auth_field__container {
    margin-bottom: 40px;
    width: 90%;
}
.auth__label {
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}
.auth__input {
    font-weight: 400;
    font-size: 16px;
    padding-left: 27px;
    padding-bottom: 7px;
    background-color: transparent;
    border: none;
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    width: 100%;
    box-sizing: border-box;
}
.auth__input:focus {
    outline: none;
}
.auth__input::placeholder {
    color: rgba(255,255,255, 0.7);
}
.auth_input__container {
    position: relative;
}
.auth_input__icon {
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 15px;
}
.toggle_password {
    position: absolute;
    right: 7px;
    bottom: 7px;
}
.toggle_password:hover {
    cursor: pointer;
}
.auth_select {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 7px;
    width: 100%;
    color: #FFFFFF;
}
.auth_select option {
    color: #000000;
}
.auth_select:hover {
    cursor: pointer;
}
.select_arrow {
    position: absolute;
    right: 0;
    bottom: 7px;
    width: 15px;
}
.select_arrow {
    cursor: pointer;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.auth__btn {
    width: 90%;
    border: none;
    background: linear-gradient(133.68deg, #B87BFE 0.24%, #7627DB 95.93%);
    box-shadow: 0px 4px 26px 0px #00000040;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    font-family: "Baloo Tammudu 2";
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 19px;
    padding-bottom: 9px;
    border-radius: 32px;
    color: #FFFFFF;
}
.auth__btn:hover {
    cursor: pointer;
}
.footer {
    position: relative;
    background-color: #191819;
}
.footer__container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 50px 10px;
}
.footer__links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__links a, .footer__links span  {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}
.footer__links a:hover, .footer__links span:hover {
    text-decoration: underline;
}
.footer-info {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
}

.remember__container {
    display: flex;
    justify-content: flex-end;
    width: 90%;
    margin-bottom: 60px;
}
.remember__label {
    font-weight: 300;
    font-size: 12px;
    display: flex;
    align-items: center;
}
.remember__label:hover {
    cursor: pointer;
}
.remember__input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}
.remember__input:hover {
    cursor: pointer;
}
.auth__grey_text {
    text-align: center;
    font-size: 16px;
    color: #B5B5B5;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}
.auth__additional_login {
    width: 90%;
}
.nonlogged_header {
    display: flex;
    justify-content: space-between;
    padding: 29px;
    max-width: 1440px;
    margin: 0 auto;
}
.nonlogged_header__wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(90deg, #191819 39%, rgba(155, 79, 252, 0.8) 94.5%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.landing_top_banner_container {
    overflow: hidden;
}
.landing_top_banner_container img {
    max-width: 1440px;
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nonlogged_header_logo {
    width: 100%;
    height: 100%;
}
.authorization__buttons {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 34px;
    font-weight: 600;
    line-height: 42px;
}
.nonlogged_header__login_btn {
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 22px;
}
.orange__btn {
    color: #F3EFF4;
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(0deg, #E27225 0%, #F08034 100%);
    padding: 20px 70px 5px;
    border-radius: 35px;
    font-size: 32px;
}
.main {
    background: linear-gradient(89.77deg, #0E051B 0.2%, #523C90 99.8%);
    padding-bottom: 75px;
    height: 100%;
}
.main_banner {
    background-image: url("/assets/img/main_banner_img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 820px;
    margin-bottom: 35px;
    overflow: hidden;
}
.main_banner__content {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.main_banner__promotions {
    background-image: url("/assets/img/promotions.jpg");

}
.main_banner__title__img {
    margin-left: 40px;
}
.main_banner__girl {
    position: relative;
    bottom: -22px;
    max-width: 450px;
}
.promotions_banner__girl {
    position: relative;
    bottom: -55px;
    max-width: 350px;
}
.promotions__right_part {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main_banner__promotions h1 {
}
.main_banner__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}
.main_banner__title h1{
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}
.main_banner__title_text {
    color: #FF760E;
    font-size: 48px;
    font-weight: 400;
    line-height: 69px;
}
.main_banner__title_amount {
    font-size: 54px;
    font-weight: 400;
    line-height: 67px;
}
.game_cards__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 22px 0;
    overflow: hidden;
}
.game_cards__wrapper img {
    width: 150px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.title__medium {
    font-size: 40px;
    font-weight: 600;
    line-height: 58px;
    text-align: center;
}
.game_types__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 34px;
}
.game_type__card {
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: 18px 0;
    transition: 0.8s;
    width: 171px;
    box-shadow: 0px 4px 4px 0px #00000040;
    background-color: #F08034;
    padding: 18px 0 10px;
}
.game_type__card:hover {
    cursor: pointer;
    transform: scale(1.05);
    color: #6320B5;
    /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);*/
}

.title__small {
    color: #F3EFF4;
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 600;
    line-height: 37px;
    text-align: center;
}
.title__small__win {
    margin-bottom: 45px;
}
.title__small span {
    color: #FF760E;
}
.title__big {
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    margin-bottom: 0;
}
.style_games__wrapper {
    margin-bottom: 33px;
    max-width: 1440px;
    margin: 0 auto;
}
.title_join__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    margin-top: 35px;
}
.title_join {
    font-size: 40px;
    font-weight: 600;
    line-height: 58px;
    text-align: center;
}
.title_join_second {
    font-size: 34px;
    font-weight: 600;
    line-height: 42px;
    text-align: center;
}
.title_join__logo {
    height: 45px;
}
.join__cards__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 100px;
}
.join_card {
    position: relative;
    background: linear-gradient(67.19deg, #2A2727 2.14%, #D724EA 96.77%);
    padding: 65px 24px 25px;
    border-radius: 25px;
    width: 300px;
    min-height: 220px;
}
.join_card__img {
    position: absolute;
    left: 110px;
}
.join_card__img1 {
    top: -41px;
    left: 98px;
}
.join_card__img2 {
    top: -40px;
    left: 100px;
}
.join_card__img3 {
    top: -58px;
    left: 88px;
}
.join_card__img4 {
    top: -48px;
    left: 82px;
}
.join_card__img5 {
    top: -59px;
    left: 95px;
}
.join_card__img6 {
    top: -48px;
    left: 104px;
}
.join_card__content {
    text-align: center;
    color: #FFFFFF;
}
.join_card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
    text-align: center;
    margin-bottom: 15px;
}
.join_card__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.stellar__content {
    display: flex;
    flex-direction: row-reverse;
    padding: 0 27px;
    align-items: center;
    justify-content: center;
    gap: 65px;
}
.stellar__content__left {
    width: 50%;
    text-align: center;
}
.stellar__content__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 87px;
    text-align: center;
    color: #761FE4;
}
.stellar__content__subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
}
.stellar__content__left .orange__btn {
    background: none;
    background-color: #832EEF;
    margin-top: 25px;
}
.stellar__content__right img {
    position: relative;
    bottom: -3px;
    max-width: 350px;
}
.purchases__banner {
    max-width: 1200px;
    margin: 165px auto 73px;
    background-image: url("/assets/img/no_purch_deskt.png");
    background-repeat: no-repeat;
    height: 430px;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    border-radius:20px;
    display: flex;
    justify-content: end;
    align-items: end;
    padding-bottom: 15px;
    padding-right: 15px;
}
.coin_panel__vip_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar_vip_image {
    width: 35px;

}
.purchases__img {
    position: relative;
    right: 17px;
    max-height: 420px;
}
.purchases__content {
    width: 75%;
    padding-top: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    padding-left: 56px;
}
.purchases__title {
    font-size: 52px;
    font-weight: 400;
    line-height: 75px;
    color: #F08034;
}
.purchases__description {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 45px;
    margin-bottom: 73px;
}
.purchases__content .orange__btn {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    width: 233px;
}


body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#app {
    display: flex;
    height: 100%;
    flex: 1;
}

.menu {
    width: 300px;
    color: white;
    display: block;
    background: linear-gradient(to bottom, #191819 68%, #250D44 100%);
}

.menu__logo {
    width: 156px;
    height: 34px;
    margin-top: 27px;
    margin-left: 68px;
}
.menu__logo__img {
    width: 100%;
    height: 100%;
}
.content {
    flex: 1;
    transition: margin-left 0.9s;
}

.toggle_menu__btn {
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: transparent;
    border: none;
}
.toggle_menu__btn__img {
    width: 100%;
    height: 100%;
}

/*progress bar*/
.meter {
    box-sizing: content-box;
    height: 5px;
    position: relative;
    background: #555;
    border-radius: 25px;
    padding: 7px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.meter > span {
    display: block;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(43, 194, 83);
    background-image: linear-gradient(
            center bottom,
            rgb(43, 194, 83) 37%,
            rgb(84, 240, 84) 69%
    );
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.orange > span {
    background-color: #E88BFF;
}
/*progress bar*/
.coin_status_panel {
    padding-left: 12px;
    padding-right: 25px;
    font-size: 12px;
    font-weight: 900;
    line-height: 16px;
    margin-top: 30px;
    margin-bottom: 10px;
    margin-bottom: 20px;
}
.coin_panel {
    border-radius: 6px;
    padding: 8px 8px 12px 4px;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #FFFFFF0D;
    margin-bottom: 9px;
    width: 100%;
}
.coin_panel .progress__img {
    width: 40px;
    height: 40px;
}
.coin_panel__left {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coin_panel__right {
    width: 80%;
    margin-top: 10px;
}
.sweepstake_coin__title {
    color: #34C759;
    margin-bottom: 3px;
}
.sevenfun_coin__title {
    color: #FABB05;
    margin-bottom: 3px;
}
.buy_coins__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 6px;
    background: linear-gradient(180deg, #E88BFF 0%, #9B4FFC 100%);
    padding: 11px 0;
    text-decoration: none;
}
.buy_coins__btn:hover {
    cursor: pointer;
    background: linear-gradient(180deg, #e26dfd 0%, #7622e1 100%);
}
.buy_coins__btn span {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
}
.redeem__btn {
    background-color: transparent;
    border: 2px solid #E88BFF;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #E88BFF;
    padding: 11px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    text-decoration: none;
    transition: 0.5s;
}
.redeem__btn:hover {
    background-color: rgba(232, 139, 255, 0.1);
}
.games__sidemenu {
    padding-left: 32px;
    padding-right: 25px;
    display: none;
}
.games__sidemenu__item__wrapper {
    border-radius: 20px;
}
.games__sidemenu__item__wrapper_betby {
    border-radius: 4px;
    border: 2px solid #FA9A59;
    transition: 0.5s;
}
.games__sidemenu__item__wrapper_betby:hover {
    background-color: rgba(250, 154, 89, 0.1);
}
.games__sidemenu__item__wrapper_betby .games__sidemenu__item {
    justify-content: center;
}
.games__sidemenu__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    padding: 11px 5px 0px;
    color: #F08034;
}
.sidemenu_profile__btn .games__sidemenu__item span {
    color: #F08034;
}
.sidemenu_profile__btn .games__sidemenu__item {
    padding-left: 20px;
    margin-bottom: 15px;
}
.games__sidemenu__item span {
    color: #F08034;
}
.games__sidemenu__item__wrapper:hover span {

    color: #F08034;
    cursor: pointer;
    transition: 0.6s;
}
.games__sidemenu__item__wrapper:hover span svg path {
    fill: #C75C15;
}
.profile__sidemenu {
    padding-left: 65px;
    padding-right: 20px;
}
.profile__sidemenu__item__wrapper {
    border-radius: 15px;
    margin: 7px 0;
}
.profile__sidemenu__item {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    padding: 7px 5px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.profile__sidemenu__item_header {
    margin-left: 20px;
}
.profile__sidemenu__item span {
    color: #AF52DE;
}
.profile__sidemenu__item:hover span {

    color: #E88BFF;
}
.profile__sidemenu__item:hover span svg path {
    fill: #E88BFF;
}
.logged_header {
    background: linear-gradient(90deg, rgba(12, 12, 12, 0.87) 35.5%, rgba(51, 25, 92, 0.72) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 17px 4px 4px;
}

/*custom select for coin box*/
.coins__box {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 5px;
    max-width: 455px;
    width: 455px;
    position: relative;
    left: 50%;
    z-index: 99;
    transform: translate(-50%);
}
.custom-select {
    position: relative;
    width: 80%;
    background: #241735;
    border-radius: 12px;
    display: inline-block;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}
.select-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.select-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.selected-value {
    flex-grow: 1;
    text-align: right;
    margin-right: 13px;
    margin-top: 7px;
}
.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #3b2172;
    display: none;
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
}
.select-text-arrow {
    display: flex;
}
.dropdown-arrow {
    display: flex;
    align-items: center;
}
.option {
    padding: 5px 20px 5px 10px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
}

.option:hover {
    background: #442c83;
}

/*custom select for coin box*/
.coin_shop__btn__wrapper {
    width: 52px;
}
.coin_shop__btn {
    background: linear-gradient(180deg, #E88BFF 0%, #9B4FFC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    height: 100%;
}
.logged_header_actions {
    display: flex;
    gap: 20px;
    align-items: center;
}
.content-area {
    background: rgb(82,60,144);
    background: linear-gradient(90deg, rgba(82,60,144,1) 0%, rgba(25,24,25,1) 100%);
    padding-top: 0;
    /*padding-bottom: 30px;*/
    height: 100%;
}
.content-area-gamesplay {
    background: #000000;
}
.logged__container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}
.games_menu__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.games_menu__item {
    background: #462556;
    border-radius: 31px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 110px;
}
.games_menu__item:hover {
    background-color: #EB7B2F;
    color: #462650;
    cursor: pointer;
    transition: 0.6s;
    box-shadow: 0px 0px 41.1px 15px #EB7B2F40;

}
.games_menu__item_active {
    border: 1px solid #C75C15;
    cursor: pointer;
    transition: 0.6s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), inset 0px 2px 4px rgba(250, 154, 89, 0.25);
}
.sidemenu_profile__btn .games_menu__item_active {
    border: 1px solid #9E4DE1;
    cursor: pointer;
    transition: 0.6s;
    box-shadow: 0px 4px 8px 2px #C449E240 inset;
}
.games_menu__wrapper .games_menu__item_active {
    box-shadow: 0px 0px 41.1px 15px #EB7B2F40;
    background-color: #EB7B2F;
    color: #462650;
}
.games_menu__item:hover .games_menu__item__link {
    color: #462650;
    transition: 0.6s;

}
.games_menu__item__icon_active {
    display: none;
    transition: 0.6s;

}
.games_menu__item:hover .games_menu__item__icon {
    display: none;
    transition: 0.6s;

}
.games_menu__item:hover .games_menu__item__icon_active {
    display: inline;
    transition: 0.6s;
}
.games_menu__item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    gap: 5px;
    transition: 0.6s;
}
.games_lists__container {
    padding-top: 50px;
    display: flex;
    justify-content: center;
}
.games__list {
    margin-bottom: 15px;
}
.game_category__container {
    margin-bottom: 20px;
}
.game_category__title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}
.logo__mobile__logged {
    display: none;
}
.bottom_menu__mobile {
    display: none;
}
.show_games__btn {
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #E88BFF;
    position: relative;
    background-color: transparent;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin-top: 5px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.show_games__btn:hover {
    cursor: pointer;
    background-color: rgba(215, 36, 234, 0.1);
}
.show_games__btn__arrow {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    margin-top: -6px;
}
.profile__sidemenu__mobile {
    display: none;
}
.authorization__buttons__mobilemenu {
    display: none;
}
.banner__promotions {
    overflow: hidden;
}
.banner__promotions img {
    max-width: 1440px;
    margin: 0 auto;
    object-fit: cover;
    display: block;
    max-width: 1440px;
    width: 100%;
    height: 100%;
}
.promotions__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}
.promotions__title {
    margin-top: 62px;
    font-size: 64px;
    font-weight: 400;
    line-height: 93px;
    text-align: center;
    color: #FF760E;
}
.promotions__subtitle {
    font-size: 36px;
    font-weight: 400;
    line-height: 45px;
    text-align: center;
    color: #7151CA;
    margin-bottom: 70px;
}
.promotions__right_part .orange__btn {
    display: block;
    background: linear-gradient(0deg, #E27225 0%, #F08034 100%);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    width: 233px;
    margin: 0 auto;
}
.promotion__card {
    width: 29%;
    height: 605px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.promotion__card ul {
    list-style-type: disc;
    margin-left: 35px;
}
.promotion__card ol {
    list-style-type: decimal;
    margin-left: 35px;

}
.promotion__card__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 19px;
}
.promotion__card__img {
    max-width: 202px;
}
.promotion__card:hover {
    cursor: pointer;
}
.promotion__content {
    position: absolute;
    bottom: 32px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.promotion__title {
    text-transform: uppercase;
    line-height: 55px;
    text-align: center;
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #7151CA;
}
.promotion__subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.promotion__get {
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFFFFF;
}
.promotion__btn_get {
    background: #832EEF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    padding: 15px 0;
    border-radius: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    width: 60%;
    margin-bottom: 15px;
    transition: 0.8s;
}
.promotion__btn_get:hover {
    cursor: pointer;
    background: #5400c2;
    transition: 0.8s;
}
.promotion__btn_more {
    width: 60%;
    text-transform: uppercase;
    color: white;
    background: #832EEF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    padding: 15px 0;
    border-radius: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    width: 60%;
    margin-bottom: 15px;
    transition: 0.8s;
}
.promotion__btn_more:hover {
    cursor: pointer;
    background: #5400c2;
    transition: 0.8s;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #05131D;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 40px;
    border: 1px solid #020e15;
    width: 80%;
    color: white;
    max-height: 90vh;
    overflow-y: scroll;
}

.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 20px;
    /*float: right;*/
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #f3efef;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    text-align: center;
    font-weight: bold;
    font-size: 35px;
}

.modal-subtitle {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 22px;
    font-size: 22px;
}
.promo-modal-content p {
    line-height: 28px;
    font-weight: 200;
}
.promo-modal-content a {
    color: #FFFFFF;
}
.promo-modal-title {
    margin-bottom: 15px;
}
.promo-modal-subtitle {
    font-size: 26px;
    line-height: 28px;
    font-weight: bold;
    color: #FF760E;
    text-align: center;
    margin-bottom: 20px;
}
.modal-promo {
    cursor: default;
}
.modal-description {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

.gameCategory__banner {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 350px;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 100px;
}
.gameCategory__small__img {
    /*position: absolute;*/
    /*top: -50%;*/
    /*transform: translateY(50%);*/
    /*left: 4px;*/
    /*width: 380px;*/
    /*bottom: 0px;*/
}

.gameCategory__banner__content {
    /*margin-right: 2%;*/
    /*margin-top: 65px;*/
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.gameCategory__banner__content h3 {
    font-size: 50px;
    font-weight: 400;
    line-height: 72px;
    text-align: center;
    color: #F4802C;
}
.gameCategory__banner__content p {
    font-size: 28px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
}
.load_more__btn__wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
.load_more__btn {
    background: linear-gradient(180deg, #E88BFF 0%, #9B4FFC 100%);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #FFFFFF;
    padding: 11px 90px;
    border: none;
    border-radius: 6px;
    transition: 0.5s;
}
.load_more__btn:hover {
    cursor: pointer;
    box-shadow: 0px 0px 41.1px 15px #E18AFF40;
}
.search_selects__wrapper {
    padding-top: 50px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1150px;
    margin: 0 auto;
}
.providers_select__wrapper {
    width: 45%;
}
.providers_select__wrapper select {
    width: 100%;
}
.search_input__wrapper {
    width: 45%;
    position: relative;
}
.search_input__wrapper input {
    width: 100%;
    box-sizing: border-box;
}
.providers_item {
    position: relative;
    border-radius: 15px;
}
.providers_select,
.search_input {
    border: 2px solid #F3EFF4;
    background-clip: padding-box;
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: transparent;
    width: 250px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.search_input::placeholder {
    color: #ddd;
}

.providers_select {
    appearance: none;
    outline: none;
    padding-right: 40px;
}
.providers_select option {
    color: #000000;
}
.search_input {
    outline: none;
}
.providers_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(transparent, transparent), linear-gradient(45deg, #F3EFF4, #F3EFF4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    pointer-events: none;
}
.providers_select__wrapper::after, .account_select__wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    transform: translateY(-50%);
    pointer-events: none;
}
.country_input {
    border: 2px solid #F3EFF4;
    padding: 10px;
    font-size: 16px;
    border-radius: 15px;
    background-color: transparent;
    display: block;
    width: 100%;
    margin-top: 10px;
}
.country_input:disabled {
    color: rgba(128, 128, 128, 0.65);
    cursor: not-allowed;
    pointer-events: all !important;
}
.providers_select__wrapper:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}
.providers_select {
    cursor: pointer;
}

.search_input__wrapper::after {
    content: '\1F50D';
    font-size: 16px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.search_input:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.games__container {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}
.games__container__main {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}
.games {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
    width: 100%;
}

.games__lobby {
    justify-content: flex-start;
}
.games__categories {
    justify-content: center;
}
.game__container {
    position: relative;
    transition: 1s;
}
.games_profile__container {
    width: 100%;
}
.game__img__wrapper {
    display: block;
    height: 150px;
    width: 100%;
    position: relative;
}
.game__overlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 139, 255, 0.4);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    transition: 1s;
}
.game__overlay__btn {
    background: linear-gradient(133.68deg, #E88BFF 0.24%, #9B4FFC 95.93%);
    font-size: 17px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 13px 5px;
    border-radius: 30px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.game__container:hover .game__overlay {
    display: flex;
    transition: 1s;
}
.game__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.account__container {
    padding-top: 50px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 40px;
    max-width: 1440px;
    margin: 0 auto;
}
.account__title {
    font-size: 40px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.account {
    display: flex;
    justify-content: center;
}
.form {
    width: 100%;
}
.row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
}
.input__wrapper {
    width: 47%;
}
.input__wrapper__row {
    width: 100%;
}
.input__label {
    font-size: 20px;
}
.input__phone__wrapper {
    display: flex;
}
.input__phone__wrapper input {

    border-bottom: 2px solid #FFFFFF;
}
.input {
    width: 100%;
    outline: none;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border: none;
    border-bottom:2px solid #FFFFFF;
    padding-top: 5px;
    padding-bottom: 5px;
}
.input:disabled {
    color: rgba(128, 128, 128, 0.65);
    cursor: not-allowed;
    pointer-events: all !important;
}
.account_select:disabled {
    cursor: not-allowed;
    pointer-events: all !important;
}
.input::placeholder {
    color: rgba(255, 255, 255, 0.61);
}
.account_select__wrapper {
    width: 100%;
    margin-top: 10px;
}
.account_select {
    width: 100%;
}
.input_password__wrapper {
    position: relative;
}
.account_settings_phone__input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #FFFFFF;
}
.account_settings_phone__input:disabled {
    border-bottom: 2px solid #FFFFFF;
    color: rgba(255, 255, 255, 0.75);
}
.toggle-password {
    position: absolute;
    right: 0;
    top: 8px;
    cursor: pointer;
    user-select: none;
}
.auth_input__container .toggle-password {
    top: 0;
    right: 8px;
}
.toggle-password svg {
    width: 24px;
    height: 24px;
}
.account__action_btn__wrapper {
    display: flex;
    justify-content: center;
    margin-top: 55px;
    margin-bottom: 30px;
}
.radio-input-block label {
    margin-top: 15px;
}
.account__action_btn {
    background: linear-gradient(133.68deg, #E88BFF 0.24%, #9B4FFC 95.93%);
    padding: 15px 80px 5px;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-family: "Baloo Tammudu 2";
}
.account__action_btn:disabled {
    opacity: 0.5;
    cursor: auto;
}
.account__action_btn:disabled:hover {
    opacity: 0.5;
    cursor: auto;
    background: linear-gradient(133.68deg, #E88BFF 0.24%, #9B4FFC 95.93%);
}
.account__action_btn:hover {
    transition: 0.8s;
    cursor: pointer;
    background: linear-gradient(133.68deg, #E88BFF 0.24%, #750ffd 95.93%);
}
.otp__wrapper {
    width: 100%;
}
.otp_row {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 55px;
}
.account__otp_action_btn__wrapper {
    display: flex;
    align-items: flex-end;
}
.account__otp_action_btn__wrapper .account__action_btn {
    height: 83%;
    padding: 8px 70px;
}
.verified__title {
    font-size: 35px;
    text-align: center;
    display: none;
}
.support_row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.support__form {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.support_textarea {
    width: 100%;
    height: 45px;
}
.support_textarea__wrapper {
    width: 100%;
}
.redeem__descr {
    font-size: 20px;
}
.redeem__wrapper {
    width: 100%;
}
.redeem__balance {
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
}
.redeem_coin__row {
    display: flex;
    justify-content: space-between;
}
.redeem_coin__wrapper {
    width: 49%;
}
.redeem_coin__title {
    font-size: 25px;
}
.redeem_coin {
    padding: 5px 10px 5px 5px;
    border-width: 4px;
    border-style: solid;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.redeem_coin__sc {
    border-color: #1074E3;
}
.redeem_coin__zc {
    border-color: #F9D92D;
}
.redeem_coin_img__wrapper {
    width: 50px;
    height: 50px;
}
.redeem_coin_img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.redeem_coin__balance {
    font-weight: bold;
    font-size: 20px;
}
.redeem_coins_amount {
    font-size: 18px;
    margin-top: 15px;
}
.redeem__requests__title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}
.table__wrapper {
    overflow-x: auto;
}
.transcations_table__wrapper {
    width: 100%;
}
.table {
    border-collapse: collapse;
    width: 100%;
    color: #e0e0e0;
    background-color: #1a1b3b;
}
.note__column {
    text-align: right;
    width: 25%;
}
.date__column {
    width: 18%;
}
.table td, .table th {
    border: 1px solid #ddd;
    padding: 8px;
    color: #e0e0e0;
    text-align: center;
}
.table th:hover {
    cursor: pointer;
}
#creditColumn {
    width: 20%;
}
#debitColumn {
    width: 20%;
}
#promotionName {
    width: 20%;
}
#promotionFcAmount, #promotionGcAmount {
    width: 20%;
}
#promotionDate {
    width: 18%;
}
#creditColumn:hover, #debitColumn:hover, #dateColumn:hover,  #promotionDate:hover, #promotionName:hover, #promotionFcAmount:hover, #promotionGcAmount:hover {
    cursor: pointer;
}
.settings_icon {
    height: 24px;
    width: 24px;
}
/* Different colors for even and odd rows */
.table tr:nth-child(even) {
    background-color: #24244a; /* Slightly darker shade for even rows */
}

.table tr:nth-child(odd) {
    background-color: #2f3064; /* Noticeably lighter shade for odd rows */
}

.table tr:hover {
    background-color: #444570; /* A lighter shade to indicate hover */
}

/* Header styling */
.table th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #6f2dbd; /* Purple header to match your accents */
    color: #fff;
    font-weight: bold;
}

#pagination-controls {
    margin-bottom: 15px;
    color: #ffffff;
}

#pagination-controls label {
    font-size: 14px;
    margin-right: 8px;
}

#rowsPerPage {
    padding: 5px 10px;
    background-color: #6f2dbd;
    color: #ffffff;
    border: 1px solid #6f2dbd;
    border-radius: 4px;
    font-size: 14px;
}
#rowsPerPage:hover {
    cursor: pointer;
}

#rowsPerPage:focus {
    outline: none;
}

#pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
}

#pagination button {
    background-color: #6f2dbd;
    color: #ffffff;
    border: 1px solid #6f2dbd;
    padding: 8px 12px;
    margin: 0 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#pagination button:hover {
    background-color: #4e2290;
    border: 1px solid #4e2290;
}
#pagination button.page-button.active {
    background-color: #270054;
}
#pagination button:disabled {
    background-color: #24244a;
    color: #999;
    border: 1px solid #24244a;
    cursor: not-allowed;
}

#pageNumbers {
    font-size: 14px;
    color: #ffffff;
    margin: 0 8px;
}
.coin_shop__main_coin__names {
    display: flex;
    justify-content: space-between;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.coin_shop__wrapper {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 50px;

    max-width: 1150px;
    margin: 0 auto;
}
.coin_shop__wrapper .input__wrapper {
    width: 100%;
    margin-bottom: 20px;
}
.coin_shop__main_row {
    border-radius: 20px;
    transition: 0.8s;
    position: relative;
    margin-bottom: 10px;
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}
.coin_shop__main_row_1 {
    background: linear-gradient(135deg, #6f2dbd, #a66bff);
}
.coin_shop__main_row_2 {
    background: linear-gradient(135deg, #a31074, #ec5772);
}
.coin_shop__main_row_general {
    background: #1C1E2C;
}
.coin_shop__main_row__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.coin_shop__main_row__content_column {
    width: 33%;

}
.coin_shop__main_row__content_column__left {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    padding-left: 15px;
}
.row_tip__wrapper {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 12px 14px 4px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.best_deal {
    background-color: #B214DE;
}
.most_popular {
    background-color: #466AEF;
}
.coin_shop__main_row__content_column__middle {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    position: relative;
}
.coin_shop__main_row__content_column__middle_top__block {
    width: 100%;
    position: absolute;
    top: -30px;
    left: 0;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    background-color: #3154C6;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 12px 7px 2px;
}
.coin_shop__main_row__content_column__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}
.coin_shop_coin__wrapper {
    display: flex;
    gap: 10px;
    font-size: 30px;
    font-weight: bold;
    align-items: center;
}
.coin_shop_coin__wrapper span {
    margin-bottom:-20px;
}
.coin_shop_coin__wrapper img {
    width: 40px;
    height: 40px;
}
.coin_shop__amount {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.coin_shop__amount__main {
    font-size: 20px;
    font-weight: bold;
    background-color: #D32E45;
    display: inline-block;
    border-radius: 15px;
    margin-bottom: 7px;
}
.coin_shop__amount__main:hover {
    background-color: #a80823;
}
.coin_shop__amount__main span {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    padding: 14px 30px 4px;
}
.coin_shop__amount__previous {
    font-size: 12px;
    color: #F3EFF4;
}
.coin_shop__main_row:hover {
    transition: 0.8s;
    cursor: pointer;
    transform: scale(1.1);
}
.order_preview_row .coin_shop__main_row:hover {
    transition: 0.8s;
    cursor: default;
    transform: scale(1);
}
.order_preview_row .coin_shop__amount__main:hover {
    cursor: default;
    background-color: #D32E45;
}
.coin_shop__description {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.order__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.order_summary__wrapper {
    width: 100%;
}
.order_summary__header {
    margin-bottom: 50px;
}
.order_summary__title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}
.order_summary__amount {
    margin-top: 40px;
    font-size: 40px;
    line-height: 42px;
    font-weight: bold;
    text-align: center;
}
.purchase_options {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.purchase_option_wrapper {
    position: relative;
}
.purchase_option {
    display: none;
}
.purchase_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #9B4FFC;
    border-radius: 50%;
    animation: purchase-spin 1s linear infinite;
    z-index: 1000;
}
@keyframes purchase-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.custom_radio_button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 285px;
    width: 100%;
    height: 160px;
    padding: 16px 16px 0 16px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
#js-sevenfunPayment + .custom_radio_button {
    background: rgba(98, 123, 255, 0.1);
    border: 2px solid rgba(98, 123, 255, 0.9);
    color: #625cff;
}
#js-sevenfunPayment:hover + .custom_radio_button {
    background: rgba(98, 123, 255, 0.4);
}
#js-fyntekPayment + .custom_radio_button {
    background: rgba(156, 39, 176, 0.1);
    border: 2px solid rgba(156, 39, 176, 0.9);
    color: #9c27b0;
}
#js-fyntekPayment:hover + .custom_radio_button {
    background: rgba(156, 39, 176, 0.4);
}
#js-cardPayment + .custom_radio_button {
    background: rgba(163, 16, 116, 0.1);
    border: 2px solid rgba(163, 16, 116, 0.9);
    color: #a31074;
}
#js-cardPayment:hover + .custom_radio_button {
    background: rgba(163, 16, 116, 0.4);
}
.purchase_option:checked + .custom_radio_button {
    border: 2px solid currentColor;
    background: rgba(0, 0, 0, 0.05);
}
.available_banks {
    margin-bottom: 60px;
}
.coins__shop {
    font-size: 24px;
    margin-bottom: 10px;
}
.select_payment__text {
    font-size: 20px;
    margin-bottom: 7px;
}
.select_payment__text a {
    text-decoration: none;
    color: #fdc9fd;
}
.banks__images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
.bank__img {

}
.bank__img img {
    width: 120px;
    height: 65px;
    opacity: 0.3;
}
.payment_card.active {
    border: 3px solid green;
    border-radius: 10px;
    padding: 8px 5px;
}
.payment_card.active img {
    opacity: 1;
}
.place_order__btn {
    background: linear-gradient(180deg, #E88BFF 0%, #9B4FFC 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 70px;
    border: none;
    border-radius: 6px;
    transition: 0.7s;
}
.place_order__btn__wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.place_order__btn:hover {
    cursor: pointer;
    background: linear-gradient(180deg, #e26dfd 0%, #7622e1 100%);
}
.place_order__btn:disabled {
    opacity: 0.5;
    cursor: auto;
}
.place_order__btn:disabled:hover {
    background: linear-gradient(180deg, #E88BFF 0%, #9B4FFC 100%);
}
.static_pages__title {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 30px;
}
.promotions__main_btn__wrapper {
    /*width: 100%;*/
    width: 80%;
    margin: 68px auto 0;

}
.promotions__main_btn {
    color: #FFFFFF;
    display: block;
    border-radius: 50px;
    background-color: #BC42B6;
    text-decoration: none;
    text-transform: uppercase;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    transition: 1s;
}
.promotions__main_btn:hover {
    transform: scale(1.1);
    box-shadow: 15px 16px 15px rgba(188, 66, 182, 0.44);
}
.support_icon__img {
    width: 40px;
}
.static_page__container {
    padding: 40px;
    max-width: 1440px;
    margin: 0 auto;
}
.static_page__content {
    line-height: 26px;
}
.static_page__content a {
    color: #FFFFFF;
}
.notification_page__wrapper {
    background-color: #441E6C;
    border: 1px solid #2e0b4f;
    border-radius: 30px;
    padding: 40px;
    width: 500px;
    margin: 100px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.notification_page__wrapper.success {
    width: 100%;
    min-height: 500px;
    height: 100vh;
    margin: 0;
    border-radius: 0;
}
.notification_page__wrapper.success a {
    color: #FFFFFF;
}
.content-area.success {
    padding-top: 0;
}
.notification_page__error {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 40px;
}
.notification_page__text {
    font-size: 30px;
    margin-bottom: 30px;
}
.notification_page__img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}
.forgot_password__form {
    background-color: #441E6C;
    border: 1px solid #2e0b4f;
    border-radius: 30px;
    padding: 40px;
    width: 500px;
}
.forgot_password__title {
    text-align: center;
    font-size: 26px;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 20px;
}
.forgot_password__text {
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 20px;
}
.forgot_password__logo {
    width: 200px;
    margin: 0 auto 30px;
    display: block;
}
.forgot_password__input {
    display: block;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    outline: none;
    padding: 10px 10px 5px 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.forgot_password__input::placeholder {
    color: rgba(255, 255, 255, 0.71);
}
.forgot_password__input:disabled {
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}
.forgot_password__input__wrapper {
    width: 100%;
    margin-bottom: 15px;
}
.payment_card img{
    opacity: 0.5;
}
.payment_card.active img {
    opacity: 1;
}

.custom_select__container {
    position: relative;
    width: 100%;
    /*max-width: 500px;*/
    color: #f0f0f0;
    cursor: pointer;
}
.custom_select__container.crypto-select-redeem {
    max-width: 100%;
}
.selected_option {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #523C90;
    border: 1px solid white;
    padding: 15px 10px 5px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.crypto_select__arrow {
    width: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.crypto-select-redeem .selected_option {
    background-color: #FFFFFF;
    color: #1b2b44;
}
.crypto_options {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #523C90;
    border: 1px solid white;
    border-radius: 8px;
    z-index: 10;
    height: 300px;
    overflow: scroll;
}
.crypto-select-redeem .crypto_options {
    background-color: #FFFFFF;
    color: #1b2b44;
}
.crypto_option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.crypto_option:hover {
    background-color: #8364dc;
}
.crypto-select-redeem .crypto_option:hover {
    background-color: #d3e1fa;
}

.crypto_option img.crypto_img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.crypto_option .crypto_name {
    font-size: 16px;
}

.crypto__select {
    display: none;
    position: relative;
}
.crypto-select-redeem {
    display: block;
}
.crypto_img {
    width: 24px;
    height: 24px;
}
.modal__payment {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.payement__iframe_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.payment__modal_iframe {
    width: 80%;
    height: 90%;
}
.modal__payment__title {
    font-weight: bold;
    color: #FFFFFF;
    font-size: 30px;
    margin-bottom: 15px;
}
.modal__payment__content {
    background-color: #3E287A;
    width: 700px;
    height: 90vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 30px;
}
.close_payment_modal {
    position: absolute;
    top: 20px;
    right: 20px;
}
.close_payment_modal:hover {
    cursor: pointer;
}
.redeem_amount__wrapper {
    display: flex;
    width: 100%;
}
.redeem_amount__name, .redeem_amount__value {
    width: 20%;
    background-color: #8B2EFC;
    border-radius: 5px;
    font-weight: bold;
    /*border: 1px solid #520ba2;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}
.redeem_amount__input__wrapper {
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
}
.input__redeem {
    width: 100%;
    box-sizing: border-box;
}
.input__label__redeem {
    margin-bottom: 7px;
    display: inline-block;
}
.redeem_min_amount {
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: underline;
    margin-top: 7px;
}
.redeem_amount__container {
    margin-bottom: 40px;
}
.redeem_options__wrapper {
    margin-bottom: 20px;
}
.redeem__select {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #FFFFFF;
    outline: none;
    padding: 10px 0 5px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: block;
    width: 100%;
}
.red_asterisk {
    color: red;
}

.redeem__row {
    margin-bottom: 30px;
}
.redeem__row .input__wrapper {
    width: 100%;
}
#js-bankRedeemFields,
#js-cryptoRedeemFields {
    display: none;
}
.forbidden_location_wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    justify-content: center;
}
.forbidden_location_content {
    color: white;
    font-weight: bold;
    font-size: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}
.forbidden_location_img {
    max-width: 360px;
    max-height: 500px;
}
.forbidden_location__title {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.forbidden_location_row {
    display: flex;
    padding: 0 20px;
}
/* Overlay */
.received_promos__modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Modal Container */
.received_promos__modal_container {
    background-color: #1F0236;
    padding: 20px 60px 60px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: scroll;
    width: 80%;
    min-height: 445px;
    max-height: 645px;
    text-align: center;
}
.received_promos__modal_container h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.received_promotion__btn {
    border-radius: 10px;
    border: none;
    padding: 5px 10px;
    color: #FFFFFF;
}
.received_promotion__btn:hover {
    cursor: pointer;
}

.received_promotion__item {
    border-radius: 20px;
    text-align: center;
}
.received_promotion__item .promotion__card {
    width: 100%;
}
.received_promotion__title {
    font-size: 30px;
    margin-bottom: 10px;
}
.received_promotion__btn_close {
    border: none;
}
.received_promotion__subtitle {
    font-size: 25px;
}
.received_promotion__description {
    font-size: 20px;
    margin-bottom: 15px;
}
.received_promo__modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.received_promo__modal__content {
    background-color: #05131D;
    margin: 15% auto;
    padding: 20px 40px;
    border: 1px solid #020e15;
    width: 80%;
    color: white;
    position: relative;
}
.received_promo__modal_close {
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}
.received_promo__modal_close:hover {
    cursor: pointer;
}
.received_promos__modal_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.promotion_modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.promotion_modal__content {
    background-color: #05131D;
    width: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    color: #FFFFFF;
    text-align: center;
    padding: 50px;
    border-radius: 30px;
}
.promotion_modal__close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-weight: bold;
}
.promotion_modal__close:hover {
    cursor: pointer;
}
.promotion_modal__title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.promotion_modal__subtitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.promotion__action__btns {
    width: 100%;
}
.btn__redirect {
    background: linear-gradient(133.68deg, #E88BFF 0.24%, #9B4FFC 95.93%);
    padding: 15px 10px;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    text-decoration: none;
}
.btn__redirect:hover {
    transition: 0.8s;
    cursor: pointer;
    background: linear-gradient(133.68deg, #E88BFF 0.24%, #750ffd 95.93%);
}
.swal-promo {
    height: 360px;
}
.payment-ways {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    justify-content: center;
}
.add-payment-ways-options {
    display: flex;
    padding-top: 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.redeem_container .input__wrapper {
    margin-bottom: 30px;
    width: 100%;
}
.redeem_container .account__action_btn__wrapper {
    margin-top: 0px;
    margin-bottom: 0;
}
.radio-input-block {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.radio-input-block input {
    height: 30px;
    width: 30px;
}
.radio-input-block input:disabled:hover {
    cursor: auto;
}
.radio-input-block:has(input:disabled) label {
    cursor: default;
}

.radio-input-block input:hover, .radio-input-block label:hover {
    cursor: pointer;
}
#cryptoSection {
    margin-bottom: 40px;
}
.add-payment-ways-options .radio-input-block input {
    height: 27px;
    width: 27px;
}
.add-payment-ways-options div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.payment-details {
    margin-top: 15px;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border: 1px solid white;
    border-radius: 20px;
    display: inline-block;
    padding-right: 20px;
    width: 40%;
}

.payment-details p {
    margin-bottom: 8px;
}
#deletePaymentWay {
    margin-top: 15px;
}
#redeemModalForm {
    display: block;
}
.selectPaymentWaySection {
    padding-left: 0;
    margin-top: 30px;
}
.selectPaymentWaySection select {
    padding: 0 10px;
    height: 40px;
    background: #523C90;
    color: white;
    width: 40%;
    border: 1px solid white;
    font-weight: bold;
}
.selectPaymentWaySection select option {
    color: black;
}
.selectPaymentWaySection select:hover {
    cursor: pointer;
}
.btn_delete_bank_option {
    background: #b60505;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.8s;
}
.btn_delete_bank_option:hover {
    opacity: 0.5;
    cursor: pointer;
}
.favorite_star {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 40px;
    height: 40px;
    z-index: 2;
}
.favorite_star:hover {
    cursor: pointer;
}
.favorite_star svg path {
    fill: rgba(255, 221, 0, 0.5);
}
.favorite_star.active svg path {
    fill: #ffdd00;
}
.coin_panel__img_vip {
    left: 9px;
    top: -1px;
}
.coin_panel__vip_middle {
    background: #FFFFFF0D;
}
.progress-bar-container {
    background: #00000066;
    border-radius: 10px;
    height: 8px;
    width: 100%;
}
.progress-bar {
    background-color: #A658FD;
    border-radius: 10px;
}
.progress__content {
    margin-bottom: 3px;
}
.coin_panel__right_progress_bar {
    width: 100%;
    position: relative;
    left: -10px;
    z-index: 1;
}
.blue__text {
    color: #A658FD;
}
.coin_panel__vip {
    margin-bottom: 8px;
}
.vip_points_text {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    margin: 2px 0px 2px 2px;
}
.btn_redeem_vip {
    background: #A658FD;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    padding: 5px 10px;
    color: #FFFFFF;
    width: 100%;
    max-width: 140px;
    border: none;
    transition: 1s;
}
.btn_redeem_vip:hover {
    cursor: pointer;
    background: #4e00a8;
}
.top_players_container {
    padding-bottom: 90px;
    padding-left: 10px;
    padding-right: 10px;
}
.top_players_title {
    font-weight: 700;
    font-size: 64px;
    line-height: 70px;
    text-align: center;
}
.leaderboard_table {
    /*overflow-x: auto;*/
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}
.leaderboard-table-header {
    display: grid;
    color: #462650;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    width: 100%;
    margin: 6px auto;
    background: linear-gradient(67.19deg, #8630D1 2.14%, #F28958 96.77%);
    box-shadow:2px 2px 4px black;
    border-radius: 10px;
}
.leaderboard-table-header-cell {
    text-transform: uppercase;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 400;
    text-align: center;
}
.leaderboard-table-body {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
}
.leaderboard-table-row {
    display: grid;
    background: #EB7B2F;
    color: #462650;
    border-radius: 10px;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 9px;
    line-height: 12px;
    text-align: center;
}
.leaderboard-table-cell {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.games-leaderboard-container {
    display: none;
}
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin-bottom: 100px;
    padding-top: 150px;
}

.loader {
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
}
.noScroll {
    overflow: hidden;
}
.betby_container {
    width: 100%;
    margin: 0 auto;
    max-width: calc(100vw - 275px);
}
.betby {
    width: 100%;
}
.js-manageCookies:hover {
    cursor: pointer;
}
.sidebar_btn__orange_container {
    margin-bottom: 8px;
    }
.sidebar_btn__orange {
    background: linear-gradient(180deg, #F08034 0%, #F08034 100%);
    border-radius: 6px;
    display: flex;
    padding-left: 35px;
    align-items: center;
    font-family: 'Anton';
    font-weight: 400;
    font-size: 20px;
    gap: 18px;
    text-decoration: none;
    color: white;
    height: 38px;
    transition: transform 0.1s;
}
.sidebar_btn__orange:hover {
    cursor: pointer;
    transform: scale(1.02);
}
.segmentation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

.segmentation-modal-content {
    position: relative;
    background: linear-gradient(135deg, #6f2dbd, #1F0236);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.segmentation-modal-button-wrapper {
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.segmentation-modal-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}

.segmentation-modal-button {
    position: relative;
    color: #fff !important;
    border: none !important;
    transition: all 0.3s ease-in-out;
    border-radius: 30px !important;
    background: #A020F0;
    font-weight: 600;
    padding: 10px 20px;
    z-index: 0;
    overflow: visible;
    max-width: 200px;
}

.segmentation-modal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
    z-index: -1;
}

.segmentation-modal-button:hover {
    background: #6a02a6;
    cursor: pointer;

}

.segmentation-modal-button:hover::before {
    opacity: 0;
}

.segmentation-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
}

.segmentation-offer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.segmentation-offer-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 12px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.segmentation-offer-image:hover {
    transform: scale(1.03);
}

.payment-modal {
    z-index: 10000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

.payment-modal-content {
    background: linear-gradient(90deg, rgba(82,60,144,1) 0%, rgba(25,24,25,1) 100%);
    position: relative;
    transform: none;
    border-radius: 30px;
    padding: 70px 20px 35px 20px;
    border: 1px solid rgba(25,24,25,1);
    max-width: 400px;
    width: 90%;
    animation: fadeInScale 0.3s ease forwards;
}

.payment-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1d5e;
    margin-bottom: 1rem;
    text-align: center;
}
.payment-modal-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-modal-close {
    position: absolute;
    top: 23px;
    right: 23px;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.payment-modal-close:hover {
    cursor: pointer;
}
.payment-modal-description {
    font-size: 20px;
    font-weight: 400;
    color: white;
    text-align: center;
}

.payment-modal-button {
    padding: 20px 30px 12px 30px;
    background: linear-gradient(180deg, #F08034 0%, #F08034 100%);
    color: white;
    text-transform: uppercase;
    margin-top: 30px;
    text-align: center;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;
    height: 48px;
    width: 200px;
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;

    text-decoration: none;
}

.payment-modal-button:hover {
    background: linear-gradient(900deg, #F08034 0%, #F08034 80%);
    cursor: pointer;
}

.payment-modal-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;

}
.paymentModalContainer .spinner{
    margin-top: 24px;
    margin-left: 24px;
}
@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 1265px) {
    .liveCards_wrapper img {
        max-width: 1190px;
    }
}
@media (max-width: 1440px) {
    .game__img__wrapper {
        height: 200px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 200px);
    }
    .logged__container {
        width: 915px;
    }
}
@media (max-width: 1270px){
    .main_banner__girl {
        /*width: 500px;*/
        bottom: -87px;
    }
}
@media (max-width: 1215px) {
    .game__img__wrapper {
        height: 170px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 170px);
    }
    .logged__container {
        width: 800px;
    }
}
@media (max-width: 1100px) {
    .game__img__wrapper {
        height: 145px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 145px);
    }
    .logged__container {
        width: 700px;
    }
    .coin_shop__wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1000px) {
    .game__img__wrapper {
        height: 130px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 130px);
        gap: 11px;
    }
    .logged__container {
        width: 600px;
    }
}
@media (max-width: 900px) {
    .game__img__wrapper {
        height: 140px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 140px);
    }
    .logged__container {
        width: 500px;
    }
}
@media (max-width: 800px) {
    .game__img__wrapper {
        height: 130px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 130px);
    }
    .logged__container {
        width: 460px;
    }
}
@media (max-width: 1200px) {
    .auth_container_left {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .auth_container_left img {
        width: 90%;
    }
    .main_banner__girl {
        /*width: 300px;*/
    }
    .purchases__title {
        font-size: 37px;
    }
    .purchases__description {
        font-size: 17px;
    }
    .purchases__banner {
        max-width: 1060px;
        background-size: contain;

    }
    .purchases__img {
        position: relative;
        right: 26px;
    }
    .purchases__description {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .auth_input__container .toggle-password {
        right: 3px;
    }
    .gameCategory__banner {
        background-size: cover;
    }
    .gameCategory__banner__content h3 {
        font-size: 40px;
        line-height: 50px;
    }
    .gameCategory__banner__content p {
        font-size: 26px;
    }
}
@media (max-width: 1024px) {
    .promotion__title {
        font-size: 35px;
    }
    .promotion__subtitle {
        font-size: 18px;
    }
    .promotion__get {
        font-size: 18px;
    }
    .main_banner__title h1 {
        font-size: 60px;
        line-height: 75px;
        padding-left: 0;
    }
    .main_banner__title__img {
        left: 15%;
        z-index: 2;
    }
    .game__img__wrapper {
        /*height: 160px;*/
    }
    .games {
        /*grid-template-columns: repeat(auto-fit, 23%);*/
    }
    .select_payment__text {
        font-size: 14px;
    }
    .place_order__btn {
        padding: 15px 50px;
    }
    .order__row {
        gap: 20px;
    }
    .coin_shop__wrapper {
        padding-left: 35px;
        padding-right: 35px;
    }
    .coin_shop_coin__wrapper {
        font-size: 18px;
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 21%);
    }
    /*.coin_shop__btn__wrapper {*/
    /*    width: 15%;*/
    /*}*/
    .coins__box {
        width: 100%;
        max-width: 100%;
        position: static;
        transform: none;
    }
    .purchases__title {
        font-size: 30px;
        line-height: 40px;
    }
    .purchases__banner {
        max-width: 760px;
        background-size: contain;
        height:310px;
    }
    .purchases__img {
        bottom: -17px;
        left: -18px;
        position: relative;
    }
    .purchases__content .orange__btn {
        font-size: 23px;
        padding: 5px 20px;
        width: 170px;
        text-align: center;
    }
    .purchases__description {
        margin-bottom: 20px;
        margin-top: 20px;
        font-size: 15px;
    }
    .purchases__content {
        padding-top: 25px;
        padding-right: 0;
    }
    .join__cards__wrapper {
        gap: 10px;
    }
    .join_card {
        width: 240px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .join_card__description {
        font-size: 15px;
    }
    .join_card__img1 {
        left: 56px;
    }
    .join_card__img2 {
        left: 56px;
    }
    .join_card__img3 {
        left: 92px;
    }
    .join_card__img4 {
        left: 56px;
    }
    .join_card__img5 {
        left: 56px;
    }
    .join_card__img6 {
        left: 56px;
    }
    .games_lists__container {
        /*margin-top: 40px;*/
    }

    .gameCategory__small__img {
        display: none;
    }
    .gameCategory__banner {
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-bottom: 50px;
    }
    .gameCategory__banner__content {
        margin-top: 0;
    }
    .account__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .account__otp_action_btn__wrapper .account__action_btn {
        padding: 8px 54px;
    }
    .logged_header {
        padding-left: 4px;
    }
    .bank__img img {
        width: 90px;
        height: 55px;
    }
    .main_banner__title_text {
        font-size: 37px;
    }
    .main_banner__title_amount {
        font-size: 40px;
    }
    .main_banner__content {
        flex-direction: column;
    }
    .promotions_banner__content {
        flex-direction: row;
    }
    .promotions_banner__content .main_banner__title__img {
        width: 300px;
    }
    .promotions_banner__girl {
        width: 300px;
        bottom: -100px;
    }
    .promotions__title {
        font-size: 40px;
        line-height: 50px;
    }
    .main_banner__title__img {
        margin-left: 0;
        width: 385px;
    }
    .main_banner {
        height: 700px;
    }
    .main_banner__girl {
        bottom: -17px;
    }
    .main_banner__left {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}


@media (max-width: 768px) {
    .auth_header_logo__wrapper {
        width: 230px;
        height: 75px;
    }
    .auth_header {
        padding: 18px 0;
    }
    .auth_row {
        gap: 0;
    }
    .auth__title {
        font-size: 25px;
    }
    .auth_container_left {
        display: none;
    }
    .auth_container_right {
        width: 100%;
    }
    .auth_field__container {
        width: 100%;
    }
    .auth__btn {
        width: 100%;
    }
    .auth__additional_login {
        width: 100%;
    }
    .auth_form {
        padding: 0 10px;
    }
    .menu {
        display: none;
    }
    .logged_header {
        background: #141313;
        padding: 25px 10px 25px 19px;
    }
    .logged_header_actions {
        display: none;
    }
    .logo__mobile__logged {
        display: block;
    }
    .toggle_menu__btn {
        display: none;
    }
    .coins__box {
        justify-content: flex-end;
    }
    .select-trigger {
        padding: 5px;
    }
    .custom-select {
        width: 90%;
        background-color: #1A1A1A;
    }
    .games_menu__wrapper {
        /*display: none;*/
    }
    .games__list {
        display: none;
    }
    .bottom_menu__mobile {
        position: fixed;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #141313;
        padding: 10px;
    }
    .bottom_menu__mobile__item {
        display: flex;
        flex-direction: column;
        color: white;
        font-weight: bold;
        align-items: center;
        justify-content: center;
        font-size: 10px;
    }
    .bottom_menu__mobile__item__link img {
        width: 46px;
        height: 46px;
    }
    .menu {
        position: fixed;
        top: 93px;
        background: #141313;
        height: 100%;
        z-index: 999;
        overflow: scroll;
        padding-top: 20px;
    }
    .sideMenuOverlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 980;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.4);
    }
    .coin_status_panel {
        margin-top: 5px;
    }
    .menu__logo {
        display: none;
    }
    .show_games__btn {
        width: 100%;
        font-weight: 700;
        line-height: 16px;
        color: #FFFFFF;
        position: relative;
        background-color: transparent;
        text-align: center;
        padding-top: 8px;
        padding-bottom: 8px;
        text-transform: uppercase;
    }
    .show_games__btn__arrow {
        position: absolute;
        bottom: 13px;
        right: 96px;
    }
    .games__sidemenu {
        display: none;
        padding-bottom: 200px !important;
    }
    .sidemenu_profile__btn {
        display: none;
    }
    .profile__sidemenu__mobile {
        position: fixed;
        bottom: 68px;
        left: 150px;
        background-color: #191819;
        padding: 16px 18px 8px;
        z-index: 1000;
    }
    .nonlogged_header {
        background: #141313;
    }
    .nonlogged_header_logo__wrapper {
        margin: 0 auto;
    }
    .authorization__buttons {
        display: none;
    }
    .main_banner {
        background-image: url("/assets/img/main_banner_mobile.jpg");
        height: 750px;
        padding-top: 60px;
        margin-bottom: 20px;
    }
    .main_banner__title h1 {
        padding-left: 0;
        font-size: 28px;
        line-height: 36px;
    }
    .main_banner__title_amount {
        font-size: 30px;
    }
    .main_banner__title__img {
        width: 300px;
        height: 90px;
    }
    .main_banner__girl {
        position: relative;
        width: 350px;
        height: 475px;
        bottom: -14px;
    }
    .promotions_banner__girl {
        bottom: 0;
    }
    .promotions_banner__content {
        flex-direction: column-reverse;
        overflow: hidden;
    }
    .main_banner__promotions {
        padding-top: 10px;
    }
    .promotions__title {
        margin-top: 20px;
    }
    .promotions__right_part {
        margin-top: 20px;
    }
    .promotions__subtitle {
        margin-bottom: 15px;
        font-size: 24px;
    }
    .promotions__right_part .orange__btn {
        font-size: 24px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .purchases__banner {
    display: flex;
    justify-content: end;
    align-items: end !important;
    padding-bottom: 20px !important;
    }
    .authorization__buttons__mobilemenu {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 20px 35px;
        width: 100%;
        background-color: #191819;
        display: flex;
        justify-content: space-between;
        z-index: 1000;
    }
    .authorization__btn {
        border-radius: 20px;
        font-size: 24px;
        font-weight: 400;
        line-height: 30px;
        text-align: center;
        color: #F3EFF4;
        padding: 15px 35px 6px;
        text-decoration: none;
    }
    .authorization__btn_purple {
        background: linear-gradient(180deg, #7151CA 0%, #5B3CB1 100%);
    }
    .authorization__btn_orange {
        background: linear-gradient(0deg, #E27225 0%, #F08034 100%);
    }
    .title__big {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 10px;
    }
    .game_cards__wrapper {
        padding: 0;
        display: block;
    }
    .title__medium {
        font-size: 30px;
        line-height: 36px;
        margin-top: 12px;
    }
    .game_type__card {
        width: 120px;
        font-size: 18px;
    }
    .game_types__wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .title__small__mobile {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 5px;
    }
    .title__big__mobile {
        font-size: 24px;
        line-height: 29px;
    }
    .title_join__wrapper {
        gap: 10px;
    }
    .join_card {
        min-height: 200px;
    }
    .join__cards__wrapper {
        flex-direction: column;
        gap: 85px;
    }
    .join_card__img1 {
        left: 95px;
    }
    .join_card__img2 {
        left: 90px;
    }
    .join_card__img4 {
        left: 82px;
    }
    .join_card__img5 {
        top: -49px;
        left: 87px;
    }
    .join_card__img6 {
        left: 105px;
    }

    .stellar__banner {
        text-align: center;
        margin-bottom: 105px;
        justify-content: center;
        background-size: contain;
    }
    .stellar__content {
        flex-direction: column;
        gap: 10px;
    }
    .stellar__content__right img {
        width: 260px;
        height: 363px;
    }
    .stellar__content__subtitle {
        font-size: 22px;
        font-weight: 400;
        line-height: 27px;
        text-align: center;
        margin-top: 15px;
    }
    .stellar__content__title {
        font-size: 40px;
        line-height: 48px;
    }
    .stellar__content__subtitle {
        font-size: 20px;
        line-height: 24px;
    }
    .stellar__content__left {
        width: 100%;
    }
    .stellar__content__right {
    }
    .purchases__banner {
        margin-top: 73px;
        margin-bottom: 0px;
        background-position: center;
        background-size: contain;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px 0 30px;
        text-align: center;
    }
    .purchases__content {
        width: 100%;
        padding: 20px 0 0 0;
    }
    .purchases__img {
        bottom: -49px;
    }
    .purchases__title {
        font-size: 40px;
        font-weight: 400;
        line-height: 45px;
    }
    .purchases__description {
        margin-top: 10px;
        width: 97%;
        font-size: 21px;
        font-weight: 400;
        line-height: 26px;
        text-align: center;
    }
    .purchases__img {
        bottom: 0;
    }
    .main {
        padding-bottom: 0;
    }
    .promotion__card {
        width: 48%;
        height: 500px;
    }
    .coin_shop__wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .coin_shop_coin__wrapper {
        font-size: 19px;
        gap: 5px;
    }
    .coin_shop_coin__wrapper span {
        margin-bottom: -8px;
    }
    .coin_shop__amount__main span {
        padding: 14px 20px 4px;
    }
    .row_tip__wrapper {
        padding: 5px 14px 0;
    }
    .coin_shop__main_coin__names {
        font-size: 30px;
    }
    .main-promotions-loggedin {
        margin-top: 89px;
    }
    .coin_shop_coin__wrapper img {
        width: 35px;
        height: 35px;
    }
    .coin_shop__amount__main {
        padding: 7px 0px;
    }
    .games {
        /*grid-template-columns: repeat(auto-fit, 30%);*/
    }
    .games__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .games__container__main {
        padding-left: 30px;
        padding-right: 30px;
    }
    .order_summary__title {
        font-size: 26px;
    }
    .order_summary__amount {
        font-size: 25px;
        margin-top: 5px;
    }
    .order_summary__header {
        margin-bottom: 10px;
    }
    .order_summary__wrapper {
        width: 100%;
    }
    .available_banks {
        width: 100%;
    }
    .games_lists__container {
        margin-top: 30px;
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 30%);
    }
    .coin_shop__btn__wrapper {
        width: 55px;
    }
    .logged_header {
        /*padding-left: 20%;*/
        position: fixed;
        width: 100%;
        z-index: 10;
    }
    .content-area {
        padding-top: 94px;
    }
    .join_card {
        width: 300px;
    }
    .account__container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .gameCategory__wrapper {
        padding-top: 40px;
    }
    .gameCategory__small__img {
        display: block;
        width: 230px;
    }
    .gameCategory__banner {
        display: none;
    }
    .gameCategory__banner__content {
        margin-top: 20px;
    }

    .gameCategory__banner__content h3 {
        font-size: 27px;
        line-height: 35px;
    }
    .gameCategory__banner__content p {
        font-size: 18px;
    }
    .redeem_coin__row {
        flex-direction: column;
    }
    .redeem_coin__wrapper {
        width: 100%;
        margin-bottom: 19px;
    }
    .modal__payment__content {
        width: 98vw;
        height: 95dvh;
        padding: 7px;
        border-radius: 9px;
    }
    .modal__payment__title {
        font-size: 20px;
        margin-bottom: 7px;
    }
    .close_payment_modal {
        top: 7px;
        right: 13px;
    }
    .received_promos__modal_container {
        width: 80%;
        padding: 20px 0;
    }
    .received_promos__modal_container h2 {
        font-size: 25px;
    }
    .promotion_modal__content {
        width: 450px;
        padding: 20px;
    }
    .footer {
        padding-bottom: 100px;
    }
    .footer__links {
        justify-content: center;
    }
    .notification_page__wrapper {
        width: 350px;
        margin: 100px auto;
    }
    .notification_page__error {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .notification_page__text {
        font-size: 25px;
    }
    .payment__modal_iframe {
        width: 100%;
        height: 100%;
    }

    .main_banner__title_text {
        line-height: 40px;
    }
    .account__action_btn__wrapper {
        margin-bottom: 30px;
    }
    .account__container {
        padding-top: 30px;
    }
    .redeem_container {
        padding-bottom: 30px;
    }
    .radio-input-block input, .add-payment-ways-options .radio-input-block input {
        width: 25px;
        height: 25px;
    }

    .add-payment-ways-options {
        gap: 10px;
    }
    .selectPaymentWaySection select {
        width: 100%;
    }
    .payment-details {
        width: 100%;
    }
    .leaderboard-table-header-cell {
        padding-left: 15px;
        padding-right: 15px;
    }
    .leaderboard-table-left-cell {
        /*width: 15%;*/
    }
    .leaderboard-table-regular-cell {
        width: 40%;
    }
    .logged__container {
        width: 700px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 115px);
    }
    .game__img__wrapper {
        height: 115px;
    }
    .favorite_star {
        width: 30px;
        height: 30px;
    }
    .games_lists__container {
        padding-top: 0;
    }
    .top_players_container {
        padding-bottom: 20px;
        margin-top: 40px;
    }
    .betby_container {
        max-width: 100vw;
    }
    .coin_shop__main_row:hover {
        transform: scale(1);
    }
    .coin_shop__description {
        padding-bottom: 50px;
    }
    .promotion__card .modal-content {
        width: 96%;
        height: 73vh;
        overflow: auto;
        padding-top: 20px;
    }
    .promotion__card .modal-content .close {
        top: 6px;
        right: 14px;
    }
    .promotion__card .modal {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .forgot_password__form {
        margin-bottom: 90px;
    }
    .footer__links a, .footer__links span {
        font-size: 15px;
    }
    .title__small {
        font-size: 22px;
        line-height: 30px;
    }
    .transcations_table__wrapper {
        margin-bottom: 30px;
    }
    #pageNumbers {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    #pagination button {
        margin: 0;
    }
    .table {
        min-width: 600px;
    }
    .table__wrapper {
        max-width: 90vw;
        margin: 0 auto;
    }
    .account__container_purchases {
        padding: 40px 0 0 0;
    }
    #pagination {
        justify-content: center;
    }
    .content-area-static-page {
        padding-top: 10px;
    }
    .static_page__container {
        padding: 100px 13px 13px 13px;
    }
    .content-area-static-page-logged-out {
        padding-top: 0;
    }
    .content-area-static-page-logged-out .static_page__container {
        padding-top: 20px;
    }
    .requests_table {
        min-width: 87vw;
    }
    .requests_table #dateColumn {
        width: 25%;
    }
    .requests_table #creditColumn {
        width: 20%;
    }
    .requests_table #debitColumn {
        width: 20%;
    }
}
@media (max-width: 710px) {
    .logged__container {
        width: 650px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 113px);
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 113px);
    }
    .game__img__wrapper {
        height: 113px;
    }
    .forbidden_location_wrapper {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    padding: 20px 34px 5px;
    font-size: 24px;
    margin-bottom:10px;
    }
}

@media (max-width: 620px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    padding: 20px 34px 5px;
    font-size: 24px;
    margin-bottom:40px;
    }
}

@media (max-width: 480px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    padding: 14px 34px 5px;
    font-size: 20px;
    margin-bottom: 50px !important;
    }
}

@media (max-width: 430px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    margin-bottom: 0px !important;
    }
    .purchases__banner {
        height: 450px;
    }
}

@media (max-width: 390px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    margin-bottom: 20px !important;
    }
}


@media (max-width: 350px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    margin-bottom: 40px !important;
    }
}

@media (max-width: 320px) {
    .nonlogged_header__register_btn .orange__btn {

    }
    .orange__btn {
    margin-bottom: 60px !important;
    }
}

.top-banner-mobile {
    display:none !important;
}
@media (max-width: 430px) {
    .purchases__banner {
    background-image: url("/assets/img/purchaces_banner_mobile.png");
    }
}


@media (max-width: 655px) {
    .logged__container {
        width: 605px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 100px);
    }
    .game__img__wrapper {
        height: 100px;
    }
}
@media (max-width: 610px) {
    .logged__container {
        width: 550px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 115px);
    }
    .game__img__wrapper {
        height: 115px;
    }
    .nonlogged_header_logo__wrapper {
        width: 232px;
        height: auto;
    }
    .nonlogged_header_logo__wrapper a {
        display: block;
        width: 100%;
        height: auto;
    }
    .nonlogged_header {
        padding: 20px;
    }
    .promotions__title {
        font-size: 26px;
    }
    .promotions__subtitle {
        font-size: 20px;
        line-height: 25px;
    }
}
@media (max-width: 555px) {
    .games {
        grid-template-columns: repeat(auto-fit, 109px);
    }
    .game__img__wrapper {
        height: 109px;
    }
    .logged__container {
        width: 510px;
    }
    .coin_shop_coin__wrapper {
        font-size: 16px;
    }
    .promotion__card .modal-content {
        padding: 70px 20px;
    }
    .support_row {
        flex-direction: column;
    }
    .support_row .input__wrapper {
        width: 100%;
    }
}
@media (max-width: 515px) {
    .games {
        grid-template-columns: repeat(auto-fit, 100px);
    }
    .game__img__wrapper {
        height: 100px;
    }
    .logged__container {
        width: 485px;
    }
}
@media (max-width: 480px) {
    .auth_header {
        background-color: #191819;
    }

    .auth__subtitle {
        font-size: 14px;
    }

    .promotion__card {
        width: 93%;
    }

    .coin_shop__main_coin__names {
        font-size: 20px;
    }

    .coin_shop_coin__wrapper {
        font-size: 12px;
    }

    .coin_shop__wrapper {
        padding: 30px 15px 0 15px;
    }

    .coin_shop__main_row__content_column__left, .coin_shop__main_row__content_column__middle {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .coin_shop__amount__main {
        font-size: 14px;
        padding: 1px 5px;
    }

    .row_tip__wrapper {
        font-size: 10px;
    }

    .coin_shop_coin__wrapper img {
        width: 25px;
        height: 25px;
    }

    .games {
        grid-template-columns: repeat(auto-fit, 48%);
    }

    .games__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .games__container__main {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logged__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .order__row {
        flex-direction: column;
    }

    .game__img__wrapper {
        height: 183px;
    }
    .games_lists__container {
        margin-top: 20px;
    }

    .games__main.games {
        grid-template-columns: repeat(auto-fit, 120px);
    }
    .games__main.games.game__img__wrapper {
        height: 126px;
    }


    .promotions__main_btn {
        font-size: 25px;
        padding-top: 33px;
        padding-bottom: 17px;
    }

    .coin_shop__main_row__content_column__middle_top__block {
        font-size: 13px;
        top: -27px;
    }

    .coins__box {
        width: 315px;
    }

    .logged_header {
        padding-left: 12px;
    }

    .coin_shop__amount__main a {
        padding: 10px 17px;
    }

    .gameCategory__banner__content h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .gameCategory__banner__content p {
        font-size: 18px;
        line-height: 25px;
    }

    .gameCategory__banner {
        margin-bottom: 50px;
    }

    .account__title {
        font-size: 30px;
    }

    .redeem__descr {
        font-size: 16px;
    }

    .redeem__balance {
        font-size: 28px;
        margin-top: 20px;
    }

    .redeem_coin__title {
        font-size: 22px;
    }
    .redeem__requests__title {
        font-size: 25px;
    }
    .redeem_coin {
        padding: 1px 5px 1px 1px;
    }

    .table td, .table th {
        font-size: 10px;
    }
    .search_selects__wrapper {
        flex-direction: column;
    }
    .providers_select__wrapper {
        width: 100%;
    }
    .search_input__wrapper {
        width: 100%;
    }
    .search_input {
        box-sizing: border-box;
    }
    .search_input__wrapper::after {
        right: 13px;
    }
    .account__container {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
    }
    #creditColumn, #debitColumn {
        width: 16%;
    }
    .otp_row .input__wrapper {
        width: 70%;
    }
    .account__otp_action_btn__wrapper .account__action_btn {
        padding: 8px 30px;
    }
    .account__action_btn {
        line-height:20px;
        padding: 15px 55px;
    }
    .row {
        flex-wrap: wrap;
    }
    .input__wrapper {
        width: 100%;
    }
    .footer {
        padding: 15px 15px 47px 15px;
    }
    .footer__links {
        justify-content: center;
    }
    .footer__links a {
        font-size: 15px;
    }
    .footer__logo {
        width: 200px;
    }
    .footer__logo img {
        width: 100%;
    }
    .modal__payment__content {
        height: 95dvh;
    }
    .bank__img img {
        width: 65px;
        height: 40px;
    }
    .received_promos__modal_container {
        width: 95%;
    }
    .received_promotion__item .promotion__card {
        width: 95%;
        margin: 0 auto;
    }
    .promotion_modal__content {
        width: 96%;
        padding: 20px 15px;
    }
    .promotion_modal__title {
        margin-bottom: 20px;
    }
    .promotion_modal__subtitle {
        margin-bottom: 15px;
    }
    .forbidden_location_img {
        width: 200px;
        max-width: 100%;
    }
    .logged__container {
        width: 425px;
    }
    .game__img__wrapper {
        height: 124px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 124px);
    }
    .main_banner__title_text {
        font-size: 28px;
    }
    .main_banner__title {
        margin-top: 20px;
    }
    .main_banner__girl {
        bottom: -5px;
    }
    .promotion__content {
        bottom: 0;
    }

    .top_players_title {
        font-size: 40px;
        line-height: 42px;
    }
    .leaderboard-table-header-cell {
        padding: 20px 5px;
        gap: 5px;
    }
    .leaderboard-table-header-cell:first-child,
    .leaderboard-table-row .leaderboard-table-cell:first-child {
        width: 20%;
        min-width: 80px;
        text-align: center;
    }
    .games__lobby.games__lobby__favourites {
        justify-content: flex-start;
    }
}
@media (max-width: 425px) {
    .logged__container {
        width: 400px;
    }
    .games__lobby {
        justify-content: center;
    }
    .games__lobby .game_category__title {
        text-align: center;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 115px);
    }
    .game__img__wrapper {
        height: 115px;
    }
    .coin_shop__main_row__content_column__middle_top__block {
        font-size: 9px;
        top: -23px;
    }
    .custom-select {
        width: 100%;
    }
    .coins__box {
        width: 320px;
    }
    .main_banner__girl {
        bottom: 0;
    }
    .gameCategory__small__img {
        width: 170px;
    }
    .gameCategory__banner {
        height: 200px;
    }
}
@media (max-width: 410px) {
    .logged__container {
        width: 375px;
    }
    .games {
        grid-template-columns: repeat(auto-fit, 105px);
    }
    .game__img__wrapper {
        height: 105px;
    }
    .modal__payment__content {
        /*width: 350px;*/
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 105px);
    }
    .coin_shop__amount__main span {
        padding: 10px 15px;
    }
}
@media (max-width: 380px) {
    .games {
        grid-template-columns: repeat(auto-fit, 98px);
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 98px);
    }
    .game__img__wrapper {
        height: 98px;
    }
    .logged__container {
        width: 350px;
    }
}
@media (max-width: 355px) {
    .games {
        grid-template-columns: repeat(auto-fit, 85px);
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 85px);
    }
    .game__img__wrapper {
        height: 85px;
    }
    .logged__container {
        width: 310px;
    }
    .modal__payment__content {
        /*width: 280px;*/
    }
    .authorization__buttons__mobilemenu {
        padding: 20px 5px;
    }
}
@media (max-width: 315px) {
    .games {
        grid-template-columns: repeat(auto-fit, 75px);
    }
    .games__main.games {
        grid-template-columns: repeat(auto-fit, 75px);
    }
    .game__img__wrapper {
        height: 75px;
    }
    .logged__container {
        width: 280px;
    }
}
@media (max-width: 300px) {
    .games {
        grid-template-columns: repeat(auto-fit, 110px);
    }
    .game__img__wrapper {
        height: 110px;
    }
    .logged__container {
        width: 270px;
    }
}

  .cancel-button {
                background-color: #ff0000;
                color: #ffffff;
                border: none;
                padding: 5px 10px;
                border-radius: 4px;
                cursor: pointer;
            }
            .cancel-button:hover {
                background-color: #cc0000;
            }
            .cancel-button-row {
              display: flex;
              align-items: center;
              gap: 10px;
            }
            @media (max-width: 768px) {
             .cancel-button-row {
              flex-direction: column;
             }
             .mobilelogo {
                width:65px;
                margin-right:10px;
             }
            }

            @media (max-width: 330px) {
    .mobilelogo {
        width: 80px;
        margin-right: 10px;
    }
}

@media (max-width: 310px) {
    .mobilelogo {
        width: 60px;
        margin-right: 5px;
    }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}



.popup-overlay.fade-out {

  animation: fadeOut 0.3s forwards;

}



.level-popup {
  position: fixed;
  top: 20%;
  left: 50%;
    background: linear-gradient(to bottom, #320b62, #44106b);
  transform: translateX(-50%);
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  z-index: 9999;
  text-align: center;
  border-radius: 15px;
  max-width: 305px;
  opacity: 0;
  animation: fadeIn 0.3s forwards;

}



.level-popup h2 {
  color: white;
  font-size: 24px;
  margin-top:10px;
}

.level-popup p {
  color: white;
  font-size: 16px;
}

.level-popup.fade-out {
  animation: fadeOut 0.3s forwards;
}



@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}



@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}



.popup-content {
padding: 20px;
    border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}



.level-popup .popup-content img {
  max-width: 100px;
  margin: 10px 0;
}
.level-popup .popup-content .confirm-btn {
  font-size: 18px;
  cursor: pointer;
      background-image: linear-gradient(180deg, #E88BFF 0%, #9B4FFC 100%);
    text-transform: uppercase;
    border: none !important;
    color: white !important;
    border-radius:10px;
    margin-top:10px;

}

.level-popup .popup-content .confirm-btn:hover {
      background-image: linear-gradient(180deg,rgb(197, 121, 216) 0%,rgb(124, 66, 201) 100%) !important;
}


.register-stepper {
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:30px;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #855EF1 0%, rgb(110, 87, 175) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: 'Aoboshi One', 'Arial', sans-serif;
  font-weight: 700;
  color: #191919;
  border: 2px solid #855EF1;
  margin: 0 auto;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.step-circle.active {
  background: linear-gradient(180deg, #855EF1 0%, rgb(110, 87, 175) 100%);
  border: 2px solid #855EF1;
}

.step-circle.step-outline {
  background: transparent;
  border: 3px solid #855EF1;
  color: #FFFBDF;
}

.step-line {
  height: 4px;
  background: linear-gradient(90deg, #855EF1 0%, rgb(110, 87, 175) 100%);
  border-radius: 2px;
  margin-top: 10px;
  min-width: 160px;
}

.register-stepper .text-uppercase {
  font-size: 13px;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.step-line {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media (max-width: 768px) {
    .top-banner-mobile {
        display:flex !important;
    }
    .top-banner-desktop {
        display:none !important;
    }
}
