@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

* {

  padding: 0;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  margin-left: 0px;
  margin-top: 0px;
  transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background-color: #F5FAFD;
}

:root {
  --primary: #19A9C9;
  --secondary: #686868;
  --tercero: #0c667b;
  --body: #F5FAFD;

}

.contenedor-general {
  /* height: 80%; */
  margin-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 20px 20px 70px;
  margin-left: 10px;
}

.content-wrapper {
  height: 100%;
}

.content-wrapper .row {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  line-height: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.content-wrapper .row .title {
  font-size: 3rem;
  color: #333;
  font-weight: 600;
}

.content-wrapper .row .time-container {
  font-size: 15rem;
  color: #333;
  font-weight: 600;
}

.content-wrapper .row .minutes {
  font-size: 3.5rem;
  color: #333;
  font-weight: 600;
}

/************************************************
FOOTER
************************************************ */

footer {
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*   padding-top: 10px;
  padding-bottom: 10px; */
  font-size: 15px;
  font-weight: 300;
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 3;
  height: 60px;
}

footer p {
  margin: 0;
  font-weight: 500;
}

/************************************************
FIN FOOTER
************************************************ */


/************************************************
HEADER
************************************************ */
header {
  width: 100%;
  height: 62px;
  background: #F5FAFD;

  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1;
  text-decoration: none;
}

header .titulo-header {
  color: var(--primary);
  font-weight: 600;
  font-size: 2rem;
  /* margin-left: 50px; */
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 51%;
  transform: translateX(-50%);
  width: 120%;
  /* Ancho del borde */
  height: 1px;
  /* Altura del borde */
  background-color: #68686824;
  /* Color del borde */
}

.content-sesion {
  margin-right: 20px;
  transition: all 600ms;
}

.content-sesion2 {
  margin-right: 270px;
}

/* .separador-header{
  margin-top: 80px;
  text-align: center;
width: 90%;
height: 1px;
background: var(--secondary);

} */
.btn-salir {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--primary);
}

/* plus sign */
.sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}

/* text */
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
}

/* hover effect on button width */
.btn-salir:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}

.btn-salir:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}

/* hover effect button's text */
.btn-salir:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
  text-align: center;
}

/* button click effect*/
.btn-salir:active {
  transform: translate(2px, 2px);
}

/* .icon__menu {
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(10px);
  margin-left: 80px;
  transition: all 300ms;
  text-decoration: none;
  color: var(--primary);


} */
.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);

}

