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

/***********************************************VARIABLES GLOBALES***********************************************/

:root {
    --vz-body-font-family: "Poppins", sans-serif;
    --saf-blue-light: #1d5d9b;
    --saf-blue-dark: #142d46;
    --saf-dark-light: #dee2e6;
}

/***********************************************GENERALES***********************************************/

/*
Author: Franco
Descripcion: Quita los estilos de los enlaces.
*/
li {
    list-style: none;
}

/*
Author: Franco
Descripcion: Cambia el font del proyecto.
*/
body {
    font-family: var(--vz-body-font-family) !important;
}

/*
Author: Gabriel
Descripcion: Se usa en la seccion de Administrar Presentaciones, para cambiar el fondo de una etiqueta span.
*/
.color-span {
    background-color: #5ea3cb;
    color: white;
}

/*
Author: Franco
Descripcion: Se usa para que el container-fluid tome todo el espacio disponible.
*/
.container-fluid,
.layout-width {
    max-width: 100% !important;
}

/*
Author: Franco
Descripcion: No me acuerdo para que era
*/
.flatpickr-wrapper {
    width: 100%;
}

/*
Author: Franco
Descripcion: Se utiliza para tructar un texto largo para que aparezca ... al final.
*/
.text-truncate {
    width: 150px !important; /* Ajusta la anchura según tus necesidades */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/***********************************************SPINNER***********************************************/

/*
Author: Franco
Descripcion: Clases utilizadas para el nuevo spinner de carga.
*/
/* Spinner */
.sk-chase {
    width: 80px;
    height: 80px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: "";
    display: block;
    width: 25%;
    height: 25%;
    background-color: #1adbbb;
    border-radius: 100%;
    animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2) {
    animation-delay: -1s;
}
.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}
.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2):before {
    animation-delay: -1s;
}
.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%,
    0% {
        transform: scale(1);
    }
}

/***********************************************CUSTOM***********************************************/

/*
Author: Franco
Descripcion: Se usa para solucionar el padding del segundo enlace de la barra de navegacion.
*/
.navbar-menu .navbar-nav li:nth-of-type(2) .nav-link.menu-link {
    padding-left: 25px !important;
}

/*
Author: Franco
Descripcion: Imagen de login.
*/
.auth-one-bg {
    background-image: url(../images/login-prescriptor.jpg) !important;
}

.alert-info {
    background-color: #47514e !important;
    color: white !important;
    border-radius: 13px;
}

/*
Author: Franco
Descripcion: Poder centrar el texto que aparece debajo de las pestañas de los formularios wizard.
*/
@media (width >= 768px) {
    .text-center-wizard {
        color: #a8a8a8;
        position: relative !important;
        top: 100% !important;
        right: 50% !important;
    }
}
.text-center-wizard {
    display: none;
}
table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
    padding: 10px !important;
}

/*
Author: Franco
Descripcion: imagen de perfil
*/
.img-perfil {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/*
Author: Franco
Descripcion: Cambia el color del th de las tablas.
*/
/*table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
    background-color: var(--saf-blue-light) !important;
    color: white !important;
    border: 1px solid var(--saf-blue-dark) !important;
}*/
/*
Author: Fernando
Descripcion: Cambia el color del th de la tabla novedades del Home.
*/
#datatable_novedades th{
    background-color: white !important;
    border: none !important;
    color: #545454 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important;
}


/* .line-grey {
    border-bottom: 1px solid #e8e8e8 !important;
} */

/* Solucion hover en datatables */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgb(225, 225, 225) !important;
    color: white !important;
    border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    background: none !important;
    border: none;
    box-shadow: none;
}

.dataTables_wrapper .dataTables_length select {
    padding-right: 35px !important;
    padding-left: 10px !important;
    font-weight: 600 !important;
}

.apex-charts .apexcharts-bar-series path,
.apex-charts .apexcharts-pie-series path {
    stroke: rgb(94, 163, 203);
}

