﻿
.nmodal-overlay {
}

.nmodals-container {
    position: relative;
}

    .nmodals-container > div {
        position: fixed;
        z-index: 5000;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: rgba(0,0,0,0.2);
        left: 0;
        top: 0;
        z-index: 5050;
    }

.nmodal {
    background-color: var(--c-zinc-800);
    border: 2px solid var(--c-zinc-600);
    border-radius: 4px;
    min-width: 450px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    margin-bottom: 50px;
    display:table;
    color: white !important; 
}

.nmodal-header {
    background-color: var(--c-zinc-900);
    padding: 12px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid var(--c-zinc-600);
}

    .nmodal-header > div {
        display: inline-block;
        vertical-align: middle;
    }

        .nmodal-header > div:first-child {
            width: calc(100% - 30px);
        }

            .nmodal-header > div:first-child > label {
                font-size: 18px;
                font-weight: 500;
            }

        .nmodal-header > div:last-child {
            width: 25px;
        }

            .nmodal-header > div:last-child > button {
                width: 25px;
                height: 25px;
                border: 1px;
                background-color: transparent;
                cursor: pointer;
                border: 1px solid rgb(138, 138, 138);
                color: rgb(138, 138, 138);
                border-radius: 100px;
                font-size: 11px;
                outline: none;
            }

                .nmodal-header > div:last-child > button:active {
                    outline: none;
                }

                .nmodal-header > div:last-child > button:hover {
                    border: 1px solid rgb(121, 121, 121);
                    color: rgb(108, 108, 108);
                    background-color: rgb(229, 229, 229);
                }

.nmodal-body {
    padding: 16px;
}