.line {
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
  transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.icon__menu {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(10px);
  margin-left: -5px;
  margin-top: 5px;
  transition: all 300ms;
  text-decoration: none;
  color: var(--primary);


}

.icon__menu i {
  font-size: 20px;
  cursor: pointer;
  position: absolute;
}

.menu__side {
  width: 64px;
  height: 100%;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  color: #000000;
  font-size: 18px;
  text-decoration: none;

  z-index: 300;
  overflow: hidden;
  overflow-y: scroll;
  border-right: 1px solid var(--primary);
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 2;
}

/*Ocultar scroll para chrome, safari y opera*/
.menu__side::-webkit-scrollbar {
  display: none;
}

/*Ocultar scroll para IE, Edge y Firefox*/
.menu__side {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.name__page {
  padding: 3px 30px 0 30px;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.name__page img {
  /* filter: drop-shadow(0 3px 0px rgba(0, 0, 0, 0.5)); */

}

.name__page i {
  width: 20px;
  margin-right: 20px;
}

.options__menu {
  padding: 20px 6px;
  position: absolute;
  top: 80px;
}

.options__menu a {
  color: #202020;

  cursor: default;
  display: block;
  position: relative;
  transition: color 300ms;
  text-decoration: none;
  cursor: pointer;
}

.options__menu a:hover {
  color: white;
}

.options__menu .option {
  padding: 14px 0px;
  display: flex;
  align-items: center;
  position: relative;
  width: 238px;
  transition: all 300ms;
}

.options__menu .option:hover {
  background-color: #19a9c94a;
}

.options__menu .option:hover:before {
  content: '';
  width: 15px;
  height: 80%;
  background: var(--primary);
  position: absolute;
  top: 10%;
  left: -30px;
}

.options__menu .option:hover,
.option i {
  padding-left: 15px;


}


/* .options__menu .option:hover {
  margin-left: 14px;
} */

.options__menu .option i {
  width: 20px;
  margin-right: 36px;
  cursor: pointer;
  color: var(--primary);
  /* margin-bottom: 8px; */
}

.options__menu .option h5 {
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin: 0;
  font-size: 13px;
  color: var(--secondary);
}

a.selected {
  color: #202020;
}

.selected:before {
  content: '';
  width: 30px;
  height: 80%;
  background: var(--primary);
  position: absolute;
  top: 10%;
  left: -30px;
}

/*Clases para usar en JavaScript*/

.body_move {
  margin-left: 225px;
}

.p-20 {
  padding: 20px !important;
}

.menu__side_move {
  width: 235px;
}

.ml-15 {
  margin-left: 0px;
}

@media (max-width: 760px) {
  header {
    justify-content: end;

  }

  .ml-15 {
    margin-left: -10px;
  }

  .icon__menu {
    margin-right: 20px;
  }

  .body_move {
    margin-left: 0;
  }

  .menu__side {
    width: 238px;

  }

  .menu__side_move {
    width: 80px;
    left: -80px;
  }
}
.modal{
  text-transform: none;
  font-size: initial;

}
/************************************************
FIN HEADER
************************************************ */


/************************************************
ADMINISTRACION
************************************************ */
/* ADMINISTRACION */

textarea {
  resize: none;
}

.input_correo {
  background-color: transparent;
  width: 100%;
  border: 0;
}

.login-logo img {
  height: 120px;
}

.input-group .icon-input-left {
  position: absolute;
  height: 40px;
  width: 40px;
  color: #FFFFFF;
  z-index: 2;
  padding: 10px;
  font-size: 20px;
}

.input-group .icon-input-left+.form-control {
  padding-left: 35px;
}

.login-fondo {
  background: url(/skins/administracion/images/imagen-fondo.jpg) #CCCCCC fixed center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.login-caja {
  position: absolute;
  width: 400px;
  left: 50%;
  top: 100px;
  margin-left: -200px;
  background: rgba(0, 0, 0, 0.8);
}

.login-caja h1 {
  background: #29abe2;
  color: #FFFFFF;
  margin: 0;
  padding: 10px;
  font-weight: 300;
  font-size: 28px;
  text-align: center;
}

.login-caja .login-logo {
  text-align: center;
  padding-top: 10px;
}

.login-caja .login-content {
  padding: 20px;
  min-height: 250px;
  padding-right: 50px;
  padding-left: 50px;
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 300;
}

.logo-blanco {
  height: 91px;
  margin-bottom: 16px;
}

.login-caja .login-content label {
  font-weight: 300;
  color: #FFFFFF;
}

.login-caja .login-content .form-control {
  background: transparent;
  border-radius: 0;
  font-weight: 300;
  color: #FFFFFF;
}

.login-caja .login-content .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #FFFFFF;
  opacity: 1;
  /* Firefox */
  font-weight: 300;
  font-size: 14px;
}

.login-caja .login-content .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #FFFFFF;
  font-weight: 300;
  font-size: 14px;
}

.login-caja .login-content .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #FFFFFF;
  font-weight: 300;
  font-size: 14px;
}

.login-caja .login-content .olvido {
  margin-bottom: 10px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
}

.login-caja .login-content .error_login {
  background: rgba(255, 0, 0, 0.3);
  color: #FFFFFF;
  padding: 5px;
  text-align: center;
  border-radius: 0.5em;
  font-weight: 300;
  font-size: 14px;
}

.login-caja .login-content .mensaje_login {
  background: rgba(38, 168, 33, 0.6);
  color: #FFFFFF;
  padding: 5px;
  text-align: center;
  border-radius: 0.5em;
  font-weight: 300;
  font-size: 14px;
}

.btn-azul-login {
  background: #29abe2;
  color: #FFFFFF;
  font-weight: 300;
  padding: 4px;
  border: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.login-derechos {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #FFFFFF;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.login-derechos a {
  color: #29abe2;
}

.info-olvido {
  font-size: 16px;
  font-weight: 300;
}

.info-olvido strong {
  color: #29abe2;
  font-weight: 300;
}



.has-error {
  position: relative;
}

.has-error .form-control {
  border-color: #ffc4c4;
}

.has-error label {
  color: red;
}

.has-error .with-errors {
  background: #ffc4c4;
  color: #6b0a0a;
  padding: 5px;
  text-align: center;
  border-radius: 0 0 0.5em 0.5em;
  font-weight: 700;
  font-size: 10px;
  position: absolute;
  padding: 0;
  height: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: -4px;
}

/* 
header {
  background: #01C6F0;
  min-height: 80px;
  color: #FFFFFF;
  padding-top: 15px;
}

header .infousuario {
  text-align: right;
}

header .infousuario i {
  font-size: 20px;
}

header .infousuario .no-padding {
  padding-left: 0px;
  padding-right: 0px;
}

footer.panel-derechos {
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #FFFFFF;
  font-weight: 300;
  background: #000000;
  font-size: 14px;
}

footer.panel-derechos a {
  color: #29abe2;
}
 */
.kt-login-name {
  margin-right: 20px;
}

.enlace-salir {
  color: #FFFFFF;
  text-decoration: none;
  background: #a535b5;
  padding: 5px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: 40px;
  display: inline-block;
  border-radius: 5px;
}

.margen-header {
  margin-top: 15px;
}

.margen-logout {
  margin-top: 14px;
  font-size: 18px;
}

#panel-botones {
  background: #333333;
  color: #FFFFFF;
  min-height: calc(100vh - 110px);
  padding: 0;
}

