/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */



/* Subscriptiob popup */

.input_wrapper fieldset {
    padding: 10px;
    position: relative;
    border-radius: 10px;
    border: 2px solid #1e3a8a;
    margin: 44px 0;
    background: #eb88956e;
}

.input_wrapper label.up_label {
    position: absolute;
    top: -28px;
    background: white;
    padding: 0px 10px;
}

.subscription_popup {
    border-radius: 10px;
    z-index: 9999999;
    gap: 10px;
    display: flex;
    overflow: hidden;
    background: white;
    width: 100% !important;
}

.subscription_popup img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.subscription_popup .sub_left_col {
    display: flex;
    flex: 0 0 45%;
    padding: clamp(0.4rem, 1vw, 3rem);
    flex-direction: column;
    justify-content: center;
}

div#preview_popup {
    z-index: 9999;
    padding: 0;
    border-radius: 10px !important;
    background: white !important;
}

.subscription_popup .fields {
    width: 100% !important;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
}

.sub_left_col h2 {
    font-weight: 900;
    margin: 20px 0 !important;
    font-size: clamp(1rem, 1.8vw, 4rem);
    line-height: clamp(1rem, 1.8vw, 4rem);;

}

.subscription_popup .sub_left_col label {
    font-size: clamp(0.6em, 1.2vw, 2em);
    margin: 0;
    line-height: clamp(0.6em, 2vw, 3em);
    color: black !important;
    font-weight: 600;
}

p.message {
    margin: clamp(0.3rem, 1vw, 2rem);
}

.subscription_popup input {
    font-size: clamp(0.6em, 1.2vw, 2em);
    border: 1px solid #cacaca;
    border-radius: 10px !important;
    line-height: 20px !important;
    padding: clamp(0.6em, 0.4vw, 1em) !important;
}

.sub_privacy label {
    line-height: clamp(1.3em, 1.2vw, 3em) !important;
    font-size: clamp(0.6em, 1vw, 2em) !important;
}


.fields.sub_privacy {
    flex-direction: row;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
}

.fields.sub_privacy input {
    padding: 0px !important;
    border-radius: 0px !important;
}

input#sub_btn {
    background: black;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px !important;
}

input#sub_btn:hover {
    border: 2px solid black;
    background: transparent;
    color: black !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: 0.5s ease all;
}

/* End Subscriptiop popup */

@media (max-width: 767px) {

    .instant_overlay {
        padding: 0px;
    }

    .subscription_popup {
        width: 100% !important;
        flex-direction: row;
    }

    .sub_left_col h2 {
        
        margin: 10px 0 !important;
    }

    .subscription_popup .sub_left_col {
        padding: 10px;
        overflow: auto;
        width: 100%;
    }

    .intant-popup-type-subscription {
        width: 95% !important;
    }

    .subscription_popup input#sub_btn {
        width: 100%;
        padding: 4px !important;
    }
    .sub_privacy label {
        font-size: 10px !important;
    }

    .intant-popup-type-subscription i:before {

        color: black;
    }
    .subscription_popup .sub_left_col .firtlabel, .subscription_popup .sub_left_col .emaillabel {
        line-height: 24px !important;
    }
}