.modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
    margin: 8px auto;
    width: calc(100% - 32px);
}

.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: var(--header-bg-primary-color);
    padding: 20px 16px;
    color: var(--text-tertiary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header:before, .modal-header:after {
    display: flex;
    content: none;
}

.modal-content .close {
    font-size: 35px;
    line-height: 35px;
    opacity: 1;
    text-shadow: none;
    color: var(--text-tertiary-color);
}

@media(max-width: 768px) {
    .modal-dialog {
        min-height: calc(100vh - 20px);
    }
}