@charset "UTF-8";
/*ATmodal.css ver:3.1*/

/*body {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    font-family: sans-serif;*/
/*    color: #333;*/
/*}*/

.at-section {
    margin: 50px auto;
    padding: 2em;
    width: 90%;
    /*height: 450px;*/
    background: rgb(233, 233, 233);
}
.at-section h2,
.at-section h3  {
    text-align: center;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

div.content {
    margin-bottom: 2em;
}
button.button_11 {
    display: block;
    margin: 0 auto;
}

.button_11 {
    inline-size: max-content;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: calc(10px + 4 * (100vw /1440));
    letter-spacing: 1px;
    color: #fff;
    padding: 1em 2em;
    border-radius: .25em;
    background: #3e99d8;
    border: none;
    box-shadow: 0 0 10px gray;
    -webkit-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.button_11:hover {
    color: #fff;
    background: #6d5a9d;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, .3);
    -webkit-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

/* modal windows */

@media (max-width:767px) {
    .html_fixed {
        overflow-y: hidden;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    background: #fff;
    margin: auto;
    padding: 1em;
    border: 1px solid #888;
    width: 97%;
    max-width: 768px;
    max-height: 98%;
    border-radius: 5px;
    animation-name: scaleA;
    animation-duration: .5s;
}

.modal-content>div {
    width: 100%;
    pointer-events: auto !important;
}

@media (max-width:767px) {
    .modal-content {
        max-width: 100vw !important;
        justify-content: center;
    }

    .modal-content>div {
        overflow-y: auto;
        max-width: 97vw !important;
        margin: 0 auto;
        padding: .5em;
    }
}

@media (min-width:768px) {
    .modal {
        pointer-events: auto !important;
    }

    .modal-content>div {
        overflow-y: auto;
        padding: 1em;
        pointer-events: auto !important;
    }

    .modal-content {
        height: auto;
        max-height: 90vh;
        pointer-events: auto !important;
    }
}

@keyframes scaleA {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.close {
    color: #286f99;
    font-size: 2em;
    font-weight: 600;
    pointer-events: auto !important;

}

.close:hover,
.close:focus {
    color: #ff6900;
    cursor: pointer;
    pointer-events: auto !important;
}
