/*
* Approve
* 2020
* 
* Contents:
*    Colors
* A. Global
*      01. Footer Bottom
*      02. General
*      03. Text
*      04. Login
*      05. Dashboard
* B. Components
*      01. Buttons
*      02. Switches
*      03. Accordion
*      04. Navbar
*      05. Dropdown
*      06. Input & Forms
*      07. Table
*      08. Badge
*      09. Filter
*      10. List
*      11. Modal
*      12. Cards
*      13. Preloader
*/

:root {
    --blue: #005CB9;
    --orange: #E87722;
    --purple: #3B3A53;
    --black: #000000;
}

/* A. GLOBAL
========================================== */

html {
    position: relative;
    min-height: 100%;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.content {
    padding: 0 2rem;
}

@media (min-width: 576px) {
    .content {
        padding: 0 3rem;
    }
}

@media (min-width: 1200px) {
    .content {
        padding: 0 6rem;
    }
}

.main{
    padding-top: 2rem;
}

/* 01. Footer Button
------------------------------------------ */

.page-wrapper {
    min-height: 100%;
    margin-bottom: -3rem;
}

.push {
    height: 3rem;
}

.footer {
    position: inherit;
    bottom: 0;
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    padding-left: 2rem;
    color: #CDCDD3;
    font-size: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer {
        text-align: left;
    }
}

/* 02. General
------------------------------------------ */

body {
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    color: #3B3A53;
    background: #FBFBFB;
}

a {
    color: #E87722;
    text-decoration: none;
    background-color: transparent;
    transition: color 0.15s ease-in-out;
}

a:hover {
    color: #d3503f;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

h1, h2, .h1 {
    font-weight: bold;
}

h1, .h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1rem;
}

h6 {
    font-weight: bold;
    font-size: 1rem;
}

@media (min-width: 768px) {
    h6 {
        font-size: 1.5rem;
    }
}

.round-shape {
    clip-path: circle(100% at 50% -50%);
}

/* 03. Text
------------------------------------------ */

/* 04. Colors
------------------------------------------ */

.bgrey-50 {
    background: rgba(59, 58, 83, .5);
}

.txt-bgrey-50 {
    color: rgba(59, 58, 83, .5);
}

.bg-purple {
    background: var(--purple);
}

.bg-black {
    background: var(--black);
}

.bg-orange {
    background:var(--orange);
}

/* 06. Login
------------------------------------------ */

.login-container {
    width: 100%;
    margin: 0 auto;
}

.wrap-login {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #E87722;
}

.wrap-check {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: url(../img/login-check-background.png);
}

.login-content {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.login-inner {
    padding: 3rem;
    text-align: center;
}

.login-form {
    margin-top: 2.5rem;
}

.picture-mobile {
    width: 120px;
    text-align: center;
}

.login-description {
    display: none;
}

.login-inner .login-title, .login-inner h1, .login-inner .h2, .login-inner .h3 {
    font-weight: 800;
}

.login-inner .login-title {
    font-size: 1.3rem;
    margin-bottom: initial;
}

.login-inner .h2, .login-inner .h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 1.6rem;
    color: #005CB9;
}

.login-inner .h2 span {
    color: #E87722;
}

.login-inner .h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #9295A7;
}

