:root{
    --color-background: #F8F8F8;
    --color-text-principal:#272727;
    --color-border-input:#cecece;
    /*--color-border-input-active:#C1E2FF;*/
    --color-border-input-active:#15bdf5;
    --color-border-input-hover:#B4B4B4;
    --color-white:#fff;
    --color-button-main: #0282F0;
    --color-button-main-hover:#006FCE;
    --color-border-button-main:#0082F0;
    --color-text-error:#FF7979;
    --color-background-error:#FFF4F4;
    --color-nav-default: #F0F0F0;
    --color-alert-green:#CDF1E6;
    --color-border-green-alert:#BFECDD;
    --color-text-green-alert:#086A4D;
    --color-alert-red:#FFDDDD;
    --color-border-red-alert:#FFCCCC;
    --color-text-red-alert:#8E3B3D;
    --color-alert-yellow:#FDEDD8;
    --color-border-yellow-alert:#FDE6C5;
    --color-tex-yellow-alert:#8B6332;
    --color-alert-blue:#D5EAFA;
    --color-border-blue-alert:#C1E0FA;
    --color-text-blue-alert:#205884;
    --color-hover-icon:#eae7e7;
    --color-border-nav:#dbdbdb;
    --color-button-secondary-hover:#C1E2FF;
    --color-border-button-secondary-hover:#0082F0;
    --color-border-menu:#FFF4F2;
    --color-hover-option:#0282F033;
    --color-hover-black:#FFFFFF1A;
    --color-hover-text:#FFFFFFCC;
    --color-border-month: #707070;
    --color-alert-text:#838383;
    --color-border-slider:#ACACAC;
    --color-link-hover:#4EAEFF;
    --color-title-table: #8B8B8B;
    --color-blue-table:#DEF0FF;
    --color-hover-table:#EBF6FF;
    --color-background-author:#ededed;
    --color-background-more-overlay: #f4f4f4;
    --color-spinner-main:#0282F0;
    --color-spinner-secondary: #C1E2FF;
}

::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
}

::-webkit-scrollbar-track {
  background: #EDEDED; 
  border-radius: 2rem;
}

