:root{
    --color-main: #322862;
    --box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --box-200: #edf2f9;
    --color-main-red: rgb(230, 0, 0);
    --color-main-green: rgb(95, 255, 143);
    --animate-delay: 0.5s;
}

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}


* {
    box-sizing: border-box;
    margin:0px;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html,
body {
    color: #606468;
    font: 87.5%/1.5em 'Open Sans', sans-serif;
    margin: 0;
    line-height: 18px;
    height:calc(100vh);
    width:100%;
}

.main{
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 60px;
}

a {
  text-decoration: none;
  color: #455A64;
}

input {
	border: none;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	padding: 0;
}

/* Especificar estilos para los checkboxes */
.custom-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	user-select: none;
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
	background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
	background-color: #2196F3;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
	display: block;
}

.custom-checkbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}


input.text-date{
    width: 104px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 5px;
    margin-right: 5px;
}
.fa{
    font-size: 14px !important;
}
form{
    width: 100%;
}
.btn:hover{
    background-color: #62c2e4 !important;
}
.row{
    align-items: center;
    margin-right: 0px !important;
}

.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.full-height{
    min-height: 80vh;
}
.form-opacity-5{
    background: rgba(0,0,0,.5);
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
}

.form-new-style-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.form-new-style{
    box-sizing: border-box;
    border-radius: 10px;
}

.form-new-style .form-box-group, 
.form-new-style-block .form-box-group{
    position: relative;
}

