@import 'components.css';

/* Estilos comunes a toda la app */

/* estilos layout master */

html,
body {
    background-color: #f1f8ff;
    height: 100%;
    font-family: "Montserrat";
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; 
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
.lds-ellipsis {
    /* change color here */
    color: #8ce04f;
  }
  .lds-ellipsis,
  .lds-ellipsis div {
    box-sizing: border-box;
  }
  .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
.content-p{
    height: auto/*100vh*/; 
}
.hidden{
    overflow: hidden;
    position: absolute;
    width: 100%;
}
.page-content {
    box-shadow: var(--bs-box-shadow-sm) !important;
}

/* @media (min-width: 992px) {
    .container {
        height: auto;
    }
} */

/* estilos banner */
.container-imagen-profile{
    display: flex;
    justify-content: center;
}
@media (max-width: 991px) {
    .img-perfil {
        display: none;
    }
    .container-imagen-profile{
        display: none;
    }
    .favicon{
        width: 80px;
    }
}
.dropdown-menu {
    animation: 0.3s slidedown;
    animation-timing-function: ease-in-out;
  }
  
  @keyframes slidedown {
    from {
        opacity: 0.1;

    }
  
    to {
      opacity: 1;
    }
  }

.banner-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/banner.png);
}

.text-banner {
    padding-top: 5px;
    font-size: 34px;
    font-weight: 36px;
    line-height: 32px;
    color: #171a63;
    font-family: "MontserratBold";
}
.favicon{
    position:relative;
    width: 150px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.mini-favicon{
    position:absolute;
    width: 50px;
    margin-bottom: 0px;
}
.text-banner-img{
    width: 510px;
}

@media (max-width: 600px) {
    .text-banner {
        font-size: 28px;
    }
    .text-banner-img{
        width: 310px;
    }
}

/* estilos imagen de perfil */

.img-perfil {
    width: 82px;
    height: 82px;
    gap: 0px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid #8fd4f2;
    position: absolute;
    left: -150px;
    /* top: 28px; */
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.img-perfil:hover{
    transform: scale(1.05);
}


.texto-perfil {
    font-size: 15px;
    font-family: "MontserratBold";
    position: absolute;
    bottom: 130px;
    right: 0;
    transform: translateX(-35%);
    width: 150px;
    height: 30px;
    text-align: center;
    color: rgb(192, 227, 255, 1);
}

.texto-perfil-inferior {
    font-size: 12px;
    font-family: "MontserratLight";
    position: absolute;
    bottom: 128px;
    right: 0;
    transform: translateX(-35%);
    width: 150px;
    height: 30px;
    text-align: center;
    color: #ffffff;
}
/* menu cuenta */

.meneu-cuenta {
    position: absolute;
    right: 20px;
    top: 100px;
}

/* estilos footer */

.styles-footer {
    height: 102px;
    font-weight: 400;
    line-height: 24.73px;
    background-color: #e8e8e8;
}

.text-footer {
    font-size: 13px;
    font-family: "MontserratItalic";
}

/* estilos del menu*/

.menu-ppal {
    background-color: #C0E3FF;
            /*background-image: linear-gradient(
            -45deg,
            #D8F4FF,
            #E2F2FF,
            #C0E3FF
        );*/
}

@media (min-width: 992px) {
    .menu-ppal {
        background-color: #C0E3FF;
        background-size: 400% 400%;
        /*background-image: linear-gradient(
            -45deg,
            #D8F4FF,
            #E2F2FF,
            #C0E3FF
        );*/
        animation: 10s myGradient infinite;
        /* box-shadow: 1px 1px 8px 0px #07b5eb; */
    }
}

@keyframes myGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.heigh-menu {
    height: 11px;
}
.icon-menu {
    background-size: contain;
    background-repeat: no-repeat;
    height: 44px;
    width: 44px;
    margin-top: 0;
    margin-bottom: 17px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 7px;
    position: relative;
    top: 0px;
    transition: top 0.3s ease;
}

.container-menu:hover .icon-menu{
    top: -10px; 
}

.text {
    position: absolute;
    top: calc(100% + 2px);
    left: 55%;
    transform: translateX(-50%);
    opacity: 0; 
    transition: opacity 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200%;
    text-align: center;
    justify-content: center;
    
  }
  
.icon-menu:hover .text {
    opacity: 1;
  }

.icon-home {
    background-image: url(../img/navbar/Home=Default.svg);
}

.icon-home:hover {
    background-image: url(../img/navbar/Home=Hover.svg);
}

.icon-home-focus,.icon-home:focus {
    background-image: url(../img/navbar/Home=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-home-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));}

.icon-report {
    background-image: url(../img/navbar/Reportes=Default.svg);
}

.icon-report:hover {
    background-image: url(../img/navbar/Reportes=Hover.svg);
}

.icon-report-focus,.icon-report:focus {
    background-image: url(../img/navbar/Reportes=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-report-inactive {
    background-image: url(../img/navbar/Reportes=Inactive.svg);
}
.icon-report-inactive .text{
    color: grey;
}

.icon-university {
    background-image: url(../img/navbar/Universidad=Default.svg);
}

.icon-university:hover {
    background-image: url(../img/navbar/Universidad=Hover.svg);
}

.icon-university-focus,.icon-university:focus {
    background-image: url(../img/navbar/Universidad=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-university-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));
}

.icon-event {
    background-image: url(../img/navbar/Eventos=Default.svg );
}
.icon-team {
    background-image: url(../img/navbar/Equipo=Default.svg );
}
.icon-team:hover {
    background-image: url(../img/navbar/Equipo=Hover.svg );
}
.icon-event-inactive {
    background-image: url(../img/navbar/Eventos=Inactive.svg );
}
.icon-event-inactive .text{
    color: grey;
}

.icon-event:hover {
    background-image: url(../img/navbar/Eventos=Hover.svg);
}

.icon-event-focus,.icon-event:focus {
    background-image: url(../img/navbar/Eventos=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-event-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));
}

.icon-store {
    background-image: url(../img/navbar/Cuenta=Default.svg);
}

.icon-store:hover {
    background-image: url(../img/navbar/Cuenta=Hover.svg);
}

.icon-store-focus,.icon-store:focus {
    background-image: url(../img/navbar/Cuenta=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-store-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));
}
.icon-store2 {
    background-image: url(../img/navbar/Tienda=Default.svg);
}

