/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-principal: #98956F;
    --color-text-dark: #000;
    --color-text-white: #FFF;
    --color-text-input: #9E9E9E;
    --color-gradient-body: linear-gradient(180deg, #012380 0%, #04022A 100%);
    --color-cta-gradient: linear-gradient(90deg, #002BC3 0%, #001C7D 100%);


}

body {
    background-image: var(--color-gradient-body);
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 100vh;


}

.cards-grafica {
    border-radius: 14px;
    border: 1px solid rgba(114, 114, 114, 0.31);
    background: rgba(165, 165, 165, 0.10);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
    padding: 25px;
    min-height: 384px;
}

.btn-tornos {

    border-radius: 40px;
    border: 2px solid var(--color-text-white);
    text-align: center;
    background: rgba(217, 217, 217, 0.01);
    backdrop-filter: blur(25px);
    width: 360px;
    height: 45px;
    flex-shrink: 0;
    color: var(--color-text-white);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.btn-tornos:hover {
    color: var(--color-cta-gradient);
    background: var(--color-text-white);

}

.seccion-cta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;

}

tspan {
    fill: var(--color-text-white);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.apexcharts-legend-text {
    color: #FFF !important;
    text-align: center;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal;
    padding-left: 24px !important;

}

.contenedor-nav {
    margin-top: 24px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contenedor-nav .seccion-filtros {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-direction: row;

}

.contenedor-nav #btn-group-seleccion {
    border-radius: 40px;
    border: 2px solid #757575;
    background: rgba(217, 217, 217, 0.01);
    box-shadow: 0px 0px 4px 0px #FFF;
    backdrop-filter: blur(15px);


}

.title-grafico {
    color: #FFF !important;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}

.contenedor-nav #btn-group-seleccion .btn {
    color: #B8B8B8;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 0px 50px;
    height: 56px;
    border-radius: 40px;
}

/*.contenedor-nav #btn-group-seleccion .btn:hover,*/
.contenedor-nav #btn-group-seleccion .btn:active,
.contenedor-nav #btn-group-seleccion .btn.active {

    border: 2px solid #FFF;
    box-shadow: 1px 1px 18px 0px #FFF;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn.btn-logout {
    width: 60px;
    height: 60px;
    border: 1px solid #757575;
    filter: drop-shadow(0px 0px 4px #FFF);
    backdrop-filter: blur(15px);
    border-radius: 999px;
}

.btn.btn-logout:hover {
    opacity: 0.5;

}

.form-control,
.form-control:focus {
    border-radius: 40px;
    border: 1px solid #757575;
    background: rgba(217, 217, 217, 0.01);
    box-shadow: 0px 0px 4px 0px #FFF;
    backdrop-filter: blur(15px);
    height: 56px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

.form-control::placeholder {
    color: var(--color-text-white);
    text-align: left;
}

.calendar-table td {
    font-size: 16px;
}

::ng-deep.bs-datepicker .bs-datepicker-head {
    background-color: blue !important;
}

::ng-deep.bs-datepicker .selected {
    background-color: blue !important;
}


.form-container-login {
    width: 700px;
    height: 600px;
    border-radius: 14px;
    border: 1px solid rgba(114, 114, 114, 0.31);
    background: rgba(165, 165, 165, 0.10);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    padding: 55px;
    position: absolute;
    /* Posición absoluta */
    top: 50%;
    /* 50% de la altura del body */
    left: 50%;
    /* 50% de la anchura del body */
    transform: translate(-50%, -50%);
    /* Ajusta para centrar */


}

.input-login {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0px;

}

.form-container-login .title-login p {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: unset;

}

.form-container-login .cta-form,
.container-login .cta-form {
    display: flex;
    justify-content: center;
}

.btn.btn-login {
    width: 360px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 40px;
    background: linear-gradient(90deg, #002BC3 0%, #001C7D 100%);
    background-repeat: no-repeat;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

}

.form-login,
.form-login:hover,
.form-login:focus {
    height: 45px;
    border-radius: 40px;
    border: 2px solid #FFF;
    background: rgba(217, 217, 217, 0.01);
    box-shadow: 1px 1px 18px 0px rgba(255, 255, 255, 0.30);
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

}

.form-login::placeholder {
    color: var(--color-text-white);
    text-align: left;
    font-size: 20px;
}


.background-spinner {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: #fafafac7;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 72px;
    height: 72px;
    display: grid;
    border: 5.8px solid #0000;
    border-radius: 50%;
    border-color: #dbdcef #0000;
    animation: spinner-e04l1k 1s infinite linear;
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    margin: 2.9px;
    border: inherit;
    border-radius: 50%;
}

.spinner::before {
    border-color: #001c7d #0000;
    animation: inherit;
    animation-duration: 0.5s;
    animation-direction: reverse;
}

.spinner::after {
    margin: 11.6px;
}

@keyframes spinner-e04l1k {
    100% {
        transform: rotate(1turn);
    }
}

.filtro-cards-selector {
    display: flex;
    width: 130px;
    height: 29px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: unset;
    border: unset;
}

.dropdown-menu.show {
    display: block;
    background-color: #000;
    color: white;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--color-text-white);
    background-color: #000;
    opacity: 0.5;
}

.dropdown-item {
    color: var(--color-text-white);
    font-size: 24px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--color-text-white);
    text-decoration: none;
    background-color: #000
}
#selectorEmpresas{
    margin-bottom: 12px;
}

.cards-grafica .value-emp-item {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    top: 10px;
    /* position: absolute; */
    width: 100;
    /* margin-top: 10px; */
    display: flex;
    justify-content: center;
    position: relative;
    top: 160px;
}

.item-leyenda-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -20px;
}

.item-leyenda-container .texto {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.item-leyenda-container .color {
    width: 34px;
    height: 19px;
    flex-shrink: 0;
    border-radius: 7px;

}

.item-leyenda-container .item-leyenda {
    display: flex;
    gap: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.item-leyenda-container .color-visita {
    background-color: #FF0303;
}

.item-leyenda-container .color-empresa {

    background-color: #FF7410;
}