@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
    --theme-bg-color: rgba(16 18 27 / 40%);
    --theme-bg-color-modal: rgba(34 42 77 / 90%);
    --border-color: rgba(113 119 144 / 25%);
    --theme-color: #f9fafb;
    --theme-color-2: #a1a1a1;
    --inactive-color: rgb(113 119 144 / 78%);
    --body-font: "Poppins", sans-serif;
    --hover-menu-bg: rgba(39, 49, 81, 0.493);
    --content-title-color: #b1b1d6;
    --content-bg: rgb(146 151 179 / 13%);
    --button-inactive: rgb(249 250 251 / 55%);
    --dropdown-bg: #21242d;
    --dropdown-hover: rgb(42 46 60);
    --popup-bg: #2d2f43;
    --search-bg: #1f2240;
    --overlay-bg: rgba(36, 39, 59, 0.3);
    --scrollbar-bg: rgb(1 2 3 / 40%);
    --color-notific: #4961a0;
    --color-btn: #292b3b;
    --color-btn-dest: #141b29;
    --color-btn-hoover: #1c2631;
    --fondo-color-1: #3333336b;
    --fondo-overlay: rgb(0 0 0 / 94%);
    --filtro-editar: invert(3%) sepia(60%) saturate(1197%) hue-rotate(-34deg) brightness(119%) contrast(87%);
    --close-btn: #b5b5b5;
    --iconos-contacto: #828cab;

    --color-boton-header: #213361;
    --color-boton-perfil: #441515;

    /* responsive */

    --body-altura: 90vh;
    --app-maximo-ancho: 1250px;
    --header-altura: 58px;
    --search-altura: 40px;

    --menu-izq-ancho: 300px;
    --menu-izq-altura: 83vh;

    --info-empresa-altura: 75vh;
    --info-empresa-altura-600px: auto;

    --menu-dch-ancho: 252px;

}

.light-mode {
    --theme-bg-color: rgb(255 255 255 / 31%);
    --theme-bg-color-modal: rgba(212, 232, 255, 0.724);
    --theme-color: #3c3a3a;
    --theme-color-2: rgb(120, 118, 118);
    --inactive-color: #333333;
    --button-inactive: #3c3a3a;
    --search-bg: rgb(255 255 255 / 31%);
    --dropdown-bg: #f7f7f7;
    --overlay-bg: rgb(255 255 255 / 30%);
    --dropdown-hover: rgb(236 236 236);
    --border-color: rgb(255 255 255 / 35%);
    --popup-bg: rgb(255 255 255);
    --hover-menu-bg: rgba(255 255 255 / 35%);
    --scrollbar-bg: rgb(255 253 253 / 57%);
    --content-title-color: --theme-color;
    --color-notific: #8da6e5;
    --color-btn: #ffffffb8;
    --color-btn-dest: #adc1d7;
    --color-btn-hoover: #bed5ee;
    --fondo-color-1: #edeaea6b;
    --fondo-overlay: rgb(160 183 197 / 70%);
    --filtro-editar: invert(5%) sepia(60%) saturate(1197%) hue-rotate(-34deg) brightness(216%) contrast(37%);
    --close-btn: #3b3b3b;
    --iconos-contacto: #3c4359;

    --color-boton-header: #869acd;
    --color-boton-perfil: #a14949;

    /* responsive */

    --body-altura: 90vh;
    --app-maximo-ancho: 1250px;
    --header-altura: 58px;
    --search-altura: 40px;

    --menu-izq-ancho: 300px;
    --menu-izq-altura: 83vh;

    --info-empresa-altura: 75vh;
    --info-empresa-altura-600px: auto;

    --menu-dch-ancho: 252px;
}

* {
    outline: none;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--body-font);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2em;
    width: 100%;
    height: var(--body-altura);
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

a {
    text-decoration: none;
    color: var(--theme-color);
}

img {
    max-width: 100%;
}

@media screen and (max-width: 600px) {
    body {
        padding: 0.8em;
    }
}

