﻿.modal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    max-width: 450px;
    margin: 0 auto;
    z-index: 999999;
    transition: .5s ease-in-out;
    animation: slowShow .5s;
    background: var(--modal-bg);
    /* overflow: auto; */
}
img.web__logo.modal_logo_image {
    height: 6rem;
}
.modal_logo {
    margin-bottom: 1.5rem;
}
.modal-overlay, .modal-content, .modal-body {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

@keyframes slowShow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.auth_wrapper,.auth_box_login,.auth_input, .auth_btn {
    width: 100%;
}
.auth_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.auth_box {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 2rem;
    background: #ffffff33;
    border: 1px solid #ffffff47;
    border-radius: 10px;
}

input.auth_input {
    background: transparent;
}

.auth_input_wrapper {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    background: #fff;
    color: #2f2f2f;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 2.5;
    border-radius: 5px;
    gap: 1rem;
    padding-inline: 1rem;
}
.modal_icon {
    font-size: 1.9rem;
}

.auth_input::placeholder {
    opacity: 1;
    color: #2f2f2f;
}
.auth_label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.auth_box_login {
    display: flex;
    flex-flow: column;
    gap: 1rem;
}


.btn_login {
    background: var(--primary-gradient-bg);
    border-radius: 50px;
    text-align: center;
    font-size: 1.5rem!important;
    line-height: 2!important;
    font-weight: 600;
}

.auth_btn {
    transition: transform 0.1s 
ease, filter 0.1s 
ease;
}

.auth_btn:hover {
    filter: brightness(1.05);
}

.auth_btn:active {
    transform: scale(0.95);
}

.check_box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-size: 1rem;
    color: var(--secondary-btn-bg);
}

.check_box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #ff8100;
    cursor: pointer;
    margin-right: 6px;
}

.goto_text {
    color: var(--secondary-btn-bg);
    display: flex;
    text-align: center;
    width: auto;
    cursor: pointer;
}

.auth_btn.check_box_text.cursor-pointer {
    display: flex;
    text-align: center;
    width: auto;
}
.modal>.snow {
    z-index: 99;
}
.modal_footer_text.flex.w-full.items-center.text-center.gap-1.text-\[1\.1rem\].justify-center.mx-auto {
    font-size: 1rem;
}
input#LoginUsername::placeholder,input#loginpassword::placeholder {
    font-size: 1rem;
}
.loginModal {
    overflow: hidden;
}

.modal-body {
    margin-bottom: 50px;
    margin-top: 50px;
} 
.modal-content {
    z-index: 99;
    overflow: auto;
} 
.modal-header {
    position: fixed;
    max-width: 450px;
    margin: 0 auto;
    z-index: 99999;
}
.modal-footer {
    min-height: 80px;
    position: relative;
    width: 100%;
    visibility: hidden;
    flex: 0;
}

