﻿/* Layout Modal mensagem */
.layout-modal-msg {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.800) !important;
    display: none;
    z-index: 10;
    font-family: var(--fonte);
    position: fixed;
}

.modal-mensagem-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-mensagem-box {
    width: 350px;
    background-color: white;
    z-index: 11;
    display: block;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
}

.modal-mensagem-box-informacao {
    margin: 10px;
}


.modal-mensagem-box-informacao h6 {
    font-weight: 300;
    color: gray;
    font-size: 1em;
}

.modal-mensagem-box button {
    width: 80px;
    height: 30px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px; 
    margin-left: 10px;
    font-weight: 500;
    color: white;
    background-color: orange;
}

.modal-mensagem-box button:hover {
    background-color: darkorange;
}