#panel-botones ul {
  padding: 0;
  list-style-type: none;
}

#panel-botones ul li {
  display: block;

}

#panel-botones ul li a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  border-left: 4px transparent solid;
  padding: 10px 15px;
  font-weight: 300;
  font-size: 12px;
  padding-left: 4px;
  padding-right: 4px;
}

#panel-botones ul li a i {
  font-size: 20px;
  min-width: 30px;
  text-align: center;
}

#panel-botones .activo a,
#panel-botones li a:hover {
  border-left: 4px #a535b5 solid;
  background: #666666;
}


#contenido_panel {
  background: #EBF0F6;
  min-height: calc(100vh - 110px);
  padding: 0px;
}



.panel-titulo {
  background: #000000;
  color: #FFFFFF;
  font-size: 16px;
  text-indent: 10px;
  padding: 5px;
  font-weight: 300;
  padding-top: 11px;
  padding-bottom: 11px;
}

.div-dashboard {
  background: #FFFFFF;
  border-top: 3px solid #CDD1DB;
  margin-top: 15px;
  min-height: 230px;
}

.content-dashboard {
  background: var(--body);
  /* border-top: 3px solid #CDD1DB; */
  padding: 20px 0;
  /* margin-top: 20px; */
  margin-bottom: 20px;
}


.content-dashboard label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
}

thead td {
  /* text-transform: capitalize; */
  padding: 10px !important;
}

.div-dashboard h2 {
  color: #8D8D8D;
  font-size: 20px;
  margin-top: 10px;
  border-bottom: 1px solid #DBDFE7;
  font-weight: 300;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.div-dashboard h2 img {
  margin-top: -5px;
}

.div-dashboard h2 a {
  float: right;
  color: #CCCCCC;
}

.div-dashboard h2 a:hover {
  color: #09c2f7;
}

.div-whatsapp {
  background: #8CC63E;
  height: 230px;
  margin-top: 15px;
  text-align: center;
  width: 100%;
  display: table;
}

.div-whatsapp div {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  height: 230px;

}

.div-whatsapp h2 {
  color: #FFFFFF;
  font-size: 20px;
}

.div-whatsapp p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}

.redes {
  display: inline-block;
  margin: 10px;
}

.redes img {
  max-height: 60px;
}

.equis {
  color: #FB2C32;
  background: #CECECC;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 16px;
}

.ok {
  color: #006736;
  background: #CECECC;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 16px;
}

.pading-dashboard {
  padding: 40px;
  padding-top: 0;
}

.pading-dashboard h5 {
  background: #EEEEEE;
  padding: 10px;
  margin-top: 15px;
  font-size: 18px;
  color: #6B6B6B;
}

.contenedor-informacion {
  margin-top: 20px;
  background: #EEEEEE;
  display: table;
  width: 100%;

}

.contenedor-informacion .icono {
  background: #000000;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100px;
  height: 100px;
}

.contenedor-informacion .contenido {
  display: table-cell;
  vertical-align: top;
  text-align: left;
  padding: 10px;
  color: #6B6B6B;
  font-size: 14px;
  font-weight: 300;
}


.contenedor-informacion .contenido h4 {
  font-size: 18px;
}

.contenedor-informacion .contenido .boton {
  margin-top: 20px;
  width: 170px;
  text-align: center;
}

.contenedor-informacion .contenido a.btn-robot {
  background: #0ac6f0;
  color: #FFFFFF;
  padding: 8px;
  font-size: 20px;
  font-weight: 300;
}

.contenedor-informacion .contenido a.btn-sitemap {
  background: #000000;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 300;
  padding: 8px;
}

.contenedor-informacion .icono.telefono {
  background: #09c2f7;
}

.contenedor-informacion .icono.correo {
  background: #ff9900;
}

.contenedor-informacion .icono.direccion {
  background: #24b573;

}