.icon-store2:hover {
    background-image: url(../img/navbar/Tienda=Hover.svg);
}
.icon-store2-inactive{
    background-image: url(../img/navbar/Tienda=Inactive.svg);
}


.icon-store2-focus,.icon-store2:focus {
    background-image: url(../img/navbar/Tienda=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-store2-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));
}

.icon-customers {
    background-image: url(../img/navbar/Clientes=Default.svg);
}

.icon-customers:hover {
    background-image: url(../img/navbar/Clientes=Hover.svg);
}
.icon-comunications {
    background-image: url(../img/navbar/Comunicaciones=Default.svg);
}

.icon-comunications:hover {
    background-image: url(../img/navbar/Comunicaciones=Focused.svg);
}
.icon-customers-focus,.icon-customers:focus {
    background-image: url(../img/navbar/Clientes=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-customers-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));
}

.icon-settings {
    background-image: url(../img/navbar/Ajustes=Default.svg);
}

.icon-settings:hover {
    background-image: url(../img/navbar/Ajustes=Hover.svg);
}

.icon-settings-focus,.icon-settings:focus {
    background-image: url(../img/navbar/Ajustes=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}
.icon-settings-focus, .text{
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.));
}

.icon-account {
    background-image: url(../img/navbar/Projects=Default.svg);
}

.icon-account:hover {
    background-image: url(../img/navbar/Projects=Hover.svg);
}

.icon-account-focus,.icon-account:focus {
    background-image: url(../img/navbar/Projects=Hover.svg);
    filter: drop-shadow(-1px 1px 20px #000000);
}

.dropdown-toggle-menuppal::after {
    display: inline;
    margin-left: 32px;
}

.icon-menu-xs {
    height: 18px;
    padding-right: 3px;
}

.navbar-nav li {
    margin-right: 20px;
    /* background-color: #dce9ff; */
    /* border-color: #bfcde6; */
    color: #94b4ce;
    /* box-shadow: var(--bs-box-shadow-sm) !important; */
}

.navbar-nav li a {
    padding: 10px 5px;
}

@media (min-width: 992px) {
    .navbar-nav li a {
        padding: 10px 10px;
    }
}

.visited a {
    color: none; /*#a52b0e !important;*/
}

.visited-xs a {
    color: #a52b0e !important;
}

.nav-link:focus,
.nav-link:hover {
    color: rgb(171 25 25 / 80%);
}

.navbar-nav-lg {
    flex-direction: row;
    padding-top: 7px;
}

.submenu li {
    background-color: hsl(0, 0%, 100%) !important;
    margin: auto !important;
    color: #212529 !important;
}

.divisor {
    border-top: 3px solid #3e84b5;
}
.navbar-toggler{
    padding: 5px;
    margin-top: 5px;
}
#principal-head{
    margin-top: 20px;
    font-size: 28px;
    font-family: "MontserratBold";
    text-transform: uppercase;
}
@media (max-width: 991px) {
    #principal-head {
    display: none;
    }
}

@font-face {
    src: url('../font/Montserrat/Montserrat-Regular.ttf');
    font-family: "Montserrat";

}
@font-face {
    src: url('../font/Montserrat/Montserrat-Bold.ttf');
    font-family: "MontserratBold";
}

@font-face {
    src: url('../font/Montserrat/Montserrat-Italic.ttf');
    font-family: "MontserratItalic";
}
@font-face {
    src: url('../font/Montserrat/Montserrat-Light.ttf');
    font-family: "MontserratLight";
}

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 0.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    margin-top: 15px !important;
}

legend.scheduler-border {
    font-size: 1.1em !important;
    font-family: "Montserrat";
    text-align: left !important;
    width: auto;
    padding: 0 10px;
    border-bottom: none;
    margin-top: -15px;
    background-color: #f1f8ff; 
    color: black;
}

.min-width-100 {
    min-width: 200px;
}

.min-width-150 {
    min-width: 250px;
}

.min-width-200 {
    min-width: 300px;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-image: linear-gradient(45deg, rgba(70, 135, 230, 0.6), rgba(19, 192, 230, 0.6));
}