/* start style Modal */

.modal-div {
    display: block;
    position: fixed;
    z-index: 500;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-div-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 0;
    width: 80%;
    border-radius: unset;
    box-shadow: unset;
}

.modal-label {
    float: left;
}

.modal-close-button {
    margin: auto;
    width: 100%;
    text-align: center !important;
    display: inline-block;
    line-height: 1em;
    background-color: #01689b;
    margin-top: 30px;
    color: #ffffff;
    font-size: 1.125rem;
    cursor: pointer;
    height: 46px;
    border: 0;
}

    .modal-close-button:focus {
        outline: 2px dotted #000;
        outline-offset: -1px;
        -webkit-box-shadow: inset 0 0 0 2px #fff;
        box-shadow: inset 0 0 0 2px #fff;
    }

/* Clear floats */
.modal-div-button::after {
    content: "";
    clear: both;
    display: table;
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1024px) {
    .modal-div {
        display: none !important;
    }
}

/* end style Modal */