.padding {
  padding-left: 15px;
  padding-right: 15px;
}

.margen-dashboard {
  margin-top: 20px;
}

.contenedor-informacion .icono-mapa {
  background: #000000;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 60px;
  height: 60px;
}

.contenedor-informacion .icono-mapa.latitud {
  background: #ff9900;
}

.contenedor-informacion .icono-mapa.longitud {
  background: #fe1e26;
}

.contenedor-informacion .icono-mapa.zoom {
  background: #0270bb;
}

.contenedor-informacion .icono-seo {
  background: #000000;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100px;
  height: 140px;
}

.contenedor-informacion .icono-seo.descripcion {
  background: #079345;
}

.contenedor-informacion .icono-seo.tags {
  background: #09c2f7;
}

.contenedor-informacion .icono-seo.archivos {
  background: #f89320;
}

.contenedor-informacion .icono-seo.scripts {
  background: #0170bd;
}

.contenedor-informacion .icono-seo.log {
  background: #fe1e26;
}

/* Marcela*/

.mapa {
  width: 100%;
  height: 250px;
  margin-top: 20px;
  border: 1px solid #CCCCCC;
}


.input-icono {
  width: 50px;
  text-align: center;
  display: inline-block;
}

.input-icono-grande {
  width: 80px;
  text-align: center;
  display: inline-block;
}

.icono-metricas {
  font-size: 38px;
  margin-top: 10px;
}

.fondo-facebook {
  background: #0f477f;
  color: #ffffff;
}

.fondo-azul {
  background: var(--primary);
  color: #ffffff;
}

.fondo-instagram {
  background: #a535b5;
  color: #ffffff;
}

.fondo-morado {
  background: var(--primary);
  color: #ffffff;
}

.fondo-azul-claro {
  background: var(--primary);
  color: #ffffff;
}

.fondo-twitter {
  background: #09c2f6;
  color: #ffffff;
}

.fondo-cafe {
  background: var(--primary);
  color: #ffffff;
}

.fondo-pinterest {
  background: #900909;
  color: #ffffff;
}

.fondo-rojo-claro {
  background: var(--primary);
  color: #ffffff;
}

.fondo-youtube {
  background: #fe0c04;
  color: #ffffff;
}

.fondo-rosado {
  background: var(--primary);
  color: #ffffff;
}

.fondo-flickr {
  background: #fe55b5;
  color: #ffffff;
}

.fondo-linkedin {
  background: #094483;
  color: #ffffff;
}

.fondo-google {
  background: #d52121;
  color: #ffffff;
}

.fondo-rojo {
  background: var(--primary);
  color: #ffffff;
}

.fondo-whatsapp {
  background: #8bc63d;
  color: #ffffff;
}


.fondo-verde-claro {
  background: var(--primary);
  color: #ffffff;
}

.fondo-telefono {
  background: #09c2f8;
  color: #ffffff;
}

.fondo-correo {
  background: #ff9901;
  color: #ffffff;
}

.fondo-direccion {
  background: #24b572;
  color: #ffffff;
}

.fondo-verde {
  background: var(--primary);
  color: #ffffff;
}

.fondo-mapa-latitud {
  background: #ff9901;
  color: #ffffff;
}

.fondo-mapa-longitud {
  background: #fe1e27;
  color: #ffffff;
}

.fondo-mapa-zoom {
  background: #026fbb;
  color: #ffffff;
}

.fondo-descripcion {
  background: #079345;
  color: #ffffff;
}

.fondo-tags {
  background: #09c2f8;
  color: #ffffff;
}

.fondo-scripts {
  background: #016fbd;
  color: #ffffff;
}

.btn-file-robot {
  background: #0ac6f0;
  color: #FFFFFF;
  padding: 8px;
  font-size: 20px;
  font-weight: 300;
  border-color: #0ac6f0;
  width: 140px;
}

.btn-file-robot:hover {
  background: #FFFFFF;
  color: #0ac6f0;
  border-color: #0ac6f0;
}

.btn-file-sitemap {
  background: #000000;
  color: #FFFFFF;
  padding: 8px;
  font-size: 20px;
  font-weight: 300;
  border-color: #000000;
  width: 140px;
}

.btn-file-sitemap:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #000000;
}

.botones-acciones {
  /* margin-top: 30px; */
  margin-bottom: 30px;
  text-align: right;
}

.btn-guardar {
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid var(--primary);
  transition: all 300ms;
}

.btn-guardar:hover {
  background: #FFFFFF;
  color: var(--primary);
}

