@import 'components.css';

/* Estilos comunes a toda la app */

/* estilos layout master */

html,
body {
    background-color: var(--white);
    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: var(--primary-c);
  }
  .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: var(--primary-a);
    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 var(--auxiliary-a);
    position: absolute;
    left: -150px;
    /* top: 28px; */
    cursor: pointer;
    box-shadow: rgba(0, 25, 38, 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: var(--auxiliary-a);
}

.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: var(--primary-d);
}

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

/* estilos del menu*/

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

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

@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;
  }

/* Legacy icon classes removed - now using Flowbite icons inline SVG */

/* All legacy icon CSS classes removed - now using Flowbite icons inline SVG */

.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: var(--primary-d); */
    /* border-color: var(--auxiliary-a); */
    color: var(--auxiliary-a);
    /* 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: var(--error-color) !important;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--secondary-a);
}

.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 var(--primary-b-light);
}
.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;
    }
}

/* Ulm Grotesk Font Family */
@font-face {
    src: url('../font/Ulm Grotesk Font Family/UlmGrotesk-Regular-BF63d880d5dc20d.otf');
    font-family: "Ulm Grotesk";
    font-weight: 400;
    font-style: normal;
}

@font-face {
    src: url('../font/Ulm Grotesk Font Family/UlmGrotesk-Medium-BF63d880d5e171d.otf');
    font-family: "Ulm Grotesk";
    font-weight: 500;
    font-style: normal;
}

@font-face {
    src: url('../font/Ulm Grotesk Font Family/UlmGrotesk-Bold-BF63d880d7c5c42.otf');
    font-family: "Ulm Grotesk";
    font-weight: 700;
    font-style: normal;
}

@font-face {
    src: url('../font/Ulm Grotesk Font Family/UlmGrotesk-Extrabold-BF63d880d72ac1c.otf');
    font-family: "Ulm Grotesk";
    font-weight: 800;
    font-style: normal;
}

@font-face {
    src: url('../font/Ulm Grotesk Font Family/UlmGrotesk-Light-BF63d880d68c1d3.otf');
    font-family: "Ulm Grotesk";
    font-weight: 300;
    font-style: normal;
}

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

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

@font-face {
    src: url('../font/Mont Font Family/Mont-RegularItalic.ttf');
    font-family: "MontserratItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-Light.ttf');
    font-family: "MontserratLight";
}

/* Additional Mont Font Family weights */
@font-face {
    src: url('../font/Mont Font Family/Mont-SemiBold.ttf');
    font-family: "MontSemiBold";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-Black.ttf');
    font-family: "MontBlack";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-Heavy.ttf');
    font-family: "MontHeavy";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-ExtraLight.ttf');
    font-family: "MontExtraLight";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-Thin.ttf');
    font-family: "MontThin";
}

/* Italic variations */
@font-face {
    src: url('../font/Mont Font Family/Mont-BoldItalic.ttf');
    font-family: "MontBoldItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-SemiBoldItalic.ttf');
    font-family: "MontSemiBoldItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-LightItalic.ttf');
    font-family: "MontLightItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-BlackItalic.ttf');
    font-family: "MontBlackItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-HeavyItalic.ttf');
    font-family: "MontHeavyItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-ExtraLightItalic.ttf');
    font-family: "MontExtraLightItalic";
}

@font-face {
    src: url('../font/Mont Font Family/Mont-ThinItalic.ttf');
    font-family: "MontThinItalic";
}

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: var(--white); 
    color: var(--primary-a);
}

.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: var(--gradient-primary-light);
    opacity: 0.9;
}