.form-new-style .form-box-group input,
.form-new-style-block .form-box-group input
{
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.form-new-style .form-box-group label,
.form-new-style-block .form-box-group label
 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.form-new-style .form-box-group input:focus ~ label,
.form-new-style .form-box-group input:valid ~ label,
.form-new-style-block .form-box-group input:focus ~ label,
.form-new-style-block .form-box-group input:valid ~ label{
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}

.btn-neon-info {
    color: #15a4e6;
}

.btn-neon-success {
    color: #47ce42;
}
.btn-neon-danger {
    color: #ff4255;
}
.btn-neon-primary {
    color: #2793f8;
}
.btn-neon-warning {
    color: #ffe607;
}
.btn-neon-secundary {
    color: #979797;
}

/* botones neon modernos */
.form-new-style a,
.form-new-style-block a{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    letter-spacing: 4px
}

.form-new-style a.btn-neon-info:hover,
.form-new-style-block a.btn-neon-info:hover{
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 100px #03e9f4;
}

.form-new-style a.btn-neon-warning:hover,
.form-new-style-block a.btn-neon-warning:hover{
    background: #ffe607;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #ffe607,
                0 0 25px #ffe607,
                0 0 50px #ffe607,
                0 0 100px #ffe607;
}


.form-new-style a.btn-neon-danger:hover,
.form-new-style-block a.btn-neon-danger:hover{
    background: #ff4255;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #ff4255,
                0 0 25px #ff4255,
                0 0 50px #ff4255,
                0 0 100px #ff4255;
}

.form-new-style a.btn-neon-primary:hover,
.form-new-style-block a.btn-neon-primary:hover{
    background: #2793f8;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #2793f8,
                0 0 25px #2793f8,
                0 0 50px #2793f8,
                0 0 100px #2793f8;
}

.form-new-style a.btn-neon-success:hover,
.form-new-style-block a.btn-neon-success:hover{
    background: #47ce42;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #47ce42,
                0 0 25px #47ce42,
                0 0 50px #47ce42,
                0 0 100px #47ce42;
}

.form-new-style a.btn-neon-secundary:hover,
.form-new-style-block a.btn-neon-secundary:hover{
    background: #979797;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #979797,
                0 0 25px #979797,
                0 0 50px #979797,
                0 0 100px #979797;
}

.form-new-style a span,
.form-new-style-block a span{
    position: absolute;
    display: block;
}

.form-new-style a.btn-neon-info span:nth-child(1),
.form-new-style-block a.btn-neon-info span:nth-child(1) {
    background: linear-gradient(90deg, transparent, #03e9f4);
}
.form-new-style a.btn-neon-warning span:nth-child(1),
.form-new-style-block a.btn-neon-warning span:nth-child(1) {
    background: linear-gradient(90deg, transparent, #ffe607);
}
.form-new-style a.btn-neon-danger span:nth-child(1),
.form-new-style-block a.btn-neon-danger span:nth-child(1) {
    background: linear-gradient(90deg, transparent, #ff4255);
}
.form-new-style a.btn-neon-primary span:nth-child(1),
.form-new-style-block a.btn-neon-primary span:nth-child(1) {
    background: linear-gradient(90deg, transparent, #2793f8);
}
.form-new-style a.btn-neon-success span:nth-child(1),
.form-new-style-block a.btn-neon-success span:nth-child(1) {
    background: linear-gradient(90deg, transparent, #47ce42);
}
.form-new-style a.btn-neon-secundary span:nth-child(1),
.form-new-style-block a.btn-neon-secundary span:nth-child(1) {
    background: linear-gradient(90deg, transparent, #979797);
}


.form-new-style a span:nth-child(1),
.form-new-style-block a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    animation: btn-anim1 1s linear infinite;
}
  
@keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
}


.form-new-style a.btn-neon-info span:nth-child(2),
.form-new-style-block a.btn-neon-info span:nth-child(2) {
    background: linear-gradient(180deg, transparent, #03e9f4);
}
.form-new-style a.btn-neon-warning span:nth-child(2),
.form-new-style-block a.btn-neon-warning span:nth-child(2) {
    background: linear-gradient(180deg, transparent, #ffe607);
}
.form-new-style a.btn-neon-danger span:nth-child(2),
.form-new-style-block a.btn-neon-danger span:nth-child(2) {
    background: linear-gradient(180deg, transparent, #ff4255);
}
.form-new-style a.btn-neon-primary span:nth-child(2),
.form-new-style-block a.btn-neon-primary span:nth-child(2) {
    background: linear-gradient(180deg, transparent, #2793f8);
}
.form-new-style a.btn-neon-success span:nth-child(2),
.form-new-style-block a.btn-neon-success span:nth-child(2) {
    background: linear-gradient(180deg, transparent, #47ce42);
}
.form-new-style a.btn-neon-secundary span:nth-child(2),
.form-new-style-block a.btn-neon-secundary span:nth-child(2) {
    background: linear-gradient(180deg, transparent, #979797);
}

.form-new-style a span:nth-child(2),
.form-new-style-block a span:nth-child(2)
 {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}
  
@keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
}

.form-new-style a.btn-neon-info span:nth-child(3),
.form-new-style-block a.btn-neon-info span:nth-child(3) {
    background: linear-gradient(270deg, transparent, #03e9f4);
}
.form-new-style a.btn-neon-warning span:nth-child(3),
.form-new-style-block a.btn-neon-warning span:nth-child(3) {
    background: linear-gradient(270deg, transparent, #ffe607);
}
.form-new-style a.btn-neon-danger span:nth-child(3),
.form-new-style-block a.btn-neon-danger span:nth-child(3) {
    background: linear-gradient(270deg, transparent, #ff4255);
}
.form-new-style a.btn-neon-primary span:nth-child(3),
.form-new-style-block a.btn-neon-primary span:nth-child(3) {
    background: linear-gradient(270deg, transparent, #2793f8);
}
.form-new-style a.btn-neon-success span:nth-child(3),
.form-new-style-block a.btn-neon-success span:nth-child(3) {
    background: linear-gradient(270deg, transparent, #47ce42);
}
.form-new-style a.btn-neon-secundary span:nth-child(3),
.form-new-style-block a.btn-neon-secundary span:nth-child(3) {
    background: linear-gradient(270deg, transparent, #979797);
}

.form-new-style a span:nth-child(3),
.form-new-style-block a span:nth-child(3)
 {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}
  
@keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
}


.form-new-style a.btn-neon-info span:nth-child(4),
.form-new-style-block a.btn-neon-info span:nth-child(4) {
    background: linear-gradient(360deg, transparent, #03e9f4);
}
.form-new-style a.btn-neon-warning span:nth-child(4),
.form-new-style-block a.btn-neon-warning span:nth-child(4) {
    background: linear-gradient(360deg, transparent, #ffe607);
}
.form-new-style a.btn-neon-danger span:nth-child(4),
.form-new-style-block a.btn-neon-danger span:nth-child(4) {
    background: linear-gradient(360deg, transparent, #ff4255);
}
.form-new-style a.btn-neon-primary span:nth-child(4),
.form-new-style-block a.btn-neon-primary span:nth-child(4) {
    background: linear-gradient(360deg, transparent, #2793f8);
}
.form-new-style a.btn-neon-success span:nth-child(4),
.form-new-style-block a.btn-neon-success span:nth-child(4) {
    background: linear-gradient(360deg, transparent, #47ce42);
}
.form-new-style a.btn-neon-secundary span:nth-child(4),
.form-new-style-block a.btn-neon-secundary span:nth-child(4) {
    background: linear-gradient(360deg, transparent, #979797);
}

  
.form-new-style a span:nth-child(4),
.form-new-style-block a span:nth-child(4)
 {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}
  
@keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
}

  

/*scroll*/
/* width */
::-webkit-scrollbar {
    width: 8px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgb(197, 195, 195);
    border-radius: 5px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(22, 2, 94);
    border-radius: 5px;
  }

/* Menu Cabeceras */
.menu-label {
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    color: #ffc;
    width: 40px;
    height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-label:hover {
    color: #ffc;
}

.menu-label:hover .menu-icon,
.menu-label:hover .menu-icon:before,
.menu-label:hover .menu-icon:after {
    background-color: #ffc;
}

.menu-label:active {
    -webkit-tap-highlight-color: transparent;
}

.menu-label .menu-icon,
.menu-label .menu-icon::before,
.menu-label .menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 20px;
    cursor: pointer;
    background: #FFF;
    display: block;
    content: '';
    transition: all 500ms ease-in-out;
}
.menu-label .menu-icon {
    top: 50%;
    left: 10px;
}
.menu-label .menu-icon::before {
    top: 7px;
}
.menu-label .menu-icon::after {
    top: -7px;
}

.base-menu-ul{
    padding-left: 0rem;
}



.wrapper{
    position: relative;
    height: 100%;
}

.header {
    background-color: var(--color-main);
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 0, 0, .25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 70;
}

.header-title,.header-out-title {
    position: absolute;
    left: 60px;
    right: 15px;
    top: 18px;
    color: #FFF;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 120px;
    text-align: center;
}
.header-title {
    right: 50px;
}

.overlay {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .54);
}

.wrapper {
    position: relative;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

.drawer-toggle {
    left: -9999px;
    position: absolute;
    top: -9999px;
}
.drawer {
    background-color: #F5F1DE;
    position: fixed;
    top: 0;
    left: -230px;
    z-index: 100;
    height: 100%;
    will-change: transform;
    pointer-events: auto;
    width: 230px;

    -webkit-transition-property: all;
    -moz-transition-property: all;
    -ms-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;

    -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -moz-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -ms-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -o-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.drawer-overlay {
    position: fixed;
    z-index: 80;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, .54);
    transition: opacity .2s ease-in;
}

.drawer-toggle:checked ~ .drawer-overlay {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.drawer-toggle:checked ~ .drawer {
    left: 0;
}

.drawer-title {
    background:var(--color-main);
    padding: 5px;
    box-sizing: border-box;
    min-height: 90px;
}
.drawer-title span,
.drawer-title small {
    color: #fff;
    display: inline-block;
    word-break: break-all;
    vertical-align: middle;
    max-width: 160px;
}
.drawer-title span {
    font-size: 14px;
    padding-left: 20px;
}

.drawer-title::before {
    color: #fff;
    display: inline-block;
    font-size: 50px;
    margin-right: 5px;
}


  /* Menu Vertical */

.contenedor-menu {
    overflow: visible;
    overflow-y: auto;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    background: #fff;
}

.contenedor-menu .menu{
    width: 100%;
}

.contenedor-menu ul, .contenedor-menu li {
    list-style: none;
    background-color: lightsteelblue;
}

.contenedor-menu .menu li a {
    color: #606468;
    display: block;
    padding: 10px 15px;
    background: #fff;
}

.contenedor-menu .menu li a:hover{
    background-color:#5442a8;
    color:#fff;
    text-decoration: none;
}

.contenedor-menu .menu .icono{
    font-size: 15px;
    line-height: 15px;
}

.contenedor-menu .menu .icono.izq{
    float: left;
    margin-right: 10px;
}

.contenedor-menu .menu .icono.der{
    float: right;
    margin-left: 10px;
}

.contenedor-menu .menu ul li ul{
    display: none;
    padding-left: 0.7rem;
}

.contenedor-menu .menu ul li ul a{
    background: #424242;
    color: #e9e9e9;
}

.contenedor-menu .menu .activado > a{
    background: #5442a8;
    color: #fff;
}

.header .unreadCount {
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    background-color: #455A64;
    border: 1px solid var(--color-main);
}

.contenedor-menu .unreadCount {
    height: 16px;
    color: #fff;
    float: right;
    min-width: 16px;
    font-size: 12px;
    padding-top: 1px;
    margin-left: 15px;
    text-align: center;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: var(--color-main);
}

.user-name {
    margin-top: 8px;
}

.title {
    padding: 0;
    margin: 16px 0 0 16px;
    font-size: 16px;
    font-weight: normal;
    color: #999;
}

.error {
    color: #C33;
    display: inline-block;
}

.drawer-profile {
    float: left;
    color: #FFF;
    padding: 1px;
    margin: 1em 5px;
}
.drawer-profile-logo {
    color: #FFF;
}

.drawer-title .icon-user:before {
    font-size: 45px;
}

.drawer-text {
    top: 10px;
    position: absolute;
    left: 65px;
}

.drawer-text-logo{
    top: 61px;
    position: absolute;
    width: 100%;
    z-index: 1;
    padding-right: 20px;
}

.avatar {
    border-radius: 50%;
    position: relative;
    background: #dedede;
    background-size: cover;
    background-position: center;
}


  /*   NAV MENU */

.navbar {
    display: flex;
    padding: 0.8rem 0.8rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.navbar .navbar-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 400;
}

.nav-item {
    border-bottom: 0;
    cursor: pointer;
}

.nav-item > a > i > .badge {
    padding: .2rem .2rem;
    width: 20px;
}

.nav-item:hover{
    border-bottom: 0;
    cursor: pointer;
}

.navbar .navbar-nav .nav-link {
    color: rgba(255,255,255);
    display: block;
}

.dropdown-menu {
    font-size: 1rem;
    color: #212529;
    list-style: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-submenu {
    position: relative;
}
.dropdown-submenu>a:after {
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    float: right;
    margin-left: .5rem;
    margin-top: .5rem;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}


.colorgraph {
    opacity: 1;
    height: 5px !important;
    border-top: 0;
    background: #c4e17f;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}


.validate-field:invalid:focus {
    border-bottom-color: var(--color-main-red);
    box-shadow: 0 2px 0 0 var(--color-main-red);
}
.validate-field:not(:invalid):focus {
    border-bottom-color: var(--color-main-green);
    box-shadow: 0 2px 0 0 var(--color-main-green);
}

.col-form {
    z-index: 1000 !important;
    background: #0264d6;
    margin-top: 5%;
    border-radius: 10px;
}
.btn-link{
    color: #fff !important;
}

.btn-disabled{
    background-color: #ccc !important;
}

.form-control{
    margin-top: 1px;
    margin-bottom: 10px;
}

/* Pages */
.content {
    border: 0px solid white;
    position: relative;
    top: 20px;
    left: 0;
    right: 0;
    width: 99%;
    margin: 15px 5px;
    color:#fff;
}
.content-fixed {
    position: fixed !important;
    bottom: 0;
}
.content-title{
    text-decoration: underline;
}
.content-front{
    background:#FFFFFF;
    border-radius: 5px;
}

.container-front{
    margin:20px;
    border-radius:10px;
}
.CuadroListas{
    background: #FFFFFF;
    color: black;
    overflow-y:scroll;
    overflow-x: hidden;
    border:1px solid black;
    text-align: center;
}

.banner1,.banner2,.banner3,.banner4,.screen-fixed {
    position: relative;
    margin: 0px 0px;
}

.banner1{
    height: 600px;
}

.banner2{
    height: 300px;
}

.margin-up{
    margin-top: 50px;
}
.screen-fixed {
    bottom: 0;
    height: calc(85vh);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
/* Marquee header */
.marquee {
    position: absolute;
    width: 100%;
    background-color: black;
    height: 16px;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    width: 100%;
    color:white;
}

  
@font-face {
    font-family: 'FakeHopeFilled';
    src: url('./fonts/FakeHopeFilled.ttf');
}

iframe:focus {
    outline: none;
}

iframe[seamless] {
    display: block;
}
iframe{
    overflow: hidden;
}

/** animacion spin moderno*/

.wall-blocker {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 3200;
    filter: alpha(opacity=65);
    -moz-opacity: 65;
    opacity: 0.65;
    background-color: rgba(22, 3, 64, 0.779);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}


.loader{
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    -webkit-animation: spin 1.2s linear infinite;
}
.loader::before,.loader::after{
    content: '';
    position: absolute;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.loader::after{
    width: 85%;
    height: 85%;
    background-color: rgba(22, 3, 64, 0.979);
    top: 7.5%;
    left: 7.5%;
}
.loader::before{
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(
            0deg,
            rgb(226, 213, 27) 0%, 
            rgb(255, 163, 42) 50%,
            rgb(255, 110, 42) 100%
        );
    transform: translate(0%,0%);
}

@keyframes spin {
    to{
        transform: rotate(360deg)
    }
}

/** fin de animacion spin */



/* ----------------- Home Page Styles --------------- */
.hero-section {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/fondo_home.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.features-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #15a4e6;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 5rem 0;
    background-color: #000040;
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: #15a4e6;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 0 2rem;
    }
}

/* -----------end homepage ------- */

/* Animaciones para las transiciones del formulario */
.animate__animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.animate__fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.animate__fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

/* Estilos para los indicadores de paso */
.step-indicator.active span:first-child {
    border-color: #4F46E5;
    color: #4F46E5;
}

.step-indicator.active {
    color: #4F46E5;
}

/* Asegurarse que los pasos del formulario tengan un z-index apropiado */
.form-step {
    position: relative;
    z-index: 1;
}

.form-step:not(.hidden) {
    display: block;
}

/* Estilos mejorados para el header y navegación */
header.fixed {
    background-color: #4338ca !important; /* Un tono más sólido de indigo */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

header nav ul li a {
    color: #ffffff; /* Texto blanco sólido */
    font-weight: 500;
}



#userDropdown {
    color: #000 !important;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(229, 231, 235, 0.3);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

#userDropdown a {
    transition: all 0.2s ease;
}

#userDropdown a:hover {
    background-color: rgba(79, 70, 229, 0.1);
}


.ck-editor__editable {
    min-height: 400px;
}

/* Nuevos estilos para la lista y modal */
.prose {
    font-size: 0.875rem;
    line-height: 1.5;
}

.prose p {
    margin-bottom: 0.75rem;
}

.modal-backdrop {
    backdrop-filter: blur(2px);
}

/* Estilos para el editor */
.ck-editor__editable {
    min-height: 200px;
}

/* Estilos para alineación de texto */
.ck-content .text-left {
    text-align: left;
}

.ck-content .text-center {
    text-align: center;
}

.ck-content .text-right {
    text-align: right;
}

.ck-content .text-justify {
    text-align: justify;
}

/* Estilos para tamaños de texto */
.ck-content .text-tiny {
    font-size: 0.7em;
}

.ck-content .text-small {
    font-size: 0.85em;
}

.ck-content .text-big {
    font-size: 1.4em;
}

.ck-content .text-huge {
    font-size: 1.8em;
}

/* Estilos para el editor cuando está enfocado */
.ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused {
    border-color: #2563eb;
}

/* Estilos para la barra de herramientas */
.ck.ck-toolbar {
    border-color: #e5e7eb;
    background: #f9fafb;
}

.ck.ck-toolbar .ck-toolbar__items {
    flex-wrap: wrap;
}

/* Estilos para los botones de la barra de herramientas */
.ck.ck-button {
    color: #4b5563;
    padding: 4px 8px;
}

.ck.ck-button:hover {
    background: #e5e7eb;
}

.ck.ck-button.ck-on {
    background: #dbeafe;
    color: #2563eb;
}

/* Estilos para el selector de color */
.ck.ck-color-grid {
    grid-gap: 4px;
    padding: 8px;
}

.ck.ck-color-grid__tile {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* Estilos para tablas en el editor */
.ck-content table {
    border-collapse: collapse;
    margin: 1em 0;
}

.ck-content table td,
.ck-content table th {
    border: 1px solid #d1d5db;
    padding: 8px;
}

/* Estilos para listas */
.ck-content ul,
.ck-content ol {
    padding-left: 40px;
    margin: 1em 0;
}

.ck-content ul {
    list-style-type: disc;
}

.ck-content ol {
    list-style-type: decimal;
}

/* Estilos CKEditor */
/* Alineación de texto */
.ck-content .text-left {
    text-align: left;
}

.ck-content .text-center {
    text-align: center;
}

.ck-content .text-right {
    text-align: right;
}

.ck-content .text-justify {
    text-align: justify;
}

/* Tamaños de texto */
.ck-content .text-tiny {
    font-size: 0.7em;
}

.ck-content .text-small {
    font-size: 0.85em;
}

.ck-content .text-big {
    font-size: 1.4em;
}

.ck-content .text-huge {
    font-size: 1.8em;
}

/* Estilos generales del editor */
.ck-editor__editable_inline {
    min-height: 300px;
    padding: 1em;
}

/* Estilos para colores de texto y fondo */
.ck-content .pen-red {
    color: #e91313;
}

.ck-content .pen-green {
    color: #13e943;
}

.ck-content .pen-blue {
    color: #134de9;
}

.ck-content .marker-yellow {
    background-color: #fff159;
}

.ck-content .marker-green {
    background-color: #63f963;
}

.ck-content .marker-pink {
    background-color: #f963d8;
}

/* Estilos para bloques de citas */
.ck-content blockquote {
    border-left: 5px solid #ccc;
    font-style: italic;
    margin: 1.5em 0;
    padding: 0.5em 1em;
}

/* Estilos para código */
.ck-content pre {
    background: #2b2b2b;
    border-radius: 4px;
    color: #fff;
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
    padding: 1em;
    margin: 1em 0;
    white-space: pre-wrap;
}

/* Estilos para imágenes */
.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1em auto;
}

.ck-content .image > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 50px;
}

.ck-content .image-style-side {
    float: right;
    margin-left: 1.5em;
    max-width: 50%;
}

.ck-content .image-style-align-left {
    float: left;
    margin-right: 1.5em;
}

.ck-content .image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}

.ck-content .image-style-align-right {
    float: right;
    margin-left: 1.5em;
}

/* Estilos para tablas */
.ck-content .table {
    margin: 1em auto;
    display: table;
    width: 100%;
}

.ck-content .table table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #bfbfbf;
    width: 100%;
}

.ck-content .table table td,
.ck-content .table table th {
    border: 1px solid #bfbfbf;
    min-width: 2em;
    padding: .4em;
}

.ck-content .table table th {
    background: #f0f0f0;
    font-weight: bold;
}

/* Estilos para listas */
.ck-content ol {
    list-style-type: decimal;
}

.ck-content ul {
    list-style-type: disc;
}

.ck-content ul, .ck-content ol {
    padding-left: 40px;
    margin: 1em 0;
}

/* Estilo para enlaces */
.ck-content a {
    color: #1b76c4;
    text-decoration: underline;
}

.ck-content a:hover {
    text-decoration: none;
}

/* Estilos para la barra de herramientas */
.ck.ck-toolbar {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5em;
}

.ck.ck-toolbar__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.ck.ck-button {
    padding: 0.4em;
    border-radius: 4px;
    cursor: pointer;
}

.ck.ck-button:hover {
    background: #f0f0f0;
}

.ck.ck-button.ck-on {
    background: #e6e6e6;
}