@font-face {
    font-family: "Poppins";
    font-style: "normal";
    font-weight: normal;
    src: url("../fonts/Poppins-Regular.eot?") format("eot"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.svg#Poppins") format("svg");
}

@font-face {
    font-family: "Poppins";
    font-style: "normal";
    font-weight: bold;
    src: url("../fonts/Poppins-Bold.eot?") format("eot"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.ttf") format("truetype"), url("../fonts/Poppins-Bold.svg#Poppins") format("svg");
}

@font-face {
    font-family: "Poppins";
    font-style: "normal";
    font-weight: 300;
    src: url("../fonts/Poppins-Light.eot?") format("eot"), url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.ttf") format("truetype"), url("../fonts/Poppins-Light.svg#Poppins") format("svg");
}

@font-face {
    font-family: "Poppins";
    font-style: "normal";
    font-weight: 600;
    src: url("../fonts/Poppins-SemiBold.eot?") format("eot"), url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.ttf") format("truetype"), url("../fonts/Poppins-SemiBold.svg#Poppins") format("svg");
}

[type=range] {
    -webkit-appearance: none;
    background: transparent;
    margin: 12px 0;
    width: 100%;
}

[type=range]::-moz-focus-outer {
    border: 0;
}

[type=range]:focus {
    outline: 0;
}

[type=range]:focus::-webkit-slider-runnable-track {
    background: #dfdfdf;
}

[type=range]:focus::-ms-fill-lower {
    background: #ececec;
}

[type=range]:focus::-ms-fill-upper {
    background: #fbfbfc;
}

[type=range]::-webkit-slider-runnable-track {
    cursor: default;
    height: 8px;
    transition: all .2s ease;
    width: 100%;
    background: #ececec;
    border: 2px solid #dfdfdf;
    border-radius: 5px;
}

[type=range]::-webkit-slider-thumb {
    background: #2aa69e;
    border-radius: 12px;
    cursor: default;
    height: 24px;
    width: 24px;
    -webkit-appearance: none;
    margin-top: -10px;
}

[type=range]::-moz-range-track {
    cursor: default;
    height: 8px;
    transition: all .2s ease;
    width: 100%;
    background: #ececec;
    border: 2px solid #dfdfdf;
    border-radius: 5px;
    height: 4px;
}

[type=range]::-moz-range-thumb {
    background: #2aa69e;
    border-radius: 12px;
    cursor: default;
    height: 20px;
    width: 20px;
}

[type=range]::-ms-track {
    cursor: default;
    height: 8px;
    transition: all .2s ease;
    width: 100%;
    background: transparent;
    border-color: transparent;
    border-width: 12px 0;
    color: transparent;
}

[type=range]::-ms-fill-lower {
    background: #ececec;
    border: 2px solid #dfdfdf;
    border-radius: 10px;
}

[type=range]::-ms-fill-upper {
    background: #ececec;
    border: 2px solid #dfdfdf;
    border-radius: 10px;
}

[type=range]::-ms-thumb {
    background: #2aa69e;
    border-radius: 12px;
    cursor: default;
    height: 20px;
    width: 20px;
    margin-top: 2px;
}

[type=range]:disabled::-webkit-slider-thumb {
    cursor: not-allowed;
}

[type=range]:disabled::-moz-range-thumb {
    cursor: not-allowed;
}

[type=range]:disabled::-ms-thumb {
    cursor: not-allowed;
}

[type=range]:disabled::-webkit-slider-runnable-track {
    cursor: not-allowed;
}

[type=range]:disabled::-ms-fill-lower {
    cursor: not-allowed;
}

[type=range]:disabled::-ms-fill-upper {
    cursor: not-allowed;
}


/*# sourceMappingURL=_inputrange.min.css.map */

body {
    background: #f8f8f8;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #5e5e5e;
}

body h2 {
    font-size: 1.6rem;
}

body hr {
    margin-top: .6rem;
    margin-bottom: .6rem;
}

body a,
body a:hover,
body a:focus {
    color: #5e5e5e;
    text-decoration: none;
}

body input {
    max-width: 100%;
}

body .navbar {
    background: #121212;
    display: block;
    position: fixed;
    height: 100vh;
    z-index: 1;
    padding: .8rem;
    text-align: center;
}

@media screen and (max-width: 575px) {
    body .navbar {
        position: relative;
        height: auto;
    }
}

body .navbar .navbar-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
}

@media screen and (max-width: 575px) {
    body .navbar .navbar-row {
        flex-direction: unset;
        justify-content: space-between;
    }
}

body .navbar .navbar-row .navbar-col {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (max-width: 575px) {
    body .navbar .navbar-row .navbar-col {
        display: flex;
        flex-grow: unset;
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    body .navbar .navbar-row .navbar-nav {
        display: inline-block;
    }
}

body .navbar .navbar-brand {
    margin: 0 auto;
}

@media screen and (max-width: 575px) {
    body .navbar .navbar-brand {
        margin-left: 0;
    }
}

@media screen and (max-width: 575px) {
    body .navbar .nav-item {
        display: inline-block;
    }
}

body .navbar .nav-item .nav-link {
    font-size: 1.2rem;
    cursor: pointer;
}

@media screen and (max-width: 575px) {
    body .navbar .nav-item .nav-link {
        font-size: 1.65rem;
        margin: 0 .5rem;
    }
}

body .content {
    padding: 3rem;
}

@media screen and (max-width: 575px) {
    body .content {
        margin-left: 0 !important;
        padding: 2rem .5rem;
    }
}

body .content .card {
    border-radius: .6rem;
    text-align: center;
    border: 0;
}

body .content .card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

body .content .card .card-top {
    position: relative;
    padding-top: 40%;
}

body .content .card .card-top .card-img-top {
    position: absolute;
    border-radius: calc(.6rem - 1px) calc(.6rem - 1px) 0 0;
    top: 0;
    left: 0;
}

body .content .card .card-header {
    background: #ececec;
    padding: 4rem 1rem 1rem;
    border: 0;
    border-radius: calc(.6rem - 1px) calc(.6rem - 1px) 0 0;
}

body .content .card .card-header .form-group {
    margin-bottom: 0;
}

body .content .card .card-header .form-group .form-control {
    background-color: #f8f8f8;
}

body .content .card .card-body {
    padding: 1.5rem;
}

body .content .card .card-body .row:not(:last-child) {
    margin-bottom: 1rem;
}

body .content .card .card-body .row:not(:first-child) {
    margin-top: 1rem;
}

body .content .card .card-body .form-control.locked {
    text-align: center;
    font-weight: 600;
}

body .content .user-img {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

body .content .list-group .list-group-item {
    border: 0;
    padding: 1rem 1.25rem;
    cursor: pointer;
}

body .content .list-group .list-group-item [class^='col'] {
    align-self: center;
}

body .content .list-group .list-group-item [class^='col'] p {
    margin-bottom: 0;
}

body .content .list-group .list-group-item.list-group-item-dark {
    background: #2aa69e;
    color: #fff;
}

body .content .list-group .list-group-item:not(.list-group-item-dark):nth-child(odd) {
    background: #ececec;
}

body .content .list-group .list-group-item:not(.list-group-item-dark):hover,
body .content .list-group .list-group-item:not(.list-group-item-dark):nth-child(odd):hover {
    background: #d9f6f4;
}

body .content .list-group .list-group-item:first-child {
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem;
}

body .content .list-group .list-group-item:last-child {
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
}

body .content .nav-pills .nav-link {
    padding: .5rem 0;
    border-bottom: 1px solid #ececec;
}

body .content .nav-pills .nav-link.active {
    background: transparent;
    color: #2aa69e;
}

body .content .nav-pills .nav-link.active:before {
    content: '>';
    margin-right: .5rem;
}

body .content .propuestas .logo-cliente {
    height: 35px;
}

body .content .propuestas .logo-cliente img {
    max-height: 100%;
}

@media screen and (max-width: 575px) {
    body .content .propuestas .logo-cliente {
        max-height: 80px;
        margin: 1rem 0;
    }
}

body .content .clientes .logo-cliente {
    height: 50px;
}

body .content .clientes .logo-cliente img {
    max-height: 100%;
}

body .content .perfil .card .card-top {
    padding-top: 20%;
}

body .content .tipo-proyecto {
    display: none;
}

body .content .proyectos {
    background: #fff;
    border-radius: .6rem;
    padding: 0 3rem 3rem;
    margin-top: 3rem;
}

body .content .proyectos .lista-proyectos {
    margin-right: 1.5rem;
}

body .content .proyectos .lista-proyectos .list-item-proyectos {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

body .content .form-group .form-control {
    border: 0;
    border-radius: .5rem;
    background-color: #ececec;
}

body .content .form-group .form-control.locked {
    background: transparent;
    pointer-events: none;
    cursor: text;
    padding: 0;
    height: auto;
}

body .content .form-group.form-version {
    margin: 0 .5rem;
    display: inline-block;
}

body .content .form-group.form-version .form-control {
    background-color: transparent;
    border: 1px solid #2aa69e;
    color: #2aa69e;
}

body .content .form-group select {
    padding-right: 1.3rem;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.93%2010%22%3E%3Cpolygon%20points%3D%229.64%2010%200%200%2018.93%200%209.64%2010%22%20fill%3D%22%232aa69e%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .5rem top 50%;
    background-size: .7rem auto;
}

body .content .form-group select::-ms-expand {
    display: none;
}

body .content .switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 34px;
}

body .content .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

body .content .switch input:checked+.slider {
    background-color: #2aa69e;
    padding-left: .8rem;
}

body .content .switch input:checked+.slider:before {
    -webkit-transform: translateX(31px);
    -ms-transform: translateX(31px);
    transform: translateX(31px);
}

body .content .switch input:focus+.slider {
    box-shadow: 0 0 1px #2aa69e;
}

body .content .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #5e5e5e;
    padding-left: 2.2rem;
    line-height: 34px;
    color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

body .content .switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

body .content .switch .slider.round {
    border-radius: 34px;
}

body .content .switch .slider.round:before {
    border-radius: 50%;
}

body .content .custom-control-label {
    padding-left: 1.5rem;
}

body .content .custom-control-label:before,
body .content .custom-control-label:after {
    top: .1rem;
    left: 0;
}

body .content .custom-control-input:checked~.custom-control-label:before {
    border-color: #2aa69e;
    background-color: #2aa69e;
}

body .content .fin-mixto {
    display: none;
}

body .content .fin-mixto .form-group {
    position: relative;
    padding: 1.5rem 0;
}

body .content .top {
    top: 0;
}

body .content .bottom {
    bottom: 0;
}

body .content .left {
    left: 0;
}

body .content .right {
    right: 0;
}

body .content .img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

body .content .line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 15px;
    height: 1px;
    background-color: rgba(42, 166, 158, 0.5);
    background-image: -moz-linear-gradient(left, rgba(42, 166, 158, 0.5) 0%, rgba(42, 166, 158, 0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(42, 166, 158, 0.5)), color-stop(100%, rgba(42, 166, 158, 0)));
    background-image: -webkit-linear-gradient(left, rgba(42, 166, 158, 0.5) 0%, rgba(42, 166, 158, 0) 100%);
    background-image: -o-linear-gradient(left, rgba(42, 166, 158, 0.5) 0%, rgba(42, 166, 158, 0) 100%);
    background: -ms-linear-gradient(left, rgba(42, 166, 158, 0.5) 0%, rgba(42, 166, 158, 0) 100%);
    background: linear-gradient(to right, rgba(42, 166, 158, 0.5) 0%, rgba(42, 166, 158, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(42, 166, 158, 0.5)', endColorstr='rgba(42, 166, 158, 0)', GradientType=1);
}

body .content .modal .modal-dialog {
    max-width: 65%;
    top: 50%;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 575px) {
    body .content .modal .modal-dialog {
        max-width: none;
    }
}

body .content .modal .modal-content {
    background: #f8f8f8;
    border: 0;
}

body .content .modal .modal-content .modal-header {
    border-bottom: 0;
    padding: 1.5rem 2rem .8rem;
}

body .content .modal .modal-content .modal-body {
    padding: .8rem 2rem 2rem;
}

body .content .modal .modal-content .modal-body .list-group-item i {
    margin-right: .5rem;
}

body .btn {
    border-radius: 3rem;
    padding: .375rem 1rem;
    white-space: nowrap;
    cursor: pointer;
}

body .btn.btn-primary {
    background: #2aa69e;
    border-color: #2aa69e;
    color: #fff;
}

body .btn.btn-primary:hover,
body .btn.btn-primary:focus {
    background: #7524e1;
    border-color: #7524e1;
    color: #fff;
}

body .btn.btn-secondary {
    background: transparent;
    color: #2aa69e;
    border: 0;
}

body .btn.btn-secondary:hover,
body .btn.btn-secondary:focus {
    background: transparent;
    color: #2aa69e;
    outline: none !important;
    box-shadow: 0 !important;
}

body .btn.btn-info {
    background: #d4c500;
    border-color: #d4c500;
    color: #fff;
}

body .btn.btn-info:hover,
body .btn.btn-info:focus {
    background: #7524e1;
    border-color: #7524e1;
    color: #fff;
}

body .btn i {
    margin-right: .1rem;
}

body .login {
    background: url(../img/login-bg.jpg) no-repeat top center/cover;
    height: 100vh;
}

body .login .form-control {
    border-radius: 3rem;
    margin-bottom: 1rem;
}

body .login .infologin {
    display: none;
}


/*# sourceMappingURL=styles.css.map */