.unsubscribe__btn__box .btn__round {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #ffffff;
}

.unsubscribe__btn__box button span {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.unsubscribe__btn__box {
    display: inline-block;
}

.unsubscribe__btn__box button,.unsubscribe__btn__box button:hover {
    width: 100%;
    display: flex;
    padding: 5px;
    align-items: center;
    border-radius: 100px;
    background: #104378 !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: none;
    border: 0px;
    min-width: 205px;
    justify-content: end;
    cursor: pointer;
    margin-top: 40px;
    outline: none;
}

.unsubscribe__btn__box button .btn__cover {
    display: flex;
    align-items: center;
    gap: 24px;
}

.unsubscribed__popup {
    display: none;
}

.unsubscribed__popup * {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.unsubscribed__popup .popup__wrapper {
    display: flex;
    width: 460px;
    padding: 50px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-direction: column;
    text-align: center;
    border-radius: 16px;
    background: linear-gradient(158deg, #FFF 6.01%, #FFF 23.43%, #B1CFEE 93.99%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.unsubscribed__popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 99;
}

.unsubscribed__popup .popup__wrapper .popup__img__wrap {
    line-height: 0px;
    margin-bottom: 50px;
}

.unsubscribed__popup .popup__wrapper h3.title {
    color: #0D2544;
    text-align: center;
    font-family: Kaisei Decol;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.unsubscribed__popup .popup__wrapper .popup__description {
    color: #311613;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 540px) {
    .unsubscribed__popup .popup__wrapper {
        width: 90%;
        padding: 30px;
    }

}

@media only screen and (max-width: 400px) {
    .unsubscribed__popup .popup__wrapper {
        width: 90%;
        padding: 20px;
    }

    .unsubscribed__popup .popup__wrapper .popup__img__wrap {
        margin-bottom: 25px;
    }

    .unsubscribed__popup .popup__wrapper h3.title {
        margin-bottom: 15px;
    }

    .unsubscribed__popup .popup__wrapper .popup__description {
        margin-bottom: 25px;
    }

}

/*--------------
Thank you Popup
----------------*/

.thank__you__popup {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index:9;
}

.thank__you__popup .popup__wrapper {
    border-radius: 16px;
    background: linear-gradient(158deg, #fff 6.01%, #fff 23.43%, #b1cfee 93.99%);
    display: flex;
    width: 460px;
    padding: 50px;
    align-items: center;
    gap: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    box-sizing: border-box;
}

.thank__you__popup .popup__wrapper h3.title {
    color: #0D2544;
    text-align: center;
    font-family: Kaisei Decol;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin: 0px;
}

.default__popup__btn {
    display: inline-block;
}

.default__popup__btn a {
    display: flex;
    padding: 12px 60px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #104378;
    color: #ffffff;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    border: 1px solid #104378;
    transition: all ease 300ms;
}

.default__popup__btn a:hover {
    background-color: #ffffff;
    color: #104378;
}

@media only screen and (max-width: 540px) {
    .thank__you__popup .popup__wrapper {
        width: 90%;
        padding: 30px;
        gap: 25px;
    }

}

@media only screen and (max-width: 400px) {
    .thank__you__popup .popup__wrapper {
        width: 90%;
        padding: 20px;
        gap: 20px;
    }

}

/*--------------
Thank you Popup
----------------*/

.unsubscribe__form__wrapper * {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.unsubscribe__form__wrapper .option__list__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.unsubscribe__form__wrapper [type="radio"]:checked,
.unsubscribe__form__wrapper [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.unsubscribe__form__wrapper [type="radio"]:checked+label,
.unsubscribe__form__wrapper [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    display: inline-block;
    color: #3A5069;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.unsubscribe__form__wrapper [type="radio"]:checked+label:before,
.unsubscribe__form__wrapper [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #104378;
    border-radius: 100%;
    background: #fff;
}

.unsubscribe__form__wrapper [type="radio"]:checked+label:after,
.unsubscribe__form__wrapper [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #104378;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.unsubscribe__form__wrapper [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.unsubscribe__form__wrapper [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.unsubscribe__form__wrapper .option__list__wrapper .other__custom__option {
    width: 100%;
}

.unsubscribe__form__wrapper .option__list__wrapper .other__custom__option textarea {
    display: flex;
    padding: 18px 12px;
    align-items: flex-start;
    border-radius: 8px;
    border: 1px solid #111610;
    color: #9093ab;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    min-height: 98px;
    width: 100%;
}


.unsubscribe__form__wrapper * {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.cffp_unsubscribe_reason_error {
    display: block;
    margin: 10px 0px;
    color: red;
    font-size: 14px;
    line-height: 1.3;
}


.unsubscribed__popup .close__btn {
    max-width: 30px;
    line-height: 0px;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px;
    border: 1px solid #333333;
    border-radius: 5px;
}
.unsubscribed__popup.closed__popup {
    display: none !important;
}




.cffp_footer_email_form_outer {
    position: relative;
}

.cffp_footer_email_form_outer label {
    display: none;
}

.cffp_footer_email_form_outer .cffp_footer_email {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #fff;
    background: #fff;
    padding: 12px 172px 12px 12px;
    color: #515456;
    font-family: Libre Franklin;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.35;
    height: 76px;
}

.cffp_footer_submit_button_outer button.cffp_footer_submit_button {
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #1296ad;
    color: #fff;
    text-align: center;
    font-family: Libre Franklin;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.35;
    border: 0px;
    max-width: 151px;
    width: 100%;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0px, -50%);
}