.modalContainer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: auto;
}

.firstModalContainer {
    background-color: rgba(0,0,0,0.5);
}

.modalsGeneralContainer {
    height: 0;
    width: 0;
}

.modalSpecidev {
    max-width: 100%;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    overflow: auto;
    animation: .3s ease-out slidein;
    box-shadow: rgba(60, 60, 60, 40%) -3px 0px 8px;
    border-radius: 0.7rem;
}

@keyframes slidein {
    from {
        transform: translateY(-2rem);
        opacity: 0.8;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.smallModal {
    min-width: 15rem;
    width: 30%;
    height: 30%;
}

.mediumModal {
    min-width: 25rem;
    width: 50%;
    height: 50%;
}

.mediumPlusModal {
    min-width: 25rem;
    width: 60%;
    height: 60%;
}

.largeModal {
    min-width: 35rem;
    width: 75%;
    height: 75%;
}

.FullScreenModal {
    min-width: 50rem;
    width: 95%;
    height: 95%;
}

.mainPopUp {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 0;
    overflow: hidden;
}

.headerPopUp {
    padding: 0.3rem;
    padding-left: 0.8rem;
    height: 2.5rem;
    width: 100%;
    background-color: var(--color-primary);
}

.bodyPopUp {
    padding: 0.8rem;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.footerPopUp {
    padding: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.backgroundMainColor {
    background-color: var(--color-primary);
}


.btn-validate-color {
    background-color: var(--btn-color-validate);
}

.btn-cancel-color {
    background-color: var(--btn-color-cancel);
}

.infoModalMessage {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: pre-line;
}

.booleanResultModalMessage {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: pre-line;
}


.mainPopUp .headerPopUp {
    color: var(--font-th-color);
}