.modal.loginModal[data-user-authorized="auth"], .modal.registerModal[data-user-authorized="auth"]  {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.modal.modal_normal {
    background: #00000021!important;
    backdrop-filter: blur(4px)!important;
    --webkit-backdrop-filter: blur(4px)!important;
    --moz-backdrop-filter: blur(4px)!important;
}
.modal-overlay.modal_medium_overlay {
    justify-content: center;
    position: relative;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.modal-content.modal_medium_content {
    backdrop-filter: blur(15px)!important;
    --webkit-backdrop-filter: blur(15px)!important;
    --moz-backdrop-filter: blur(15px)!important;
    background: #00000041;
    min-height: 150px;
    height: auto;
    width: auto;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.modal-body.modal_medium_body {
    display: flex;
    flex-flow: column;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0 0 3.5rem 0;
    justify-content: center;
}
.modal_title {
    font-size: 1.35rem;
    font-weight: 600;
}

.continueQuit>span, .cancelQuit>span, .warm_confirmation {
    font-size: 1.1rem;
}
.continueQuit, .cancelQuit {
    width: 100%;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 99999;
}
.continueQuit>span {
    color: #ff2020;
    text-shadow: 0 0 #ff4f4f;
}

.conformation {
    border-top: 1px solid;
}

.cancelQuit {
    border-right: 1px solid;
} 
.modal-content.normal_content {
    justify-content: center;
    color: var(--primary-bg);
    background: #fff;
    min-height: 120px;
    height: auto;
    max-width: 80%;
    border-radius: 8px;
    overflow: visible !important;
}

.modal-overlay.normal_overlay {
    justify-content: center;
    overflow: visible !important;
}

svg.close_icon {
    height: 100%;
    width: 100%;
}
.contact__img {
    width: 3.25rem;
    height: 3.25rem;
}

.contactRenderExtend.contact {
    width: 100%;
}

.modal-body.normal_body {
    margin: 0 auto;
}

.contact-item {
    background: #ffd50026;
    border-radius: 5px;
}

.modal-header.normal_header {
    position: absolute !important;
    display: flex;
    width: 100%;
    height: 3rem;
    top: -4rem;
    align-items: center;
    justify-content: flex-end;
}

.close_contact {
    position: relative;
    overflow: visible;
    width: 3rem;
    height: 3rem;
}

svg.close_icon {
    height: 80%;
    width: 80%;
}

.confirmation_modal_bg {
    background: linear-gradient(167deg,#20232c 20.74%,#2a2d36 99.67%)!important;
}
div#confirmationModal, #loadBalance {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-inline: 2rem;
}
.modal-content.modal_medium_content.confirmation_modal_bg {
    padding: 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.hidden.modal {
    display: none !important;
}

#confirmationText, .loadBalance {
    width: 100%;
    display: flex;
    flex-flow: column;
}

.confirmModalTitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-border);
}

.confirmModalInnerText {
    font-size: 1.1rem;
}
.modal-actions {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    font-size: 1rem;
    gap: 1rem;
}
.modal-actions>button {
    background: var(--secondary-gradient-bg);
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid var(--secondary-border);
    box-shadow: 0 0 2px var(--secondary-border);
    color: var(--primary-bg);
    padding: .125rem .25rem;
}

.modal_overlay.modal_medium_overlay {
    width: 100%;
}
.modal-body.border.border-1.modal_medium_body {
    padding: 1rem;
    display: flex;
    justify-content: flex-start;
}
.popup-modal.active {
    --popup-height-pct: 58.02;
    --popup-main-color: #fff;
    --popup-main-active-color: #f6cf50;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100011;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #00082561;
    backdrop-filter: blur(2px);
}
.popup-content {
    /* max-height: calc(100% - 5rem - 5rem); */
    width: 80%;
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}
.popup-content {
    animation: jackInTheBox .5s both;
    overflow: hidden;
    width: 83%; 
    max-width: 350px;
    border-radius: 1.2rem;
    position: unset !important;
    padding: 1rem;
    background: linear-gradient(to bottom, rgb(255 255 255 / 15%) 0%, #1e222e 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.40) 0%, #00061c 120%) #000000;
    display: flex;
    animation-delay: 1s;
    flex-direction: column;
}
div#popupContainer {
    border-radius: 20px;
}
.popSwiper.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: .25rem;
}

.swiper_btn_wrapper {
    position: fixed;
    display: flex;
    width: 100%;
    max-width: 420px;
    justify-content: space-between;
    padding-inline: .5rem;
}
.swiper-slide.swiper-slide-active {
    background: #08112c61;
    box-shadow: inset 0px 0px 62px #3f476400;
}
.zoomIn {
    animation: zoomIn .5s both;
}

span.popup_title {
    width: 100%;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 2;
    word-break: break-word;
    margin-top: 0rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 4.5rem;
    text-align: center;
    padding-inline: 2rem;
    margin-bottom: 1rem;
}
span.text__dontshowagain {
    margin-left: .25rem;
}

.popTitle {
    margin-top: 1rem;
    width: 100%;
    height: 100%;
}
div#popupContainer>.swiper-slide {
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
    line-height: normal;
    color: #8a8a8a;
    border-radius: 1rem;
    max-width: 100%;
    justify-content: center;
    box-shadow: 0 0 3px #000;
}

.popupImage {
    object-fit: cover;
    aspect-ratio: 1 / 1;
    height: 100%;
}
.popSwiper.swiper.swiper-initialized.swiper-horizontal.swiper-ios.swiper-backface-hidden {
    overflow: visible;
    max-width: 100%;
    position: relative;
    padding-bottom: 0.5rem;
}

.swiper-button-next.popupNext, .popupPrev {
    z-index: 99;
    width: 1.71rem;
    height: 1.71rem;
    padding: 0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: var(--secondary-gradient-bg);
    position: relative;
} 
.swiper-button-next.popupNext:after, .popupPrev:after {
    font-size: 1rem;
    color: var(--primary-bg);
    font-weight: 600;
}
.popupPrev:after {
    right: 0!important;
}

.close_popup {
    position: absolute !important;
    right: 0;
    z-index: 10;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    top: 0;
    padding: .7rem;
    z-index: 999;
}
button#closePopup {
    position: relative;
    z-index: 9999;
    opacity: .8;
}
button#closePopup>span {
    font-size: 2rem;
    width: 1.5rem;
    line-height: 1rem;
    color: #fff;
    filter: none !important;
    font-weight: 900;
}
.close_popup:before {
    content: "";
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    position: absolute;
    width: 3.85rem;
    height: 5rem;
    border-radius: 0 50px 0rem;
    top: -2rem;
    box-shadow: 0 2px 3px var(--primary-bg);
    border: 1px solid #beac2a;
    right: -0.25rem;
}
.loading_img.relative.z-\[2\] {
    display: none !important;
}
.popup-actions {
    min-height: 2.13rem;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    gap: .5rem;
    line-height: 2;
}