.btn-cancelar {
  background: #fe1e26;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #fe1e26;
  transition: all 300ms;

}

.btn-cancelar:hover {
  background: #FFFFFF;
  color: #fe1e26;
}

.titulo-principal {
  margin-top: 10px;
  display: block;
  padding: 10px;
  width: 100%;
  text-transform: uppercase;
  margin-left: 20px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 20px;
}


.btn-azul,
.btn-success {
  background: #20C019;
  color: #ffffff !important;
  border: 1px solid #20C019;
  transition: all 300ms;
}

.btn-azul:hover,
.btn-success:hover {
  background: #ffffff;
  color: #20C019 !important;
  border: 1px solid #20C019;

}

.btn-success2 {
  background: #116c0d;
  color: #ffffff !important;
  border: 1px solid #116c0d;
  transition: all 300ms;
}

.btn-success2:hover {
  background: #ffffff;
  color: #116c0d !important;
  border: 1px solid #116c0d;

}

.btn-morado {
  background: #a535b5;
  color: #ffffff !important;
  border: 1px solid #a535b5;
}

.btn-morado:hover {
  background: #ffffff;
  color: #a535b5 !important;
}

.btn-azul-claro {
  background: var(--primary);
  color: #ffffff !important;
  border: 1px solid var(--primary);

}

.btn-azul-claro:hover {
  background: #ffffff;
  color: var(--primary) !important;
}

.btn-cafe {
  background: var(--primary);
  color: #ffffff !important;
  background: var(--primary);
}

.btn-cafe:hover {
  background: #ffffff !important;
  color: var(--primary) !important;
}

.btn-rojo-claro {
  background: #fe0c04;
  color: #ffffff !important;
  border: 1px solid #fe0c04;
}

.btn-rojo-claro:hover {
  background: #ffffff;
  color: #fe0c04 !important;
}

.btn-rosado {
  background: #fe55b5;
  color: #ffffff !important;
  border: 1px solid #fe55b5;
}

.btn-rosado:hover {
  background: #ffffff;
  color: #fe55b5 !important;
}


.btn-rojo {
  background: #d52121;
  color: #ffffff !important;
  border: 1px solid #d52121;
}

.btn-rojo:hover {
  background: #ffffff;
  color: #d52121 !important;
}

.btn-verde-claro {
  background: #8bc63d;
  color: #ffffff !important;
  border: 1px solid #8bc63d;
}

.btn-verde-claro:hover {
  background: #ffffff;
  color: #8bc63d !important;
}

.btn-verde {
  background: var(--primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--primary) !important;
}

.btn-verde:hover {
  background: #ffffff;
  color: #24b572 !important;
}

.franja-paginas {
  /* border-bottom: 1px solid #CCCCCC; */
  width: 100%;
  /*   padding-left: 20px;
  padding-right: 20px; 
  padding-bottom: 10px;*/
}

.franja-paginas .titulo-registro {
  padding-top: 5px;
  text-transform: uppercase;
  font-weight: 500;
  color: #888888;
}

.franja-paginas .texto-paginas {
  padding-top: 5px;
  font-weight: 500;
  color: #888888;
}

.page-link {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 500;
  transition: all 300ms;
}

.page-link:hover {
  color: var(--tercero);
  border-color: var(--primary);



  background: #EBF0F6;
}

.page-item.active .page-link {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.content-table {
  /*  margin-left: 20px;
  margin-right: 20px; */
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  margin-top: 20px;
  /* margin-bottom: 100px; */
}

.pagination-end {
  margin-bottom: 100px;
  margin-top: 10px;

}

.content-table .table {
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
}

.content-table .table thead {
  background: var(--primary);

  text-align: left;
  color: #FFFFFF;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

}

.content-table .table tbody {
  font-weight: 300;
  font-size: 12.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  /* color: var(--secondary); */
  font-weight: 500;

}

.content-table .table tbody tr:hover {
  background: #dbeeff;
}

.content-table .table tbody tr td>a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms;
}

.content-table .table tbody tr td>a :hover {
  color: var(--tercero);

}

.table>:not(caption)>*>* {
  padding: 1px 0;
  vertical-align: middle;
  display: table-cell;
  text-align: center;
}

label.input-group {
  margin-bottom: 0;
}

.thumbnail-administrator {
  height: 90px;
  width: 140px;
  object-fit: contain;
}

.up_table {
  display: inline-block;
  background: #f15925;
  border-color: #f15925;
}

.down_table {
  background: transparent;
  color: #f15925;
  display: inline-block;
  border-color: #f15925;
}

.up_table:hover,
.down_table:hover {
  background: #000000;
  color: #f15925;
  border-color: #f15925;
}

