﻿/*Footer Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .5);
    font-family: 'Roboto';
}

.modal-content .header {
    display: flex;
    justify-content: space-between;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #ccc;
    float: unset;
    width: unset;
    height: unset;
    top: unset;
    position: unset;
}

.modal-content h3 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: bold;
}

.modal-content h4 {
    font-weight: bold;
}

.modal-content a {
    color: #0d6efd;
    text-decoration: underline;
}

.modal-content .header button {
    background: none;
    border: 0;
    font-size: 30px;
    cursor: pointer;
}

.modal-content p {
    margin-bottom: 17px;
}

.modal-content {
    background-color: #fefefe;
    margin: 9% auto 0;
    padding: 10px 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 700px;
    overflow-y: auto;
    text-align: left !important;
}

@media only screen and (max-width: 768px) {
    .modal .modal-content {
        margin: 5% auto 0;
        width: 90%;
        max-height: 90%;
    }
}


@media only screen and (max-width: 576px) {
    .modal .modal-content {
        margin: 0;
        width: 100%;
        max-height: 100%;
        height: 100%;
    }
}

/*Footer Modal*/
