/* FONTS */
@import url('/public/assets/fonts/font.css');
@import url('/public/assets/transfonter-muli/stylesheet.css');
/* Variables de diseño */
:root {
    --success-color: #05ff00;
    --magenta-color: #ab42ff;
    --dicio-color: #0094fe;
    --numbers-color: black;
    --danger-color: #FE0000;
}



.alliance_purple_container {
    background: var(--principal-color);
    background: linear-gradient(0deg, var(--principal-color) 20%, var(--principal-color) 50%, var(--principal-color) 95%);
}

.text_alliance {
    color: white;
    margin-bottom: 0px !important;
    size: 20px;
    line-height: 20px;
    font-weight: 400;
}

.resume_container {
    display: flex;
    flex-direction: column;
    height: 100% !important;
    width: 100%;
}

.navbar_container {
    flex: 1;
    display: flex;
    padding: 10px 3% 0px 3%;
    /* align-items: center; */
    justify-content: space-between;
}

.navbar_container_absolute {
    position: absolute;
    padding: 0px 3% 0px 3% !important;
    top: 10px;
    width: 100%;
    z-index: 2;
}

.navbar_container span {
    align-self: center;
}

.alliance_logo_header {
    width: 28%;
}

.body_data_container {
    flex: 5;
    flex-direction: row;
    justify-content: space-evenly;
    display: flex;
}