.login-logo {
    width: 200px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .login-description {
        background-image: url(../img/login-inner-background.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: bottom right;
        display: block;
    }
    .picture-mobile {
        display: none;
    }
    .wrap-login {
        width: 100%;
        min-height: 100vh;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background: #E87722;
        background: -webkit-linear-gradient(top left, #E87722, #005CB9);
        background: -o-linear-gradient(top left, #E87722, #005CB9);
        background: -moz-linear-gradient(top left, #E87722, #005CB9);
        background: linear-gradient(to bottom right, #E87722, #005CB9);
    }
    .login-content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .login-inner {
        padding: 3rem;
    }
}

@media (min-width: 1200px) {
    .login-form {
        margin-right: 3rem;
        margin-left: 3rem;
    }
}

.form-control {
    font-size: .8rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #E9E9F0;
    border-radius: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out
}

.form-control:focus {
    border-bottom: 1px solid #4285f4;
    -webkit-box-shadow: 0 1px 0 0 #4285f4;
    box-shadow: 0 1px 0 0 #4285f4
}

.form-control::-webkit-input-placeholder {
    color: rgba(64, 58, 96, 0.5);
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: rgba(64, 58, 96, 0.5);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: rgba(64, 58, 96, 0.5);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: rgba(64, 58, 96, 0.5);
    opacity: 1;
}

.form-control::placeholder {
    color: rgba(64, 58, 96, 0.5);
    opacity: 1;
}

.login-footer {
    font-size: .6rem;
}

/* B. COMPONENTS
========================================== */

.btn {
    font-size: .8rem;
}

.btn-blue-grey {
    color: #fff;
    background-color: #005CB9;
    border: 1px solid #005CB9;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.text-blue-grey {
    color: #005CB9;
}

.bg-blue-grey {
    background-color: #005CB9;
}

a.btn-blue-grey:not([href]) {
    color: white;
    text-decoration: none;
}

.btn-blue-grey:hover {
    color: #005CB9;
    background: #fff;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    border: 1px solid #005CB9;
}

a.btn-blue-grey:hover:not([href]) {
    color: #005CB9;
    text-decoration: none;
}

.btn-blue-grey .fas {
    color: #fff;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.btn-blue-grey:hover .fas {
    color: #005CB9;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.btn-blue-grey:focus, .btn-blue-grey.focus {
    -webkit-box-shadow: 0 2px 5px 0 rgba(59, 58, 83, 0.14);
    box-shadow: 0 2px 5px 0 rgba(59, 58, 83, 0.14);
}

/* 13. Preloader
------------------------------------------ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
}

.spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.spinner {
    animation: spinner 1s linear infinite;
    border: solid 7px transparent;
    border-top: solid 7px #4C5156;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*03. Header
------------------------------------------ */
#header-wrap{
    box-shadow: 0 10px 10px rgba(59, 58, 83, .1);
}

#header-wrap.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000 !important;
    animation: smoothScroll 1s forwards;
}

/* 04. Navbar
------------------------------------------ */

.navbar {
    font-size: 1rem;
    font-weight:500;
}

.navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .8);
}

.navbar .navbar-nav .nav-link:focus, .navbar .navbar-nav .nav-link:hover {
    color: var(--purple);
    transition: color 0.3s ease-in-out;
}

.navbar .w-50 {
    width: initial!important;
}

.navbar .avatar img {
    width: 25px;
    height: 25px;
    margin-right: .5rem;
}

.navbar a.btn.sign-out {
    margin: 0 auto;
    text-align: center;
    width: 25%;
    margin-top: 1rem;
    background-color: var(--purple);
    color: #fff;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.navbar .btn-report span{
    display: none;
}

.dropdown-divider {
    margin: 0 1.5rem;
    border-top: 1px solid rgba(59, 58, 83, .2);
  }

.navbar .dropdown-menu {
    border: none;
    background: none;
}

.navbar .dropdown-menu .dropdown-item{
    color: var(--purple);
    font-weight: 500;
}

.navbar .dropdown-item:focus, .navbar .dropdown-item:hover {
    color: #ffffff;
    background: none;
}

.navbar .badge-notification {
    padding: .25em .4em;
}

.navbar .nav-link:focus .badge-notification, .navbar .nav-link:hover .badge-notification{
    color: #ffffff;
    transition: color 0.3s ease-in-out;
}

.btn-report .badge-credits, .btn-report .badge-credits{
    color: #ffffff;
    transition: color 0.3s ease-in-out;
}

@media (min-width: 400px) {
    .navbar .btn-report {
        width: 200px;
    }
    .navbar .btn-report .fas{
        margin-right: .5rem;
    }
    .navbar .btn-report span{
        display: inline-block;
    }
  }

@media (min-width: 989px) {
    .navbar {
        font-size: .8rem;
    }
    .navbar .w-50 {
        width: 50%!important;
    }
    .navbar .nav-notification{
        margin-right: -1rem;
    }
    .navbar .badge-notification {
        position: relative;
        top: -.5rem;
        left: -1rem;
    }
    .navbar .avatar {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: 0!important;
    }
    .navbar .dropdown-menu {
        font-size: .8rem;
        background: #fff;
        -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .15) !important;
        box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .15) !important;
    }

    .navbar .dropdown-item:focus, .navbar .dropdown-item:hover {
        color: #ffffff;
        background: var(--orange);
        transition: color 0.3s ease-in-out;
    }

    .navbar a.btn.sign-out {
        margin: .5rem;
        text-align: center;
        width: auto;
        margin-top: 1rem;
        background-color: #78909c;
        color: #fff;
        transition: all 0.5s;
        -moz-transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
}

