.modal {
    display: none;
    padding: 300px;
    margin-top: 85px;
    background: rgba(0, 0, 0, 0.5);
}

.modal-row {
    height: 330px;
}

.modal-body {
    border: 1px solid #e5e5e5;
}

/* The Close Button */
.close {
    box-sizing: content-box;
    padding: 0.35rem;
    margin: 0.35rem 0;
    width: 10px;
    height: 10px;
    color: #000;
    background: url(../images/close-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: 0.3;
    float: right;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.6;

    }

@media screen and (max-width: 1200px) {
    .modal {
        padding: 100px;
    }
}

@media screen and (max-width: 768px) {
    .modal {
        padding: 10px;
    }
}