/* CSS STYLES */
.clientEnrolment input {
    line-height: 1.6;
}
  
/* Popup modal */
.popup-modal-container {
    position: fixed;
    z-index: 10000;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

.popup-modal {
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 706px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.3);
    border-radius: 2px;

    max-height: 100vh;
    overflow: auto;
}

@media screen and (max-width: 767px) {
    .popup-modal-content {
        margin: 10px;
    }
}

.popup-modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.popup-modal-close {
    margin-top: 20px;
    margin-right: 20px;
}

.popup-modal-close:hover {
    cursor: pointer;
}

.popup-modal-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
}

.popup-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.popup-modal-description {
    font-size: 1.1rem;
    color: #3c3c3c;
    text-align: justify;
    width: 100%;
}

.popup-modal-buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (max-width: 474px) {
    .popup-modal-buttons {
        flex-direction: column;
    }

    .popup-modal-buttons > .button {
        margin-bottom: 10px;
        width: 90%;
    }
}

.button--wide {
    width: 200px;
}

.button--hoverable {
    cursor: pointer;
}