﻿.CadmusModalGeneral {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #00000054;
    display: flex;
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

    .CadmusModalGeneral > div {
        margin-top: 20px;
        background: white;
        border-radius: 5px;
        height: max-content;
        width: 90%;
        height: 90%;
        overflow-y: auto;
        box-shadow: 0px 0px 10px -2px black;
    }

.CadmusModalGeneralWhite {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #ffffffa6;
    display: flex;
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

    .CadmusModalGeneralWhite > div {
        margin-top: 20px;
        background: white;
        border-radius: 5px;
        height: max-content;
        overflow-y: auto;
        box-shadow: 0px 0px 10px 0px black;
    }

.CadmusModalTop {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #00000054;
    display: flex;
    top: 0;
    justify-content: center;
    z-index: 10000;
}

    .CadmusModalTop > div {
        margin-top: 20px;
        background: white;
        border-radius: 5px;
        height: max-content;
        width: 350px;
        box-shadow: 0px 0px 10px -2px black;
    }

.CadmusModalHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 5px 5px 0 0;
    position: relative;
}

    .CadmusModalHeader button {
        color: white;
        position: absolute;
        right: 15px;
        background: transparent;
        border: unset;
        cursor: pointer;
        outline: unset;
    }

    .CadmusModalHeader label {
        padding: 8px !important;
        margin: 0;
    }

.CadmusModalBody {
    padding: 25px;
    overflow: auto;
}

.CadmusModalFooter {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid silver;
    padding: 10px;
}

    .CadmusModalFooter button {
        border: unset;
        padding: 5px 10px;
        color: white;
        border-radius: 3px;
        margin-left: 10px;
        outline: unset;
        cursor: pointer;
    }