/****************************************** */
/* VIDEO DE FONDO */

.video-bg {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.overlay-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fondo-overlay);
    /* Oscurece el fondo */
    z-index: 0;
    /* Aparece detrás del modal */
}

/****************************************** */
/* AJUSTES MODO CLARO/OSCURO */

.dark-light {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--dropdown-bg);
    box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .dark-light {
        bottom: 15px;
        right: 15px;
    }
}

.dark-light svg {
    width: 24px;
    flex-shrink: 0;
    fill: #ffce45;
    stroke: #ffce45;
    transition: 0.5s;

    position: relative;
    top: 2px;
    left: 1px;
}

.light-mode .dark-light svg {
    fill: #000000a1;
    stroke: var(--theme-color);
}

.light-mode .profile-img {
    border: 2px solid var(--theme-bg-color);
}

.light-mode .content-section ul {
    background-color: var(--theme-bg-color);
}

.light-mode .pop-up__title {
    border-color: var(--theme-color);
}

.light-mode .dropdown.is-active ul {
    background-color: rgba(255, 255, 255, 0.94);
}

body.light-mode:before,
body.light-mode .video-bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.45) 100%);
    -webkit-backdrop-filter: saturate(3);
    backdrop-filter: saturate(3);
}


/************************************************************/
/* APP */

.app {
    background-color: var(--theme-bg-color);
    max-width: var(--app-maximo-ancho);
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .app {
        /*padding-bottom: 50px;*/
    }
}

.app-modal {
    background-color: var(--theme-bg-color-modal);
    /*background: white;*/
    width: 100%;
    max-width: var(--app-maximo-ancho);
    padding: 20px;
    margin: 0px 100px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    position: relative;
    height: 90vh;
    overflow: auto;
    /*
    
    max-width: 1000px;
    flex-direction: column;
    position: absolute;
    top: 100px;
    width: 90%;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 15px;
    font-weight: 500;
    z-index: 1000;
    */
    /* Aparece encima del overlay */
}
@media screen and (max-width: 600px) {
    .app-modal {
        margin: 0px 20px;
    }
}
.overlay-total {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0,0.9);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-top: 20px;    
}

.modal-form{
    height: 64vh;
    overflow: auto;
}

/* Botón de cierre (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    color: var(--close-btn);
}

.close-btn:hover {
    color: #007BFF;
}

.header-modal {
    color: var(--theme-color);
}




/************************************************************/
/* HEADER */

.header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: var(--header-altura);
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    white-space: normal;
    justify-content: space-between;
}

@media screen and (max-width: 800px) {
    .header {
        padding: 0 10px;
        gap: 5px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        padding: 0 10px;
        gap: 2px;
    }
}

/* BOTÓN HAMBURGUESA */

.hamburguesa {
    display: none;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    min-width: 25px;
    height: 21px;
    cursor: pointer;
    margin-right: 5px;
}

@media (max-width: 1000px) {
    .hamburguesa {
        display: flex;
    }
}

