@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    font-family: 'Roboto', sans-serif;
    height: 100% !important;
    overflow: auto;
    font-size: 18px;
}

.lg-texto-15 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 29px;
    /* identical to box height, or 152% */
    letter-spacing: 0.25px;
    color: #010B19;
}

input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    margin-left: 0em;
    cursor: pointer;
    padding: 0.2em;
}

input[type=checkbox] {
    display: flex;
}

    input[type=checkbox] + label:before {
        content: "\2714";
        border: 0.1em solid #000;
        border-radius: 0.3em;
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        padding-top: 0em;
        padding-left: 0.2em;
        padding-bottom: 0.1em;
        margin-right: 0.05em;
        vertical-align: bottom;
        color: transparent;
        transition: .2s;
    }

    input[type=checkbox] + label:active:before {
        transform: scale(0);
    }

    input[type=checkbox]:checked + label:before {
        background-color: #06448B;
        border-color: #F28324;
        color: #fff;
        width: 1.5em;
        height: 1.5em;
    }

    input[type=checkbox]:disabled + label:before {
        transform: scale(1);
        border-color: #aaa;
    }

    input[type=checkbox]:checked:disabled + label:before {
        transform: scale(1);
        background-color: #bfb;
        border-color: #bfb;
    }


@media (max-width: 576px) {


    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        width: 150px !important;
    }

    .nav-tabs:hover .nav-link:hover {
        width: 150px !important;
    }

    .nav-tabs:active .nav-link:active {
        width: 150px !important;
    }

    .nav-tabs:focus .nav-link:focus {
        width: 150px !important;
    }

    .nav-tabs:checked .nav-link:checked {
        width: 150px !important;
    }
}

@media (max-width: 1200px) {

    .oculta-mobile {
        display: none;
    }
}


@media (min-width: 768px) {
    .nav-link {
        width: 140px;
        font-size: 14px;
        text-align: center;
    }
}


@media (min-width: 1200px) {
    .oculta-desktop-576 {
        display: none;
    }
}




.login-fundo {
    background-image: url(../images/bg-oval.svg);
    position: relative;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: auto;
}


.lg-texto-22 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 29px;
    /* identical to box height, or 152% */
    letter-spacing: 0.25px;
    color: #010B19;
}

/* caixa de texto material design */
.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.material-textfield {
    position: relative;
    width: 100%;
}

label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #7D7D7D;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transition: .1s ease-out;
    transform-origin: left top;
    pointer-events: none;
}

.selectBox {
    font-size: 1rem;
    border: 1px solid #7D7D7D;
    border-radius: 5px;
    height: 45px;
    font-family: 12px;
}
input {
    font-size: 1rem;
    outline: none;
    border: 1px solid #7D7D7D;
    border-radius: 5px;
    padding: 0.5rem 0.3rem;
    color: #7D7D7D;
    transition: 0.1s ease-out;
    width: 100%;
}

    input:focus {
        border-color: #06448B;
    }

        input:focus + label {
            color: #06448B;
            top: 0;
            transform: translateY(-50%) scale(.9);
        }

    input:not(:placeholder-shown) + label {
        top: 0;
        transform: translateY(-50%) scale(.9);
    }


/* fim caixa de texto material design */


/* botoes */
.lg-botao-azul {
    width: 100%;
    height: 55px;
    background: #06448B;
    border: 2px solid #F28324;
    box-sizing: border-box;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 6px;
}

.lg-botao-branco {
    width: 100%;
    height: 55px;
    background: #FFFFFF;
    border: 1px solid #F28324;
    box-sizing: border-box;
    border-radius: 4px;
    color: #06448B !important;
}

    .lg-botao-branco:hover {
        width: 100%;
        height: 55px;
        background: #FFFFFF;
        border: 1px solid #06448B;
        box-sizing: border-box;
        border-radius: 4px;
        color: #06448B;
    }


    .lg-botao-branco:active {
        width: 100%;
        height: 55px;
        background: #FFFFFF;
        border: 1px solid #06448B;
        box-sizing: border-box;
        border-radius: 4px;
        color: #06448B;
    }





/* fim botoes */

a:hover {
    color: #06448B;
    text-decoration: underline;
}

a {
    color: #06448B;
    text-decoration: none;
    background-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #06448B;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: #fff #fff #06448B #fff;
    border-bottom: 3px solid #F28324;
    font-size: 14px;
    width: 140px;
    text-align: center;
}

.nav-tabs:hover .nav-link:hover {
    background-color: #fff;
    border-color: #fff #fff #06448B #fff;
    border-bottom: 3px solid #F28324;
    font-size: 14px;
    width: 140px;
    text-align: center;
}


.nav-tabs:active .nav-link:active {
    background-color: #fff;
    border-color: #fff #fff #06448B #fff;
    border-bottom: 3px solid #F28324;
    font-size: 14px;
    width: 140px;
    text-align: center;
}




.nav-tabs:focus .nav-link:focus {
    background-color: #fff;
    border-color: #fff #fff #06448B #fff;
    border-bottom: 3px solid #F28324;
    font-size: 14px;
    width: 140px;
    text-align: center;
}



.nav-tabs:checked .nav-link:checked {
    background-color: #fff;
    border-color: #fff #fff #06448B #fff;
    border-bottom: 3px solid #F28324;
    font-size: 14px;
    width: 140px;
    text-align: center;
}

.texto-sub {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 29px;
    /* identical to box height, or 152% */
    text-align: center;
    letter-spacing: 0.25px;
}




.btn {
    color: #fff;
}

    .btn:hover {
        color: #fff;
    }


/* animacao carosel */

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    /* background: white; */
    /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    filter: grayscale(100%);
}

    .slider::before, .slider::after {
        /* background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0))); */
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
        content: "";
        height: 100px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }

    .slider::after {
        right: 0;
        top: 0;
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
    }

    .slider::before {
        left: 0;
        top: 0;
    }

    .slider .slide-track {
        -webkit-animation: scroll 40s linear infinite;
        animation: scroll 40s linear infinite;
        display: -webkit-box;
        display: flex;
        width: calc(250px * 14);
    }

    .slider .slide {
        height: 100px;
         width: 140px;
    }

/* fim animacao carosel */