/* Scroll to Top
------------------------*/
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 600;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(0, 200%, 0);
    -ms-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
}
.scroll-top a, .scroll-top a:visited {
    font-size: 1rem;
    color: #ffffff;
    background: #FF8208;
    border: .1rem solid #ec9a1f;
    display: block;
    height: 40px;
    width: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 3rem;
    -webkit-box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
    box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.scroll-top a:hover, .scroll-top a:focus {
    color: #FF8208;
    background: #ffffff;
}
.scroll-top.scroll-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Badges and Scores */
.badge {
    padding: .3rem;
    font-size: 70%;
}
.badge.badge-up {
    color: #FFF !important;
}
.badge.badge-up {
    position: absolute;
    top: .73rem;
    left: 1.2rem;
    width: 5px;
    height: 5px;
    display: block;
}
.report-accordion .badge-score{
    line-height: 2;
    padding: .45rem 1rem;
    border-radius: 1rem;
    font-weight: bold;
}
.badge-good{
    background-color: #28C76F;
    color: #fff;
}
@media (min-width: 989px) {
    .badge.badge-up {
        left: initial;
        top: -.1rem;
        right: -.4rem;
    }
}
.report-points{
    text-align: center;
    margin: 2rem auto;
}
.report-light, .report-bar{
    margin-bottom: 1.5rem;
}
.circle {
    padding: 40px;
    text-align: center;
    height: 180px;
    width: 180px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.report-details .circle{
    height: 160px;
    width: 160px;
    padding: 35px;
}
.report-details .circle span.points{
    font-size: 3rem;
    line-height: 3rem;
}
.circle span{
    color: #fff;
    font-weight: bold;
}
.circle span.points {
    font-size: 4rem;
    display: block;
    line-height: 4rem;
    margin-left: -.6rem;
    letter-spacing: -.25rem;

}
.points-label {
    font-size: 1rem;
}

.progress{
    height: 1.5rem;
}

.score-medium{
    background: #eca81f;
    border: .6rem solid #ec9a1f;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
    box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
}

.score-danger{
    background: #FF5555;
    border: .6rem solid #F82E2E;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
    box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
}

.score-good{
    background: #28C76F;
    border: .6rem solid #23AE61;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
    box-shadow: inset 0px 0px 3px 0px rgba(255,255,255,1);
}

.badge-medium{
    background: #eca81f;
}

.badge-danger{
    background: #FF5555;
}

.badge-good{
    background: #28C76F;
}
.img-circle {
    border-radius: 50%;
}

.detailed-score{
    color:#fff;
    text-align: center;
    width: 150px;
    margin: 0 auto;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    .detailed-score{
        margin: initial;
        -ms-flex-pack: initial !important;
        justify-content: initial !important;
    }
}

.detailed-score .score{
    font-size: 3rem;
    display: block;
    line-height: 3rem;
    text-align: center;
    font-weight: bold;
}

.detailed-score.score-medium{
    background-color: #ec9a1f;
    box-shadow: none;
    border-radius: 1rem;
}

.detailed-score.score-danger{
    background-color: #F82E2E;
    box-shadow: none;
    border-radius: 1rem;
}

.detailed-score.score-good{
    background-color: #23AE61;
    box-shadow: none;
    border-radius: 1rem;
}

.generated-utilies{
    margin-top: 2rem;
}

.generated-utilies h3{
    font-weight: bold;
    margin-bottom: 0;
}

.ingvseg{
    font-size: 1.3rem;
    font-weight: bold;
}

.ingvseg h3{
    font-size: 1.3rem;
    font-weight: initial;
}

.bg-score-danger{
    background: -webkit-linear-gradient(left, #D83D3C 0%,#e9912b 100%);
}

.bg-score-medium{
    background: -webkit-linear-gradient(left, #e9912b 0%,#F8DC1B 100%);
}

.bg-score-good{
    background: -webkit-linear-gradient(left, #F8DC1B 0%, #2FC76C 100%);
}

.text-score-good{
    color: #2FC76C;
}

.text-score-medium{
    color: #e9912b;
}

h3.general-score{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

#CongruenciaActivity h3{
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0;
}

.rotate-icon{
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.report-accordion a:not(.collapsed) .rotate-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.report-accordion a:not(.collapsed) .badge-score{
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    display: block;
}

.card {
    font-weight: 400;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
    box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
}

.list-group-item.active {
    z-index: 2;
    color: #3B3A53;
    background-color:#fff;
    border-color: rgba(59,58,83,0.14);
    font-weight: bold;
    text-align: center;

}

.list-group-item{
    border:none;
    border-bottom: 1px solid #F1F1F3;

}

.list-group{
    border-radius: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
    box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #F1F1F3;
    border-bottom-color: rgb(241, 241, 243);
}

.fa-border{
    border-radius: 2rem;
    padding: .3rem;
}


.btn-light{
    color: #FF8208;
    text-transform: uppercase;
    font-size: .7rem;
    -webkit-box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
    box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
}

.btn-light:hover{
    color: #FF8208;
}


a .fa-border{
    border: 1px solid #E87722;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

a:hover .fa-border{
    background: #d3503f;
    color: #fff;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.report{
    margin-top: 2rem;
}

.report-data{
    margin-top: 1rem;
}

.report-data label, .report-area label {
    font-size: .75rem;
    color: #9C9CA8;
    display: block;
    margin-bottom: initial;
}



span.report-researcher{
    display: block;
}

@media (min-width: 768px) {
    span.report-researcher{
        display: inline-block;
    }
}

.report-details a h2{
    color: #3B3A53;
}

.report-details a h2 .fas{
    color: #CDCDD3;
    font-size: .7rem;
}

.report-details a:hover h2 .fa-border{
    color: #fff;
    background: #CDCDD3;
    border: 1px solid #CDCDD3;
}


.report-details a h2 .fa-border{
    border-radius: 8px;
    padding: .35rem .5rem;
    border: .05rem solid #CDCDD3;

}


.report-area .card-header{
    background: none;
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1rem;
}


/* .page-wrapper {
    overflow-x: hidden;
} */

.list-group{
    box-shadow: initial;
    border-bottom: 1px solid #E4E4E4;
}

.list-group-item{
    background: none;
    background-color: none;
}

.media i{
    color: #005CB9;
}

.media label i{
    color: #9C9CA8;
}

.media h5{
    font-size: .85rem;
    margin-bottom: 0;
    font-weight: bold;
}

.media .media-score .badge{
    padding: .6rem;
    font-size: .85rem;
    color: #fff;
}




.report-progress{
    text-align: center;
    margin-top: 1rem;
}

.report-progress h6{
    font-size: 1.3rem;
    margin-bottom: 0;
}

.report-progress .in-process span{
    color: #E87722;
    font-size: 1.4rem;
    font-weight: bold;
}

.media-body label, .report-progress p{
    color: #9C9CA8!important;
}

.report-progress .progress{
    margin: 0 auto;
    margin-top: .5rem;
}

.report-progress a{
    position: relative;
    z-index: 999;
}

/* Wizard
====================================*/
.path-wizard {
    margin-top: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 0;
}

.path-wizard ul{
    margin-left: initial;
}

    .path-wizard > li {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -moz-flex: 1;
        -ms-flex: 1;
        flex: 1;
        list-style: none;
        text-align: center;
        width: auto;
        padding: 0;
        margin: 0;
        position: relative;
        text-overflow: ellipsis;
        display: block;
    }

    .path-wizard li .inner {
        position: relative;
        z-index: 999;
    }

    .path-wizard > li .bubble {
        border-radius: 50%;
        width: 1rem;
        height: 1rem;
        background-color: #B8B8B8;
        display: block;
        margin: 0 auto .5em;
        font-size: 1.2rem;
        font-weight: 700;
        text-align: center;
        z-index: 10;
    }

        .path-wizard > li .bubble:after, .path-wizard > li .bubble:before {
            position: absolute;
            top: 25px;
            width: 100%;
            height: 3px;
            content: '';
            background-color: #B8B8B8;
        }

    .path-wizard > li .bubble:before {
        left: 0;
    }

    .path-wizard > li .bubble:after {
        right: 0;
    }

    .path-wizard > li:first-child .bubble:after, .path-wizard > li:first-child .bubble:before {
        width: 50%;
        margin-left: 50%;
    }

    .path-wizard > li:last-child .bubble:after, .path-wizard > li:last-child .bubble:before {
        width: 50%;
        margin-right: 50%;
    }

.path-wizard .badge{
    color: #fff;
    font-size: .8rem;
line-height: 1rem;
position: absolute;
bottom: .3rem;
margin-left:.2rem;
}

@media (min-width: 768px) {
    .path-wizard .badge{
        color: #fff;
        font-size: .8rem;
    line-height: 1rem;
    bottom: .65rem;
    position: absolute;
    }
}

.fa-spin {
  -webkit-animation: fa-spin 3s infinite linear;
          animation: fa-spin 3s infinite linear; }

.company-list{
    background-color: #FAFAFA;
}

.company-list li .company-list-name{
    text-align: left;
}

.company-list li .chart-color{
    height: .8rem;
    width: .8rem;
    margin-top: 3px;
    margin-right:.5rem;
}
.company-list li .company-list-data{
    text-align: right;
}

.company-list li .company-list-data label{
margin-right: .2rem;
}

.anychart-credits {
    display: none!important;
}

.btn-outline-primary, a.btn-outline-primary {
    color: #005CB9;
    border-color: #005CB9;
  }
  
  .btn-outline-primary:hover {
    color: #fff!important;
    background-color: #005CB9;
    border-color: #005CB9;
  }
  
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  }
  
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
  }

  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #005CB9;
  border-color: #005CB9;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
  


  .btn-outline {
    color: #005CB9!important;
    border-color: #005CB9;
    font-weight: 500;
    border-color: #fff;
  }
  
  .btn-outline:hover {
    color: #fff!important;
    background-color: #005CB9;
    border-color: #005CB9;
  }
  
  .btn-outline:focus, .btn-outline.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  }
  
  .btn-outline.disabled, .btn-outline:disabled {
    color: #007bff;
    background-color: transparent;
  }
  
  .btn-outline:not(:disabled):not(.disabled):active, .btn-outline:not(:disabled):not(.disabled).active,
  .show > .btn-outline.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }
  
  .btn-outline:not(:disabled):not(.disabled):active:focus, .btn-outline:not(:disabled):not(.disabled).active:focus,
  .show > .btn-outline.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  }



  span.ingreso, span.egreso{
      display: block;
  }

  @media (min-width: 500px) {
    span.ingreso, span.egreso{
        display: initial;
    }
}

/* ============= Graphics ===========*/

#wordmap{
    width: 100%;
    height: 300px;
    margin:0!important;
  }

#history-report,#history-report2{
    width: 100%;
    height: 400px;
    margin:0!important;
  }

  #gauge-vs, #gauge-canceled{
      margin: -5rem -5rem;
      height: 400px;
      width: 500px;
  }

  #gauge-finished{
    width: 500px;
    height: 500px;
    margin: -6rem;
    padding: 0;
  }

  @media (min-width: 540px) {
    #gauge-finished{
        width: 100%;
        height: 500px;
        margin: 0;
        margin-top: -9rem;
        margin-bottom:-9rem;
        padding: 0;
    }
}

  @media (min-width: 620px) {
    #gauge-vs, #gauge-canceled{
        height: 400px;
        width: 800px;
    }

}

  @media (min-width: 768px) {
    #gauge-vs{
        width: 100%;
        height: 500px;
        margin: initial;
        margin-bottom: -2rem;
        margin-top: -2rem;;
    }

    #gauge-finished{
        margin-top: -5rem;
        margin-bottom:-5rem;
        height: 400px;
    }
}