/*
Author: Franco
Descripcion: 
*/
.is-invalid {
    border-color: #fa896b !important;
    padding-right: calc(1.5em + 1rem) !important;
    /* background-image: url(data:image/svg + xml,%3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 12 12"width="12"height="12"fill="none"stroke="%23fa896b"%3e%3ccirclecx="6"cy="6"r="4.5"/%3e%3cpathstroke-linejoin="round"d="M5.8 3.6h.4L6 6.5z"/%3e%3ccirclecx="6"cy="8.2"r=".6"fill="%23fa896b"stroke="none"/%3e%3c/svg%3e); */

    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.25rem) center !important;
    background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem) !important;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23fa896b'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fa896b' stroke='none'/%3e%3c/svg%3e") !important;
}

/*
Author: Franco
Descripcion: Ajusta el margin de la seccion de perfil.
*/
.page-content-profile {
    margin-top: 16px !important;
}

/*
Author: Franco
Descripcion: Estilo para el titulo del table detalle asiento contable
*/
.table-title {
    padding: 6px 80px 6px 10px;
    background-color: var(--saf-blue-light);
    color: aliceblue;
    border: solid 1px var(--saf-blue-dark);
    white-space: nowrap;
}

/*
Author: Franco
Descripcion: Estilo para el valor del table detalle asiento contable
*/
.table-val {
    padding: 6px 10px;
    border: solid 1px #e6e6e6;
    width: 100%;
    box-sizing: border-box;
}

/* Establecer colores de fondo para filas pares e impares */
tr:nth-child(even) .table-val {
    background-color: #f1f1f1; /* Color de fondo para filas pares */
}
tr:nth-child(odd) .table-val {
    background-color: #ffffff; /* Color de fondo para filas impares */
}

.modal-xxl {
    width: 90% !important;
    max-width: 1546px !important;
}

/*
Author: Gabriel - copiado de internet
*/
ul.ui-autocomplete {
    z-index: 9999999;
}

.column {
    float: left;
    width: 50%;
    box-sizing: border-box;
}

.first-row {
    background-color: #0430cc; /* o cualquier otro color que desees */
}

/*Tarjetas Inicio Prescriptor*/
.card-box {
    position: relative;
    color: #fff;
    padding: 20px 10px 40px;
    margin: 20px 0px;
    overflow: hidden;
}
.card-box:hover {
    text-decoration: none;
    color: #f1f1f1;
}
.card-box:hover .icon i {
    font-size: 100px;
    transition: 1s;
    -webkit-transition: 1s;
}
.card-box .inner {
    padding: 5px 10px 0 10px;
}
.card-box h3 {
    font-size: 27px;
    font-weight: bold;
    margin: 0 0 7px 0;
    white-space: nowrap;//Mantiene en una sola linea
    padding: 0;
    text-align: left;
}

.card-box p {
    font-size: 15px;
}
.card-box .icon {
    position: absolute;
    top: auto;
    bottom: 5px;
    right: 5px;
    z-index: 0;
    font-size: 72px;
    color: rgba(0, 0, 0, 0.15);
}
.card-box .card-box-footer {
    position: absolute;
    left: 0px;
    bottom: 0px;
    text-align: center;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    text-decoration: none;
}
.card-box:hover .card-box-footer {
    background: rgba(0, 0, 0, 0.3);
}
.bg-blue {
    background-color: #00c0ef !important;
}
.bg-green {
    background-color: #00a65a !important;
}
.bg-orange {
    background-color: #f39c12 !important;
}
.bg-red {
    background-color: #d9534f !important;
}
.menu-desactivado {
    cursor: not-allowed; /* Cambia el cursor a normal */
    pointer-events: none; /* Desactiva los clics */
    background-color: rgba(0, 0, 0, 0.5) !important;
    text-decoration: none; /* Opcional: quita el subrayado */  
}
.menu-desactivado_sidebar a{
    pointer-events: none; /* Desactiva los clics */
    text-decoration: none; /* Opcional: quita el subrayado */  
}

/*Fin Tarjetas Prescriptor*/

