@charset "UTF-8";

.remodal-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
}

@media screen and (max-width: 767px) {
    .remodal-wrapper {
        padding: 0 1.5rem !important;
    }
}

.remodal-wrapper .remodal {
    background-color: #fff;
    padding: 3rem !important;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #888888;
}

@media screen and (max-width: 767px) {
    .remodal-wrapper .remodal {

        padding: 2rem !important;
        padding-top: 3rem !important;
    }
}

.remodal-wrapper .remodal .closeBtn {
    background-color: #fff !important;
    color: #005baa;
    font-size: 40px;
    line-height: 40px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
}



.remodal-wrapper .remodal .closeBtn:hover {
    opacity: 0.8;
}

.remodal-wrapper .remodal p.noteTxt {
    margin-bottom: 30px;
}

.remodal-wrapper .remodal a {
    width: 60%;
    color: #fff;
    border-radius: 5rem;
    padding: 0;

}

@media screen and (max-width: 767px) {
    .remodal-wrapper .remodal a {
        width: 80%;
    }
}

.remodal-wrapper .remodal a.remodal-confirm {
    background-color: #005baa;
    margin-bottom: 20px;
}

.remodal-wrapper .remodal a.remodal-cancel {
    background: #A8A8A8;
}