.hamburguesa div {
    background-color: white;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Efecto cuando se activa el menú */
.hamburguesa.activa div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburguesa.activa div:nth-child(2) {
    opacity: 0;
}

.hamburguesa.activa div:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* LOGO */

.logo {
    display: flex;
    color: var(--theme-color);
    font-size: 20px;
    align-items: center;
    gap: 5px;
}

.logo p {

    font-size: 13px;
    letter-spacing: 1.5px;
}

/* SEARCH */

.search-bar {
    height: var(--search-altura);
    display: flex;
    width: 100%;
    max-width: 400px;
    padding-left: 16px;
    border-radius: 4px;
}

.search-bar input {
    width: 100%;
    height: 100%;
    border: none;
    background-color: var(--search-bg);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    padding: 0 20px 0 40px;
    box-shadow: 0 0 0 2px rgba(134, 140, 160, 0.02);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: 16px 48%;
    color: var(--theme-color);
}

.search-bar input::-moz-placeholder {
    font-family: var(--body-font);
    color: var(--inactive-color);
    font-size: 15px;
    font-weight: 500;
}

.search-bar input:-ms-input-placeholder {
    font-family: var(--body-font);
    color: var(--inactive-color);
    font-size: 15px;
    font-weight: 500;
}

.search-bar input::placeholder {
    font-family: var(--body-font);
    color: var(--inactive-color);
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width: 500px) {
    .search-bar input {
        background-size: 10px;
        background-position: 8px 50%;
        padding: 0px 6px 0 25px;
        font-size: 12px;
    }
}

/* SECCIÓN CABECERA MENU */

.header-profile {
    margin: 5px;
    display: flex;
    align-items: center;
    /*padding: 0 16px 0 40px;*/
    /*margin-left:auto;*/
    flex-shrink: 0;
}

.tamaño-icono {
    width: 34px;
    height: 34px;
}

.tamaño-icono svg {
    width: 23px;
    height: 23px;
}

@media screen and (max-width: 500px) {
    .tamaño-icono {
        width: 25px;
        height: 25px;
    }

    .tamaño-icono svg {
        width: 20px;
        height: 20px;
        margin-bottom: 6px
    }
}



/* FILTRO */
.ico-filter {
    display: inline-block;

    background-color: var(--color-boton-header);
    color: white;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    /* Hace el fondo circular */
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
    user-select: none;
    margin-left: 5px;

}

.ico-filter svg path {
    fill: white;
}

/* BOTON AÑADIR EMPRESA */

.icon-plus {
    display: inline-block;
    background-color: var(--color-boton-header);
    color: white;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    /* Hace el fondo circular */
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
    user-select: none;
    margin-left: 5px;
}

.icon-plus svg path {
    fill: white;
}

/* BOTON PERFIL */
.ico-perfil {
    display: inline-block;

    background-color: var(--color-boton-perfil);
    color: white;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    /* Hace el fondo circular */
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
    user-select: none;
    margin-left: 5px;
}

.ico-perfil svg path {
    fill: white;
}

/**************/

.tooltip-text {
    display: none;
    justify-content: flex-end;
    font-size: 10px;
    color: var(--theme-color);
    text-align: right;
    border-radius: 4px;
    line-height: 14px;
    top: -10px;
    right: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
    display: flex;
    opacity: 1;
}

/************************************** */
/* FILTROS */

.filtros {
    display: flex;
    justify-content: center;
    color: var(--theme-color);
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
    gap: 10px;
}

.filtros input {
    width: 100px;
}

.filtro-campo-cn input {
    width: 52px;
}

/************************************** */
/* PRINCIPAL WRAPPER */

.wrapper {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        overflow: hidden;
    }
}

/************************************** */
/* MENU IZQUIERDO EMPRESAS */

.left-side {

    flex-basis: var(--menu-izq-ancho);
    border-right: 1px solid var(--border-color);
    overflow: auto;
    flex-shrink: 0;

    /* Altura fija */
    height: var(--menu-izq-altura);
    /* Barra de desplazamiento vertical */
    overflow-y: auto;
    /* Oculta el desplazamiento horizontal si es necesario */
    overflow-x: hidden;

}

@media screen and (max-width: 1000px) {
    .left-side {
        background-color: var(--fondo-color-1);
        display: none;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 0px;
    }
}

/* CADA EMPRESA */
.side-wrapper+.side-wrapper {
    margin-top: 5px;
}

.side-menu {
    display: flex;
    flex-direction: row;
    white-space: normal;

    border-bottom: 1px solid var(--border-color);
}

.side-menu a {
    width: 100%;
    text-decoration: none;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 10px 5px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    /*border-radius: 6px;*/
    transition: 0.3s;
    gap: 13px;
}

.side-menu a:hover {
    background-color: var(--hover-menu-bg);
}

.side-menu svg {
    width: 16px;
    margin-right: 8px;
}

.side-menu a .side-menu-dir {
    font-size: 12px;
    color: var(--theme-color-2);
}

