.fundo {
    background-color: #003760;
}

html,
body,
.app {
    background-color: #fff;
    height: 100%;
    width: 100%;
    margin: 0px;
    min-height: 500px;
}

.logo {
    margin: auto;
    width: 70%;
    transform: translateY(-100%);
    opacity: 0;
}

.aceito {
    color: #269c08;
}

.logo.show {
    animation: logo-show 0.3s linear forwards;
}

@keyframes logo-show {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

.login-body {
    opacity: 0;
    transform: translateY(100%);
    animation: login-show 0.3s ease-in forwards;
}

@keyframes login-show {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

.d-flex {
    display: flex;
}

.box {
    height: 100%;
}

.box .box-head {
    height: 80px;
    background-color: #003760;
}

.box .box-body {
    height: calc(100% - 140px);
}

.box .box-body.full {
    height: 100%;
}

.box .box-foot {
    /* border-top: 1px solid #777575; */
    background-color: #d7d9dd;
    height: 60px;
    animation: login-show 0.3s linear forwards;
}

.box .box-foot.show {
    display: block;
}

.div-inferior {
    display: inline-block;
    width: 25%;
    text-align: center;
}

.botao-inferior {
    height: 60px;
    width: 60px;
    color: #777575;
    font-size: 25px;
    border: 0px solid #003760;
    background-color: transparent;
    border-radius: 50%;
}

.botao-inferior.ativo {
    color: #003760;
}

.botao-inferior.ativo:active {
    transform: scale(0.98);
    /* Scaling button to 0.98 to its original size */
    box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
    /* Lowering the shadow */
}

.card-header {
    font-size: 20px;
    color: #003760;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #003760;
    font-weight: 500;
}

.card-body {
    font-size: 18px;
    color: #003760;
    padding: 10px;
}

.card {
    margin-bottom: 15px;
    padding: 0px;
    box-shadow: 0 .3rem 0.3rem 0 rgba(33, 40, 50, .15)!important
}

.card-servico {
    opacity: 0;
    transform: translateX(-100%);
    animation: card 0.3s ease-out forwards;
}

.card-servico-inverso {
    opacity: 0;
    transform: translateX(100%);
    animation: card-reverso 0.3s ease-out forwards;
}

@keyframes card {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes card-reverso {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0%);
    }
}

.card-body .fa {
    font-size: 30px;
}

.item-lista {
    padding-top: 10px;
    padding-bottom: 10px;
}

.container {
    max-height: 100%;
    overflow: auto;
}

.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s linear;
}

.sub-menu.show {
    max-height: 180px;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.notificacao {
    top: 15px;
    width: 100%;
    background-color: transparent;
    position: fixed;
    text-align: center;
    display: none;
    z-index: 10000;
}

.notificacao.show {
    display: flex;
    animation: notificacao 0.2s forwards;
}

.notificacao span {
    margin: auto;
    padding: 5px;
    border-radius: 3px;
}

@keyframes notificacao {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

.card.card-item {
    cursor: pointer;
}

.modal {
    color: #003760;
}

.card-home {
    background-color: #003760;
    height: 100px;
    width: 100%;
    line-height: 100px;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    box-shadow: 5px 5px 8px 0px #000000aa
}

.clima {
    overflow-x: scroll;
    display: block;
    max-width: auto;
    width: auto;
    white-space: nowrap;
}

.clima-card {
    width: 80px;
    height: 100px;
    border: 1px solid #003760;
    border-radius: 5px;
    display: inline-block;
}