@media (min-width: 992px) {
    #gauge-canceled{
        margin:initial;
        margin-bottom: -6rem;
        margin-top: -6rem;;
        height: 400px;
        width: 100%;
    }
    
}

.lts-tb-list {
    display: table;
    width: 100%;
    color:#9C9CA8;
    /*margin-bottom: -3rem;*/
}

.lts-tb-item {
    transition: background-color .3s, box-shadow .3s;
    display: table-row;
    color:#9C9CA8;
}

.lts-tb-item:not(:last-child) .lts-tb-col {
    border-bottom: 1px solid #dbdfea;
}

.lts-tb-head .lts-tb-col {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color:#9C9CA8;
    font-size: .9em;
}

.lts-tb-col {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: .5rem;
}


.lts-tb-item:not(:last-child) .lts-tb-col {
    border-bottom: 1px solid #dbdfea;
}

.lts-tb-head .lts-tb-col {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color:#9C9CA8;
    font-size: .9em;
}

.tb-razon-social{
    color: #3B3A53;
}

.tb-col-sm {
    display: table-cell !important;
}

.lts-tb-col-action {
    text-align: right;
}

.lts-tb-col-action > .dropdown:last-child {
    right: -.5rem;
}

.lts-tb-col-action .dropup, .lts-tb-col-action .dropright, .lts-tb-col-action .dropdown, .lts-tb-col-action .dropleft {
    display: inline-flex;
}

