.modal {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.modal.show :before {
    display: block;
}
.modal-dialog {
    background: #fefefe;
    border: #333 solid 1px;
    border-radius: 5px;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 11;
    width: 360px;
    transform: translate(-50%, -50%);
}
.modal-dialog.big {
    width: 900px;
}
.modal-dialog .btn-close {
    color: #aaa;
    font-size: 30px;
    text-decoration: none;
    position: absolute;
    right: 5px;
    top: 0;
}
.modal-dialog .btn-close:hover {
    color: #919191;
}
.modal-body {
    padding: 20px 50px;
    font-size: 14px;
    line-height: 24px;
}
.modal-body a{
    color: #005096;
}
.modal-header,
.modal-footer {
    padding: 10px 50px;
}
.modal-header {
    border-bottom: #eee solid 1px;
}
.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #005096;
}
.modal-footer {
    border-top: #eee solid 1px;
    text-align: left;
}
.modal-footer a{
    color: #005096;
}
@media (max-width: 991.98px) {
    .modal-dialog {
        top: 0;
        left: 0;
        transform: unset;
    }
    .modal-dialog.big {
        width: 100%;
    }
}