.tabla_log {
  font-size: 12px;
}

.tabla_log tr {
  border-bottom: 1px solid #FFFFFF;
}

.texto-log {
  font-size: 13px;
}

.radio-col {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

.input-group>.input-group-prepend>.input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-append,
.input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}

.radio-col input:checked+span {
  font-weight: bold;
  background: #DDDDDD;
  -webkit-box-shadow: inset 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
  box-shadow: inset 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
}

.radio-col input {
  position: absolute;
  opacity: 0;
}

.radio-col span {
  display: block;
  background: #EEEEEE;
  border: 1px solid #CCCCCC;
  border-radius: 0.5em;

  -webkit-box-shadow: 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
  box-shadow: 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
}

.radio-col span img {
  max-height: 60px;
}

.radio-disenio {
  display: block;
  text-align: center;
}

.radio-disenio input:checked+span {
  font-weight: bold;
  background: #DDDDDD;
  -webkit-box-shadow: inset 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
  box-shadow: inset 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
}

.radio-disenio input {
  position: absolute;
  opacity: 0;
}

.radio-disenio span {
  display: block;
  background: #EEEEEE;
  border: 1px solid #CCCCCC;
  border-radius: 0.5em;
  padding-top: 10px;
  padding-bottom: 10px;

  -webkit-box-shadow: 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
  box-shadow: 2px 2px 2px 0 rgba(00, 0, 0, 0.4);
}

.radio-disenio span img {
  max-height: 80px;
}

/* cambio de color Tiny */

.theme-tiny {
  display: inline-block;
  float: right;
  font-size: 12px;
}

.mce-toolbar-grp {
  background-color: #333333 !important;
  background-image: none !important;
  color: #FFFFFF !important;
}

#tinymce {
  color: #333333;
}

.mce-btn-group .mce-btn {
  border: 0;
}

.mce-btn-group .mce-btn button {
  background-color: #333333 !important;
  color: #FFFFFF !important;
}

.mce-btn-group .mce-btn .mce-ico,
.mce-caret {
  color: #FFFFFF;
  border-top-color: #FFFFFF !important;
}

.mce-text {
  background: transparent !important;
}

.mce-colorbutton:hover .mce-open {
  border-color: transparent !important;
}

/* fin  cambio de color Tiny */
/************************************************
CREACION DE USUARIOS
************************************************ */
.contenedor-empresa {
  display: none;
  transition: all 300ms;
  transition-property: display;
  transition-duration: 300ms;
}

.contenedor-ocupacion {
  display: none;
  transition: all 300ms;
  transition-property: display;
  transition-duration: 300ms;
}

#message {
  text-align: center;
  font-weight: 500;
}

.clave-success {
  color: var(--primary);
}

.clave-error {
  color: #EB5353;
}
.condition-not-met {
  color: red;
  font-weight: bold;
}
.condition-met {
  color: var(--primary);

  font-weight: bold;
}
/************************************************
FIN DE CREACION DE USUARIOS
************************************************ */


/************************************************
FIN DE ADMINISTRACION
************************************************ */
/* ADMINISTRACION */

/************************************************
INICIO DEL INDEX
************************************************ */
.contianer-home hr {


  border: 1px solid var(--primary);
  opacity: .45;
}

.contianer-home .row img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.contianer-home .row img:hover {
  transform: scale(1.1);
}

/************************************************
FIN DEL INDEX
************************************************ */
/************************************************
INICIO DE LOGIN
************************************************ */
.titulo-login {
  font-size: 3rem;
  font-weight: normal;
  line-height: 52px;
  color: #FFF;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  display: inline;
  padding: 4px 0 9px;
  /*    background: #ffffff02;
   backdrop-filter: blur(15px); */
  text-align: center;
  /* box-shadow: 17px 0 0 0 var(--primary), -17px 0 0 0 var(--primary); */
  text-shadow: 2px 2px 2px #0B0B0B;
  font-weight: bold;
  /* text-transform: uppercase; */

}

.form-login {
  border-radius: 25px;
  width: 100%;
  max-width: 380px;
  background-color: #F5FAFD;
}

@media (max-width:400px) {
  .form-login {
    margin-bottom: 70px;
  }
}

.form-login img {

  width: 200px;
  height: 150px;
  object-fit: contain;
}

.form-login hr {

  border: 1px solid var(--primary);
  opacity: .45;
}

.form-login h2 {
  color: var(--primary);
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin-bottom: 0;
}

.form-login .header-form {
  height: 25px;
  background: var(--primary);
  border-radius: 50px 50px 0px 0;
}

