* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri, sans-serif;
}
html{
    scroll-behavior: smooth;
}

body {
    font-weight: bold;
    background-color: #c8c8c8;
}

body::-webkit-scrollbar-track {
    background: white;     
}

body::-webkit-scrollbar {
    width: 12px;               
}

body::-webkit-scrollbar-thumb {
    background-color: #26a69a;    
    border-radius: 20px;
}

button {
    width: 140px;
    height: 70px;
    border-radius: 10px;
    border: 0;
    margin: 10px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bolder;
}

main {
    padding-top: 10px;
}

main, .backgroundForm {
    max-width: 1200px;
    width: 100vw;
    color: black;
    margin: 30px auto;
    border-radius: 25px 25px 0px 0px;
    background-color: white;
}

main h1, .backgroundForm>h1 {
    margin: 2rem 0px 0px 4rem;
    font-size: 1.8rem;
}

td {
    border: 1px solid black;
    color: black;
    text-align: center;
    font-size: 1.2rem;
    padding: 0px 15px 0px 15px;
    height: 50px;
}

thead th {
    font-size: 1.3rem;
}

#nav {
    list-style: none;
    background-color: #26a69a;
    border-radius: 25px;
    width: 450px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 50px;
    margin-left: 30px;
}
#nav li{
    padding-top: 15px;
}

#abaTabelaClientes,
#abaRelatorioPagamento{
    margin-left: 14px;
    padding: 5px 10px 5px 10px;
    color: black;
    text-decoration:none; 
    color: white;
    border: 1px solid white;
    border-radius: 25px;
    cursor: pointer;
}

.desativadoAba{
    color: black;
    background-color: white;
    border-radius: 25px;
}

.ativoAba{
    color: black !important;
    background-color: white;
    border-radius: 25px;
} 

#painelCadastro {
    height: 86vh;
    background-image: url("./imgs/estacionamento1366X766.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
}

#painelCadastro>h1 {
    color: black;
    font-size: 2.6rem;
    font-style: italic;
    padding: 5vh 0vh 6vh 0vh;
    text-align: center;
}

#cadastroCliente {
    width: 95vw;
    max-width: 1200px;
    height: 374px;
    position: relative;
    color: black;
    background-color: white;
    margin: auto;
    border-radius: 220px 0px 0px 0px;
}

#cadastroCliente>h1 {
    text-align: center;
    padding-top: 30px;
    font-size: 1.7rem;
}

#cadastroCliente>div {
    padding: 40px 66px 0px 315px;
}

#cadastroCliente input {
    display: block;
    width: 90vw;
    max-width: 500px;
    height: 30px;
    border-radius: 100px;
    border: 2px solid black;
    margin: 10px 0px 10px 0px;
    outline: none;
    padding-left: 20px;
}

#cadastroCliente input:nth-child(4) {
    width: 200px;
}

.scroll-more a{
    font-size: 1.2rem;
    color: #FFF;
    text-decoration: none;
}

.scroll-more .scroll-arrow {
    height: 24px;
    width: 24px;
    display: block;
    margin: 0 auto;
    animation: bounce 1s infinite alternate;
    transition: all 0.5s ease-out;
}

.scroll-more {
    color: white;
    text-align: center;
    cursor: pointer;
    height: 80px;
    width: 300px;
    position: absolute;
    bottom: 13%;
    left: 50%;
    margin-left: -150px;
}
.scroll-more .scroll-arrow svg {
    width: 100%;
    height: auto;
}

.scroll-more:hover i {
    transform: rotate(360deg);
    animation-play-state: paused;
}

@keyframes bounce {
    from {
        margin-top: 0;
    }

    to {
        margin-top: 20px;
    }
}
/* Modal */

.modal {
    width: 100vw;
    height: 100vh;
    background-color: #00000090;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -10;
    opacity: 0;
    user-select: none;
    transition: all .3s;
}

.modal.active {
    z-index: 5000;
    opacity: 1;
}

