@import "./v-1-1-14-25__colors.css";

/*MINI POPUP*/
.mini_popup {
    display: block;
    z-index: 50;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--mini-top_popup-background-color);
    color: var(--mini-top-popup-font-color);
    font-size: 16px;
    padding: 3px 40px 3px 30px;
    border-radius: 20px;
    font-family: 'Courier New', Courier, monospace;
    animation: success-in .6s;
    text-align: center;
}

.success-checkmark {
    position: absolute;
    top: 3px;
    right: 8px;
    width: 30px;
    height: 100%;
    margin: 0 auto;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 0;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: none;
}

.icon-line {
    height: 3px;
    background-color: var(--mini-top_popup-pipe-color);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.line-tip {
    top: 10px;
    left: 4px;
    width: 7px;
    transform: rotate(45deg);
    animation: icon-line-tip .5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.line-long {
    top: 7px;
    right: 59px;
    width: 15px;
    transform: rotate(-45deg);
    animation: icon-line-long .5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes success-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes icon-line-tip {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

    0% {
        width: 0;
        left: 1px;
        top: 0px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 0px;
    }

    70% {
        width: 13px;
        left: 0px;
        top: 4px;
    }

    84% {
        top: 10px;
        left: 4px;
        width: 10px;
    }

    100% {
        top: 10px;
        left: 4px;
        width: 7px;
    }
}

@keyframes icon-line-long {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

    0% {
        width: 0;
        right: 60px;
        top: 35px;
    }

    65% {
        width: 0;
        right: 60px;
        top: 15px;
    }

    84% {
        width: 20px;
        right: 50px;
        top: 10px;
    }

    100% {
        top: 7px;
        right: 59px;
        width: 15px;
    }
}


/*BIG POPUP*/
.big_popup-cover{
    opacity: 0;
    z-index: 24;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--big_popup-cover-color);
    display: flex;
    flex-direction: column;
}

.big_popup {
    opacity: 0;
    z-index: 25;
    display: block;
    width: 80%;
    max-width: 800px;
    height: fit-content;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: calc(90% - 40px - 70px);
    overflow-y: scroll;
    margin: auto;
    position: absolute;
    background-color: var(--big_popup-background-color);
    color: var(--big_popup-text-color);
    border-radius: 10px;
    padding: 15px 20px 20px 20px;
    font-size: 22px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

.popup_yes_button {
    margin-left: 8%;
    margin-right: auto;
}

.popup_no_button {
    margin-right: 8%;
    margin-left: auto;
}

.big_popup h1 {
    color: var(--big_popup-title-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 30px;
}

.big_popup button {
    background-color: var(--big_popup-button-background-color);
    color: var(--big_popup-button-text-color);
    border-radius: 10px;
    margin-top: 20px;
    border: none;
    padding: 5px 35px 5px 35px;
    font-size: 20px;
    transition: .3s;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

/*SECRET POPUP*/

/*
.like_background_cover{
    z-index: 24;
    background-color: var(--secret-background-color);
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}*/

.sercret_page_logo {
    width: 30%;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.secret_popup {
    z-index: 25;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    background-color: var(--secret-background-color);
    opacity: 0;
}

.secret_popup h1 {
    font-size: 26px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--secret-popup-h1-color);
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-radius: 20px;
    width: 60%;
    background-color: var(--secret-popup-h1-background-color);
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.secret_popup h1::before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--secret-popup-h1-background-color);
    left: calc(-100% + 20px);
    top: 0;
    width: calc(100%);
    height: 100%;
}

.secret_text {
    color: var(--secret-popup-text-color);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 18px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.ready_wallet_step_1,
.ready_wallet_step_2 {
    width: 50%;
    max-width: none;
}

.ready_wallet_steps_cotainer {
    display: flex;
    flex-direction: row;
    width: 200%;
    max-width: none;
    transition: transform .5s ease-in-out;
}

.ready_wallet_steps_cotainer_show_step_1 {
    transform: translateX(0);
}

.ready_wallet_steps_cotainer_show_step_2 {
    transform: translateX(-50%);
}

.secret_popup_buttons_container {
    margin-top: 0;
    display: flex;
    align-items: center;
    min-height: 100px;
    width: 200%;
    transition: transform .5s ease-in-out;
}

.secret_popup_buttons_container_show_step_1 {
    transform: translateX(0);
}

.secret_popup_buttons_container_show_step_2 {
    transform: translateX(-50%);
}

.secret_popup_with_div {
    display: flex;
    align-items: center;
    width: 25%;
    height: 100%;
}

.secret_popup_with_30_div {
    display: flex;
    align-items: center;
    height: 100%;
    width: 15%;
}

.secret_popup_with_70_div {
    display: flex;
    align-items: center;
    height: 100%;
    width: 35%;
}

.secret_popup_buttons_container button {
    height: 55%;
    width: 90%;
    border: none;
    background-color: var(--secret-button-background-color);
    color: var(--button-container-button-color);
    font-size: 25px;
    word-wrap: break-word;
    transition: .3s;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 25px;
}

.secret_popup_buttons_container .secret_popup_button_back {
    width: 90%;
    max-width: 180px;
}

.secret_popup_buttons_container button:disabled {
    background-color: var(--secret-button-disabled-color);
}

.secret_popup_button_left {
    margin-left: 0;
    margin-right: auto;
    border-radius: 0 10px 10px 0;
}

.secret_popup_button_left img {
    transform: translateX(5px);
}

.secret_popup_button_right {
    margin-right: 0;
    margin-left: auto;
    border-radius: 10px 0 0 10px;
}

.secret_page_progress_container {
    margin-top: auto;
    display: flex;
    width: 100%;
    height: 30px;
    transition: transform .5s ease-in-out;
    transform: translate(0);
}

.secret_page_progress_point {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--progress-point-color);
    border-radius: 100%;
    margin-top: 4px;
    margin-left: 10px;
    margin-right: 10px;
    transition: .5s ease-in-out;
    vertical-align: top;
}

.secret_page_big_point {
    background-color: var(--progress-point-active-color);
    margin-top: 2px;
    width: 14px;
    height: 14px;
}

.secret_page_progress_point_left {
    margin-left: auto;
}

.secret_page_progress_point_right {
    margin-right: auto;
}



/*SuccessfulOrUnsuccessful*/

.successful_or_unsuccessful_base {
    opacity: 0;
    z-index: 20;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.succorunsucc_main_container {
    width: 100%;
    height: 100%;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
}

.succorunsucc_top_div {
    width: 100%;
    min-height: 60px;
    height: 60px;
    position: relative;
}

.succorunsucc_middle_div {
    width: 100%;
    min-height: fit-content;
    height: calc(100% - 60px - 100px);
    display: flex;
    flex-direction: column;
}

.succorunsucc_middle_div p{
    max-width: 500px;
    word-wrap: break-word;
}

.succorunsucc_bottom_div {
    display: flex;
    width: 100%;
    height: 70px;
    min-height: 100px;
}

.succorunsucc_bottom_div .succorunsucc_exit_btn {
    border-radius: 10px;
    border: none;
    background-color: var(--succorunsucc-popup-exit-btn-color);
    width: fit-content;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--succorunsucc-popup-exit-btn-text-color);
    padding: 10px 25px 10px 23px;
    height: fit-content;
    font-size: 20px;
    transition: .2s;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.succorunsucc_bottom_div .succorunsucc_cancel_btn,
.succorunsucc_bottom_div .succorunsucc_retry_btn {
    height: 55%;
    width: 45%;
    max-width: 400px;
    border: none;
    background-color: var(--succorunsucc-popup-exit-btn-color);
    transition: .2s;
    color: var(--succorunsucc-popup-exit-btn-text-color);
    font-size: 20px;
    word-wrap: break-word;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.succorunsucc_bottom_div .succorunsucc_cancel_btn {
    margin-left: 0;
    margin-right: auto;
    border-radius: 0 10px 10px 0;
    max-width: none;
    height: 60%;
    margin-top: 15px;
    margin-bottom: auto;
}

.succorunsucc_bottom_div .succorunsucc_retry_btn {
    margin-right: 0;
    margin-left: auto;
    border-radius: 10px 0 0 10px;
    max-width: none;
    height: 60%;
    margin-top: 15px;
    margin-bottom: auto;
}

.succorunsucc_main_container .succorunsucc_middle_div img {
    width: 80%;
    max-width: 150px;
    margin: auto;
    transform: translateY(-15px);
}

.succorunsucc_main_container h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 28px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 80%;
    text-align: center;
}

.succorunsucc_main_container p {
    color: var(--succorunsucc-popup-text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 80%;
    text-align: center;
    margin-bottom: auto;
}

.succorunsucc_link{
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
}

/*PASSWORD*/
.popup_pin_container {
    z-index: 24;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
}

.popup_pin_inp {
    background-color: var(--pin-popup-inp-background-color);
}

/* WALLET SELECTOR POPUP*/

.close_wallet_selector_popup{
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #00000000;
    border: none;
    width: 20px;
    height: 20px;
    padding: 0;
}

.close_wallet_selector_popup img{
    width: 100%;
    height: 100%;
}

.fullscreen_popup{
    z-index: 40;
    position: absolute;
    background-color: var(--fullscreen_popup-background-color);
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*ASK PAYMENT PASSWORD POPUP*/
.payment_password_popup input[type=password] {
    display: block;
    width: 80%;
    max-width: 300px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
    background-color: var(--payment-password-input-background-color);
    border: 1px solid var(--payment-password-input-border-color);
    color: var(--payment-custom-amount-input-text-color);
    font-size: 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.payment_password_popup input[type=checkbox] {
    margin: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    min-width: 16px;
    min-height: 16px;
    accent-color: var(--checkbox-background-color);
    vertical-align: -2px;
}

.payment_password_popup label {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

.payment_password_popup button {
    display: block;
    margin: auto;
    margin-top: 20px;
}

/*PAYMENT POPUP ()*/

.payment_popup {
    z-index: 18;
    display: flex;
    position: absolute;
    flex-direction: column;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--payment-background-color);
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    overflow-x: hidden;
}

.payment_top_container {
    position: relative;
    height: 50px;
}

.payment_middle_container {
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    height: calc(100% - 50px - 100px);
}

.payment_bottom_container {
    height: 100px;
}

.value_interval_text {
    font-size: 15px;
    margin-top: -5px;
    margin-bottom: 10px;
    color: var(--payment-interval-text-color);
    font-family: 'Roboto Condensed', sans-serif;
}

.laddress_text {
    font-size: 15px;
    margin-top: -5px;
    margin-bottom: 10px;
    color: var(--payment-interval-text-color);
    font-family: 'Roboto Condensed', sans-serif;
}

.lnaddress_onpay {
    display: inline-block;
    word-break: break-all;
    color: var(--payment-lnaddress-text-color);
}

.our_fee {
    font-family: 'Montserrat', sans-serif;
}

.user_balance_text {
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: var(--payment-custom-user-balance-text-color);
}

.custom_input_about {
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: var(--payment-custom-input-about-text-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.user_balance_sats {
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: var(--payment-custom-user-balance-text-color);
}

.user_balance_amount {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 30px;
    color: var(--payment-custom-user-balance-amount-color);
}

.payable_amount {
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--payment-custom-payable-amount-title-color);
    background-color: var(--payment-custom-payable-amount-title-background-color);
    padding: 10px 20px 10px 20px;
    max-width: 300px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.payable_amount::before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--payment-custom-payable-amount-title-background-color);
    left: calc(-10000% + 20px);
    top: 0;
    width: 10000%;
    height: 100%;
}

.payment_popup input {
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
    background-color: var(--payment-custom-amount-input-backgeound-color);
    border: 1px solid var(--payment-custom-amount-input-border-color);
    color: var(--payment-custom-amount-input-text-color);
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.payment_popup textarea {
    position: relative;
    width: 100%;
    padding: 5px 10px 5px 10px;
    transform: translateX(-10px);
    border-radius: 10px;
    background-color: var(--payment-custom-amount-comment-backgeound-color);
    border: 1px solid var(--payment-custom-amount-textarea-border-color);
    color: var(--payment-custom-amount-textarea-text-color);
    font-size: 16px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    line-height: 20px;
    height: 60px;
    resize: none;
}

.payment_popup input:focus,
.payment_popup textarea:focus {
    outline: 1px solid var(--payment-custom-amount-input-outline-color);
}

.payment_popup input:read-only {
    outline: none;
}

.comment_container {
    height: fit-content;
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.comment_length {
    display: block;
    position: relative;
    color: var(--payment-custom-comment-length-count-color);
    background-color: var(--payment-custom-amount-comment-backgeound-color);
    width: fit-content;
    margin-left: auto;
    padding: 0 5px 0 5px;
    font-size: 14px;
    bottom: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

.payment_popup textarea:focus+.comment_length {
    color: var(--payment-custom-amount-input-outline-color);
}

.payment_container {
    margin: auto;
    width: 80%;
    flex-direction: column;
}

.payment_button_container {
    display: flex;
    align-items: center;
    height: 100px;
}

.payment_button_container button {
    height: 60%;
    width: 45%;
    border: none;
    background-color: var(--primary-color);
    color: var(--button-container-button-color);
    font-size: 25px;
    word-wrap: break-word;
    margin-top: 15px;
    margin-bottom: auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition: .3s;
}

.payment_cancel_btn_span {
    color: var(--payment-cancel-button-span-color);
}

.payment_button_container .button_left {
    margin-left: 0;
    margin-right: auto;
    border-radius: 0 10px 10px 0;
    background-color: #00000000;
    border: 1px solid var(--primary-color);
}

.payment_button_container .button_done {
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    color: var(--button-container-button-color);
    border: none;
}

.payment_button_container .button_right {
    margin-left: auto;
    margin-right: 0;
    border-radius: 10px 0 0 10px;
}

.pay_btn:disabled {
    background-color: var(--receive-button-disabled-color);
}

.loader {
    width: 100%;
    display: block;
    height: 150px;
    margin: auto;
    background: rgba(0, 0, 0, 0);
    position: relative;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    animation:
        spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}

.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) {
    animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
    animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
    animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
    animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
    animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: var(--payment-loader-color);
    height: 90px;
    width: 90px;
    top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
    border-color: var(--payment-loader-color);
    height: 76px;
    width: 76px;
    top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
    border-color: var(--payment-loader-color);
    height: 62px;
    width: 62px;
    top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
    border-color: var(--payment-loader-color);
    height: 48px;
    width: 48px;
    top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
    border-color: var(--payment-loader-color);
    height: 34px;
    width: 34px;
    top: 35px;
}

.secret_text {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    margin-top: 30px;
}

.secret_text b {
    color: var(--secret-popup-text-bold-color);
}

.secret_code {
    color: var(--secret-code-text-color);
    background-color: var(--secret-code-background-color);
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 5px 30px 5px 30px;
    word-break: break-all;
    border-radius: 10px;
    width: fit-content;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    text-align: center;
}

.secret_copy {
    margin-top: 50px;
    font-size: 17px;
}

.loading_screen_container {
    opacity: 1;
    z-index: 21;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--loading-backgound-color);
    transition: 0;
}

.loading_div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
}

.wallet_selector_popup_container{
    margin-top: 50px;
    padding-bottom: 50px;
}

/*NOTIFICATION*/
.notification_container{
    z-index: 50;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(95% - 40px);
    max-width: 500px;
    padding: 20px;
    background-color: var(--notification-background-color);
    border-radius: 20px;
    box-shadow: 0px 5px 13px 5px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.notification_container span{
    color: var(--notification-text-color);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 20px;
}

.notification_container div{
    padding-left: 10px;
    margin-left: auto;
}

.notification_container button{
    display: block;
    padding: 5px;
    background-color: var(--notification-close-button-color);
    border: none;
    border-radius: 10px;
    width: 30px;
    height: 30px;
    transition: .3s;
}

.notification_container button img{
    width: 100% ;
}

.disabled{
    cursor: default;
    background-color: var(--primary-disabled-color) !important;
}

@keyframes spin {

    0%,
    15% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

@media only screen and (min-width: 1000px) {
    .secret_popup_buttons_container button {
        max-width: 400px;
        border-radius: 10px;
    }

    .secret_popup_buttons_container .secret_popup_with_30_div {
        width: calc(25% - 300px);
    }

    .secret_popup_buttons_container .secret_popup_with_70_div {
        width: calc(25% + 300px);
    }

    .secret_popup_buttons_container .secret_popup_button_back {
        width: 100px;
    }

    .secret_popup_buttons_container .secret_popup_button_confirm {
        max-width: 700px;
    }

    .secret_popup_button_right {
        margin-left: 30px;
        margin-right: auto;
    }

    .secret_popup_button_left {
        margin-right: 30px;
        margin-left: auto;
    }

    .payment_button_container .button_left {
        border-radius: 10px !important;
        max-width: 400px !important;
        margin-left: auto;
        margin-right: 5%;
    }

    .payment_button_container .button_done {
        max-width: 400px !important;
    }

    .payment_button_container .button_right {
        border-radius: 10px !important;
        max-width: 400px !important;
        margin-right: auto;
        margin-left: 5%;
    }

    .succorunsucc_bottom_div .succorunsucc_cancel_btn {
        border-radius: 10px !important;
        max-width: 400px !important;
        margin-left: auto;
        margin-right: 5%;
    }

    .succorunsucc_bottom_div .succorunsucc_retry_btn {
        border-radius: 10px !important;
        max-width: 400px !important;
        margin-right: auto;
        margin-left: 5%;
    }
}

@media only screen and (min-width: 900px) {
    .secret_popup h1 {
        width: 40%;
    }
}

@media (hover) {
    .disabled:hover {
        cursor: default;
        background-color: var(--primary-disabled-color) !important;;
    }

    .succorunsucc_bottom_div button:hover {
        cursor: pointer;
        background-color: var(--succorunsucc-popup-exit-btn-hover-color);
    }

    .big_popup button:hover {
        cursor: pointer;
        background-color: var(--big_popup-button-hover-color);
    }

    #cancel_payment:hover {
        background: var(--payment-popup-cancel-btn-hover-color)
    }

    .pay_btn:disabled:hover {
        background-color: var(--receive-button-disabled-color);
    }

    .secret_popup_buttons_container button:hover {
        background-color: var(--secret-button-hover-color);
    }

    .secret_popup_buttons_container button:disabled:hover {
        background-color: var(--secret-button-disabled-color);
    }

    .payment_button_container .button_left:hover {
        background-color: var(--payment-done-button-hover-color);
    }

    .notification_container button:hover{
        background-color: var(--notification-close-button-hover-color);
    }

    .hover_poiner:hover{
        cursor: pointer;
    }
}

@media only screen and (min-height: 600px) {
    .payable_amount {
        margin-top: 30px;
    }

    .custom_input_about {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-height: 530px) {
    .payment_popup input {
        font-size: 25px;
    }

    .payment_popup textarea {
        height: 40px;
    }
}

@media only screen and (min-width: 350px) {
    @media only screen and (min-height: 600px) {
        .payable_amount {
            font-size: 23px;
        }
    }
}

@media only screen and (max-width: 290px) {
    @media only screen and (max-height: 580px) {
        .payable_amount {
            font-size: 17px;
        }
    }

    .payment_popup input {
        font-size: 25px;
    }

    .payment_popup textarea {
        height: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .popup_yes_button {
        margin-left: 5%;
    }

    .popup_no_button {
        margin-right: 5%;
    }
}

@media only screen and (max-width: 500px) {
    .secret_popup .button_with_img span {
        font-size: 20px;
    }

    .secret_popup .button_with_img img {
        width: 25px;
        height: 25px;
    }
}

@media only screen and (max-width: 450px) {

    .popup_yes_button,
    .popup_no_button {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .popup_yes_button {
        margin-left: 3%;
    }

    .popup_no_button {
        margin-right: 3%;
    }
}

@media only screen and (max-width: 420px) {
    .secret_popup .button_with_img span {
        font-size: 18px;
    }

    .secret_popup .button_with_img img {
        width: 20px;
        height: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .secret_text {
        width: 80%;
    }

    .payment_button_container .button_with_img span{
        font-size: 20px;
    }

    .secret_popup_buttons_container button {
        font-size: 20px;
    }
}

@media only screen and (max-width: 360px) {
    .secret_popup .button_with_img span {
        font-size: 16px;
    }

    .payment_button_container .button_with_img span{
        font-size: 18px;
    }
    
    .secret_popup .button_with_img img {
        width: 18px;
        height: 18px;
    }
}

@media only screen and (max-width: 320px) {

    .popup_yes_button,
    .popup_no_button {
        font-size: 15px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .payment_button_container .button_with_img span{
        font-size: 16px;
    }

    .secret_popup_buttons_container button {
        font-size: 15px;
    }
}

@media only screen and (max-width: 270px) {}