.modal-content {
    border-radius: 16px;
    padding: 32px;
}

.modal-header,
.modal-body,
.modal-footer {
    padding: 0;
}

.modal-header {
    padding-bottom: 32px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}


/* #region MARK: Fullscreen modal */
@media (max-width: 576px){
    
    .modal-fullscreen-xs {
        padding: 0 !important;
    }
    
    .modal-fullscreen-xs.modal-dialog {
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    
    .modal-fullscreen-xs .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    
    .modal-fullscreen-xs .modal-body {
        overflow-y: auto;
    }
}
/* #endregion Fullscreen modal */
