/* estilos dashboard*/

@import url("animate.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
div#app {
    width: 100%;
}

:root {
    --main-color: #6a9b61;
    --main-color-dark: #455950;
    --main-color-light: #9ec691;
    --main-color-light-light: #ced7cb;
    --secondary-color: #8260a6;
    --secondary-color-dark: #4c3862;
    --secondary-color-light: #bea8d4;
    --tertiary-color: #0091af;
    --tertiary-color-dark: #03697e;
    --tertiary-color-light: #9ee2f0;
    --light-color: #F3F6F9;
    --bright-color: #dada00;
    --bright-color-light: #d8d69a;
    --text-color: #000;
    --success-color: #2ed8b6;
    --success-color-light: #87dccb;
    --danger-color: #FF5370;
    --danger-color-light: #fb7b90;
    --info-color: #5081fc;
    --info-color-light: #7dc6fb;
    --color-dark: #181824;
    --color-dark-light: #303043;
}

body {
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', sans-serif;
    background: #f6f8fc;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--main-color);
    background-color: transparent;
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: var(--main-color-light);
    background-color: transparent;
}

.hover2:hover {
    color: var(--main-color-light) !important;
}

.hover2:hover img {
    opacity: 0.7 !important;
    filter: alpha(opacity=70) !important;
    /* For IE8 and earlier */
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: var(--main-color);
}

::selection {
    color: #fff;
    background: var(--main-color);
}

.form-control::placeholder {
    /* Firefox, Chrome, Opera */
    color: #bfc5ca;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bfc5ca;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bfc5ca;
}

.img-grayscale {
    filter: grayscale(100%);
}

.active-link>.img-grayscale {
    filter: grayscale(0%);
    border: 2px solid #000000;
    box-sizing: content-box;
    padding: 3px
}

.active-link {
    font-weight: 700;
    font-size: 20px;
}


/************
 preloader 
***********/

div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.8) url(../images/preload.svg) no-repeat center center;
}

.preload-spinner {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: rgba(0, 0, 0, 0.8) url(../images/grid.svg) no-repeat center center;
    border-radius: 5px;
}

ul,
li {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}


/*************
 Typografia
 ************/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 500;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
    font-weight: 400;
}

p {
    font-size: 0.875rem;
}

h1,
.h1 {
    font-size: 2.19rem;
}

