:root {
    --kAbissal: #122C34;
    --kOceano: #224870;
    --kAgua: #02a6C7;
    --kAmbar: #FFC857;
    --kBege: #FEFFEA;
}

body {
    height: calc(100vh - 14%);
    background-image: linear-gradient(to top, var(--kOceano), var(--kAgua));
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 7%;
    padding-bottom: 7%;
}

body.erro{
    background-image: none;
    background-color: var(--kAbissal);
    color: var(--kAbissal);
    flex-direction: column;    
}

body.erro a{
    text-decoration: none;
    color: var(--kAbissal);
}

#cliqueErro{
    cursor: pointer;
    color: var(--kAgua);
}

.titulo {
    text-align: center;
    margin-top: 2vh;
    font-size: 2vw;
}

.tituloDivisor {
    text-align: left;
    margin-top: 1.5rem;
    margin-left: 2rem;
    font-size: 1.3vw;
	background: var(--kAbissal);
	color: white;
    border-radius: -10%;
    padding: 0.3rem;
    border-radius: 7px;
}

.tela {
    min-width: 70vw;
    height: auto;
    padding: 0.5vh;
    border-radius: 10px;
    background-color: white;
    text-align: left;
    font-size: 1vw;
    position: relative;        
    max-width: 90vw;
    overflow-x: auto;
    align-self: center;
}

textarea{
    font-size: 1.1vw;
}

.aviso,
.recado {

    position: fixed;
    top: 2%;
    right: 1%;
    border-radius: 10px;
    width: 15vw;
    padding: 0.4vh;
    text-align: center;
    font-weight: 700;
    font-size: 1.1vw;
    z-index: 10;
}

.aviso {
    background-color: rgb(245, 227, 62);
    color: black;
}

.recado {
    background-color: rgb(62, 245, 93);
    color: black;
}


@keyframes pulse {
    0% {
        transform: scale(0.15);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: rgba(95, 95, 95, 0.7);
}

.loader {
    display: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1ee7dd;
    z-index: 10;
    animation: pulse 1s infinite linear;
}

.false-button {
    border-radius: 12px;
    box-shadow: transparent 0 0 0 3px, rgba(18, 18, 18, .1) 0 6px 20px;
    box-sizing: border-box;
    color: var(--kAbissal);
    display: block;
    font-size: 1vw;
    font-weight: 700;
    line-height: 1;
    margin: 1vh 1vw 1vw 1vw;
    padding: 1.5vh 1.3vw;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
}

.false-button.add {
    background-color: var(--kAmbar);
}

.false-button.devendo {
    background-color:#ec4949;
}

.false-button.conferencia {
    background-color:#6df86d;
}

div:has( > .false-button)  {
    display: flex; 
    justify-content: end;
}

::selection {
    color: rgb(255, 255, 255);
    background: var(--kOceano);
}
.column {
	display: flex;
	justify-content: space-around;
}