.options_container {
    flex: 1;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.options_container div:nth-child(1) {
    padding-left: 15%;
    z-index: 2;
}

.options_container div:nth-child(2) {
    padding-right: 15%;
    z-index: 3;
}

.options_container div:nth-child(3) {
    padding-left: 15%;
    z-index: 4;
}

/*Tooltips*/
.options_container div:nth-child(1) .tooltip_text,
.options_container div:nth-child(3) .tooltip_text {
    margin-left: 20px;
}

.options_container div:nth-child(2) .tooltip_text {
    margin-left: -15px;
}

.circle_data_container {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape_circle {
    background: rgb(255, 255, 255);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.circle_shapes {
   /* background: radial-gradient(circle, #433394 30%, #423297 35%, #2e207e 35%, #2e207e 45%, #271777 45%, #271870 59%, #25166a 59%);*/
   background: radial-gradient(circle, rgba(255, 255, 255,0.06) 30%, rgba(255, 255, 255,0.06) 35%, rgba(255, 255, 255,0.045) 35%, rgba(255, 255, 255,0.045) 45%, rgba(255, 255, 255,0.02) 45%, rgba(255, 255, 255,0.02) 65%, rgba(255, 255, 255,0.00) 59%);  
}

.shape_circle span {
    flex-direction: row;
    display: flex;
    justify-content: center !important;
    align-items: center;
    margin-top: 30px;
}

.shape_circle small {
    font-size: 20px;
    font-weight: 700;
    color: #2D2D2D;
    opacity: 0.7;
}

.shape_circle b {
    font-size: 20px;
    font-weight: 800;
    color: #2D2D2D;
    text-decoration: underline;
    margin-left: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.icon_circle_data {
    margin-right: 10px;
    color: gray;
    align-self: start;
    margin-top: 15px;
}

.number_circle_data {
    font-size: 50px;
    font-weight: 800;
    color: var(--numbers-color);
    margin-bottom: 0 !important;
    margin-left: 5px;
}

.logo_cliente_circle {
    margin-bottom: 25px;
    top: 70px;
    position: relative;
    width: 240px;
    height: auto;
}

.text_gray_alliance {
    font-size: 16px;
    color: #99999b;
    margin-bottom: 0 !important;
    margin-left: 5px;
    font-weight: 400;
    line-height: 20px;
}

.green-stats {
    width: 20px;
    height: 20px;
    background: var(--success-color);
    float: left;
    margin: 4px 6px 6px 16px;
    border-radius: 10px;
    border: #02b400 3px solid;
}

.blue-stats {
    width: 20px;
    height: 20px;
    background: var(--dicio-color);
    float: left;
    margin: 4px 6px 6px 16px;
    border-radius: 10px;
    border: #0270C1 3px solid;
}

.purple-stats {
    width: 20px;
    height: 20px;
    background: var(--magenta-color);
    float: left;
    margin: 4px 6px 6px 16px;
    border-radius: 10px;
    border: #7700d4 3px solid;
}

.info_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 20px;
}

.footer_container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0px 3%;
    justify-content: space-between;
}

.absolute_footer {
    position: absolute;
    bottom: 30px;
}

.footer_containerForm {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0px 3%;
    margin-bottom: 5%;
    margin-left: 5%;
    position: absolute;
    bottom: -30px;
    left: -30px;
}

.margin_small {
    font-size: 14px;
}

.icono_copy {
    margin-right: 15px;
    background-color: #11063f;
    border-radius: 50%;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    color: white;
    cursor: pointer;
}

/* Estilos del tooltip */
.tooltip_alliance {
    position: relative;
    display: inline-block;
    border-bottom: 1px #676868;
}

.tooltip_text {
    visibility: hidden;
    width: 89px;
    font-weight: 500;
    font-size: 10px;
    background-color: #101010;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 30px;
    position: absolute;
    left: 95%;
    bottom: 30%;
    z-index: 1;
    border-color: gray;
    border-width: 1px;
    border-style: solid;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip_alliance:hover .tooltip_text {
    visibility: visible;
}

.tooltip_alliance .tooltip_text i {
    position: absolute;
    top: 38%;
    left: -3.4px;
    transform: rotate(90deg);
    margin-left: -12px;
    width: 24px;
    height: 12px;
    overflow: hidden;
}

.tooltip_alliance .tooltip_text i::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    left: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #101010;
    border-color: gray;
    border-width: 1px;
    border-top: #101010;
    border-style: solid;
}

/***** Animaciones para los botones del home y formularios  *****/

.circle_entrance {
    position: relative;
    left: -200px;
    animation: entradaDesdeIzquierda 3s ease-out forwards;
}

@keyframes entradaDesdeIzquierda {
    0% {
        left: -200px;
    }

    100% {
        left: 0;
    }
}

/* Animacion de entrada de esquina superior izquierda al centro */
.anim_icon_topleft_center {
    position: absolute !important;
    top: initial;
    left: initial;
    animation: entradaEnDiagonalArribaCentro 1s ease-out forwards;
}

@keyframes entradaEnDiagonalArribaCentro {
    0% {
        top: 200px;
        left: 200px;
    }

    100% {
        top: calc(50% - 40px);
        left: calc(100% - 95px);
    }
}

/* Animacion de entrada de abajo al centro */
.anim_bottom_top {
    position: relative;
    left: initial;
    animation: entradaDesdeAbajo 1.5s ease-out forwards;
}

@keyframes entradaDesdeAbajo {
    0% {
        bottom: -400px;
    }

    100% {
        bottom: 0;
    }
}

/* Animacion de entrada de esquina inferior izquierda al centro */
.anim_icon_bottleft_center {
    position: absolute !important;
    top: initial;
    left: initial;
    animation: entradaEnDiagonalAbajoCentro 2.5s ease-out forwards;
}

@keyframes entradaEnDiagonalAbajoCentro {
    0% {
        top: calc(70% - 0px);
        left: calc(60% - 30px);
    }

    100% {
        top: calc(50% - 40px);
        left: calc(100% - 95px);
    }
}

.claseFont {
    font-family: "Muli";
}

.eye_icon_input {
    position: absolute;
    top: 35%;
    right: 15px;
}

.arrow_icon_input {
    position: absolute;
    top: 28%;
    right: 15px;
}

.error_input {
    color: #ff0200 !important;
}

.success_input {
    color: #11a60b !important;
}

.btn_cancelar {
    color: #D9D9D9;
}

.spinner_small {
    width: 1rem !important;
    height: 1rem !important;
    border-width: .15em !important;
}

.close_modal_icon {
    width: 100%;
    height: 20px;
    justify-content: end;
    align-items: center;
    display: grid;
    font-size: large;
}

.bi-chevron-double-right {
    color: #ffffff85;
    font-size: larger;
    position: absolute;
    right: -50px;
}

/*********************************
    Search Page & modules
**********************************/

/* centra el div que contiene el logo de la opcion con respecto al div del medio
círculo lateral, se reutiliza donde existen esas características*/
.absolute_center {
    position: absolute;
    top: 45% !important;
}

.headers_table_animation th:nth-child(1) {
    animation: left-to-right-headers 0.4s ease-in-out 3s 1 normal both;
}

.headers_table_animation th:nth-child(2) {
    animation: left-to-right-headers 0.3s ease-in-out 3.3s 1 normal both;
}

.headers_table_animation th:nth-child(3) {
    animation: left-to-right-headers 0.3s ease-in-out 3.6s 1 normal both;
}

.headers_table_animation th:nth-child(4) {
    animation: left-to-right-headers 0.3s ease-in-out 3.9s 1 normal both;
}

.headers_table_animation th:nth-child(5) {
    animation: left-to-right-headers 0.3s ease-in-out 4.2s 1 normal both;
}

.headers_table_animation th:nth-child(6) {
    animation: left-to-right-headers 0.3s ease-in-out 4.5s 1 normal both;
}

@keyframes left-to-right-headers {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    30% {
        opacity: 0.3;
        transform: translateY(-10px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-8px);
    }

    70% {
        opacity: 0.7;
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.body_table_animation {
    animation: left-to-right-headers 1.3s ease-in-out 4.5s 1 normal both;
}

/*********************************
    Home Page & modules
**********************************/

.div_row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon_right_info {
    margin-right: 10px;
}

/* Estilos del tooltip */
.tooltip_alliance_logout {
    position: relative;
    display: inline-block;
    border-bottom: 1px #676868;
}

.tooltip_text_logout {
    visibility: hidden;
    width: 90px;
    font-weight: 500;
    font-size: 12px;
    background-color: #101010;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 30px;
    position: absolute;
    right: 120%;
    bottom: -15;
    z-index: 1;
    border-color: gray;
    border-width: 1px;
    border-style: solid;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip_alliance_logout:hover .tooltip_text_logout {
    visibility: visible;
}

.tooltip_alliance_logout .tooltip_text_logout i {
    position: absolute;
    top: 38%;
    right: -3.4px;
    transform: rotate(90deg);
    margin-right: -12px;
    width: 24px;
    height: 12px;
    overflow: hidden;
}

.tooltip_alliance_logout .tooltip_text_logout i::after {
    content: '';
    position: absolute;
    bottom: -0.5px;
    width: 12px;
    height: 14px;
    right: 13.8px;
    transform: translate(50%, 50%) rotate(135deg);
    background-color: #101010;
    border-color: gray;
    border-width: 1px;
    border-top: #101010;
    border-style: solid;
}

/* Icono notificaciones */
.notifications_icon_container {
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary_shadow_circle {
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.21);
}

.red_shadow_circle {
    box-shadow: 0px 0px 0px 4px rgba(255, 0, 0, 0.22);
}

.circle_status::before {
    content: "";
    position: absolute;
    background-color: var(--danger-color);
    width: 4.6px;
    height: 4.6px;
    border-radius: 10px;
    top: 32%;
    right: 35%;
}

.notifications_icon_container img {
    color: var(--principal-color)
}

/* Tooltips según posición */

[data-tooltip] {
    position: relative;
    cursor: pointer;

}

[data-tooltip]:before,
[data-tooltip]:after {
    line-height: 0.5;
    font-size: .9em;
    pointer-events: none;
    position: absolute;
    box-sizing: border-box;
    display: none;
    opacity: 0;
}

[data-tooltip]:before {
    content: "";
    border: 5px solid transparent;
    z-index: 100;
}

[data-tooltip]:after {
    content: attr(data-tooltip);
    text-align: center;
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 15px;
    border-radius: 20px;
    background: #1C1C1C;
    color: #FFFFFF;
    z-index: 99;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    display: block;
    opacity: 1;

}

[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow="top"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #1C1C1C;
}

[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::after {
    bottom: calc(100% + 5px);
}

[data-tooltip]:not([data-flow])::before,
[tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::before,
[data-tooltip][data-flow="top"]::after {
    left: 50%;
    transform: translate(-50%, -4px);
}

[data-tooltip][data-flow="bottom"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #1C1C1C;
}

[data-tooltip][data-flow="bottom"]::after {
    top: calc(100% + 5px);
}

[data-tooltip][data-flow="bottom"]::before,
[data-tooltip][data-flow="bottom"]::after {
    left: 50%;
    transform: translate(-50%, 8px);
}

[data-tooltip][data-flow="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #1C1C1C;
    left: calc(0em - 5px);
    transform: translate(-8px, -50%);
}

[data-tooltip][data-flow="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-8px, -50%);
}

[data-tooltip][data-flow="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #1C1C1C;
    right: calc(0em - 5px);
    transform: translate(8px, -50%);
}

[data-tooltip][data-flow="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(8px, -50%);
}

[data-tooltip=""]::after,
[data-tooltip=""]::before {
    display: none !important;
}

/* FIN Tooltips según posición */

/*********************************
    Alertas Page & modules
**********************************/

/* Modal Alertas */

.black_background_modal {
    background-color: #00000080;
}

.modal_title_alliance {
    font-size: 24px !important;
    color: var(--numbers-color);
}

.red_border {
    border: 2px white solid;
    box-shadow: 0px 0px 0px 3.5px var(--danger-color);
}

.red_underline::before {
    content: "";
    width: 50%;
    height: 4px;
    border-radius: 0.5px;
    margin-top: 3px;
    display: flex;
    background: linear-gradient(111.3deg, #FFFFFF 9.6%, var(--danger-color) 93.6%);
}

.yellow_border {
    border: 2px white solid;
    box-shadow: 0px 0px 0px 3.5px #f4bc39;
}

.yellow_underline::before {
    content: "";
    width: 38%;
    height: 4px;
    border-radius: 0.5px;
    margin-top: 3px;
    display: flex;
    background: linear-gradient(111.3deg, #FFFFFF 9.6%, #f4bc39 93.6%);
}

.body_table_animation .btn_detail {
    padding-block: 2px;
    font-size: 11px !important;
    font-weight: 600 !important;
    background: var(--principal-color);
    color: white;
}

.table_notifications {
    width: 100%;

}

.cover_bgx_notifications {
    background: url("../images/admin_img/alert_user.svg") no-repeat 0 center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: white;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
}

.scroll_view {
    overflow: scroll;
    display: block;
    max-height: 400px;
    /* margin-bottom: 10px !important; */
}