.card-box-afiliado {
    position: relative;
    color: #fff;
    padding: 40px 30px 50px;
    margin: 20px 0px;
    overflow: hidden;
}
.card-box-afiliado:hover {
    text-decoration: none;
    color: #f1f1f1;
}
.card-box-afiliado:hover .icon i {
    font-size: 100px;
    transition: 1s;
    -webkit-transition: 1s;
}
.card-box-afiliado .inner {
    padding: 5px 10px 0 10px;
}
.card-box-afiliado h3 {
    font-size: 27px;
    font-weight: bold;
    margin: 0 0 7px 0;
    white-space: nowrap;//Mantiene en una sola linea
    padding: 0;
    text-align: left;
}

.card-box-afiliado p {
    font-size: 15px;
}
.card-box-afiliado .icon {
    position: absolute;
    top: auto;
    bottom: 5px;
    right: 5px;
    z-index: 0;
    font-size: 72px;
    color: rgba(0, 0, 0, 0.15);
}
.card-box-afiliado .card-box-footer {
    position: absolute;
    left: 0px;
    bottom: 0px;
    text-align: center;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    text-decoration: none;
}
.card-box-afiliado:hover .card-box-footer {
    background: rgba(0, 0, 0, 0.3);
}

.bg-blue-afi{
    background: linear-gradient(-45deg, rgb(0, 153, 255) 0%, cyan 100%) !important;
}

.bg-red-afi{
    background: linear-gradient(to right, #f45c43, #eb3349);
}

.bg-green-afi{
    background: linear-gradient(to top, #00ff88, #61efff);
}

.bg-gradient-afi{
    background: linear-gradient(135deg, #1afbf0, #da00ff);
}
/*Login*/
.container-login{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 7rem;
    padding: 0 2rem;
}
.wave{
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}
.img{
    display: flex;
    justify-content: flex-end;
    align-items: center;
 }
.img img{
    width : 500px;
}
.form-control-login {
    position: relative;
    margin: 20px auto 40px; /* Centra horizontalmente */
    width: 200px;
    display: block; /* Asegura que respete el margin auto */
}
.eye-login {
    display: grid;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    place-content: center;
  }
.form-control-login input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px #000000 solid;
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    color: #060606;
}

.form-control-login input:focus,
.form-control-login input:valid {
    outline: 0;
    border-bottom-color: lightblue;
}

.form-control-login label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
}

.form-control-login label span {
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    color: #000000;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-control-login input:focus+label span,
.form-control-login input:valid+label span {
    color: rgb(0, 0, 0);
    transform: translateY(-30px);
    transition: all 0.3s ease;
}
/* Boton ACCEDER */
.btn_login {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: white;
  }
  
  /* plus sign */
  .sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sign svg {
    width: 17px;
  }
  
  .sign svg path {
    fill: black;
  }
  /* text */
  .text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
  }
  /* hover effect on button width */
  .btn_login:hover {
    background-color: black;
    width: 125px;
    border-radius: 40px;
    transition-duration: 0.3s;
  }
  
  .btn_login:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    /*padding-left: 20px;*/
    padding-left: 20px;
  }
  
  .btn_login:hover .sign svg path {
    fill: white;
  }
  
  /* hover effect button's text */
  .btn_login:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
  }
  /* button click effect*/
  .btn_login:active {
    transform: translate(2px, 2px);
  }
  
/* FIN Boton ACCEDER */
/*Boton de Registrarse*/
#btn_registrar_medico {
    width: 10em;
    position: relative;
    height: 3.5em;
    border: 3px ridge #149CEA;
    outline: none;
    background-color: transparent;
    color: rgb(0, 0, 0);
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  #btn_registrar_medico::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #ffffff;
    transition: 0.5s;
    transform-origin: center;
  }
  
  #btn_registrar_medico::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #ffffff;
    transition: 0.5s;
  }
  
  #btn_registrar_medico:hover::before, #btn_registrar_medico:hover::after {
    transform: scale(0)
  }
  
  #btn_registrar_medico:hover {
    box-shadow: inset 0px 0px 25px #1479EA;
  }