.modal-content {
    width: 50vw;
    margin: 15vh auto;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 2px black;
}

.modal-footer {
    text-align: right;
    height: 100px;
    gap: 20px;
    border-top: 1px solid #DDDDDD;
    border-radius: 0 0 5px 5px;
    padding: 0 20px;
    background-color: inherit;
}

/* FORMATAÇÃO DA TABELA */

#form {
    display: grid;
    grid-template-columns: 1fr;
}

.modal-header {
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #DDDDDD;
    border-radius: 5px 5px 0 0;
    background-color: inherit;
}

.modal-header>h1 {
    margin: 0 auto;
    color: black;
    font-weight: normal;
    text-shadow: 0px 0px 1px grey;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.close-button {
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 40px;
    color: lightslategray;
}

.close-button:hover {
    background-color: #ff4949;
    cursor: pointer;
    color: white;
    border-radius: 0 5px 0 0;
}

#tbody td:nth-child(1) {
    border-radius: 25px 0px 0px 25px;
}

#tbody td:nth-child(4) {
    border-radius: 0px 25px 25px 0px;
}

#tbody td:nth-child(5) {
    border: 0px;
}

#tbody td:nth-child(2), #placaEditar, #placaComprovante, #placaComprovanteEntrada, #placaDoCarro {
    text-transform: uppercase;
}

#tbodyClienteQuePagaram td:nth-child(1) {
    border-radius: 25px 0px 0px 25px;
}
#tbodyClienteQuePagaram td:nth-child(2) {
    text-transform: uppercase;
}

#tbodyClienteQuePagaram td:nth-child(7) {
    border-radius: 0px 25px 25px 0px;
}

#tbodyClienteQuePagaram td {
    padding: 30px;
}

.table {
    width: 1100px;
    user-select: none;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0px 15px;
}

.formInputMaterializado {
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20px auto;
}

.input-container {
    position: relative;
    margin-left: 50px;
}

.input {
    border: 0;
    border-bottom: 2px solid #9e9e9e;
    outline: none;
    transition: .2s ease-in-out;
    box-sizing: border-box;
    margin-top: 50px;
}

.label {
    top: 0;
    left: 0;
    right: 0;
    color: #616161;
    display: flex;
    align-items: center;
    position: absolute;
    font-size: 1rem;
    cursor: text;
    transition: .2s ease-in-out;
    box-sizing: border-box;
}

.inputSengundoAdiante {
    pointer-events: none;
    margin-top: 40px
}

#modalEscolhaDeComprovante>.modal-content button {
    width: 40vw;
    margin-left: 50px;
    font-size: 1.5rem;
}

.input, .label {
    width: 100%;
    font-size: 1rem;
}

.input:valid, .input:focus {
    border-bottom: 2px solid #26a69a;
}

.input:valid+.label, .input:focus+.label {
    color: #26a69a;
    font-size: .8rem;
    top: -30px;
}

.margin-top-input {
    margin-top: 2rem;
}

.disabledInput {
    pointer-events: none;
}

#btnComprovanteEntrada {
    margin-bottom: 70px;
}

#btnPagamento {
    margin-top: 70px;
}

.btnVerde {
    background-color: #91CB82;
}

.btnVerde:hover {
    background-color: white;
    color: black;
    border: #91CB82 3px solid;
}

.btnAmarelo {
    background-color: #26a69a;
    border: 0px;
}

.btnAmarelo:hover {
    background-color: white;
    color: black;
    cursor: pointer;
    border: #26a69a 3px solid;
}

.btnExcluir {
    background: rgba(255, 0, 0, 0.6);
}

.btnExcluir:hover {
    background-color: white;
    border: 2px solid rgba(255, 0, 0, 0.6);
    color: black;
}

.displayNome {
    display: none;
}

[data-anime]{
    opacity: 0;
    transition: .3s;
}

[data-anime="left"]{
 transform: translate3d(-100px, 0, 0);
}

[data-anime].animate{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}
