:root{

    --sb-font-poppins: 'Poppins', sans-serif;

    --sb-color-black: #282828;
    --sb-color-white: #fff;
    --sb-color-blue: #1A1B39;
    --sb-color-blue-light: #1B1D46;
    --sb-color-gray: #F5F5F5;
    --sb-color-gray2: #7F7F7F;
    --sb-color-gray3: #CACACA;
    --sb-color-lightblue: #4CAEF2;
    --sb-color-green: #4DC87E;

    --sb-btn-bg: var(--sb-color-blue);
    --sb-btn-bg-hover: var(--sb-color-blue-light);
    --sb-btn-color: var(--sb-color-white);
}

/* TOOLS */
.user-select-none{
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.f-poppins{
    font-family: var(--sb-font-poppin);
}
.text-gray{
    color: var(--sb-color-gray2);
}
.text-blue{
    color: var(--sb-color-blue);
}
.text-white{
    color: var(--sb-color-white);
}
.text-graylight{
    color: var(--sb-color-gray3);
}
.fw-500{
    font-weight: 500 !important;
}
.fw-600{
    font-weight: 600 !important;
}
.fw-bold{
    font-weight: bold !important;
}
/* .d-flex{
    display: flex !important;
} */
.d-inline-flex{
    display: inline-flex !important;
}
/* .align-items-center{
    align-items: center !important
} */
/* .justify-content-center{
    justify-content: center !important;
} */
.filter-brightness-4{
    filter: brightness(4);
}
.filter-brightness-7{
    filter: brightness(7);
}
ul.ul-left{
    padding-left: .75rem;
}
/* TOOLS */



/* COMMONS */
.btns-container{
    display: flex;
}
.btn-time{
    /* width: 100%;
    max-width: 165px; */
    max-height: 40px;
    border-radius: 20px;
    background: var(--sb-btn-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* padding: 8px 31px; */
    padding: 8px 20px;
    cursor: pointer;
}
.btn-time.disabled{
    background: #D9D9D9;
    pointer-events: none;
}
.btn-time:hover{
    /* opacity: .85; */
    background: var(--sb-btn-bg-hover);
}
.btn-time p{
    font-family: var(--sb-font-poppins);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    margin-block-start: 0em;
    margin-block-end: 0em;
    color: var(--sb-btn-color);
}



.tooltipx {
    position: relative;
    cursor: pointer;
}
.tooltipx.disabled{
    pointer-events: none;
    opacity: .7;
}

.tooltipx .tooltiptext {
    visibility: hidden;
    width: auto;
    min-width: 115%;
    background-color: var(--sb-color-blue);
    font-family: var(--sb-font-poppins) !important;
    font-size: .7rem !important;
    font-weight: 400 !important;
    line-height: .8rem !important;
    text-align: left;
    color: var(--sb-color-white);
    border-radius: 12px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    top: -8px;
    left: 110%;
    display: none;
    margin-left: .15rem;
}
.tooltipx:hover .tooltiptext,
.tooltipx.hover .tooltiptext {
    visibility: visible;
    display: block;
}

.tooltipx .tooltiptext::after {
    content: "";
    position: absolute;
    top: 1rem !important;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent var(--sb-color-blue) transparent transparent;
}
.tooltipx.tt-white .tooltiptext{
    background-color: var(--sb-color-white);
    color: var(--sb-color-black);
    border: 1px solid var(--sb-color-blue) ;
}
.tooltipx.tt-centered .tooltiptext{
    text-align: center;
}


.modal-bg-green.overlay.fade{
    background: rgba(185, 240, 206, 0.81);
}
.modal.modal-time{
    padding: 25px 35px 15px;
}
.modal.modal-time .modal-box .content-modal-title:has(.content-title-modal) {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
.modal.modal-time .modal-box .content-modal-title .content-title-modal.title-green p{
    font-family: var(--sb-font-poppins);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    margin-block-start: 0em;
    margin-block-end: 0em;
    color: var(--sb-color-green);
    display: contents;
}
.modal.modal-time .modal-box .content-modal-title .modal-close{
    top: 0px;
}
.modal.modal-time .modal-box .content-modal-title .modal-close.disabled{
    pointer-events: none;
    opacity: .6;
}
.modal.modal-time .modal-box .content-modal-title .modal-close.mt i{
    margin-top: 10px;
}
.modal.modal-time .modal-box .content-modal-title .modal-close.big i{
    font-weight: bolder;
    font-size: 1.2em;
}
.modal.modal-time .modal-box .modal-body{
    font-family: var(--sb-font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    margin-block-start: 1.188em;
    margin-block-end: 0.2em;
    color: var(--sb-color-blue);
}
.modal.modal-time .modal-box .modal-body .title-green{
    font-family: var(--sb-font-poppins);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-block-start: 1rem;
    color: var(--sb-color-green);
}
.modal.modal-time .modal-box .modal-footer{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}


.custom-msg {
    text-align: left;
    font-size: .85rem;
    background: #D6ECFB;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-weight: 400;
    border: 1px solid #282828;
    margin: 1.5rem 0 1rem;
}


table.table-x-time tr.sticky th{
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    border-bottom: 1px solid #D1D1D1 !important;
}
table.table-x-time {
    width: 100% !important;
    border-collapse: collapse;
    text-align: left;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    /* overflow: hidden; */
    position: relative;
}

table.table-x-time thead .checkbox label span,
table.table-x-time tbody .checkbox label span {
    height: 20px;
    width: 20px;
    background: var(--sb-color-white);
    border-radius: 4px;
    display: inline-block;
    border: 2px solid var(--sb-color-blue);
}
table.table-x-time thead .checkbox input:checked ~ span,
table.table-x-time tbody .checkbox input:checked ~ span {
    background-color: #1A1B39;
    background-image: url(/assets/img/time/white-check.svg);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center;
    border: 2px solid var(--sb-color-blue);
}
table.table-x-time thead tr th{
    border: none;
}
table.table-x-time thead tr th,
table.table-x-time tbody tr td{
    font-family: 'Poppins', sans-serif;
}

table.table-x-time thead tr th:first-of-type {
    border-top-left-radius: 6px;
}

table.table-x-time thead tr th:last-of-type {
    border-top-right-radius: 6px;
}

table.table-x-time thead tr {
    background: var(--sb-color-white);
    color: #1A1B39;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: none;
    border-bottom: 1px solid #D1D1D1;
    top: 0;
    z-index: 2;
    position: sticky;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

table.table-x-time tbody tr {
    transition: .3s;
    color:  var(--sb-color-blue);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
}

table.table-x-time tbody tr:hover {
    background: whitesmoke;
}
 
table.table-x-time th {
    padding: 11.48px 0px;
    box-sizing: content-box;
    vertical-align: middle;
    position: relative;
}
table.table-x-time td {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    word-break: normal;
    vertical-align: middle;
}
table.table-x-time.box-sizing td{
    box-sizing: content-box;
}
table.table-x-time.py25 td{
    padding: 25px 0px;
}

table.table-x-time td.empty {
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;
    color: #000000;
    background: #FFFFFF;
    height: 450px;
}

/* table.table-x-time th:first-child,
table.table-x-time td:not(.adt):first-child {
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    left: 0;
    z-index: 1;
} */
table.table-x-time th:first-child.empty,
table.table-x-time td:first-child.empty {
    text-align: center !important;
}
table.table-x-time th:first-child li,
table.table-x-time td:first-child li{
    text-align: left !important;
}

/* table.table-x-time:not(.table-x-time) tr th:nth-child(-n + 4),
table.table-x-time:not(.table-x-time) td:nth-child(-n + 4),
table.table-x-time th:last-child,
table.table-x-time td:last-child, */
table.table-x-time tr>th.fixed,
table.table-x-time tr>td.fixed {
    position: sticky;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: break-spaces;
}
table.table-x-time:not(.table-x-time) tr th:nth-child(-n + 3)/* ,table.table-x-time th:last-child */{
    top: 0;
    z-index: 2 !important;
    background: #F0F0F0 !important;
}
  
table.table-x-time td.columnStatic:nth-child(-n + 4),
table.table-x-time td.columnStatic:last-child {
    position: static !important;
}
table.table-x-time th:nth-child(1).checkbox,
table.table-x-time td:not(.adt):nth-child(1).checkbox {
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    left: 0;
}
table.table-x-time th.fixed,
table.table-x-time td:not(.adt).fixed{
    background: #F0F0F0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}
table.table-x-time th.fixed,
table.table-x-time td.fixed{
    z-index: 1;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
table.table-x-time tr>td.checkbox.fixed>*{
    display: flex;
    justify-content: end;
    margin-right: .65rem;
}

/* table.table-x-time th:nth-child(2),
table.table-x-time td:nth-child(2){
    left: 70px;
}
table.table-x-time th:nth-child(3),
table.table-x-time td:nth-child(3){
    left: 320px;
} */

table.table-x-time td .cell-cnt{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .15rem;
    padding: 0 .5rem;
}
table.table-x-time td .cell-cnt span[role="button"]{
    display: inline-flex;
}

table.table-x-time td .cell-cnt span[role="button"].ease{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s linear,opacity 0.2s linear;
}
table.table-x-time td:hover .cell-cnt span[role="button"].ease{
    visibility: visible;
    opacity: 1;
}
/* //COMMONS */


/* MODULES */
section.module{
    padding: 30px 45px 30px 40px;
}
h2.time-module-title{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 33.5px;
    letter-spacing: 0em;
    text-align: left;
    color: #4DC87E;
    padding-top: 8px;
    position: relative;
}
h2.time-module-title .btn-back{

}
h2.time-module-title .btn-back::after{
    content: 'Volver';
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    text-decoration: underline;
    margin-block-start: 0em;
    margin-block-end: 0em;
    color: var(--sb-color-black);
    background-image: url(../../../../../assets/img/onboarding/icon-atras.png);
    background-repeat: no-repeat;
    padding-left: 1.25rem;
    display: inline-flex;
    align-items: center;
    background-position: center left;
    position: absolute;
    /* top: 35%; */
    bottom: .15rem;
    right: .25rem;
    height: 16px;
    cursor: pointer;
}
.hr-horizontal {
    width: 100%;
    border: 1px solid #D7D7D7;
    margin: 10px auto;
    padding: 0px 40px;
}
.container-lateral-filters{
    width: 100%;
    max-width: 100vw;
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr;
    justify-content: center;
    align-items: start;
    padding: 10px 0;
}
.container-lateral-filters .lateral-filters{
    display: grid;
    max-width: 345px;
    gap: 20px;
    grid-template-columns: auto 9px;
    justify-content: center;
    color: #000000;
    background: #D6ECFB;
    border-radius: 20px;
    padding: 60px 20px 50px 20px;

    position:relative;
}
.container-lateral-filters .lateral-filters:not(.opened){
    gap: 0;
    grid-template-columns: auto;
    min-height: 717px;
    max-height: 717px;
}
.container-lateral-filters .lateral-filters.opened::before{
    content: 'Filtros';
    background-image: url(../../../../assets/img/onboarding/icon-filter.png);
    background-position: center left;
    background-repeat: no-repeat;
    position: absolute;
    padding-left: 1.75rem;
    top: 1.25rem;
    left: 1.25rem;
}
.container-lateral-filters .lateral-filters .filter-content{

}
.container-lateral-filters .lateral-filters .filter-toogle{
    background-image: url(../../../../assets/img/time/icon-open.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: calc(100% + 4rem);
    margin-top: -2rem;
    cursor: pointer;
    opacity: .8;
}
.container-lateral-filters .lateral-filters:not(.opened) .filter-toogle{
    transform: rotate(-180deg);
    /* -webkit-transition: .1s;
    transition: .1s; */
}
.container-lateral-filters .lateral-filters .filter-toogle:hover{
    opacity: 1;
    background-color: #C9E5F8;
    border-radius: .5rem;
}
.container-lateral-filters .lateral-filters .filter-content{
    display: grid;
    gap: 1.75rem;
}
.container-lateral-filters .lateral-filters .filter-content .filter-opts{
    width: 100%;
    display: grid;
    gap: 1.5rem;
  }
.container-lateral-filters .lateral-filters .filter-content .filter-btns{
    display: grid;
    gap: 1.75rem;
}

.container-lateral-filters .full-content{

}
/* //MODULES */

/* SECTION-BLOCK */
.section{
    margin: 1rem 0 3rem;
}
.section .block{
    margin: .5rem 0 1rem 0;
}
.section .block p.title{
    margin-bottom: 1rem;
    display: flex;
}
.section .block p.label{
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.section .block p.label>*{
    display: flex;
    align-items: center;
}
.section .block p.label span{
    font-family: var(--sb-font-poppins);
    /* font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-block-start: 0em;
    margin-block-end: 0em;
    color: #1A1B39; */
}
.section .block p.label.tab,
.section .block p.label .tab{
    margin-left: 2rem;
}
.section .block p.label.tab2,
.section .block p.label .tab2{
    margin-left: 8rem;
}

.section .block p.label .static-size-1{
    width: 300px;
}
.section .block p.label .static-size-2{
    width: 480px;
}
.section .block p.label.tab .static-size-2{
    width: calc(480px - 2rem);
}
.section .block p.label.muted{
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin-top: -.5rem;
    color: #32a9e3;
}
.section .block p.label.muted::before{
    content: '*';
    margin-right: -.4rem;
    color: #32a9e3;
}
.section .block.block-disabled p.label>span,
.section .block.block-disabled p.title,
.section .block p.title.text-disabled,
.section .block p.label span.text-disabled{
    color: #AEAEAE;
}
/* //SECTION-BLOCK*/