:root {
    --cor-principal: #008d85;
    --cor-principal-clara: #01b8ae;
    --cor-principal-escura: #05665f;
    --cor-principal-acentuada: #05665f;

    --cor-fundo: #f6f9ff;
    --cor-input: rgba(0, 141, 134, 0.05);

    --cor-botao: rgb(47 47 47);

    --cor-vermelha: #8E3838;
    --cor-vermelha-clara: #db5e55;

    --cor-verde-clara: rgb(113, 223, 113);

    --cor-laranja-clara: #d68438;

    --cor-boa: #008d8685;

    --sombra: 4px 4px 5px -4px rgb(92 92 92 / 75%);
    --sombra-2: 4px 4px 5px -4px rgba(0 0 0, 0.5) inset;
    --borda: 1px solid rgba(0, 0, 0, 0.1);
    --borda-2: 1px solid rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Raleway", Arial, sans-serif;
}

main {
    padding: 1em;
    position: relative;
    top: 58px;
    min-height: calc(100vh - 120px - 58px);
    background: var(--cor-fundo);
}

h1,h2,h3,h4,h5,h6,b {
    color: #333;
}

a {
    text-decoration: none;
}

input:focus {
    outline: 3px solid transparent;
    ;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    border: 1px solid #bbb;
    border-radius: 3px;
    padding: 5px;
    font-size: 1rem;
    width: 100%;
    box-shadow: 4px 4px 5px -4px rgb(92 92 92 / 75%);
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="text"]:not(:placeholder-shown),
input[type="password"]:not(:placeholder-shown),
input[type="email"]:not(:placeholder-shown)

/* input[type="text"]:not(:-moz-placeholder-shown),
input[type="password"]:not(:-moz-placeholder-shown),
input[type="email"]:not(:-moz-placeholder-shown) */
/* input[type="text"]:not(:-ms-placeholder-shown),
input[type="password"]:not(:-ms-placeholder-shown),
input[type="email"]:not(:-ms-splaceholder-shown) */
    {
    box-shadow: 4px 4px 5px -4px rgb(0 0 0) inset;
}

hr {
    border: none;
    border-top: 1px solid #c8d1d9;
}

button {
    cursor: pointer;
    width: 100%;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 1.1rem;
    box-shadow: 4px 4px 5px -4px rgb(92 92 92 / 75%);
    color: #000;
}

button:hover,
select:hover {
    box-shadow: 4px 4px 5px -4px rgb(0 0 0) inset;
}

button[type="submit"] {
    background: var(--cor-principal-acentuada);
    color: #fff;
}

.mensagem {
    display: block;
    width: fit-content;
    border: 1px solid rgb(219, 186, 0);
    background-color: rgb(255, 242, 154);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 5px 10px;
}

.fundo-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.dialog {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    min-width: 300px;
    max-width: 600px;
    height: 90%;
    max-height: 600px;
    background: #fff;
    padding: 1.5rem;
    border: 4px solid var(--cor-botao);
    border-radius: 3px;
}

.fechar-dialog {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    padding: 0.3rem 0.8rem 0.5rem 0.9rem;
    border-radius: 0;
    border-bottom-left-radius: 50%;
    background: var(--cor-botao);
    color: #fff;
    font-size: 1.2rem;
    border: none;
}

.titulo-dialog {
    color: var(--cor-principal-acentuada);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    -webkit-animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fade-out {
    -webkit-animation: fade-out 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-out 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.result {
    position: fixed;
    top: 74px;
    right: 1em;
    color: #fff;
    border-radius: 3px;
    padding: 1em;
}

.result p {
    margin-bottom: 5px;
}

.result.result-ok {
    background: #4c924cf2;
}

.result.result-not-ok {
    background: #924c4cf2
}

.result.result-not-ok.bounce-top.identificacao{
    top: 20px !important;
}

.bounce-top {
    -webkit-animation: bounce-top 1.1s both;
    animation: bounce-top 1.1s both;
}


@-webkit-keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.slide-out-top {
    -webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-8-4 8:45:10
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
}

@keyframes slide-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    font-family: "Raleway", Arial, sans-serif;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.scrollable-place {
    height: 1000px;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}