.lts-tb-col-action .dropup, .lts-tb-col-action .dropright, .lts-tb-col-action .dropdown, .lts-tb-col-action .dropleft {
    position: relative;
}

.btn-icon:not([class*="btn-icon-break"]) {
    padding-left: 0;
    padding-right: 0;
}

.btn-trigger {
    position: relative;
    z-index: 1;
    color:#9C9CA8;
}

.btn-trigger + .dropdown-menu-right {
    margin-right: 16px;
}

.btn-trigger + .dropdown-menu-right, .btn-trigger + .dropdown-menu-left {
    margin: -.75rem 0;
        margin-right: 0px;
}

.lts-tb-list .dropdown-menu {
    overflow: hidden;
    border: 1px solid #e5e9f2;
    box-shadow: 0 3px 12px 1px
    rgba(44,55,130,0.15);
}

.lts-tb-list .dropdown-menu a{
    color: #8094ae;
}

.lts-tb-list .dropdown-menu a:hover{
    color: #fff;
}

.lts-tb-col .badge{
    padding: .5rem;
    font-size: .85rem;
    color: #fff;
}

.lts-tb-col .in-process{
    color: #E87722;
    font-weight: bold;
}

.tb-icon{
    display: block;
    text-align: center;
    border-radius: 6px;
    background-color: #EBF1F6;
    padding: .3rem;
    color:#005CB9;
}

