/* https://www.w3schools.com/howto/howto_css_modals.asp */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_modal */
/* The Modal (background) */

.modal {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 0.98em;
    position: fixed;
    padding-top: 66px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Fallback color */
    background-color: rgb(0, 0, 0);
    /* Black w/ opacity */
    /* background-color: rgba(0, 0, 0, 0.1); */
    /* Sit on top */
    z-index: 110;
    display: none;
}

.modal02-content {
    background-color: #fafafa;
    color: #000;
    margin: auto;
    padding: 40px;
    border: 2px solid #007a9c;
    /* border-top: 18px solid #007a9c; */
    border-radius: 20px;
    line-height: 1.4;
    width: 90%;
    z-index: 120;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    /* -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19); */
}

.modal02-content h2 {
    color: #000;
    /* font: 600 clamp(65px, 10.7vw, 100px)/1.0 "Space Grotesk"; */
    font-weight: bold;
    font-size: 40px;
    line-height: 1.4;
    text-align: center;
}

.modal02-content h3 {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.modal02-content h4 {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.modal02-content p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

.close {
    color: black;
    /* color: #aaaaaa; */
    font-size: 30px;
    font-weight: 600;
    padding-top: 5px;
    float: right;
}

.close:hover, .close:focus {
    color: #007a9c;
    text-decoration: none;
    cursor: pointer;
}

#close01, #close02 {
    margin-top: -40px;
    margin-right: -10px;
}

#modal01-button-container {
    float: right;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

#btnCancel {
    margin-left: 10px;
}

/* #btnOK, #btnCancel, #btnApply { */
#btnOK, #btnCancel {
    float: right;
    background: transparent;
    border: 2px solid #0097d6;
    color: #fff;
    /* color: #202020; */
    font-weight: 400;
    font-size: .90em;
    letter-spacing: 0.8px;
    height: 40px;
    width: 120px;
    /* padding: 8px 24px; */
    border-radius: 20px;
    cursor: pointer;
}

/* #btnCancel:hover, #btnOK:hover, #btnApply:hover { */
#btnCancel:hover, #btnOK:hover {
    border-radius: 30px;
    background-image: linear-gradient(to right bottom, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    /* color: #fff;  COMMENT OUT ONLY FOR DARK BACKGROUNDS */
}

/* #btnOK:active, #btnCancel:active, #btnApply:active { */
#btnOK:active, #btnCancel:active {
    background: transparent;
}

#modal01-description {
    color: #fff;
    width: 100%;
}