@font-face {
    font-family: 'VerdanaCustom';
    src: url('../fonts/verdana.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoCustom';
    src: url('../fonts/roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ArialCustom';
    src: url('../fonts/arial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #003a2e;/* 006547 */
    font-family: 'RobotoCustom';
}

.container {
    position: absolute;
    width: 300px;
    height: 660px;
}

.pos-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 1;
    pointer-events: none;
    /* Desabilita os cliques na imagem */
}

.modal-mensage-container {
    background-color: #E57373;
    margin: 0 4px;
    height: 230px;
    position: relative;
    color: white;
    z-index: 0;
    top: 426px;
    padding: 0 10px;
    display: none;
}

.modal-mensage-container .modal-title {
    display: flex;
    align-items: center;
    padding-top: 4px;
}

.modal-mensage-container .modal-title .btn-close-modal {
    width: 22px;
    height: 20px;
    margin: 3px;
    margin-left: 180px;
    padding: 1px;
    background-color: #FFFFFF;
    font-weight: 100;
    color: #E57373;
}

.modal-mensage-container .modal-mensage {
    height: 155px;
    overflow: auto;
    font-size: 13px;
}