/* CIRCULO CON LA PUNTUACIÓN */

.notification-number {
    background-color: var(--color-boton-header);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 55px;
    height: 52px;
    padding: 10px 15px 10px 15px;
}

.notification-number p {
    margin: 5px 7px 3px 7px;
}

.notif-1 {
    background-color: var(--color-notific);
    border: 2px solid #bfced9;
    border-radius: 50%;
    font-size: 11px;

    position: relative;
    top: -39px;
    left: 20px;
    color: #fff;
    padding: 0px 4px 0px 4px;
}

.notif-1-peq {
    background-color: var(--color-notific);
    border: 1px solid #bfced9;
    border-radius: 50%;
    font-size: 11px;

    position: relative;
    top: -35px;
    left: 20px;
    color: #fff;
    padding: 0px 4px 0px 4px;
}

.notif-2 {
    font-size: 10px;
    position: relative;
    top: 7px;
    left: -6px;
}


/************************************** */
/* PARTE CENTRAL INFO EMPRESAS */

.main-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* CABECERA */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;

    text-decoration: none;
    color: var(--theme-color);
    font-weight: 400;
    padding: 10px 10px 10px 15px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.main-header-titulo {
    line-height: 20px;
}

.main-header-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header-texto {
    line-height: 8px;
}

.main-header-dir {
    margin-top: 5px;
    font-size: 12px;
    color: var(--theme-color-2);
}

/* EDITOR EMPRESA */

.editor-empresa svg {
    width: 45px;
    height: 45px;
    cursor: pointer;
}


/* DATOS EMPRESAS */

.content-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--theme-color);
    height: var(--info-empresa-altura);
    overflow: auto;
    background-color: var(--theme-bg-color);
}

@media screen and (max-width: 600px) {
    .content-wrapper {
        height: var(--info-empresa-altura-600px);
    }
}

/* CADA SECCIÓN */
.content-section {
    display: flex;
    flex-direction: column;
}


.flecha-content {
    cursor: pointer;
}

.girar90 {
    rotate: 90deg;
}

.content-section ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    background-color: var(--content-bg);
    padding: 10px 10px;
    margin: 0px 0px;
    border-radius: 0px;
    border: 1px solid var(--theme-bg-color);
    cursor: pointer;
}

.content-section ul li {
    list-style: none;
    padding: 3px 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    width: 100%;
    height: 100%;
    white-space: normal;
    transition: 0.3s;
}

.content-section ul li:hover {
    background-color: var(--theme-bg-color);
}

.content-section ul li:hover:first-child {
    /*border-radius: 13px 13px 0 0;*/
}

.content-section ul li:hover:last-child {
    /*border-radius: 0 0 13px 13px;*/
}

.content-section ul li+li {
    /*border-top: 1px solid var(--border-color);*/
}

.content-section ul svg {
    width: 28px;
    border-radius: 6px;
    margin-right: 16px;
    flex-shrink: 0;
}


.content-section-title {
    color: var(--content-title-color);
    padding: 10px 10px 10px 15px;
    font-size: 20px;
    border-bottom: 1px solid white;
    display: flex;
    align-items: center;
}

.content-section-title svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.content-section-title svg path {
    fill: var(--theme-color-2);
}

.status {
    margin-left: 15px;
    font-size: 13px;
    position: relative;
    color: var(--theme-color-2);
}

.status-dato {
    color: var(--theme-color);
}


.status-circle {
    width: 6px;
    height: 6px;
    background-color: #396df0;
    position: absolute;
    border-radius: 50%;
    top: 4px;
    left: -20px;
}

.status-circle.green {
    background-color: #384eb3a8;
}

/********************************** */
/* CONTACTOS */

.contactos {
    display: flex;
    flex-direction: column;
    color: var(--theme-color);
    font-size: 12px;
    border-top: 1px solid var(--border-color);
    padding: 10px;
}