/*FIN Boton de Registrarse*/
/*responsive para tablets y celulares*/
/*tablets*/
@media screen and (max-width: 1050px){
    .container-login{
        grid-gap: 5rem;
    }
}
/*tablet mas pequena*/
@media screen and (max-width: 1000px){
    .img img{
        width: 400px;
    }

}
/*celulares*/
@media screen and (max-width: 900px){
    .container-login{
        grid-template-columns: 1fr;
        
    }
    /*
    .img{
        display: none;
    }
    .wave{
        display: none;
    }
    */
    .contenido-login{
        justify-content: center;
    }

}
 
/*Fin Login*/
/*MOdal*/
.modal-xxl {
    width: 90% !important;
    max-width: 1546px !important;
}

ul.ui-autocomplete {
    z-index: 9999999;
}

/* Inicio: Modal Espera Uiverse.io by DevFer */ 

:root {
    --EASE_INOUT_QUAD: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --EASE_IN_QUAD: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    --EASE_OUT_QUAD: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --COLOR_UI_PHARMACY: #237db5;/*Color de los elementos*/
    --loaderPill_DURATION: 1800ms;
}

/*.absCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

.loaderPill {
    text-align: center;
}
/*Contenedor para la animación*/
.loaderPill-anim {
    height: 200px;
}

.loaderPill-anim-bounce {
    animation: loaderPillBounce var(--loaderPill_DURATION) linear infinite;
}

.loaderPill-anim-flop {
    transform-origin: 50% 50%;
    animation: loaderPillFlop var(--loaderPill_DURATION) linear infinite;
}
/*Pastilla*/
.loaderPill-pill {
    display: inline-block;
    box-sizing: border-box;
    width: 80px;
    height: 30px;
    border-radius: 65px;
    border: 1px solid var(--COLOR_UI_PHARMACY);
    background-image: linear-gradient(to right, var(--COLOR_UI_PHARMACY) 50%, #ffffff 50%);
}

.loaderPill-floor {
    display: block;
    text-align: center;
}
/*Representa un efecto de sombra debajo del cargador.*/
.loaderPill-floor-shadow {
    display: inline-block;
    width: 70px;
    height: 7px;
    border-radius: 50%;
    background-color: color(var(--COLOR_UI_PHARMACY) alpha(26%));
    transform: translateY(-15px);
    animation: loaderPillScale var(--loaderPill_DURATION) linear infinite;
}
/*Texto "Cargando"*/
.loaderPill-text {
    font-weight: bold;
    font-size: 20px;
    color: var(--COLOR_UI_PHARMACY);
    text-transform: uppercase;
}

@keyframes loaderPillBounce {
    0% {
        transform: translateY(123px);
        animation-timing-function: var(--EASE_OUT_QUAD);
    }
    25% {
        transform: translateY(40px);
        animation-timing-function: var(--EASE_IN_QUAD);
    }
    50% {
        transform: translateY(120px);
        animation-timing-function: var(--EASE_OUT_QUAD);
    }
    75% {
        transform: translateY(20px);
        animation-timing-function: var(--EASE_IN_QUAD);
    }
    100% {
        transform: translateY(120px);
    }
}

@keyframes loaderPillFlop {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(450deg);
    }
    100% {
        transform: rotate(720deg);
    }
}

@keyframes loaderPillScale {
    0%   {
        transform: translateY(-15px) scale(1, 1);
        animation-timing-function: var(--EASE_OUT_QUAD);
    }
    25%  {
        transform: translateY(-15px) scale(0.7, 1);
        animation-timing-function: var(--EASE_IN_QUAD);
    }
    50%  {
        transform: translateY(-15px) scale(1, 1);
        animation-timing-function: var(--EASE_OUT_QUAD);
    }
    75%  {
        transform: translateY(-15px) scale(0.6, 1);
        animation-timing-function: var(--EASE_IN_QUAD);
    }
    100% {
        transform: translateY(-15px) scale(1, 1);
    }
}
/* Fin: Modal Espera Uiverse.io by Fer */ 