h2,
.h2 {
    font-size: 1.875rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

h4,
.h4 {
    font-size: 1.125rem;
}

h5,
.h5 {
    font-size: 1rem;
}

h6,
.h6 {
    font-size: 0.9375rem;
}

p {
    font-size: 0.875rem;
}


/*************NAVBAR*/


/*header*/

.badge-notification-header {
    position: absolute;
    right: -10px;
    top: -15px;
}

.offcanvasNotificaciones {
    color: #fff;
}

.badge.badge-info.badge-notification-header {
    background: var(--danger-color);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    padding: 0px;
    font-weight: 800;
    font-size: 9px;
}

@media all and (max-width: 480px) {}

.nav-secondary {
    border-bottom: 1px solid var(--main-color);
}

.navbar-dash {}

.navbar-dash .btn-menu {
    font-size: 30px;
    background: transparent;
    padding: 0px 10px;
    line-height: normal;
    border: 0px;
}

.navbar-dash .btn-menu:hover,
.navbar-ashd .btn-menu:active,
.navbar-dash .btn-menu:focus {
    background-color: var(--main-color-dark) !important;
    box-shadow: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    /* Sub Menu */
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

nav ul li a:hover {
    background: #1d4f71;
    color: #fff;
}

nav ul li a .fa {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float: right;
}

nav ul ul {
    background: rgba(0, 0, 0, 0.2);
}

nav ul li ul li a {
    border-left: 4px solid transparent;
    padding: 10px 20px;
}

nav ul li ul li a:hover {
    border-left: 4px solid #4dad32;
}


/*************sidebar************/

.sidebar-content {
    margin-top: 15px
}


/*--------------------sidebar-header----------------------*/

.sidebar-header {
    padding: 20px;
    overflow: hidden;
    color: #fff;
}

.sidebar-header .user-pic img {
    object-fit: cover;
    border: 2px solid #fff
}

.sidebar-header {
    position: relative;
    width: 100%;
}


/* Inverted rounded corners */

.ss-style-invertedrounded {
    margin-bottom: 10px;
    padding: 19px 20px 26px 33px;
    border-radius: 0 0 0 60px;
}

.ss-style-invertedrounded::before,
.ss-style-invertedrounded::after {
    left: 0;
    z-index: -1;
    height: 90px;
    background: #4dad32;
}

.ss-style-invertedrounded::before {
    top: 100%;
    border-radius: 0 90px 0 0;
}

.ss-style-invertedrounded::after {
    bottom: 0;
    z-index: -1;
}


/*----------------------sidebar-menu-------------------------*/

.offcanvas-start {
    width: 420px;
}

.offcanvas-menu {
    background-color: var(--light-color);
}

.offcanvas-menu .offcanvas-body {
    padding: 0px;
    overflow: hidden;
}

.offcanvas-header .btn-close {
    color: #adc5e8;
}

.sidebar-menu {
    padding-bottom: 10px;
}

.offcanvas-header {
    background-color: var(--main-color-dark);
}

.btn-close-menu {
    background: transparent;
    border: 0px;
    box-shadow: none;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--main-color-light)
}

.sidebar-menu ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 15px 20px;
    color: #222;
    font-size: 16px;
    border-bottom: 1px solid var(--main-color-light);
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a:active,
.sidebar-menu ul li a:focus {
    color: var(--main-color)
}

.sidebar-menu ul li a i {
    margin-right: 10px;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
}

.sidebar-menu ul li a i {
    color: var(--main-color);
    font-size: 18px;
}

.sidebar-menu ul li a:hover>i::before {
    display: inline-block;
    animation: flash ease-in-out 0.5s 1 alternate;
}

.sidebar-menu .sidebar-dropdown>a:after {
    font-family: 'Linearicons-Free';
    font-weight: 900;
    content: "\e876";
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 27px;
    font-size: 13px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: 5px 0;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li {
    padding-left: 25px;
    font-size: 13px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\e68e";
    font-family: 'themify';
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 15px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li a.active {
    background: var(--main-color-light);
    border-radius: 24px 0px 0 5px;
}

.sidebar-menu ul li a span.label,
.sidebar-menu ul li a span.badge {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    float: right;
    margin-top: 0px;
}

.sidebar-menu .sidebar-submenu {
    display: none;
}

.sidebar-menu .sidebar-dropdown.active>a:after {
    transform: rotate(90deg);
    right: 17px;
}

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    background-color: var(--main-color);
}

.sidebar-footer>a {
    flex-grow: 1;
    text-align: center;
    line-height: 30px;
    position: relative;
    color: #fff;
    padding: 20px;
    display: block;
}

.sidebar-footer>a:hover {
    color: var(--main-color-light)
}

main {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main h1 {
    margin-bottom: 1rem;
}

main .copyright {
    margin-top: auto;
    font-size: 0.9rem;
}

main .copyright span {
    color: var(--main-color);
    font-weight: 500;
    cursor: pointer;
}


/*************
 Color Textos 
 ************/

.text-c-primary {
    color: var(--main-color) !important;
}

.text-c-primary-light-light {
    color: var(--main-color-light-light) !important;
}

.text-c-primary-dark {
    color: var(--main-color-dark) !important;
}

.text-c-tertiary-light {
    color: var(--tertiary-color-light) !important;
}


/* ********************
Fondos
 **************/


/*fondos*/

.bg-primary {
    background-color: var(--main-color) !important;
}

.bg-primary-light {
    background-color: var(--main-color-light) !important;
}

.bg-transparent {
    background: transparent !important
}

.bg-danger {
    background: #dd4a3e
}

.bg-success {
    background: var(--success-color) !important
}

.bg-warning {
    background: #f4ba00
}

.bg-info {
    background: var(--secondary-color) !important
}

.bg-01 {
    background: var(--tertiary-color)
}

.bg-02 {
    background: #363839
}


/*gradiente*/

.gradient-primary {
    background: #4dad32;
    background: linear-gradient(180deg, #4dad32 0%, #487449 67%);
}


/*************
 Textos tamaños
 ************/

.text-9 {
    font-size: 9px !important;
}

.text-10 {
    font-size: 10px !important;
}

.text-11 {
    font-size: 11px !important;
}

.text-12 {
    font-size: 12px !important;
    ;
}

.text-13 {
    font-size: 13px !important;
}

.text-14 {
    font-size: 14px !important;
}

.text-15 {
    font-size: 15px;
}

.text-16 {
    font-size: 16px !important;
}

.text-18 {
    font-size: 18px !important;
}

.text-20 {
    font-size: 20px !important;
}

.text-22 {
    font-size: 22px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-25 {
    font-size: 25px !important;
}

.text-30 {
    font-size: 30px !important;
}

.text-35 {
    font-size: 35px !important;
}

.text-40 {
    font-size: 40px !important;
}

.text-45 {
    font-size: 45px !important;
}

.text-50 {
    font-size: 50px !important;
}

.text-60 {
    font-size: 60px !important;
}

.text-70 {
    font-size: 70px !important;
}

.text-100 {
    font-size: 100px !important;
}


/***************
imagenes avatar
****************/

.img-circle {
    border-radius: 50%;
}

.user-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.user-avatar-mi-perfil img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}


/************************
empty states
**********************/


/*empty state*/

.empty {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.empty-height {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.empty-height-400 {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.empty-height-350 {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.empty-height-100 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.empty-img {
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: repeating-linear-gradient(45deg, #303337, #303337 10px, rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0.04)20px);
}


/***********
bordes
*******************/

.bo-0 {
    border: 0px !important;
}

.bot-0 {
    border-top: 0px;
}

.bot-6 {
    border-top: 6px solid var(--main-color) !important;
}

.bob-0 {
    border-bottom: 0px;
}

.bob-1 {
    border-bottom: 1px solid rgba(87, 88, 92, 0.75);
}

.bob-2 {
    border-bottom: 1px solid rgba(218, 218, 218, 0.75);
}

.bob-3 {
    border-bottom: 1px solid rgba(147, 147, 147, 0.75) !important;
}

.bot-1 {
    border-top: 1px solid rgba(48, 52, 60, 0.75);
}

.bot-2 {
    border-top: 1px solid rgba(190, 195, 206, 0.75);
}

.bo-1 {
    border: 1px solid rgba(74, 79, 90, 0.75) !important;
}

.bo-3 {
    border: 1px solid rgba(179, 187, 202, 0.75) !important;
}

.bol-1 {
    border-right: 1px solid rgba(74, 79, 90, 0.75);
}

.bol-2 {
    border-left: 2px solid var(--info-color-light) !important;
}

.border-radius-0 {
    border-radius: 0px;
}

.border-radius-50 {
    border-radius: 50%;
}

.border-radius-5 {
    border-radius: 5px !important;
}

.border-radius-widget {
    border-radius: 5px 0px 0px 5px;
}

.bo-4 {
    border: 1px solid var(--success-color) !important;
}

@media all and (max-width: 480px) {
    .border-radius-widget {
        border-radius: 5px 5px 0px 0px;
    }
}


/***********
titulo paginas
***********/


/*************
 Botones 
 ************/

.btn {
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
}

.btn.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    line-height: 42px;
}

.btn.btn-icon-sm {
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 30px;
}

.btn.btn-icon-xs {
    width: 20px;
    height: 20px;
    padding: 0;
    line-height: 20px;
}

.btn-outline {
    border-radius: 1px;
}

.btn-outline:focus,
.btn-outline.focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 49, 49, 0.5);
}

.btn-outline-white-opacity {
    color: #ffffff;
    border-color: #ffffff;
    border-width: 2px;
    background-color: rgba(252, 252, 252, 0.5);
}

.btn-outline-white-opacity:hover {
    color: #fff;
    background-color: rgba(252, 252, 252, 0.5);
    border-color: #ffffff;
}

.btn-outline-white {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-white:hover {
    color: #fff;
    background-color: rgba(252, 252, 252, 0.5);
    border-color: #ffffff;
}

.btn-outline-info {
    color: var(--info-color);
    border-color: var(--info-color);
    border-width: 2px;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: var(--info-color-light);
    border-color: var(--info-color-light);
}

.btn-outline-dark {
    color: #141619;
    border-color: #141619;
}

.btn-outline-dark:hover {
    color: #141619;
    background-color: rgba(34, 34, 34, 0.5);
    border-color: #141619;
}

.btn-outline-primary {
    color: var(--main-color);
    border-color: var(--main-color)
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(47, 234, 53, 0.5)
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgba(47, 234, 53, 0.5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: var(--main-color);
    background-color: transparent
}

.btn-info {
    color: rgb(255, 255, 255);
    background-color: var(--info-color);
    border-color: var(--info-color)
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    color: rgb(255, 255, 255);
    background-color: var(--info-color-light);
    border-color: var(--info-color-light);
    box-shadow: none;
}

.btn-info.disabled,
.btn-info:disabled {
    color: rgb(189, 126, 235);
    background-color: #d1a8ec;
    border-color: #d1a8ec;
}

.btn-primary {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--main-color-light);
    border-color: var(--main-color)
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 0 0 .25rem var(--main-color)
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem var(--main-color)
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color)
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s;
}

.btn-success:hover {
    background-color: var(--success-color-light);
    border-color: var(--success-color-light);
}

.btn-success:active {
    background-color: var(--success-color-light);
    border-color: var(--success-color-light);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.btn-success:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: var(--success-color-light);
    border-color: var(--success-color-light);
}

.btn-success.disabled {
    background-color: var(--success-color-light);
    border-color: var(--success-color-light);
}


/*************
 margenes y paddings
 ************/

.mt-33 {
    margin-top: 33px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-50 {
    margin-top: 50px;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.p-10 {
    padding: 10px;
}


/*************
 Imagenes 
 ************/

.img-lg {
    width: 92px;
    height: 92px;
}

.img-md {
    width: 60px;
    height: 60px;
}

.img-sm {
    width: 43px;
    height: 43px;
}

.img-xs {
    width: 35px;
    height: 35px;
}

.img-ss {
    width: 26px;
    height: 26px;
}


/******circles*********/

.circle-xs {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.circle-sm {
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.circle-md {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.circle-lg {
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.circle-xl {
    width: 120px;
    height: 120px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.circle-xlg {
    width: 180px;
    height: 180px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.icon-sm {
    font-size: 10px;
}

.bg-icon-sm {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    text-align: center;
    line-height: 12px;
}


/******************************
contenido de las paginas
******************************/


/*------------------------------------------------------------------
[ skeleton ]*/

.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }
    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

.skeleton-text {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.skeleton-text__body {
    width: 75%;
}

.skeleton-footer {
    width: 30%;
}

.box-shadow-0 {
    box-shadow: none !important;
}


/***************
listados
****************/

.header-listado p {
    font-size: 12px!important;
    text-transform: uppercase
}

.listado-container .item-list.disabled i.ti-close {
    background-color: #a4aebe !important
}

.item-list.disabled {
    color: #9fa2a5;
    cursor: default
}

.item-list.disabled>input {
    color: #6c757d;
    cursor: default
}

.item-list {
    padding: 10px 0;
}

a.item-list {
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: #000
}

a.item-list:hover {
    color: #000;
    background-color: #dbdbdb;
}

.item-list {
    padding: 10px;
}

.listado-container {
    position: relative;
}


/*********************
Paginador
**************************/

.pagination .page-item.active .page-link {
    z-index: 3;
    color: var(--info-color);
    background-color: transparent;
    border: 0px;
    font-weight: bold;
}

.pagination .page-link {
    position: relative;
    display: block;
    color: #000;
    text-decoration: none;
    background-color: transparent;
    border: 0px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pagination .page-link:hover,
.pagination .page-link:active,
.pagination .page-link:focus {
    color: var(--info-color);
    outline: none !important;
    box-shadow: none;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
    border: 0px;
}


/**********
 alturas
 **********/


/********
  card
  **********/

.card {
    border-radius: 5px;
    background: #fff;
    /*height: 100px;*/
}

.card-header {
    background: #fff;
}


/*********
box-shadow
************/

.box-sha-0 {
    box-shadow: none !important;
}


/******************
error page
*************/

.page_error {
    background-image: url(../images/bg-errorpage.jpg);
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
}

.footer-error-page {
    position: absolute;
    bottom: 0px;
}

.validation-message {
    color: #dd4a3e;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}


/*************
alertas
***********/

.alert-danger {
    color: #fff;
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}

.alert-success {
    color: #000;
    background-color: var(--success-color);
    border-color: var(--success-color);
}


/********************
sweet alert dark
*********************/

.swal-button {
    border-radius: 1px;
}

.swal-button:focus,
.swal-button.focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 49, 49, 0.5);
}

.swal-title {
    font-size: 20px;
}

.swal-text {
    font-size: 13px;
}

.swal-button--cancel {
    color: #989898;
    border: 1px solid #a8a8a8;
    background: transparent;
    min-width: 130px;
}

.swal-button--cancel:hover,
.swal-button--cancel:active,
.swal-button--cancel:focus {
    color: rgb(113, 113, 113);
    background-color: rgba(165, 165, 165, 0.5);
    border-color: #ffffff;
    box-shadow: none;
}

.swal-button--confirm {
    color: #fff;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    min-width: 130px;
}

.swal-button--confirm:hover,
.swal-button--confirm:active,
.swal-button--confirm:focus {
    color: #fff;
    border: 1px solid var(--main-color-light);
    background: var(--main-color-light);
    box-shadow: none;
}

.swal-footer {
    text-align: center;
    margin-top: 50px;
    overflow: hidden;
}


/*toastr*/

.toast-success {
    background-color: #3eb69e;
    border: 0px;
}

.toast-error {
    background-color: var(--danger-color);
    border: 0px;
}

#toast-container>.toast-info {
    background-color: #6d379c;
}

.toast-warning {
    background-color: #F89406;
}

.toast-dark {
    background-color: #0f0e0e;
    color: #fff;
}


/********svg icons*/

.svg-icon.svg-icon-main svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: var(--main-color) !important;
}

.svg-icon.svg-icon-primary svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: var(--tertiary-color) !important;
}

.svg-icon.svg-icon-primary svg:hover g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.svg-icon.svg-logo-primary svg path {
    fill: #3d5af1 !important;
}

.svg-icon.svg-icon-danger svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #dc3545 !important;
}

.svg-icon.svg-icon-warning svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #c0811d !important;
}

.svg-icon.svg-icon-grey svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #bbc0c3 !important;
}

.svg-icon.svg-icon-white svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #ffffff !important;
}

.svg-icon.svg-icon-info svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: var(--secondary-color-dark) !important;
}

.svg-icon.svg-icon-sm svg {
    height: 1.25rem !important;
    width: 1.25rem !important;
}

.svg-icon.svg-icon-md svg {
    height: 1.5rem !important;
    width: 1.5rem !important;
}

.svg-icon.svg-icon-lg svg {
    height: 1.75rem !important;
    width: 1.75rem !important;
}

.svg-icon.svg-icon-xl svg {
    height: 2rem !important;
    width: 2rem !important;
}

.svg-icon.svg-icon-xxl svg {
    height: 2.25rem !important;
    width: 2.25rem !important;
}

.svg-icon.svg-icon-1x svg {
    height: 1rem !important;
    width: 1rem !important;
}

.svg-icon.svg-icon-2x svg {
    height: 2rem !important;
    width: 2rem !important;
}

.svg-icon.svg-icon-3x svg {
    height: 3rem !important;
    width: 3rem !important;
}

.svg-icon.svg-icon-4x svg {
    height: 4rem !important;
    width: 4rem !important;
}

.svg-icon.svg-icon-5x svg {
    height: 5rem !important;
    width: 5rem !important;
}

.svg-icon.svg-icon-6x svg {
    height: 6rem !important;
    width: 6rem !important;
}

.svg-icon.svg-icon-7x svg {
    height: 7rem !important;
    width: 7rem !important;
}

.svg-icon.svg-icon-8x svg {
    height: 8rem !important;
    width: 8rem !important;
}

.svg-icon.svg-icon-9x svg {
    height: 9rem !important;
    width: 9rem !important;
}

.svg-icon.svg-icon-10x svg {
    height: 10rem !important;
    width: 10rem !important;
}


/************formularios***********/

.form-check-input:checked {
    background-color: #206f28 !important;
    border-color: #206f28 !important;
}

.dropdown-toggle::after {
    display: none;
}

.sin-caret.dropdown-toggle:after {
    content: none
}

.dropdown-item.active,
.dropdown-item:active {
    color: #000 !important;
    text-decoration: none;
    background-color: #adc5e8
}

.form-label {
    font-size: 14px;
    color: #666;
}

.checkbox-lg .form-check-input {
    width: 1.55rem;
    height: 1.55rem;
    box-shadow: none;
}

.checkbox-lg.form-check-input {
    width: 1.55rem;
    height: 1.55rem;
    box-shadow: none;
}

.checkbox-lg .form-check-label {
    margin-left: 10px;
    margin-top: 5px;
    box-shadow: none;
}

select.form-control {
    -webkit-appearance: menulist;
}

.form-check-input.check-info:checked {
    background-color: var(--info-color-light) !important;
    border-color: var(--info-color-light) !important;
}

.form-check-input.check-success:checked {
    background-color: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

.input-icon {
    position: absolute;
    top: 15px;
    left: 15px;
}


/**********
badges labels
***************/

.label-danger {
    background: #FF5370
}

.label-success {
    background: var(--success-color)
}

.label-grey {
    background: #ccc
}

.label {
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 2px 7px;
    margin-right: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.label-default {
    background-color: #e0e0e0 !important;
    border-color: #e0e0e0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.label-inverse-default {
    border: 1px solid;
    border-color: #e0e0e0;
    color: #e0e0e0 !important;
}

.label-inverse-primary {
    border: 1px solid;
    border-color: var(--main-color);
    color: var(--main-color) !important;
}

.label-inverse-success {
    border: 1px solid;
    border-color: var(--success-color);
    color: var(--success-color) !important;
}

.label-inverse-warning {
    border: 1px solid;
    border-color: #f1c40f;
    color: #f1c40f !important;
}

.label-inverse-danger {
    border: 1px solid;
    border-color: #FF5370;
    color: #FF5370 !important;
}

.label-inverse-red {
    border: 1px solid;
    border-color: #FF5370;
    color: #FF5370 !important;
}

.label-inverse-info {
    border: 1px solid;
    border-color: var(--info-color);
    color: var(--info-color) !important;
}

.label-inverse-info {
    border: 1px solid;
    border-color: var(--info-color);
    color: var(--info-color) !important;
}

.label-inverse-info-border {
    border: 1px solid;
    border-color: #222;
    color: #222 !important;
}


/************modales***************/

.bg-title-modal {
    position: absolute;
    width: 100%;
    height: 70px;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.bg-title-modal.danger {
    background-color: #F64E60;
}


/*perfect scrollbar*/

.ps-scrollbar-y-rail {
    right: 0px !important
}


/*scrollbar menu*/

.scrollMenu {
    height: 55vh;
    overflow: hidden;
    position: relative;
}

.scrollMenu .ps-scrollbar-y-rail {
    background-color: var(--main-color-light);
    height: 100vh;
}

.ps-container .ps-scrollbar-y-rail:hover,
.ps-container .ps-scrollbar-y-rail.hover {
    background-color: #606685 !important;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.scrollMenu .ps-scrollbar-y {
    background-color: var(--main-color-dark);
    width: 5px;
}

.scrollMenu .ps-scrollbar-y-rail {
    width: 5px;
}


/*blob pulse*/

.blob {
    content: '\f337';
    font-family: 'Material-Design-Iconic-Font';
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black 2s infinite;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

.blob.red {
    color: var(--danger-color);
    box-shadow: 0 0 0 0 rgb(217, 68, 51);
    animation: pulse-red 2s infinite;
}

.blob.green {
    color: rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    animation: pulse-green 2s infinite;
    border-radius: 50%;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(254, 40, 40, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}


/***********
login
***********/

.showPass {
    position: absolute;
    right: 40px;
    bottom: 20px;
    font-size: 20px;
    cursor: pointer;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    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: #f2f2f2;
}

.wrap-login100 {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}


/*==================================================================
[ login more ]*/

.login100-more {
    width: calc(100% - 650px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.login100-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
}


/*==================================================================
[ Form ]*/

.login100-form {
    width: 650px;
    min-height: 100vh;
    display: block;
    background-color: #f6f8fc;
    padding: 0px 55px;
}

.login100-form-title {
    width: 100%;
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    height: 80px;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom: 10px;
}

.label-input100 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #999999;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 24px;
    left: 0;
    top: 30px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100 {
    display: block;
    width: 100%;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    padding: 0 26px;
}

input.input100 {
    height: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


/*---------------------------------------------*/

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #6675df;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus+.focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.eff-focus-selection {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.input100:focus {
    height: 48px;
}

.input100:focus+.focus-input100+.label-input100 {
    top: 14px;
    font-size: 13px;
}

.has-val {
    height: 48px !important;
}

.has-val+.focus-input100+.label-input100 {
    top: 14px;
    font-size: 13px;
}

.rect-log {
    z-index: 3;
    padding: 40px;
    background-color: rgba(106, 155, 97, 0.7);
    position: absolute;
    left: 15px;
    top: 35%;
    border-radius: 30px;
    width: 65%
}


/* ---------------------------------------------------
    SIDEBAR  bioblioteca
----------------------------------------------------- */

.wrapper {}

.btn-close-sidebiblio {
    background: transparent;
    border: 0px;
    box-shadow: none;
    font-size: 30px;
    color: rgba(79, 79, 79, 0.5);
}

#sidebiblio {
    min-width: 290px;
    max-width: 290px;
    background: #f6f8fc;
    color: #000;
    transition: all 0.3s;
    position: fixed;
    top: 50px;
    bottom: 0px;
    margin-left: -360px;
    z-index: 3;
    box-shadow: 4px 4px 9px -6px rgba(0, 0, 0, 0.48);
    -webkit-box-shadow: 4px 4px 9px -6px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: 4px 4px 9px -6px rgba(0, 0, 0, 0.48);
}

#sidebiblio.active {
    margin-left: 0px;
}


/* ---------------------------------------------------
  CONTENT STYLE
----------------------------------------------------- */

#sidebiblio.active>#content {
    translate: 360px;
}

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

.translateSide {
    translate: 360px;
}


/* ---------------------------------------------------
  MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebiblio {
        margin-left: 0;
    }
    #sidebiblio.active {
        margin-left: -360px;
    }
    #sidebarCollapse span {
        display: none;
    }
    .w-40-cont-search {
        width: 100% !important
    }
}


/******
anchos
**********/

.w-40-cont-search {
    width: 40%;
}


/*biblioteca*/

.breadcrumb-biblio {
    font-size: 12px;
}

.breadcrumb-biblio span:after {
    content: ">";
    padding: 0 5px;
}

.breadcrumb-biblio span:last-child:after {
    content: ""
}

.input-search-bliblio {
    background-color: #EDF2FC;
    border: 0px;
    text-indent: 50px;
}

.input-search-bliblio:focus {
    background-color: #dfeaff;
    border: 0px;
}

.btn-Search {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 30px;
    color: #666;
    width: 45px;
    height: 45px;
    text-align: center;
}

.btn-Search:hover,
.btn-Search:active,
.btn-Search:focus {
    background: #fefeff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #666;
}

.btn-Search-advance {
    position: absolute;
    right: 10px;
    top: -50px;
    font-size: 30px;
    color: #666;
    width: 45px;
    height: 45px;
    text-align: center;
}

.btn-Search-advance:hover,
.btn-Search-advance:active,
.btn-Search:focus {
    background: #fefeff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #666;
}

.ddlBusquedaAvanzada {
    min-width: 460px;
}

@media all and (max-width: 480px) {
    .ddlBusquedaAvanzada {
        min-width: 320px;
    }
}

.btn-list {
    font-size: 20px;
    color: #666;
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    line-height: 40px;
}

.btn-list:hover,
.btn-list:active,
.btn-list:focus {
    background: #d8d8da;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #666;
}

@media all and (max-width: 480px) {
    .btn-list {
        font-size: 20px;
        color: #666;
        width: 150px;
        text-align: center;
        display: flex;
        line-height: 40px;
        margin: 10px auto 0;
        border-radius: 30px;
        border: 1px solid #d8d8da;
        align-items: center;
        justify-content: center;
    }
    .btn-list:after {
        content: "Descargar";
        font-size: 14px;
        padding-left: 5px;
    }
    .btn-list:hover,
    .btn-list:active,
    .btn-list:focus {
        background: #d8d8da;
        border-radius: 30px;
        text-align: center;
        color: #666;
        width: 150px;
    }
}

.card-biblio {
    display: flex;
    height: 85vh;
    width: 100%;
}

.listado-scroll-biblio {
    height: 70vh;
    overflow: hidden;
}

@media all and (max-width: 480px) {
    .card-biblio {
        height: 80vh;
    }
    .listado-scroll-biblio {
        height: 60vh;
        overflow: hidden;
    }
}

.card-biblio .card-header {
    border-radius: 25px 25px 0 0;
    background-color: #fff;
}

.card-biblio .card-footer {
    border-radius: 0 0 25px 25px;
}


/* 
---------------------------------------------
Treeview Style
--------------------------------------------- 
*/

.treeViewBiblioteca {
    margin: 0;
    padding: 0;
}

.fa-folder-o {
    cursor: pointer;
    -webkit-user-select: none;
    /* Safari 3.1+ */
    -moz-user-select: none;
    /* Firefox 2+ */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

.fa-folder-o::before {
    content: "\f07b";
    color: black;
    display: inline-block;
    margin-right: 6px;
    font-family: 'Font Awesome 5 Free';
    font-size: 25px
}

.fa-folder-o-down {
    cursor: pointer;
    -webkit-user-select: none;
    /* Safari 3.1+ */
    -moz-user-select: none;
    /* Firefox 2+ */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
}

.fa-folder-o-down::before {
    content: "\f07c";
    color: rgb(4, 170, 139);
    display: inline-block;
    margin-right: 6px;
    font-family: 'Font Awesome 5 Free';
    font-size: 25px
}

.treeViewBiblioteca {
    font-size: 14px
}

.nested {
    display: none;
    transition: all .5s;
}

li div {
    padding: 10px 0;
    display: inline-block;
}

.nested li {
    padding: 15px 0;
}

.nested a {
    color: #000;
    padding-left: 25px;
}

.nested a:hover {
    color: #444444
}

.active {
    display: block;
    transition: all .5s;
}

.treeViewBiblioteca li {
    padding: 8px 10px;
}


/* 
---------------------------------------------
Section Style
--------------------------------------------- 
*/

.section {
    padding-top: 30px;
    margin-top: 90px;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading .line-dec {
    width: 60px;
    height: 2px;
    margin-bottom: 20px;
    background: rgb(57, 113, 87);
    background: linear-gradient(90deg, rgba(57, 113, 87), 1) 0%, rgb(196, 236, 217) 100%;
}

.section-heading h2 {
    color: #2a2a2a;
    font-size: 30px;
    text-decoration: none;
    margin-bottom: 30px;
    line-height: 44px;
}

.section-heading h2 em {
    color: #3b7e29;
    font-style: normal;
}

.section-heading h2 span {
    color: #376a29;
}


/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
    position: relative;
    padding: 100px 0px 185px 0px;
}

.main-banner:before {
    content: url(../images/banner-right.png);
    top: 20px;
    left: 10px;
    position: absolute;
    width: 500px;
    height: 600px;
    z-index: -1;
}

.main-banner h6 {
    font-size: 20px;
    color: #4dad32;
    text-transform: uppercase;
    font-weight: 700;
}

.main-banner .line-dec {
    margin: 30px 0px 20px 0px;
    width: 210px;
    height: 2px;
    background-color: #a5d697;
}

.main-banner h4 {
    font-size: 52px;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 20px;
}

.main-banner h4 em {
    font-style: normal;
    color: #4dad32;
}

.main-banner h4 span {
    color: #4dad32;
}

.main-banner p {
    padding-right: 25%;
    margin-bottom: 30px;
}

.main-banner .main-button {
    display: inline-block;
}

.main-banner span {
    display: inline-block;
    margin: 0px 10px 0px 10px;
    color: #7a7a7a;
}

.main-banner .second-button {
    display: inline-block;
}

@media (max-width: 767px) {
    .main-banner:before {
        content: url(../images/banner-right.png);
        top: 20px;
        left: -260px;
        position: absolute;
        width: 50px;
        height: 100px;
        z-index: -1;
    }
    .main-banner {
        padding: 65px 0px;
    }
    .main-banner h4 {
        font-size: 36px;
        line-height: 44px;
    }
    .main-banner span {
        margin: 0px 3px 0px 3px;
    }
    .main-banner .main-button a,
    .main-banner .second-button a {
        padding: 12px 20px;
    }
}

@media (max-width: 992px) {
    .main-banner .caption {
        padding: 30px !important;
        text-align: center;
    }
    .main-banner p {
        padding-right: 0%;
    }
    .main-banner .line-dec {
        margin: 30px auto 20px auto;
    }
}

@media (max-width: 1000px) {}

@media (max-width: 1200px) {}

@media (max-width: 1400px) {
    .main-banner .caption {
        background-color: rgba(250, 250, 250, 0.95);
        padding: 60px;
        border-radius: 23px;
    }
}


/* 
---------------------------------------------
 Que hacer Style
--------------------------------------------- 
*/

.quehacer {
    background-color: var(--main-color-light);
    padding: 60px 0;
}

.quehacer .quehacer-item {
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    background-color: var(--main-color-light-light);
}


/* 
---------------------------------------------
Mi perfil Style
--------------------------------------------- 
*/

.bg-top {
    position: absolute;
    width: 100%;
    top: 50px;
    height: 100px;
    left: 0px;
}

.scroll-down {
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.scroll-down a {
    display: inline-block;
    width: 115px;
    height: 80px;
    background: url('../images/down-arrow.png') no-repeat center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-animation-name: jump;
    -moz-animation-name: jump;
    -o-animation-name: jump;
    -ms-animation-name: jump;
    animation-name: jump;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    -ms-animation-duration: 2s;
    animation-duration: 2s;
}

.scroll-down a:hover {
    -webkit-animation-name: none;
    -moz-animation-name: none;
    -o-animation-name: none;
    -ms-animation-name: none;
    animation-name: none;
}

@-moz-keyframes jump {
    0% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    70% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    70% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@-o-keyframes jump {
    0% {
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    70% {
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@-ms-keyframes jump {
    0% {
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    70% {
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-30px);
    }
}

.circle {
    background-color: #fff;
    height: 70px;
    width: 50px;
    display: block;
    border: 3px solid var(--main-color);
    ;
    border-radius: 100px;
    position: absolute;
    bottom: 5px;
    z-index: 1;
    animation-name: circle;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
    -webkit-animation-name: circle;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
}

.fa-icon {
    font-size: 20px;
    color: var(--main-color);
    ;
    bottom: 27px;
    position: absolute;
    margin: 0 auto;
    right: 30%;
    animation-name: arrow;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
    -webkit-animation-name: arrow;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
}

.pulse {
    margin: 0 auto;
    border-radius: 100px;
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 0;
    background-color: transparent;
    opacity: 0;
    width: 40px;
    height: 80px;
    border: 10px solid #00baff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    /* Giving Animation Function */
    -webkit-animation: pulse 1s linear infinite 0.3s;
    -moz-animation: pulse 1s linear infinite 0.3s;
    border-image: initial;
}

@keyframes arrow {
    0% {
        bottom: 0;
    }
    75% {
        bottom: 40px;
    }
    100% {
        bottom: 0;
    }
}

@-webkit-keyframes arrow {
    0% {
        bottom: 0;
    }
    75% {
        bottom: 40px;
    }
    100% {
        bottom: 0;
    }
}

@keyframes circle {
    0% {
        height: 80px;
    }
    10% {
        height: 80px;
    }
    50% {
        height: 80px;
    }
    75% {
        height: 80px;
    }
    90% {
        height: 70px;
    }
    100% {
        height: 70px;
    }
}

@-webkit-keyframes circle {
    0% {
        height: 60px;
    }
    10% {
        height: 60px;
    }
    50% {
        height: 70px;
    }
    75% {
        height: 80px;
    }
    90% {
        height: 80px;
    }
    100% {
        height: 70px;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    8% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    15% {
        -webkit-transform: scale(0.1);
        opacity: 1;
    }
    30% {
        -webkit-transform: scale(0.5);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    8% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    15% {
        -webkit-transform: scale(0.1);
        opacity: 1;
    }
    30% {
        -webkit-transform: scale(0.5);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}


/*---------------------------------------------
Input file
--------------------------------------------- 
*/

.box {
    border-radius: 50%;
    left: 0;
    right: 0;
    bottom: 0px;
    top: 0px;
    margin: auto;
    width: 50px;
    height: 50px;
    position: absolute;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 60px;
    border: 2px solid #fff;
    background: rgba(250, 250, 250, 0.5)
}

.no-js .inputfile+label {
    display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile+label svg {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    fill: #fff;
}

.inputfile-perfil+label {
    color: #217220;
}

.inputfile-perfil:focus+label,
.inputfile-perfil.has-focus+label,
.inputfile-perfil+label:hover {
    color: #217220;
    border: 3px solid #fff;
}

.inputfile-perfil+label figure {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.inputfile-perfil:focus+label figure,
.inputfile-perfil.has-focus+label figure,
.inputfile-perfil+label:hover figure {
    background-color: #217220;
}

.inputfile-perfil+label figure::after {
    border-bottom: 20px solid #217220;
    border-right: 20px solid transparent;
}

.inputfile-perfil:focus+label figure::after,
.inputfile-perfil.has-focus+label figure::after,
.inputfile-perfil+label:hover figure::after {
    border-bottom-color: #217220;
}

.inputfile-perfil+label svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    position: absolute;
    top: 9px;
    bottom: 0;
    margin: 0 auto;
    left: -3px;
    right: 0;
}

.typewriter {
    /* white-space: pre-wrap; */
    /* para respetar saltos de línea si los hubiera */
}

.texto-responsive {
    font-size: 12px;
    /* tamaño por defecto */
}

@media (min-width: 576px) {
    .texto-responsive {
        font-size: 14px;
        /* tamaño para sm o mayor */
    }
}

.toggle-grande {
    transform: scale(1.5);
    /* más grande todavía */
    cursor: pointer;
}

.border-dash-bottom {
    border-bottom: 1px dashed #ccc;
}