/* ============= Modal ===========*/
.modal-header{
    display: initial;
    text-align: center;
    border-bottom: none;
  }
  
  .modal-title{
      font-weight: bold;
      font-size: 1.5rem;
  }
  
  .close{
      float: right!important;
  }
  
  .modal-body{
      padding: 1rem 3rem;    
  }
  
  .modal-body h5{
      font-weight: bold;
  }
  
  .modal-body h5 + p{
      color: #9D9CA9;
  }
  
  .modal-body .form-control{
    width: 85%;
  }
  
  .modal-body .h6, .modal-body h6{
      font-size: initial;
      font-weight: initial;
      margin: initial;
  }
  
  .modal-footer{
      border: none;
      text-align: center;
      display: initial;
  }
  
  .inputfile {
      width: 0.1px;
      height: 0.1px;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      z-index: -1;
  }
  
  .inputfile + label {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      cursor: pointer;
      text-transform: uppercase;
      border-radius: 6px;
      font-size: .8rem;
      max-width: 100%;
  }
  
  .inputfile + label .icon:before {
      content: "\f574";
      margin-right: 5px;
      font-size: 1rem;
    }
  
  .inputfile + label * {
      pointer-events: none;
  }
  
  .key-password {
      margin-top: 1rem;
  }
  
  .key-password .fas{
      margin-top: .8rem;
      margin-right: .5rem;
  }
  
  .text-green, .label-success{
      color: #28a745;
  }
  
  .rfc-key{
      margin-left: 1.5rem;
      font-weight: 600;
      font-size: .9rem;
  }
  
  .switch > input[type="checkbox"] {
      display: none;   
  }
  
  .switch > label {
      cursor: pointer;
      height: 0px;
      position: relative; 
      width: 40px;  
  }
  
  .switch > label::before {
      background: #7D7D7D;
      box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
      border-radius: 8px;
      content: '';
      height: 16px;
      margin-top: -8px;
      position:absolute;
      opacity: 0.3;
      transition: all 0.4s ease-in-out;
      width: 40px;
  }
  .switch > label::after {
      background: #7D7D7D;
      border-radius: 16px;
      box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
      content: '';
      height: 24px;
      left: -4px;
      margin-top: -8px;
      position: absolute;
      top: -4px;
      transition: all 0.3s ease-in-out;
      width: 24px;
  }
  .switch > input[type="checkbox"]:checked + label::before {
      background: inherit;
      opacity: 0.5;
  }
  .switch > input[type="checkbox"]:checked + label::after {
      background: inherit;
      left: 20px;
  }
  
  .switch .label-success{
      background: #23AE61;
      color:#23AE61;
  }
  
  .btn-cancel{
      border: none;
      color: gray;
      text-transform: uppercase;
  }
  
  .input-group > .custom-file{
      display: initial;
  }
  
  /* ============= Big Client Tabs ===========*/
  
  #BigClientTab .h1{
      font-size: 20px;
  }
  
  .nav-pills li.nav-item{
      margin: 0 2rem;
  }
  
  .badge-primary, .nav-pills .nav-link.active{
      background: #005CB9;
  }
  
  .nav-pills .nav-link.active, .nav-pills .nav-link{
      margin-top: 1rem;
      text-transform: uppercase;
      padding: .3rem 2rem;
      border-radius: 6px;
      transition: all .3s ease-in-out;
  }
  
  .nav-pills a.nav-link {
      color: #666666;
  }
  
  .nav-pills a.nav-link:hover {
      color: #005CB9;
  }
  
  .nav-pills a.nav-link.active:hover {
      color: #fff;
  }
  
    h2 span{
        font-size: 13px;
      font-weight: lighter;
      font-style: italic;
      margin-left: 1rem;
    }
  
    .card-supplier{
      box-shadow: none;
      background: none;
      padding-bottom: 0;
  }
  
  .list-supplier{
      -webkit-box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
      box-shadow: 0 2px 5px 0 rgba(59,58,83,0.14);
  }
  
  .supplier-body{
      padding: 1rem;
  }
  
  .supplier-container{
      height: 390px;
      overflow-y: scroll;
  }
  
  .supplier-table .lts-tb-head{
      background: #fff;
  }
  
  .supplier-table .lts-tb-head .lts-tb-col{
      position: sticky;
      top: 0;
      z-index: 2;
      background: #fff;
      border: none;
  }
  
  .lts-tb-body{
      font-size: .85rem;
  }
  
  .supplier-table .lts-tb-item.lts-tb-body .lts-tb-col, .supplier-table .lts-tb-item.lts-tb-body .lts-tb-col:first-child, .supplier-table .lts-tb-item .lts-tb-body .lts-tb-col:last-child{
      background: rgba(0, 92, 185, 0.05);
      border-bottom: 5px solid #fff;
      border-collapse: collapse;
      overflow: hidden;
      cursor: pointer;
  }
  
  .supplier-table .lts-tb-item.lts-tb-body .lts-tb-col:first-child{
      border-radius: 1em 0 0 1em;
  }
  
  .supplier-table .lts-tb-item.lts-tb-body .lts-tb-col:last-child{
      border-radius: 0 1em 1em 0;
  }
  
  .supplier-table .lts-tb-item.lts-tb-body .tb-icon,
  .supplier-table .lts-tb-item.lts-tb-body:hover .tb-icon{
      background: none;
  }
  
  .supplier-table .lts-tb-item.lts-tb-body:hover .lts-tb-col,
  .supplier-table .lts-tb-item.lts-tb-body:hover .lts-tb-col .tb-icon,
  .supplier-table .lts-tb-item.lts-tb-body.selected .lts-tb-col,
  .supplier-table .lts-tb-item.lts-tb-body.selected .lts-tb-col .tb-icon{
      background: rgba(0, 92, 185, 1);
      color: #fff;
      transition: .3s ease-in-out;
  }
  
  .supplier-name{
      font-weight: bold;
      text-rendering: optimizeLegibility;
      letter-spacing: 0.01rem;
  }
  
  .badge-supplier{
      text-transform: uppercase;
      padding: .3rem;
  }
  
  .badge-supplier button.close{
      color: #fff;
      line-height: 1px;}
  
.favorite{
    color: #ffce08;
    
}

.fas .favorite{
    -webkit-text-stroke: 1px #f2bb08;
}

/*validator forms*/
p.note {
    color: red;
}

label.error {
    color: red;
}

input.error,textarea.error {
    border: 1px dashed red;
    font-weight: 300;
    color: red;
}

/*color de los badge de dias para expirar cer*/
.daysToExpire .fa-times {
    color: red;
}

.daysToExpire .fa-check {
    color: green;
}

.daysToExpire .fa-exclamation-triangle {
    color: orange;
}
