@import "../../_cdn/fontawesome-free/css/all.min.css";

body, html, *{
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


.bg_primary{
    background-color: #6F9FD4;
}

.text_dark{
    color: #010101;
}

.title_box{
    position: relative; 
}

.title_box:after{
    content: " ";
    display: block;
    width: 33px;
    height: 7px;
    background-color: #007BFF;
    margin-left: 3px;
}


.slow_7s{
    -webkit-transition: all 0.7s ease-out 0s !important;
    -o-transition: all 0.7s ease-out 0s !important;
    transition: all 0.7s ease-out 0s !important;
}

.slow_5s{
    -webkit-transition: all 0.5s ease-out 0s !important;
    -o-transition: all 0.5s ease-out 0s !important;
    transition: all 0.5s ease-out 0s !important;
}

button, a, .slow_3s{
    text-decoration: none;    
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}  

body.body_login{
    background-image: url(../_img/background-painel.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    overflow-x: hidden;
}


.container_login{
    height: 100vh;
}

.main_brand{
    width: 80%;
    max-width: 80%;
}

.input-group input.form-control{
    border-left: 0;
}

.input-group .input-group-text{
    background-color: transparent;
}

.form-control{
    font-size: 0.875em !important;
}

input.form-control{
    height: 56px;
}


.form_load{
    display: none;
    left: 50%;
    top: 50%;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform:  translate(-50%, -50%);
    -o-transform:  translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.box_form{
    animation: fade .7s,
        slideDown .7s cubic-bezier(.3,1,.3,1.3);
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate3d(0, -120px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.js .nojs{
    display: none;
}

@keyframes show-right {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/*############# Checkboxcustom*/

input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font: 14px/20px 'Ubuntu', sans-serif;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;


}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .7;
    -webkit-transition: 0.3s ease-in-out !important;
    -moz-transition: 0.3s ease-in-out !important;
    -o-transition: 0.3s ease-in-out !important;
    transition: 0.3s ease-in-out !important;
}

input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border: 2px solid #33bb55;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}



/***********************************
########## form ##########
***********************************/

.input-group-prepend.is_invalid{
    background-color: #dc3545 !important;
}

.input-group-prepend.is_valid .input-group-text,
.input-group-prepend.is_invalid .input-group-text{
    color: #fff !important;
}

.input-group-prepend.is_valid{
    background-color: #28a745 !important;
}



/***********************************
########## alerts ##########
***********************************/

.alert.bootstrap-notify-container {
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.14),
        0 4px 5px 0 rgba(0,0,0,0.12),
        0 1px 10px 0 rgba(0,0,0,0.20);
}

.alert .close {
    position: absolute;
    top: 5px !important;
    right:  10px !important;
}

.alert.bootstrap-notify-container .close {
    position: absolute;
    top: -10px !important;
    right:  -10px !important;
}

.alert.bootstrap-notify-container .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: transparent !important;
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}





.teste{
    border: 10px solid red;
}