.modal-dialog {
    position: relative;
    top: 50%;
    transform: translate(0, -50%) !important;
    margin: 0 auto;
}

.modal-header::after, .modal-header::before,
.modal-footer::after, .modal-footer::before {
    display: none;
}

.modal-header, .modal-footer {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
}

.modal .btn-primary {
    background: #630e0f;
    font-weight: bold;
}

.modal .btn-primary:hover {
    background: #630e0f;
}

.modal-body {
    text-align: center;
    padding: 30px;
}

.modal-body div {
    position: relative;
    margin: 20px 0;
}

.modal-body a {
    text-decoration: none;
    color: #630e0f;
    font-weight: bold;
    padding: 15px 0;
    font-size: 24px;
}

.modal-body a:not(:first-child) {
    margin-left: 10px;
}

.modal-body a sup {
    position: absolute;
    top: 30px;
    font-size: 12px;
    margin-left: 10px;
    opacity: 0.5;
}

.modal-body .info {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
}

.modal-body .info p {
    position: relative;
    z-index: 2;
}

.modal-body .info i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 120px;
    opacity: 0.1;
}