.popup-content {
    border: .051rem solid #414141;
}

.popHeader {
        width: 100%;
}

label.dont-show-label {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #beac2a;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    padding: .12rem 1rem;
    border-radius: 150px;
}
.wrapper_swipper {
    width: 100%;
    height: 1rem;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

ul.alert_list.w-full {
    font-size: 1rem;
}
span.balance.member__card {
    font-size: 1.42rem;
    color: #666 !important;
    fill: none;
}
.downloadModal.wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    padding-inline: 1rem;
}
.close_download {
    width: 2.2rem;
    height: 2.2rem;
}

.downloadModalBody {
    width: 100%;
    height: 100%;
}
.modal-header.downloadModal {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.modal-body.downloadModal {
    margin: 0 auto;
}
.modal-body.downloadModal {
    margin: 0 auto;
    background: linear-gradient(180deg, #f5faff, #fff 15%, #fff 91.93%, #f5faff);
    padding: 1rem;
    border-radius: .8rem;
    display: flex;
    flex-flow: column;
}

.downloadmodalImg {
    position: absolute;
    top: -2.83rem;
    left: .43rem;
    width: 3.76rem;
    height: 3.6rem;
}

.modal-top {
    display: flex;
    justify-content: flex-end;
    position: relative;
    direction: ltr;
    width: 100%;
}

.modal-bottom {
    background: #e8f1ff
}

img.am-icon.am-icon-app-android_134a04d5.am-icon-md {
    width: 2rem;
    height: auto;
}

.modal-bottom {
    background: #e8f1ff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    color: #595959;
    padding: 1rem;
    border-radius: .5rem;
    margin-top: 1rem;
}
.modal-item.android,.modal-item.webIos {
    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: .2rem;
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
}

.item-info {
    display: flex;
    align-items: center;
    gap: .5rem;
}

a.down-btn {
    background: linear-gradient(0deg, #64c213 9.5%, #a8eb25);
    padding-inline: .5rem;
    border-radius: 150px;
    color: #fff;
    font-weight: 600;
    font-size: .7rem;
    line-height: 2;
}
.info-txt {
    font-size: .9rem;
}
.modal-item.webIos {
    margin-top: 1rem;
}
div#cashbackModal {
    position: fixed !important;
    z-index: 9999999;
    width: 100%;
    height: 100dvh;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    min-width: 100%;
    background: #0000004f;
}
.cashback.popHeader {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
    
}

.close_popup.cashback::before {
    background: none;
    border: none;
    box-shadow: none;
}

.popup-body.normal_body {
    margin-top: 3rem;
}
span.popup_title.cashback {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 2;
    height: fit-content;
    color: #fff;
}
.popup-content.cashback {
    background: url(https://GOLDENMM.com/assets/img/scb_bg.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    border: 0;
}
.close_popup.cashback {
    position: absolute !important;
    bottom: 0 !important;
    top: auto;
    height: fit-content;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    z-index: 1;
}
.close_popup.cashback::before {
    background: none;
    border: none;
    box-shadow: none;
    
    
}
.cashbackModalRender {
    padding: 1rem 0;
}
.claimAbleAmount span {
    border: none;
    -webkit-text-fill-color: #ff8100b0;
    background: linear-gradient(#FFEE01, #ff0000);
    background-clip: text;
    display: inline-flex; 
    filter: none;
    font-size: 2.1rem;
    font-weight: 600;
}
.cashBackDateTime {
    margin-top: .35rem;
    display: flex;
    text-align: center;
    gap: .5rem;
    justify-content: center;
}
button.claimBTN {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #feddb0 0, #ffe186 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fe2f45;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono", monospace;
    height: 33px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
}
    .claimBTN:focus { box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset; } .button-29:hover { box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset; transform: translateY(-2px); } 
    .claimBTN:active { box-shadow: #3c4fe0 0 3px 7px inset; transform: translateY(2px); 
}




.cashbackModalRender button {
    position: relative;
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
    top: 200px;
}

.cashBackDateTime {
    margin-top: 1.1rem;
    display: flex;
    gap: .5rem;
}
.cashBackDateTime p {
    color: #595959;
}

.popup-body.normal_body {
    color: red;
    display: flex;
    width: 100%;
    height: auto;
    flex-flow: column;
    align-items: center;
    text-align: center;
    margin-top: -8px;
}







