.modal1 {
    max-width: 576px;
    background: white;
    transition: 1s;
}

.modal__checkbox {
    display: none;
}

.modal__checkbox:checked~div {
    visibility: visible;
    opacity: 1;
    z-index: 44;
}

.modal__label span {
    text-decoration: underline;
    cursor: pointer;
}

.modal__window {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 1s;
}

.modal__content {
    background: white;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 2334;
    left: 50%;
    border-radius: 21px;
}

.modal__close-icon {
    cursor: pointer;
    width: 1.5rem;
    margin: 0 0.5rem;
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--header-text-hover-color);
    width: 14px !important;
}

.terms_and_conditions {
    display: inline !important;
    cursor: pointer;
    color: var(--header-text-hover-color);
}

.modal-contents-terms {

    margin: 10px;
    margin-top: 30px;
}

.modal__content {
    padding: 20px;
    height: 80vh;
    overflow-y: auto;
}

.popup-label {
    font-size: 16px;
}

.agree {
    opacity: 0;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out
}

.icon-check {
    color: green;
    font-weight: bolder;
    float: right;
}

.modal.terms-conditions .modal-dialog {
    width: 80%;
    max-width: 800px;
}
