﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=block');

body {
    min-height: 100vh;
    flex-direction: column;
    font-family: Montserrat !important;
}

main {
    flex: 1 0 auto;
}

.slider .indicators .indicator-item {
    z-index: 999 !important;
    background-color: rgb(041,117,077);
}

    .slider .indicators .indicator-item.active {
        background-color: rgb(117,161,137);
    }

.btn {
    border-radius: 10px;
}

.btn-verde {
    background-color: rgb(110,203,152);
}

    .btn-verde:hover {
        background-color: rgb(041,117,077);
    }

.btn-verde-escuro {
    background-color: rgb(041,117,077);
}

    .btn-verde-escuro:hover {
        background-color: rgb(110,203,152);
    }

.btn-small {
    height: 30px;
    line-height: 30px;
    padding: 0 0.6rem;
    font-size: small;
}

.fundo-login {
    display: block;
}

.mobile-fundo-login {
    display: none;
}

@media (max-width: 600px) {
    .fundo-login {
        display: none;
    }

    .mobile-fundo-login {
        display: block;
    }
}

.input-field input[type=text], input[type=password] {
    border-bottom: none !important;
}

.input-field label {
    top: 30px;
    left: 20px;
    font-size: 13.5px !important;
    color: #434343;
    font-weight: 600;
    opacity: .70;
}

.novasenha label {
    left: 13px;
}

.input-field input[type=text]:focus + label {
    color: #434343;
}

.input-field input[type=password]:focus + label {
    color: #434343;
}

.input-field input[type=text]:focus, input[type=password]:focus {
    border-bottom: none;
    box-shadow: none;
    background: #ffffffe6 !important;
}

.input-login {
    background: #ffffff96 !important;
    padding: 8px !important;
    border-radius: 15px !important;
    font-size: 14px;
    padding-bottom: 0px !important;
    color: #434343
}

    .input-login:focus {
        box-shadow: 0px 0px 0px 3px #ffffff42 !important;
    }

.is-invalid {
    background: #ffaaaa96 !important;
    box-shadow: 0px 0px 0px 2px #ff000042 !important;
}

.input-text {
    background: #f1f1f1 !important;
    padding-left: 13px !important;
    padding-top: 8px !important;
    border-radius: 15px !important;
    font-size: 14px;
    padding-bottom: 0px !important;
    color: #434343;
    box-shadow: 0px 0px 0px 1px #d5d5d5 !important;
}

    .input-text:focus {
        box-shadow: 0px 0px 0px 1px #30D080 !important;
    }

.alert {
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.1s linear;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
}

    .alert.danger {
        background-color: #c62828;
        color: #fff;
    }
/*Alert*/
/*.materialert {
    position: fixed;
    width: 60%;
    left: 20%;
    right: 20%;
    min-width: 150px;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.1s linear;
    webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999;
}

    .materialert .material-icons {
        margin-right: 10px;
    }

    .materialert .close-alert {
        -webkit-appearance: none;
        border: 0;
        cursor: pointer;
        color: inherit;
        background: 0 0;
        font-size: 22px;
        line-height: 1;
        font-weight: bold;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
        filter: alpha(opacity=40);
        margin-bottom: -5px;
        position: absolute;
        top: 16px;
        right: 5px;
    }

    .materialert.info {
        background-color: #039be5;
        color: #fff;
    }

    .materialert.success {
        background-color: #43a047;
        color: #fff;
    }

    .materialert.error {
        background-color: rgba(198, 40, 40, 0.80);
        color: #fff;
    }

    .materialert.danger {
        background-color: #c62828;
        color: #fff;
    }

    .materialert.warning {
        background-color: #fbc02d;
        color: #fff;
    }*/

.ecc-modal {
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    position: fixed !important;
    position: absolute;
    z-index: 101;
    float: none;
    background-color: rgba(0,0,0,0.6);
    visibility: hidden;
}

.ecc-modal-conteudo {
    /*width: 400px;*/
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    animation: fadeInDown 1s ease 0s 1 normal forwards;
}

.ecc-modal-visivel {
    opacity: 1;
    visibility: visible;
}

.ecc-modal-close {
    opacity: 0;
    visibility: hidden;
    /*transition: visibility 0s 2s, opacity .6s linear;*/
    transition: all 1s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/*Splash Loader*/
.progressConfirmar {
    color: white;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    position: fixed !important;
    position: absolute;
    z-index: 110 !important;
    float: none;
    background-color: rgba(0,0,0,0.6);
    padding-top: 20%;
}
