.close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
    color: #555;
    transition: color 0.2s ease;
}

    .close-popup:hover {
        color: #000;
    }

/* Proceed Button */
.proceedBtn {
    background: #00796b;
    width: 230px;
    height: 54px;
    display: block;
    margin: 10px auto;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .proceedBtn:hover {
        background: #005f56;
    }

.disclaimerPopUpClass {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup__contentTwo {
    padding: 20px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    box-shadow: 0px 2px 16px rgba(0, 24, 26, 0.12);
    border-radius: 8px;
    overflow: hidden;
    width: 620px;
    height: auto;
}

.popup__textTwo {
    display: flex;
    flex-direction: column;
}

.proceedBtn {
    background-color: #00796b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .proceedBtn:hover {
        background-color: #005f56;
    }

/* .popUp_inner_span {} */

.popup__btn-containerTwo_Yes {
    width: 63px;
    height: 38px;
    text-align: center;
    cursor: pointer;
    background: #007983;
    border-radius: 4px;
    padding: 8px 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: white;
    float: right;
    font-weight: 600;
    margin-top: 18px;
    margin-left: 8px;
}

    .popup__btn-containerTwo_Yes:hover {
        color: #007983;
        background: transparent;
        border: 1px solid #007983;
    }

.popup__btn-containerTwo_Confirm {
    width: 130px;
    height: 38px;
    text-align: center;
    cursor: pointer;
    background: #EFF0F1;
    border: 1px solid #EFF0F1;
    border-radius: 4px;
    padding: 8px 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #AEB3B7;
    float: right;
    font-weight: 600;
    margin-top: 18px;
}

.redirectbtn {
    height: 38px;
    text-align: center;
    cursor: pointer;
    background: #E6F2F3;
    border: 1px solid #E6F2F3;
    border-radius: 4px;
    padding: 8px 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #007983;
    float: right;
    font-weight: 600;
    margin-top: 18px;
}

.redirectContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 872px;
    padding: 0 16px;
}

    .redirectContentContainer p {
        text-align: center;
    }

    .redirectContentContainer h2 {
        text-align: center;
    }


/* .popup__btn-containerTwo_Confirm:hover {
      background: #E6F2F3;
      border: 1px solid #E6F2F3;
      color: #007983;

  } */

@media only screen and (max-width: 768px) {
    .popup__contentTwo {
        width: 90%;
        padding: 30px;
        height: auto;
    }
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
    }


        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 1px solid #ddd;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:before {
            border: 1px solid #039ba9;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: #039ba9;
            position: absolute;
            top: 4px;
            left: 4px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
