* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth !important;
}

body {
    background-color: #353535 !important;
    scroll-behavior: smooth !important;
    padding-top: 100px;
    min-height: 100vh;
}

body.loading-page{
    overflow: hidden;
}

#content-viewer {
    padding-top: 30px;
    min-height: calc(100vh - 150px);
}

header {
    position: fixed;
    color: #fff;
    width: 100%;
    height: 70px;
    display: flex;
    top: 0;
    justify-content: space-between;
    padding: 10px 2rem;
    padding-bottom: 0;
    align-items: center;
    background-color: #00bcef;
    z-index: 9999;
}

header::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    background-color: transparent;
    width: 100%;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 20px solid #00bcef;
}

#img-ricon {
    width: 60px;
    margin-top: -5px;
}

.navbar {
    display: flex !important;
    align-items: center !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
    width: fit-content !important;
}

.navbar ul {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-weight: bold;
    font-size: 18px;
    list-style: none;
    margin-bottom: 0;
}

.navbar ul li {
    color: #fff;
    transition: .5s;
    cursor: pointer;
    font-size: 24px;
}

.navbar ul li:hover {
    color: #000 !important;
    transition: .5s;
}

.btn-login {
    padding: .2rem 1rem;
    border-radius: 3rem;
    color: #fff;
    background-color: #008dff;
    font-size: 20px;
    cursor: pointer;
    transition: all 250ms;
}

.btn-login:hover {
    transform: scale(1.1);
}

a {
    color: #fff !important;
    transition: 1s;
    text-decoration: none !important;
    font-weight: 400;
}

a:hover {
    color: #000 !important;
    transition: 1s;
    text-decoration: none !important;
}

/*animation*/
/*loading-page*/
#loading-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #008dff;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

#loading-page>div {
    border-radius: 5rem;
    padding: 1rem;
    border: 2px solid #fff;
    animation: loader-screen-animation 3s ease;
}

#img-ricon-loading-page {
    height: 75px;
    width: 75px;

}

@keyframes loader-screen-animation {
    0% {
        border-top: 2px solid #000;
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
        border-radius: 2px solid #000;
    }

    25% {
        border-top: 2px solid #fff;
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
        border-radius: 2px solid #000;
    }

    50% {
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #000;
        border-radius: 2px solid #000;
    }

    75% {
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        border-radius: 2px solid #000;
    }

    100% {
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        border-radius: 2px solid #fff;
    }
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #008dff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*sec-4*/
/*footer*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #008dff;
    color: #fff;
    text-align: center;
    height: 50px;
}

/*footer*/
/*animation*/
.js-scroll {
    opacity: 0;
    transform: translate3d(-40px, -30px, 0);
    transition: 1.5s;
}

.js-scroll.ativo {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/*loading-page*/
/* Media Queries */

.pointer {
    cursor: pointer;
}

@media (max-width: 768px) {

    #content-viewer {
        min-height: calc(100vh - 90px);
    }

    header {
        padding: 0rem 1rem;
        height: 70px;
    }

    header::after {
        border-top: 15px solid #00bcef;
    }

    html {
        font-size: 12px;
    }

    footer {
        font-size: 12px;
    }

    body {
        font-size: 12px;
        padding-top: 40px;
    }

    #img-ricon {
        width: 60px;
    }

    .btn-login {
        font-size: 22px;
    }

    header::after {
        display: none;
    }
}

.disabled {
    filter: grayscale(1);
    opacity: 0.6;
    pointer-events: none;
}

.spinner-holder {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-radius: 5px;
    padding: 70px 15px;
}