.form-login h3 {
  color: var(--primary);
  font-weight: 500;
  font-size: 21px;
  text-align: center;
  margin-bottom: 0;
}

.form-login h3+span {
  color: var(--secondary);
  font-size: 15px;
}

.form-login i {
  color: var(--secondary);
  font-size: 17px;
  margin-right: 5px;
}

.form-login .form-control {
  border-radius: 50px;
  border: 1px solid var(--primary);
  padding: 0.275rem 0.75rem
}

.form-login a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 400;
}



.btn-primary {
  /* display: flex; */
  min-height: 2.5em;
  height: auto;
  color: #FFF;
  min-width: 150px;
  width: auto;

  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 3px;
  /* letter-spacing: 1px; */
  transition: all 0.2s linear;
  cursor: pointer;
  border: none;
  background: var(--primary);
}

.btn-primary-home {
  /* display: flex; */
  min-height: 2.5em;
  height: auto;
  color: var(--primary);
  min-width: 150px;
  width: auto;
  border: 1px solid var(--primary);
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 3px;
  /* letter-spacing: 1px; */
  transition: all 0.2s linear;
  cursor: pointer;

  background: #FFF;
}

.btn-primary-volver {
  min-height: 2em;

}
.btn-volver {
  background: #FFF;
}

.btn-volver span {
  color: var(--primary) !important;

}

@media (max-width:400px) {
  .btn-primary {
    margin-bottom: 5px;
  }
}

.btn-primary>svg {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 20px;
  transition: all 0.4s ease-in;
  color: #FFF;
  fill: #FFF;
}
.btn-primary-home>svg {
  fill: var(--primary);
}

.btn-primary-home:hover>svg {
 /*  font-size: 1.2em;
  transform: translateX(5px); */
  fill: #FFF;

}
.btn-volver>svg {

  fill: var(--primary);
}


.btn-primary:hover>svg {
  font-size: 1.2em;
  transform: translateX(5px);
}

.btn-primary:hover {
  box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
  transform: translateY(-2px);
  background: var(--tercero);
}

.btn-primary-home:hover {
  box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
  transform: translateY(-2px);
  background: var(--primary);
  color: #FFF;
}



.btn-volver:hover {
  box-shadow: -1px 0px 1px #d1d1d1, 0px 0px 3px #ffffff;
  transform: translateY(-2px);
  background: #c0c0c0;
}

.btn-primary span {
  color: #fff;

}

/************************************************
FIN DE LOGIN
************************************************ */
/************************************************
INICIO DE PANEL
************************************************ */
.titulo-home {
  color: var(--primary);
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
}

h3 {
  color: var(--primary);
  text-align: center;
  font-weight: 600;
  font-size: 1.55em;
  margin-top: 10px;

  margin-bottom: 25px;

}

.card-empresas {
  width: 100%;
  max-width: 20rem;
  margin-bottom: 10px;
  --bs-card-border-radius: 10px;
}

.card-empresas img {
  width: 100%;
  max-width: 19.9rem;
  height: 160px;
  object-fit: contain;
  object-position: center center;
  margin: auto 0;
  border-radius: 0 0 10px 10px;

}

.card-empresas h4 {
  color: var(--secondary);
  font-size: 17px;
  text-align: center;
  font-weight: 900;
}

.card-empresas .card-body {
  background: var(--primary);
  padding: 5px 0px;
  border-radius: 0 0 10px 10px;
}

.card-empresas .card-body .div-button {

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;


}

.card-empresas .card-body a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  color: #FFF;
  font-weight: 600;
  padding: 10px 1px;
  transition: all 300ms;

}

.card-empresas .card-body a:hover {
  background: var(--tercero);


}

.card-empresas .card-body .div-divisor::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  height: 50%;
  width: 50%;
  /* Ajusta el ancho del borde derecho según tus necesidades */
  border-right: 1px solid #FFF;
  /* Define el borde derecho */
}

/************************************************
FIN  DE PANEL
************************************************ */

/************************************************
INICIO DE HOJA DE VIDA
************************************************ */
/* .btn-tab {
  border: none;
  display: flex;
  position: relative;
  padding: 0.7em 0.4em;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: var(--primary);
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  width: 200px;
  justify-content: center;

} */

 .btn-tab {
  text-decoration: none;
  padding: 0.7em 0.4em;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;

  font-weight: 500;
  font-size: 14px;

  transition: 0.3s;
  z-index: 1;
  font-family: inherit;
  border-radius: 4px;
  color: var(--primary);
  /* min-width: 7rem; */
  width: 200px;
  margin: 0 auto;
}