::-webkit-scrollbar-thumb {
  background-color: #E0E0E0; 
  border-radius: 2rem;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

:hover::-webkit-scrollbar-thumb {
  background-color: #c0c0c0; 
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] { -moz-appearance:textfield; }

div, aside{
    float: left;
}

html{
    font-size: 10px;
    height: 100%;
}

body{
    width: 100%;
    height: 100%;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
}

.layout{
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.layout__content{
    background-color: var(--color-background);
}

.img{
    transition: all 300ms ease-in-out;
}

option{
    font-size: 1.2rem;
}

/* Input que se manejara por defecto */ 
.input__default{
    position: relative;
}

.default__inp{
    border: solid 1px var(--color-border-input);
    border-radius: 0.4rem;
    height: 3.4rem;
    font-size: 1.2rem;
    position: relative;
    outline: none;
    display: block;
    transition: all 300ms ease-in-out;
    width: 100%;
    padding: 0 1rem;
}

.default__inp::placeholder{
    color: var(--color-border-input);
}

.default__inp::-webkit-input-placeholder{
    color:transparent;
}

.default__inp::-moz-placeholder{
    color:transparent;
}

.default__inp:focus{
    border: solid 2px var(--color-border-input-active);
}

.default__inp:hover{
    border: solid 1px var(--color-border-input-hover);
}

.input__default .inp__description{
    font-size: 1rem;
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    z-index: 1;
    color: var(--color-border-input-hover);
    transition: all 300ms ease-in-out;
    pointer-events: none;
}

.default__inp:focus~span:nth-of-type(1),.default__inp:not(:placeholder-shown)~span:nth-of-type(1){
    top: -1.5rem;
    left: 0;
    z-index: 1;
    font-size: 1rem;
    color: var(--color-text-principal);
    font-weight: 500;
}

.inp__img{
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 100%;
    transition: all 300ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inp__img:hover{
    background: var(--color-hover-icon);
}

/* input solo lectura*/
.input__default .default__inp-readOnly{
    background: #F7F7F7;
}

/* input de error */ 
.input__default .default__inp-error{
    background: var(--color-background-error);
    border: solid 1px var(--color-text-error);
}

.inp__error{
    width: 100%;
    line-height: 1;
}
.error__spn{
    font-size: 1rem;
    color: var(--color-text-error);
    line-height: 1;
    font-style: italic;
}

/* input numerico */

.inp__number{
    text-align: end;
}

/* INPUT PARA TABLAS*/
.input__table{
    
}

.table__inp{
    border: solid 1px var(--color-border-input);
    border-radius: 0.4rem;
    height: auto;
    font-size: 1.2rem;
    position: relative;
    outline: none;
    display: block;
    transition: all 300ms ease-in-out;
    width: 100%;
    padding: 0rem 0.5rem;
    text-align: end;
}

/* Boton Secundario por defecto */
.default__btn-secondary{
    font-size: 1.2rem;
    color: var(--color-button-main);
    background-color: var(--color-white);
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 3.4rem;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    width: 100%;
    border:solid 1px var(--color-button-main);
}

.default__btn-secondary:hover{
    background: var(--color-button-secondary-hover);
}

/* Boton Principal por defecto */
.default__btn-main{
    font-size: 1.2rem;
    color: var(--color-white);
    background-color: var(--color-button-main);
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 3.4rem;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    width: 100%;
}

.default__btn-main:hover{
    background: var(--color-button-main-hover);
}

.wave__main,.wave__secondary {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: waveAnim 0.6s ease-out forwards;
    pointer-events: none;
}

.wave__main{
    background-color: #FFFFFF4D;
}

.wave__secondary{
    background-color: #C1E2FF66;
}

  @keyframes waveAnim {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

/* Boton con imagen por defecto */ 
.default__btnImg{
    border: solid 1px var(--color-border-button-main);
    border-radius: 0.4rem;
    height: 3.4rem;
    cursor:pointer;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background-color: #fff;
}

.default__btnImg:hover{
    background-color: var(--color-button-secondary-hover);
}

.default__btnImg span{
    color: var(--color-border-button-main);
    font-size: 1.2rem;
}

.btnImg__img{
    width: 1.5rem;
}

.btnImg__img img{
    width: 100%;
}

.btnImg__spn{
    margin: 0 0 0 1rem;
}

/* Link por Defecto */
.default__a{
    color: var(--color-button-main);
    font-size: 1rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.default__a:hover{
    text-decoration: underline;
    color: var(--color-link-hover);
}


/* Navegacion de otras paginas por defecto */ 
.default__nav{
    background-color: var(--color-nav-default);
    padding: 1rem;
    width: calc(100% - 2rem);
    border-radius: 0.4rem;
    display: flex;
    flex-wrap: wrap;
}

.nav__title{
    width: 100%;
}

.nav__title span{
    font-weight: bold;
}

.nav__sites{
    margin: 1.5rem 0 0 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.sites__site{
    flex-basis: 25%;
    border-left: solid 1px var(--color-border-nav);
    display: flex;
    flex-wrap: wrap;
    padding-left: 2rem
}

.sites__site:nth-of-type(1){
    padding-left: 0;
    border-left: none;
}

.site__title{
    flex-basis: 100%;
}

.site__title span{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
}

.site__description{
    flex-basis: calc(100% - 1rem);
}

.site__button{
    margin-top: 1rem;
    background-color: var(--color-white);
    padding:  0.3rem 1rem;
    border-radius: 0.4rem;
    width: 7.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    border: 1px solid var(--color-white);
}

.site__button:hover{
    background: var(--color-button-secondary-hover);
    border: solid 1px var(--color-border-button-secondary-hover);
}

.site__button span{
    color:var(--color-button-main)
}

.button__img{
    width: 0.85rem;
}

/* Alertas que funcionaran en el programa */
.layout__alert{
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 100%;
    display: flex;
    justify-content: end;
    pointer-events: none;
}

.default__alert{
    border-radius: 0.4rem;
    padding: 1rem 1.5rem;
    width: 40%;
    animation: alertAnimation 1000ms ease-in-out;
}

.default__alert span{
    font-size: 1.2rem;
}

.default__alert-green{
    background: var(--color-alert-green);
    border: solid 1px var(--color-border-green-alert);
}

.default__alert-green span{
    color: var(--color-text-green-alert);
}

.default__alert-red{
    background: var(--color-alert-red);
    border: solid 1px var(--color-border-red-alert);
}

.default__alert-red span{
    color: var(--color-text-red-alert);
}

.default__alert-yellow{
    background: var(--color-alert-yellow);
    border: solid 1px var(--color-border-yellow-alert);
}

.default__alert-yellow span{
    color: var(--color-text-yellow-alert);
}

.default__alert-blue{
    background: var(--color-alert-blue);
    border: solid 1px var(--color-border-blue-alert);
}

.default__alert-blue span{
    color: var(--color-text-blue-alert);
}

@keyframes alertAnimation{
    0%{
       opacity:0
    }

    100%{
        opacity: 1;
     }
}

/* Caractersticas del modal que se manejaran por defecto*/
.default__mod, .default__spinner{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.39);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default__spinner{
    z-index: 99999;
}
.default__mod .table__container{
    height: 20rem;
}

.spinner__container{
    background-color: transparent;
}
.mod__container{
    background-color: var(--color-white);
    border-radius: 0.4rem;
    padding: 2rem;
    display: inline;
    width: 25%;
}

.mod__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mod__title span{
    font-size: 1.4rem;
    font-weight: bold;
}
.mod__close{
    width: 2.5rem;
    display: flex;
    justify-content: end;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 100%;
    transition: all 300ms ease-in-out;
}

.mod__body{
    display: flex;
    align-items: center;
    margin: 3rem 0;
}

.mod__img{
    width: 4.2rem;
        margin-right: 2.5rem;
}

.mod__img img{
    width: 100%;
}

.mod__textImg{
   width: calc(100% - 6.7rem);
}

.mod__textImg span{
    font-size: 1.2rem;
    line-height: 1;
}

.mod__text{
    width: calc(100% - 6.7rem);
}

.mod__text span{
    font-size: 1.2rem;
    line-height: 1;
}

.mod__body{
    flex-wrap: wrap;
}
.mod__footer, .mod__header, .mod__body{
    width: 100%;
    display: flex;
}

.footer__twoBtn button{
    width: calc(50% - 0.5rem);
}

.footer__twoBtn button:nth-of-type(2){
    margin-left: 0.5rem;
}
.mod__close:hover{
    background-color: var(--color-hover-icon);
}

.mod__button{
    width: 100%;
    margin-top: 3rem;
}

.mod__footer button{
    line-height: 1;
}

/* Menu Principal de todo el sistema */
.layout__menu{
    background-color: var(--color-text-principal);
    height: 100%;
    border-right: solid 0.5px var(--color-border-menu);
    position: relative;
    transition: all 300ms ease-in-out;
}

.layout__menu-undeploy{
    display: inline;
}

.layout__menu-deploy{
    display: none;
}

.menu__deployed{
    width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}
.menu__undeployed{
    width: 7.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.undeployed__logo{
    cursor: pointer;
}
.menu__deploy{
    position: absolute;
    right: -11px;
    top: 2.25rem;
    border-radius: 100%;
    border: solid 1px var(--color-border-menu);
    padding: 0.5rem 0.7rem;
    background-color: var(--color-text-principal);
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.deploy__img img{
    width: 0.5rem;
}

.menu__list{
    margin-top:4rem;
    
}

.menu__option{
    border-radius:1rem;
    cursor:pointer;
    padding: 1.65rem;
    transition:all 300ms ease-in-out;
    display: flex;
    position: relative;
    justify-content: center;
}

.menu__option--active{
    background-color: var(--color-button-main);
}

.menu__option:hover{
    background-color: var(--color-hover-option);
}

.menu__option img{
    width: 1.4rem;
}
.menu__company{
    position: absolute;
    bottom: 2rem;
    border-radius:1rem;
    cursor:pointer;
    padding: 1.5rem;
    transition:all 300ms ease-in-out;
}

.menu__company:hover{
    background-color: var(--color-hover-black);

}

.menu__overlay{
    position: absolute;
    left: 0;
    margin-top: -3rem;
    opacity: 0;
    padding: 1rem 2rem;
    display: block;
    background-color: var(--color-button-main);
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border-radius: 1rem;
    pointer-events: none;
    z-index: 2;
}
/*
.menu__option:hover .menu__overlay{
    opacity: 1;
    left: 140%;
    pointer-events: auto;
} */ 

.overlay__items{
    display: flex;
    flex-wrap: wrap;
}

.overlay__item{
    margin: 0.25rem 0;
    width:100%
}

.overlay__item span{
    color: var(--color-white);
    font-size: 1.2rem;
}

.overlay__item:hover span{
    color: var(--color-hover-text);
}

/* Estilos para la barra superior presente en todas las pantallas */
.layout__profile{
    display: flex;
    align-items: center;
    width: calc(100% - 7.6rem - 1px);
    background-color: var(--color-text-principal);
    height: 6.5rem;
    justify-content: space-between;
    padding: 0 0 0 2rem;
}

.layout__profile span{
    color: var(--color-white);
}

.profile__title{
    display: flex;
    flex-wrap: wrap;

}

.profile__hover:hover{
    background-color: var(--color-hover-black);
    cursor: pointer;
}
.title__title,.title__subtitle{
    width:100%;
    line-height: 1.2;
}

.title__title span{
    font-size: 1.4rem;
    font-weight: bold;
}

.title__subtitle span{
    font-size: 0.8rem;
}

.profile__time{
    position: relative;
    display: flex;
    justify-content: center;
}
.time__container{
    border: 1px solid var(--color-white);
    border-radius: 0.4rem;
    padding: 0.65rem 0.75rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    transition: all 300ms ease-in-out;
}

.time__title span{
    font-weight: 500;
    font-size: 1rem;
}

.time__monthYear{
    margin: 0 1rem;
}
.time__monthYear span{
    font-size: 1.2rem;
}

.time__img{
    width: 1rem;
}

.time__overlay{
    position: absolute;
    top: 0;
    margin-top: 0;
    opacity: 0;
    padding: 1rem 2rem;
    display: block;
    background-color: var(--color-text-principal);
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border-radius: 0.4rem;
    pointer-events: none;
    width: 180%;
    z-index: 2;
}
/*
.profile__time:hover .time__overlay{
    top: 5.2rem;
    opacity: 1;
    pointer-events: auto;

}
*/
.overlay__year{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.year__previous,.year__next{
    border-radius: 100%;
    padding: 0.5rem;
    width: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: all 300ms ease-in-out;
}

.year__actual{
    margin: 0 1rem;
}

.year__actual{
    font-size: 1.2rem;
    font-weight: bold;
}

.overlay__months{
    margin: 0.5rem 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.months__month{
    padding: 0.5rem 1rem;
    border: solid 1px var(--color-border-month);
    border-radius: 0.4rem;
    width: 30%;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.months__month span{
    text-align: center;
    color: var(--color-border-month);
    display: block;
    width: 100%;
}

.months__month-active{
    background-color: var(--color-button-main);
    border: solid 1px var(--color-white);
}

.months__month-active span{
    color: var(--color-white);
    text-align: center;
}

.months__month-active:hover{
    background-color: var(--color-hover-option);
}

.support__img, .info__img{
    padding: 0.65rem;
    border-radius: 0.4rem;
    border: solid 1px var(--color-white);
    margin: 0 0.5rem;
    transition: all 300ms ease-in-out;
}

.info__img{
    margin-right: 2rem;
}
.settings__info, .settings__support{
    position: relative;
    display: flex;
    justify-content: center;
}
.info__overlay{
    position: absolute;
    top: 0;
    margin-top: 0;
    opacity: 0;
    padding: 1rem 1rem;
    display: block;
    background-color: var(--color-text-principal);
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border-radius: 0.4rem;
    pointer-events: none;
    width: 22rem;
    z-index: 2;
}

.info__img{
    display:flex;
    justify-content: center;
}


.info__img:hover .info__overlay{
    top: 5.2rem;
    opacity: 1;
    pointer-events: auto;

}

.support__img img, .info__img img{
    width: 1.5rem;
    height: 1.5rem;
}

.news__new{
    padding: 0.5rem 1rem;
    border-radius: 0.4rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    transition: all 300ms ease-in-out;
}

.new__text{
    display: flex;
    flex-wrap:wrap;
    width: 90%;
}

.new__title,.new__content{
    flex-basis: 100%;
}

.new__title span{
    font-weight: bold;
}

.new__img{
    height: 3rem;
    width: 3rem;
}

.new__img img{
    width:100%;
    height: 100%;
}

.profile__company{
    position: relative;
    line-height: 1.2;
    display: flex;
    justify-content: center;
}

.company__container{
    padding:0 2rem;
    border-left: solid 1px var(--color-border-month);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.company__info{
    display: flex;
    flex-wrap: wrap;
    width: 70%;
}

.info__name,.info__user{
    flex-basis: 100%;
}

.info__name span{
    font-size: 1.4rem;
}

.company__logo{
    width: 30%;
    display: flex;
    justify-content: end;
}

.company__logo img{
    width: 3rem;
    background: #fff;
    border-radius: 0.4rem;
    padding: 0.4rem;
}

.company__overlay{
    position: absolute;
    top: 0;
    opacity: 0;
    padding: 1rem 1.2rem;
    display: block;
    background-color: var(--color-text-principal);
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border-radius: 0.4rem;
    pointer-events:none;
    width: 19rem;
    z-index: 2;
}
/*
.profile__company:hover .company__overlay{
    opacity: 1;
    top: 5.2rem;
    pointer-events: auto;
}
*/
.settings__setting{
    display: flex;
    align-items: center;
    width: 100%;
    border-radius:1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.settings__setting:nth-last-of-type(1){
    border-top: solid 1px var(--color-border-month);
    border-radius: 0 0 1rem 1rem;
}
.settings__setting:hover{
    background-color: var(--color-hover-option);
}

.setting__img{
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
}

.setting__img img{
    width: 100%;
}

.setting__text{
    margin: 0 0 0 1rem;
}
.setting__text span{
    font-size: 1.2rem;
}


/* Estilos del contenedor principal donde se vera el contenido del programa en todas las paginas que tengan enu lateral y perfil*/
.layout__content{
    width: calc(100% - 7.7rem);
    height: calc(100% - 6.5rem);
    overflow: auto;
    overflow-x: hidden;
    animation-duration: 3000ms;
    animation-name: slidein;
}

/* Estilos para el menu desplegado */

.menu__deploy:hover .layout__menu-deploy, .mobile__menu:hover .layout__menu-deploy{
    opacity: 1;
    left: 0;
}
.layout__menu-deploy{
    opacity: 0;
    position: absolute;
    left: 0%;
    z-index: 3;
    display: inline;
    transition: all 300ms ease-in-out;
    pointer-events: none;
}

.layout__menu-deploy .menu__link{
    display: flex;
    width:100%;
    align-items: center;
}

.layout__menu-deploy .menu__text{
    margin-left: 1rem;
    width: 80%;
}

.layout__menu-deploy .menu__option--active .menu__text span{
    font-weight: bold;
}
.layout__menu-deploy .menu__text span{
    color: var(--color-white);
    font-size: 1.2rem;
}

.deployed__logo{
    width: 8.2rem;
}

.deployed__logo img{
    width: 100%;
}

.layout__menu .menu__option--active:hover{
    background-color: var(--color-button-main);
}

.layout__menu-deploy .menu__overlay{
    padding: 0;
    max-width: 100%;
    display: none;
}
/*
.layout__menu-deploy .menu__option:hover .menu__overlay{
    margin: 0.1rem 0;
    opacity: 1;
    display: block;

}*/

.layout__menu-deploy .overlay__items{
    margin: 1rem 2rem;
}

.layout__menu-deploy .menu__list{
    width: calc(100% - 2rem);
}

.layout__menu-deploy .deploy__img img{
    transform: rotate(180deg);
}

.layout__menu-deploy .menu__option{
    flex-wrap: wrap;
}

.layout__menu-deploy .menu__option .menu__link, .layout__menu-deploy .menu__option .menu__overlay{
    width: 100%;
    flex-wrap: wrap;
}

.layout__menu-deploy .menu__overlay{
    position: relative;
}

/* Tabla por defecto para los cosigos maestros */
.table__container{
    width: 100% ;
    height:100%;
    padding-bottom: 1.2rem;
}

.table__table{
    border-radius: 0.4rem;
    border: solid 1px var(--color-border-input);
    background: var(--color-white);
    width: 100%;
    height: 90%;
    position: relative;
}

.table__title{
    border-bottom: solid 1px var(--color-border-input);
    padding: 0rem 1rem;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    height: 3rem;
    display: flex;
    align-items: center;
}

.table__title span{
    color: var(--color-title-table);
}

.table__data{
    overflow: auto;
    max-height: calc(100% - 6rem);
    width: calc(100% - 2rem);
    padding-bottom:1rem;
    margin: 0 1rem 0rem 1rem;
    overflow-x: hidden;
}

.table__table-variable .table__data{
    margin: 0 1rem 2rem 1rem;
}

.table__dinamic .table__reg{
    cursor: pointer;
}

.table__reg{
    display: flex;
    align-items: center;
    border-bottom: solid 1px var(--color-border-input);
    width: 100%;
    padding: 0.8rem 1rem;
    transition: all 300ms ease-in-out;
}

.table__reg:hover{
    background: var(--color-hover-table);
}
.table__reg-active{
    background: var(--color-button-secondary-hover);
}

.table__reg-active:hover{
    background: var(--color-button-secondary-hover);
}

/* Estilos de scroll para la tabla*/
.table__data::-webkit-scrollbar{
    width: 0px;
}

/* Estilos de los totales de una tablas */
.table__result{
    background: #E5E5E5;
    padding: 0rem 2rem;
    height: 3rem;
    width: 100%;
    border-radius: 0 0 0.4rem 0.4rem;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
}

.table__result .table__box{
    display: flex;
    justify-content: end;
}

.table__result .table__box:nth-of-type(1){
    justify-content: start;
}
.table__result span{
    color: #8B8B8B;
    font-weight: bold;
}

/* Estilos del detalle de un registro de una tabla*/
.detail__content{
    width: calc(38% - 0.5rem);
    margin-left: 0.5rem;
    height:100%;
    position:relative;
}

.detail__header{
    background: var(--color-blue-table);
    width: 100%;
    border: solid 1px var(--color-blue-table);
    border-bottom: none;
    display: flex;
    align-items: center;
    border-radius: 0.4rem 0.4rem 0 0;
}

.detail__code{
    padding: 0.5rem 1rem;
    width: calc(30% - 1.5rem);
}

.detail__code span{
    color: var(--color-button-main);
    font-size: 1.4rem;
    font-weight: bold;
}

.detail__desc{
    border-right: solid 1px #E2E2E2;
    border-left: solid 1px #E2E2E2;
    padding: 0.5rem 1rem;
    width: calc(70% - 1.5rem);
}
.detail__desc span{
    color: var(--color-button-main);
    font-size: 1.4rem;
    font-weight: bold;
}

.detail__header .default__more{
    margin-left: 0.5rem;
} 

.detail__body{
    overflow: auto;
    width: 100%;
    border-left: solid 1px var(--color-border-nav);
    border-right: solid 1px var(--color-border-nav);
    padding: 0 1rem;
    background: var(--color-white);
    height: calc(100% - 9.7rem);
}

.detail__body:hover::-webkit-scrollbar-thumb{
    background-color: #c0c0c0;
}

.detail__row{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: solid 1px #efefef;
}

.detail__row{
    flex-wrap: wrap;
}

.detail__rowLong .detail__rowTitle, .detail__rowLong .detail__rowText{
    width:100%;
    margin: 0;
}

.detail__rowTitle span{
    font-size: 0.9rem;
}

.detail__rowText {
    margin-left: 1rem;
}
.detail__rowText span{
    font-weight: 500;
    font-size: 1.1rem;
}

.detail__footer{
    background:  var(--color-background-author);
    padding: 1rem;  
    border:solid 1px var(--color-border-nav);  
    border-top: none;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.detail__author{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.detail__authorTitle{
    flex-basis:100%;
}

.detail__authorTitle span{
    font-size: 0.9rem;
}

.detail__authorSpn{
    flex-basis:100%;
}

.detail__authorSpn span{
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
}

/* Estilos para los tres punticos que despliega acciones */

.default__more{
    width: 2rem;
    height: 2rem;
    border-radius: 0.3rem;
    background-color: var(--color-white);
    display: flex;
    justify-content: end;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    position: relative;
}

.default__more:hover{
    background:var(--color-hover-table);
}
.default__more img {
    width: 60%;
}

.more__img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more__overlay{
    position: absolute;
    top: 0;
    margin-top: 0;
    opacity: 0;
    padding: 0.5rem;
    display: block;
    background-color: var(--color-background-more-overlay);
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border-radius: 4px 0px 4px 4px;
    pointer-events: none;
    width: 14.6rem;
    z-index: 2;
}
/*
.default__more:hover .more__overlay{
    opacity: 1;
    pointer-events: auto;
    top: 3rem;
}*/

.more__row{
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
    width: 100%;
    display: flex;
    justify-content: end;
}

.more__row:hover{
    opacity: 0.6;
}

.more__rowLast{
    border-top: solid 1px #E5E5E5;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    margin-top: 0.5rem;
}

.more__rowDelete span{
    color: var(--color-text-error);
}
/* Estilos para la paginación */
.table__pags{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.table__nav{
    flex-basis:100%;
    display: flex;
    align-items: center;
}

.table__number{
    padding: 0.5rem 1rem;
    background: var(--color-white);
    border: solid 1px var(--color-border-button-main);
    border-right: none;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.table__number-active{
    background-color: var(--color-button-secondary-hover);
}
.table__number:hover{
    background: var(--color-hover-table);
}

.table__number:nth-of-type(1){
    border-radius: 0.4rem 0 0 0.4rem;
}

.table__number:nth-last-of-type(1){
    border-radius: 0 0.4rem 0.4rem 0;
    border-right: solid 1px var(--color-border-button-main);
}

.table__number span{
    font-size: 1.2rem;
    color:var(--color-border-button-main);
    font-weight: 500;
}

.table__prev, .table__next{
    padding: 1rem;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.table__prev{
    transform: rotate(180deg);

}
.table__prev:hover, .table__next:hover{
    background: var(--color-hover-icon);
}
.table__prev img, .table__next img{
    width: 1rem;
}

.table__info{
    width: 100%;
}

.table__info span{
    width:1rem;
    color: var(--color-alert-text);
    font-style: italic;
}

.table__settings{
    padding: 1rem;
    border-left: solid 1px #e8e8e8;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    position: relative;
    display: flex;
    justify-content: center;
}

.table__settings:hover{
    background: var(--color-hover-icon);
}

.table__settings img{
    width: 1.4rem;
}

/*
.table__settings:hover .table__settingsOverlay{
    opacity: 1;
    margin-top: -340%;
    pointer-events: auto;
}*/

.table__settingsOverlay{
    position: absolute;
    top: 0;
    margin-top: 0;
    opacity: 0;
    padding: 0.5rem;
    display: block;
    background-color: #fff;
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border:solid 1px #CECECE;
    border-radius: 4px 4px 4px 4px;
    pointer-events: none;
    width: 6.5rem;
    z-index: 2;
    margin: -100%;
}

.table__settingsRow{
    width: calc(100% - 2rem);
    margin:0.5rem 1rem;
    transition: all 300ms ease-in-out;
}

.table__settingsRow:hover{
    opacity: 0.6;
}
/* Estilos genericos para adicionales en movil */
.mobile__menu{
    width: 4rem;
    padding: 1rem;
    display: none;
}

.mobile__menu img{
    width:100%;
}

/* Estilos para los formularios de input */
.input__large{
    width: calc(100% - 1rem);
}

.form__block{
    border-bottom: solid 1px #DBDBDB;
    margin: 0.75rem 0;
}

.form__row{
    width: 100%;
}

.form__row .input__default{

    width:  calc(100% - 1rem);
}

.form__block, .form__section{
    width: 100%;
    float: left;
}

/* Estilos para el input booleano*/
.input__boolean{
    display: flex;
    align-items: center;
    margin: 0.5rem 0.5rem;
    justify-content: right;
    width: 100%;
}

.boolean__text span{
    font-weight: 500;
}

.boolean__switch{
    border: solid 1px #CECECE;
    border-radius: 0.9rem;
    width: 4rem;
    padding: 0.75rem;
    cursor: pointer;
    position: relative;
    margin-left: 0.5rem;
}

.boolean__ball{
    padding: 0.65rem;
    transition: all 300ms ease-in-out;
    position: absolute;
    width: 1rem;
    border-radius: 100%;
    border: solid 1px #cecece;
    background-color: #fff;
}
.boolean__switch-active{
    background-color: #0282F0;
}

.boolean__switch-active .boolean__ball{
    right: 0;
    top: 0;
}

.boolean__switch-inactive{
    background-color: #838383;
}

.boolean__switch-inactive .boolean__ball{
    left: 0;
    top: 0;
}

.table__box-actions{
    display: flex;
    justify-content: end;
}


/* Estilos cuando no hay datos en una tabla */
.table__noData{
    background: #F0F0F0;
    border: solid 1px #E2E2E2;
    border-radius: 0.4rem;   
    padding: 2rem 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.noData__img{
    width: 12.6rem;
}

.noData__text{
    width: 20%
}

.noData__text span{
    color: #8B8B8B;
    font-size: 1.6rem;
}

/* estilos para el campo de adjuntar */
.default__upload{
    padding: 1rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: dashed 1px #dbdbdb;
    border-radius: 0.4rem;
    cursor: pointer;
}

.upload__img{
    width: 2rem;
    margin-right: 1rem;
}

.upload__img img{
    width: 100%;
}

.upload__text span{
    font-style: italic;
    color: #cecece;

}

.upload__files{
    display: flex;
    align-items:center;
    width: 100%;
    margin: 0.5rem 0;
    visibility: hidden;
}

.files__file{
    display: flex;
    align-items: center;
    background: #F4F4F4;
    border-radius: 0.4rem;
    margin:0 0.25rem;
}

.files__file:nth-of-type(1){
    margin-left: 0;
}

.files__text{
    padding: 0.5rem;
}

.files__text span{
    color:#838383;
    font-style: italic;
    line-height: 1;
}

.files__img{
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
    cursor: pointer;
    border-radius: 0.4rem ;
}

.files__img:hover{
    background: #FFCCCC;
}

.spinner__title, .spinner__spinner, .spinner__text{
    display: flex;
    justify-content: center;
    width:100%;
}

.spinner__container{
    width: 5%;
}
.spinner__text{
    margin-bottom:0;
}

.spinner__title span{
    font-size: 1.8rem;
}


.spinner__text span{
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;

}


/* Spinners 
.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    display: block;
}
.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
    color: var(--color-spinner-main);
}
.loader:after {
    color: var(--color-spinner-secondary);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
}
100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
}
}

@keyframes rotateccw {
0% {
    transform: translate(-50%, -50%) rotate(0deg);
}
100% {
    transform: translate(-50%, -50%) rotate(-360deg);
}
}

@keyframes spin {
0%,
100% {
    box-shadow: .2em 0px 0 0px currentcolor;
}
12% {
    box-shadow: .2em .2em 0 0 currentcolor;
}
25% {
    box-shadow: 0 .2em 0 0px currentcolor;
}
37% {
    box-shadow: -.2em .2em 0 0 currentcolor;
}
50% {
    box-shadow: -.2em 0 0 0 currentcolor;
}
62% {
    box-shadow: -.2em -.2em 0 0 currentcolor;
}
75% {
    box-shadow: 0px -.2em 0 0 currentcolor;
}
87% {
    box-shadow: .2em -.2em 0 0 currentcolor;
}
}*/
/* Segundo spinner  
.loader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
  }

  .loader:before,
  .loader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
  }
  .loader:before {
    animation: ball1 1s infinite;
    background-color: var(--color-spinner-main);
    box-shadow: 30px 0 0 var(--color-spinner-secondary);
    margin-bottom: 10px;
  }
  .loader:after {
    animation: ball2 1s infinite;
    background-color: var(--color-spinner-secondary);
    box-shadow: 30px 0 0 var(--color-spinner-main);
  }

  @keyframes rotate {
    0% { transform: rotate(0deg) scale(0.8) }
    50% { transform: rotate(360deg) scale(1.2) }
    100% { transform: rotate(720deg) scale(0.8) }
  }

  @keyframes ball1 {
    0% {
      box-shadow: 30px 0 0 var(--color-spinner-secondary);
    }
    50% {
      box-shadow: 0 0 0 var(--color-spinner-secondary);
      margin-bottom: 0;
      transform: translate(15px, 15px);
    }
    100% {
      box-shadow: 30px 0 0 var(--color-spinner-secondary);
      margin-bottom: 10px;
    }
  }

  @keyframes ball2 {
    0% {
      box-shadow: 30px 0 0 var(--color-spinner-main);
    }
    50% {
      box-shadow: 0 0 0 var(--color-spinner-main);
      margin-top: -20px;
      transform: translate(15px, 15px);
    }
    100% {
      box-shadow: 30px 0 0 var(--color-spinner-main);
      margin-top: 0;
    }
  }*/

  /* Botón multiseleccion */
.default__bMulti-secondary{
    border-radius: 0.4rem;
    border: solid 1px #0082F0;
    background: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index: 2;
    transition: all 300ms ease-in-out;
    position: relative;
}

.multi__container{
    position: absolute;
}

.multi__desc{
    height: calc(3.4rem - 2px);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;

}
  
.multi__desc:hover{
    background-color: var(--color-button-secondary-hover);
}
.multi__desc:hover .multi__options{
    display: flex;
}

.default__bMulti-secondary span{
    color: var(--color-border-button-main);
    font-size: 1.2rem;
}

.multi__options{
    width: calc(100% - 2rem);
    border-top:solid 1px #6ABBFF;
    display: none;
    margin: 0 1rem;
    justify-content: center;    
    flex-wrap: wrap;
    padding: 0.5rem 0;
    transition: all 300ms ease-in-out;
}

.multi__option{
    width: 100%;
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.multi__option span{
    color: #0082F0;
    font-size: 1rem;
}

.multi__option:hover + .multi__option span{
    color: #BEE1FF;
}


  /* Tercer Spinner */
  .loader {
        position: relative;
        border: 24px solid;
        border-color: var(--color-spinner-main)  transparent var(--color-spinner-main) transparent;
        animation : rotate 2s linear infinite;
      }
      .loader:before,
      .loader:after {
        content:"";
        display: block;
        border: 24px solid transparent;
        border-left-color: var(--color-spinner-main);
        position: absolute;
        left: -24px;
        top: -24px;
        animation: mvx 1s infinite linear;
      }
      .loader:before {
        border-color: transparent var(--color-spinner-main) transparent transparent;
        animation-name:mvrx;
        animation-delay: 0.5s;
      }
      @keyframes rotate {
        100% {transform: rotate(360deg)}
      }
      @keyframes mvx {
        20% , 80% {transform: translateX(0)}
        50% {transform: translateX(-50%)}
      }
      @keyframes mvrx {
        20% , 80% {transform: translateX(0)}
        50% {transform: translateX(50%)}
      }
    

/* Estilos para las tarjetas que informan los filtros  Esto se uso para las listas personalizadas de filtros master*/
.filters__card{
    border-radius: 0.6rem;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    border: solid 1px var(--color-border-input);
}

.filters__text{
    margin-left: 0.5rem;
}

.filters__text span{
    color: #838383;
}

.filters__text span:nth-of-type(2){
    font-style: italic;
    margin: 0 0.5rem;
}

.filters__delete{
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.4rem;
    margin-left: 0.5rem;
    width: 1.65rem;
}

.filters__delete img{
    width: 100%;
}
.filters__delete:hover{
    background: #FFD3D3;
}


/* ESTILOS PARA LOS FILTROS OFICIALES DE VSCLOUD+ */
.filter__condition{
    margin: 0 0rem 0 1rem;
    background-color: var(--color-background);
    padding: 2rem 1rem 1rem 1rem;
    border: solid 1px var(--color-border-input);
    border-radius: 0.4rem;
    display: none;
    align-items: center;
    position: relative;
}

.filter__searcher{
    display: flex;
    align-items: center;
    background:#fff;
    margin: 0 1rem;
    padding: 0;
}
.filter__card {
    border-radius: 0.6rem;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    border: solid 1px var(--color-border-input);
    margin: 0 0.5rem 0 0;
}

.filter__card:nth-last-of-type(1) {
    margin-right: 0;
}

.filter__card:nth-of-type(1){
    margin-left: 0.5rem;
}
.default__inp-filter{
    border: none;
    outline: none;
}
.card__text{
    margin: 0 0 0 0.5rem;
}
.card__text span{
    color: #838383;
    font-size: 1rem;
}

.card__text span:nth-of-type(2){
    font-style:italic;
    margin: 0 0.5rem;
}
.card__delete {
    padding: 0.55rem 0.5rem;
    cursor: pointer;
    border-radius: 0.4rem;
    margin-left: 0.5rem;
    width: 1.65rem;
    display: flex;
    align-items: center;
}

.card__delete img {
    width: 100%;
}
.card__delete:hover {
    background: #FFD3D3;
}

.filter__save span {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: underline;
}

.filter__settings {
    padding: 0rem;
    border-left: solid 1px #e8e8e8;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    position: relative;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0.5rem;
}

.filter__searcherBody .input__default{
    margin-left: 0.5rem;
}
.filter__overlay{
    position: absolute;
    top: 0;
    margin-top: 0;
    opacity: 0;
    display: block;
    background-color: #fff;
    border: solid 1px #cecece;
    white-space: nowrap;
    transition: all 300ms ease-in-out;
    border-radius: 0.4rem;
    pointer-events: none;
    min-width: 100%;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    max-height: 30rem;
    overflow: scroll;
    overflow-x: hidden;
}

.filter__row{
    flex-basis: 100%;
}

.filter__searcherBody{
    display: flex;
    align-items: center;
}

.filter__settingsIcon{
    padding: 0.5rem 0.7rem;
}

.filter__settingsIcon img{
    width: 1.2rem;
}

.filter__settingsOverlay
{   z-index:3;
    width: auto;
    background: var(--color-background-more-overlay);
    transition: all 300ms ease-in-out;

}

.filter__row span{
    font-size: 1rem;
}

.filter__row-searcherActive{
    background-color: var(--color-button-secondary-hover);
}

.filter__row-searcher{
    cursor: pointer;
    padding:0.5rem 1rem;
    transition: all 300ms ease-in-out;
}

.filter__row-code{
    width: calc(25% - 1rem);
}   

.filter__row-desc{
    margin-left: 1rem;
    width: 75%;
}

.filter__row-searcher:hover{
        background: var(--color-hover-table);
}

.filter__close{
    width: 2rem;
    display: flex;
    justify-content: end;
    cursor: pointer;
    padding: 0.65rem;
    border-radius: 100%;
    transition: all 300ms ease-in-out;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

.filter__close:hover {
    background-color: var(--color-hover-icon);
}

.filter__iconSearch{
    right: 3.5rem;
}

.filter__field select{
    width: fit-content;
}

.title__default{
    width: 100%;
    display: flex;
    justify-content: center;
}

.title__default span{
    font-size: 1.6rem;
    font-weight: bold;
}

.titleHeader__default span{
    font-size: 1.4rem;
    font-weight: 500;
}

.input__codeContainer{
    width: 100%;
}

.input__code{
    position: relative;
    width: 30%;
}

.input__name{
    width: 70%;
}
/* Monitores grandes */
@media (min-width:1400px){
    html{
        font-size: 12px;
    }
}
/* Celulares*/ 
@media (max-width:1000px){
    
    .layout{
        overflow: hidden;
    }
    .default__alert{
        width: calc(100% - 4rem);
    }

    .mod__space{
        width: 90%;
    }

    .sites__site{
        flex-basis:100%;
        border-left: 0;
        padding: 1rem 0 1rem 0;
        border-top: solid 1px var(--color-border-nav);
    }

    .sites__site:nth-of-type(1){
        padding: 0 0 1rem 0;
        border: none;
    }

    .sites__site:nth-last-of-type(1){
        padding: 1rem 0 0 0;
    }

    .layout__menu-undeploy{
        display: none;
    }

    .mobile__menu{
        display:inline;
    }

    .profile__title{
        display: none;
    }

    .layout__profile{
        width: 100%;
        padding: 0  1rem;
    }

    .company__info{
        display: none;
    }

    .profile__settings{
        display: flex;
    }

    .company__logo{
        width: 3rem;
    }
    .company__logo img{
        width:100%;
    }

    .company__container {
        padding: 0px 1rem;
    }

    .layout__content{
        width: 100%;
    }

    .info__img {
        margin-right: 1rem;
    }

    .info__overlay {
        margin-right: 7rem;
    }

    .support__img, .info__img {
        padding: 0.8rem;
    }

    .alerts__img {
        margin-top: 2rem;
    }

    .btnImg__spn{
        display: none;
    }

    .table__container {
        width: 100%;
    }
    .detail__content{
        width: 100%;
        margin: 0;
        margin-top: 1rem;

    }

    .profile__time{
        justify-content: start;
    }

    .profile__company{
        justify-content: end;
    }

    .mod__container{
        width: 90%;
    }

    .filter__condition{
        margin: 1rem 0;
    }

    .filter__field select {
        width: 10rem;
    }

    .default__filter,.filter__active, .filter__overlay, .filter__condition{
        width: 100%;
    }
}

/* ANIMACIONES */
@keyframes slidein{
    from{
       
        opacity: 0;
    }

    to{
        
        opacity: 1;
    }
}
