/* RCI */

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track:enabled { background-color: lightGray; }
::-webkit-scrollbar-thumb:vertical { background-color: lightGray; }
::-webkit-scrollbar-thumb:horizontal { background-color: lightGray; }

body {
    font-size: 11pt;
    font-family: Calibri, Arial, sans-serif;
    color: #696969;
    background-color: #F5E2D0;
    margin: 0 11px;
    /* border: 1px solid blue; */
}

.fm {
    font-size: 10pt;
}

.ms {
    font-family: monospace;
}

.azul {
    color: blue;
}

.amarelo {
    color: yellow;
}

.vermelho {
    color: red;
}

.negrito {
    font-weight: bold;
}

.aviso {
    background-color: lightgoldenrodyellow;
}

.erro {
    background-color: lightcoral;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    /* padding-bottom: 20px; */
    background-color: #F5E2D0;
    /* border: 1px solid red; */
}

.menu {
    position: sticky;
    width: 100%;
    top: 0;
    margin-bottom: 5px;
    z-index: 500;
}

.item {
    margin-bottom: 7px;
}

.span2 {
    grid-column: span 2;
}
.span3 {
    grid-column: span 3;
}
.span4 {
    grid-column: span 4;
}

.ae {
    text-align: left;
}
.ac {
    text-align: center;
}
.ad {
    text-align: right;
}

.menu-footer {
    position: sticky;
    bottom: 0;
    padding-bottom: 10px;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 501;
}

.menu-footer button {
    margin-top: 10px;
    margin-right: 20px;
}
.menu-footer button:last-child {
    margin-right: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

input, select, textarea {
    width: 100%;
    padding: 7px;
    font-size: 12pt;
    color: rgb(80, 80, 80);
    border-radius: 5px;
    border-style: none;
    box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.3);
    box-sizing: border-box;
}        
.ir {
    font-size: 12pt;
    /* color: rgb(80, 80, 80); */
    background-color: rgb(225, 225, 225);
    /* cursor: not-allowed; */
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    box-shadow: none;
    cursor: pointer;
}

.configIcon {
    width: 25px;
    height: 25px;
    margin-top: 13px;
    margin-right: 8px;
}

.botao {
	width: auto;
	height: auto;
    margin-top: 10px;
    margin-right: 13px;
    background-color: rgb(225, 225, 225);
    cursor: pointer;
}

.botao:disabled {
    color: rgb(140, 140, 140);
    background-color: rgb(250, 250, 250);
    cursor: not-allowed;
}

.botao:last-child {
    margin-right: 0;
}

.alerta {
    position: fixed;
    top: 20%;
    left: 50%;
    width: 90%;
    max-width: 300px;
    transform: translate(-50%, -50%);
    text-align: center;
    background: white;
    border: 1px solid #999;
    border-radius: 10px;
    box-shadow: 0px 0px 33px 6px rgba(0,0,0,0.7);
    padding: 10px;
    z-index: 1000;
}

.TelaCopiaEmail {
    position: absolute;
    top: 0;
    width: 200%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1000;
}