﻿.modal {
    background: rgba(0, 0, 0, .325);
}

    .modal.show {
        animation: fadeIn;
        animation-duration: .15s;
        animation-fill-mode: both;
    }

    .modal.showFadeInDown {
        animation: fadeIn;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

.modal-content {
    border: 0 solid rgba(0,0,0,.2);
    border-radius: .6rem;
}

.modal-body {
    padding: 0px;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 0.1em;
}


.modal-header {
    display: flex;
    height: 48px;
    background: var(--primary-color) !important;
    font-size: 1em;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
    color: var(--text-color-white);
    font-variation-settings: 'wght' 600, 'GRAD' 400;
    font-weight: 600;
}

.modal-title {
    flex: 1;
}

.modal-close {
    flex: 0;
    min-width: 30px;
}

    .modal-close a {
        text-decoration: none;
        cursor: pointer;
    }

    .modal-close > a > i {
        font-size: 1.1em;
        color: var(--text-color-white);
    }

        .modal-close > a > i:hover {
            color: var(--primary-color-120);
        }

.modal-body {
    padding: 0.8em 1em;
    /*display: flex;*/
    /*min-height: 200px !important;*/
    max-height: 75vh;
    background: #fff !important;
    overflow-x: hidden;
}


.custom-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 70px;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.modal-mdlg {
    max-width: 700px !important;
}

.custom-large-modal-1500 {
    width: 1500px !important;
    max-width: 95% !important;
}

.custom-large-modal-table .content-card {
    flex: 1;
}

.disable-modal {
    pointer-events: none;
    opacity: 0.7;
}