.contactos a {
    border-radius: 0px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

.nuevo-contacto {
    font-weight: 800;
    font-size: 15px;
}

.contactos .fila-contacto {
    border-radius: 0px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    gap: 15px;
}

@media screen and (max-width: 750px) {
    .contactos .fila-contacto {
        flex-wrap: wrap;
        gap: 5px;
    }
}

.nombre-contacto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
}

.tipo-contacto {
    color: var(--theme-color-2);
    font-size: 11px;
}


.tipo-contacto .datos {
    display: flex;
    flex-direction: row;
}

.etiqueta-contacto {
    display: flex;
    align-items: center;
    /*flex-wrap: wrap;*/
}

.etiqueta-contacto-color1 {
    background-color: #499e4c;
    color: white;
    font-size: 10px;
    padding: 0px 5px;
    border-radius: 5px;

}

.etiqueta-contacto-color2 {
    background-color: #ff5050;
    color: white;
    font-size: 10px;
    padding: 0px 5px;
    border-radius: 5px;
}

.etiqueta-contacto svg {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.contactos a:hover {
    background-color: var(--hover-menu-bg);
}

.contacto-phone {
    display: flex;
    align-items: center;
    gap: 10px
}

.contacto-phone svg {
    width: 25px;
    height: 25px;
    fill: var(--iconos-contacto);
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    .contacto-phone svg {
        width: 20px;
        height: 20px;
    }
}

/**************************************** */
/* MENU DERECHO */

.right-side {
    flex-basis: var(--menu-dch-ancho);
    border-left: 1px solid var(--border-color);
    overflow: auto;
    flex-shrink: 0;
    padding-bottom: 10px;
}

@media screen and (max-width: 600px) {
    .right-side {
        flex-basis: auto;
    }
}

.right-side hr {
    border: none;
    height: 1px;
    color: #14162b;
    border: 0.5px solid rgb(98, 98, 98);
}

/* MENU */

.menu-derecho {
    display: flex;
}

.menu-derecho-opcion {
    width: 100%;
    text-align: center;
    color: var(--theme-color);
    background-color: var(--color-btn);
    padding: 10px 5px 10px 15px;
    cursor: pointer;
}

.menu-derecho-opcion:hover {
    background-color: var(--color-btn-hoover);
}

.menu-destacado {
    background-color: var(--color-btn-dest);
}

/***** */

/* ACCIONES */


.acciones {
    display: flex;
    flex-direction: column;
    color: var(--theme-color);
    font-size: 12px;
    border-top: 1px solid var(--border-color);
    padding: 10px;
}

.acciones a {
    border-radius: 0px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    gap: 15px;
}

.acciones a:hover {
    background-color: var(--hover-menu-bg);
}

.annadir-accion {
    text-align: center;
}

.annadir-accion span {
    font-weight: 500;
    font-size: 12px;
}

.tipo-accion {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    margin-bottom: 5px;
}

.tipo-accion a {
    border: 1px solid rgba(112, 112, 112, 0.2);
    margin: 5px 2px;
    border-radius: 5px;
    background-color: var(--search-bg);
}

.tipo-accion a:hover {
    background-color: var(--theme-bg-color-modal);
}

/* ICONO ACCIONES */

.icono-acciones svg {
    width: 30px;
    height: 30px;
    fill: red;
}

.icono-acciones-rotar svg {
    transform: rotate(-90deg);
}

/************************************** */
/* FOOTER */

.footer {
    width: 100%;

    display: flex;
    color: var(--theme-color);
    font-size: 12px;
    align-items: center;
    gap: 5px;
    justify-content: center;
    /*margin: 10px;*/
    padding: 10px 30px;
    border-top: 1px solid var(--border-color);
}

/************************************** */

.activo {
    display: block !important;
}

.div-centrar {
    text-align: center;
}

.div-fondo-destacado {
    background-color: var(--color-btn);
}

.div-oculto {
    display: none;
}

.div-oculto-important {
    display: none !important;
}

/* Deshabilitar el scroll */
.no-scroll {
    overflow: hidden;
}

/************************************** */
::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-bg);
    border-radius: 10px;
}