/*
.btn-tab::before {
  content: "";
  width: 0;
  height: 450%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(to right, var(--primary), var(--primary));
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}
.btn-tab.active::before {
  content: "";


  width: 105%;
  height: 450%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(to right, var(--primary), var(--primary));
  transition: 0.5s ease;
  display: block;
  z-index: -1;
  

}

.btn-tab:hover::before {
  width: 105%;
}
*/
.btn-tab.active,.btn-tab:hover {
  color: #fff;
} 
/* 
.btn-tab span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 1px solid var(--primary);
}

.btn-tab span::before {
  content: "";
  display: block;
  position: absolute;
  width: 5%;
  height: 500%;
  background: #F5FAFD;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.5s;
}

.btn-tab:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  height: 1000%;

  background: var(--primary);
}

.btn-tab:hover {
  color: white;
}

.btn-tab:active span::before {
  background: var(--primary);
}

.btn-tab.active {
  background: var(--primary);
  color: #FFF;
}

.btn-tab.active span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  height: 1000%;

  background: var(--primary);
}
 */
/************************************************
FIN  DE HOJA DE VIDA
************************************************ */

/************************************************
INICIO DE VENCIMIENTOS
************************************************ */
.card-vencimiento {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card-vencimiento .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 300ms;
}

.card-vencimiento .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  opacity: 0.9; /* Ajusta el valor de opacidad para hacerla más opaca */
}

.card-vencimiento:hover .image {
  transform: scale(1.1); /* Agranda la imagen en un 10% */
}

.card-vencimiento:hover .image img {
  opacity: 1; /* Al hacer hover, establece la opacidad en 1 para que se vea más clara */
}

.card-vencimiento .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 5px;
  text-align: center;
  background-color: rgba(25, 169, 201, 0.6);
      color: #FFF;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 300ms; /* Agrega una transicin para suavizar el cambio de fondo */
}

.card-vencimiento:hover .title {
  background-color: rgba(25, 169, 201, 0.9); /* Cambia el valor a transparente con transparencia */
}
/************************************************
FIN DE VENCIMIENTOS
************************************************ */
/************************************************
VENCIMIENTO DE VACACIONES
************************************************ */
.rojo {
  all: unset;
  background-color: #FF6969 !important;
  color: #FFF !important;
  font-weight: 500 !important;
}

.naranja {
  background-color: #FFAE6D !important;
  color: #FFF !important;
  font-weight: 500 !important;
}

.amarillo {
  background-color: #FFEA20 !important;
  color: #FFF !important;
  font-weight: 500 !important;
}

.azul {
  background-color: #3A98B9 !important;
  color: #FFF !important;
  font-weight: 500 !important;
}

.verde {
  background-color: #A8DF65 !important;
  color: #FFF !important;
  font-weight: 500 !important;
}

/************************************************
FIN DE VENCIMIENTO DE VACACIONES
************************************************ */

/************************************************
INICIO DE CONSOLIDADO HORAS
************************************************ */

.btn-consolidado{
  padding: 5px;
  width: 220px;
  font-size: 12px;
}
.btn-consolidado.active::before{
 
  height: 637%;

}
.btn-consolidado::before {

  height: 640%;
}
.v {
  /*  min-width: 20px !important;
  width: 20px;
  min-height: 25px !important;
  height: 25px; */
  width: 60px;
  padding: 7px 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  min-width: 30px !important;
  background-image: none !important;

}
.v2 {
  font-size: 10px;
  background-image: none !important;
  padding: 7px 9px;


}
.ancho1{
  width:32px;
  }
  .ancho2{
  width:70px;
  }
  .ancho3{
  width:90px;
  }
  .ancho4{
  width:45px;
  }
  .ancho5{
  width:114px;
  }
  
  #parent{
  height: 80vh;
  overflow: auto;

  }
  
  .main3{
  width:83%;
  }
  
  #fixTable{
    table-layout:fixed;
    font-size: 11px !important;
  }
  #fixTable thead{
    background: var(--primary);
    border-top-left-radius: 20px;
  }
  #fixTable th{
    background: var(--primary);
    z-index: 999;
  }
  #fixTable td{
   /*  display: grid;
    justify-content: center; */
  }
  .cabeceraitem{
    border-top-left-radius: 20px;
  }
  .cabeceratotal{
    border-top-right-radius: 20px;
  }
  .nowrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ancho_v{
    font-size: 10px;
  }
  .borde{
    border-top:1px solid #999999;
    }
/************************************************
FIN DE CONSOLIDADO HORAS
************************************************ */