:root {
    --header-height: 3rem;
    --nav-width: 68px;

    --first-color: #566573;
    --second-color: #297fb8;
    --second-light-color: #c7ddec;
    --third-color: #ffe01b;
    --white-color: #ffffff;
    --black-color: #3c3c3c;
    --light-color: #f9fafb;
    --medium-color: #d8d8d8;
    --dark-color: #bbbbbb;

    --danger-color: #dc3545;
    --info-color: #007c89;
    --success-color: #198754;
    --warning-color: #ffc114;

    --font-color: #666666;

    --body-font: 'Nunito', sans-serif;
    --font-size: 100%;
    --z-fixed: 100;
    --bs-btn-active-border-color: #e3e6e8;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--white-color) !important;
}

.bg-danger {
    color: var(--danger-color) !important;
}

.bg-info {
    color: var(--info-color) !important;
}

.bg-success {
    color: var(--white-color) !important;
}

.bg-warning {
    color: var(--first-color) !important;
}

* ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-color: var(--medium-color) var(--white-color);
    scrollbar-width: auto;
}

*::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: var(--white-color);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--medium-color);
    border-radius: 10px;
    border: 0 solid var(--white-color);
}

html {
    font-size: var(--font-size);
    font-family: var(--body-font);
    color: var(--font-color);
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    transition: .5s;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;

    &:link {
        color: var(--first-color)
    }

    &:hover {
        color: var(--second-light-color);
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--first-color);
}


h1 {
    font-size: 1.2rem;
}

h2 {
    font-size: 1.1rem;
}

h2 span {
    color: var(--dark-color)
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}


footer {
    display: none;
    position: absolute;
    left: 200px;
    width: calc(100% - 200px);
    text-align: center;
    bottom: 0;
    background-color: var(--white-color);
    font-size: 0.75rem;
}


header {
    position: absolute;
    width: 100%;
    z-index: 999;
    height: 5px;
    border-top: solid 5px #ffe01b;
}

header.maintenance,
header.dev,
header.pre {
    font-weight: 600;
    height: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 0.65rem;
    padding-bottom: 4px;
}

header.maintenance {
    border-top: solid 5px #ff0000;
    background-color: rgba(255, 0, 0, 0.50);
}

header.dev {
    border-top: solid 5px #24ad49;
    background-color: rgba(36, 173, 73, 0.50);
}

header.pre {
    border-top: solid 5px #3972c2;
    background-color: rgba(57, 114, 194, 0.50);
}


.cursor-pointer {
    cursor: pointer;
}

.cursor-help {
    cursor: help;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.cursor-copy {
    cursor: copy;
}

.user-login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    border: 1px solid var(--light-color);
}

.shadow {
    box-shadow: var(--box-shadow);
}

.image-preview-list {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    object-fit: cover;
}

.status-indicator {
    width: 15px;
    height: 15px;
    background-color: green;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
    border: 2px solid white;
}

.status-indicator.success {
    background-color: green;
}

.status-indicator.danger {
    background-color: red;
}

.status-indicator.warning {
    background-color: orange;
}

.status-indicator.secondary {
    background-color: gray;
}


.cut-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}


/*
nav-bar (Submódulos)
 */
div.nav-under-line {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;

}

.nav-under-line ol ul {
    list-style: none;
    text-align: left;
    padding: 0;
    width: 100%;
    display: inline-block;
    margin: 1px;
}

.nav-under-line li {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    position: relative;
}

.nav-under-line a:hover,
.nav-under-line a:focus,
.nav-under-line a:active {
    text-decoration: none;
}

.nav-under-line a {
    text-decoration: none;
    display: block;
    position: relative;
    margin: 5px 15px 5px 0;
    padding: 5px 0;
    font-size: 16px;
    color: var(--first-color);
    font-weight: 400;
}

a#nav-under-line-return {
    font-size: 2rem !important;
    text-decoration: none !important;
    margin: 0;
}


.nav-under-line a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--first-color);
    transform-origin: right top;
    transform: scale(0, 1);
    transition: color 0.1s, transform 0.2s ease-out;
}

.nav-under-line .selected a::before {
    background-color: var(--first-color);
    transform-origin: left top;
    transform: scale(1, 1);
}


.nav-under-line a:active::before {
    background-color: #000;
}

.nav-under-line a:hover::before, .nav-under-line a:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.nav-under-line {
    margin: 5px 15px 5px 0;
    text-decoration: none;
    padding: 0 10px 1px 0;
    color: var(--first-color);
    cursor: default;
    font-weight: 600;
}


.card-container {
    border: 1px solid var(--medium-color);
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    height: fit-content;
    padding-bottom: 20px;
}

.card-container h4, legend, .modal-header {
    font-size: 1rem;
    color: var(--first-color);
    background-color: var(--light-color);
    border-bottom: 1px solid var(--medium-color);
    padding: 1rem;
    font-weight: 600;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.card-container h5 {
    font-size: 0.8rem;
    color: var(--first-color);
    background-color: var(--light-color);
    border-bottom: 1px solid var(--medium-color);
    padding: 1rem;
    font-weight: 600;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}


.modal-header h4 {
    padding: 0.2rem;
    border: none;
    margin: 0;
}


.search-box {
    position: relative;
    width: 50%;
}

.search-box-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.search-box:focus-within .search-box-dropdown-menu {
    display: block;
}

.search-box-dropdown-menu a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: var(--black-color);
    border-bottom: 1px solid var(--medium-color);
}

.search-box-dropdown-menu a:hover {
    background-color: var(--light-color);
}


.custom-tooltip .tooltip-inner {
    --bs-tooltip-bg: #c1d7e6;
    --bs-tooltip-color: #fffff;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    font-size: 0.7rem !important;
    text-align: left !important;
}

.custom-tooltip .tooltip-arrow {
    --bs-tooltip-bg: #c1d7e6;
}

.user-tag {
    font-weight: 400;
    font-size: 0.65rem;
    background-color: #c2d8e7;
    color: #566572;
    padding: 1px 6px 0 6px;
    border-radius: 3px;
    text-align: left;
    line-height: 1.3;
    margin: 1px 1px;
    border: 1px solid #ffffff;
    display: inline-block;
    white-space: nowrap;
}

.user-tag.added {
    background-color: #297eb7;
    color: #ffffff;
}

.user-tag-all {
    font-weight: 400;
    font-size: 0.7rem;
    background-color: #f0ad4e;
    opacity: 30%;
    color: #ffffff;
    margin: 1px;
    padding: 0 4px 0 4px;
    border-radius: 4px;
}

.user-tag-all.added {
    background-color: #f0ad4e;
    color: #ffffff;
    opacity: 100%;
}

.user-tag.list {
    max-width: 100%;
    white-space: nowrap;
    margin: 1px;
    border-radius: 4px;
}

.user-tag.list.all {
    background-color: #f0ad4e;
    color: #566572;
}

.user-tag.list.department {
    background-color: #297eb7;
    color: #ffffff;
}

.user-tag.warning {
    background-color: #f0ad4e;
    color: #ffffff;
}

.user-tag.danger {
    background-color: #db3545;
    color: #ffffff;
}

.user-tag.success {
    background-color: #198654;
    color: #ffffff;
}


.out-app form {
    width: inherit;
}

.out-app .alert {
    width: inherit;
}

.out-app {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.out-app-decor {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
}

.out-app-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    align-items: center;
    overflow-y: scroll;
    padding: 2.2rem 1rem 0 1rem;
}

.out-app-action-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 22rem;
    align-items: center;
    flex-grow: 1;
}

.out-app-footer {
    height: 50px;
    width: 100%;
    text-align: center;
    margin: 2.2rem 0 2.2rem 0;
}

.out-app h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.out-app p {
    margin: 0.6rem 0 1.6rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.out-app h2, .out-app p, .out-app a {
    text-align: center;
}

.out-app p, .out-app a {
    font-weight: 600;
    color: var(--second-color);
}

.out-app p a:hover {
    color: var(--second-light-color);
}


/* Para pantallas de tamaño mediano */
@media (max-width: 768px) {
    .out-app {
        justify-content: space-around;
    }

    .out-app-decor {
        display: none;
    }

    .out-app-action {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
    }
}

.modal-tools {
    border-radius: 4px;
    padding: 10px;
    border: 1px solid var(--medium-color);
    margin: 0 0 10px 0;
}

.copyright {
    font-size: 0.85rem;
}

/*
Cookies policy
 */
#cookie-consent-container {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
    min-height: 200px;
    display: flex;
    align-items: center;
    background-color: rgba(124, 137, 100, 0.3);
    color: black;
    font-size: 14px;
    padding: 0 32px;
    width: 100%;
    margin: auto;
    justify-content: center;
    flex-direction: column;
}

#accept-cookies {
    background-color: var(--second-color);
    font-weight: bold;
    color: var(--white-color);
}

#reject-cookies {
    background-color: #ffffff;
    color: rgb(44, 45, 45);
}

#accept-cookies, #reject-cookies {
    font-size: 14px;
    margin: 7px;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 4px;
    border: none;
}


/**
/Modal
 */

/*
Botones


.btn-outline-primary{
    --bs-btn-color: var(--second-color);
    --bs-btn-border-color: var(--second-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--second-color);
    --bs-btn-hover-border-color: var(--second-color);
    --bs-btn-focus-shadow-rgb: 31, 97, 141;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--second-color);
    --bs-btn-active-border-color: var(--second-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--second-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--second-color);
    --bs-gradient: none;
}*/
/*
 / Botones
 */

.img-preview {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    border: 1px solid var(--medium-color);
}

.img-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}


.img-preview-thumbnail {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    transition: transform 0.3s ease-in-out;
    border: 1px solid var(--medium-color);
}

.img-preview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.img-preview-thumbnail:hover {
    transform: scale(2);
    position: relative;
    z-index: 999;
    box-shadow: var(--box-shadow);
}

#email-attachments-preview {
    transition: opacity 1s ease-in-out;
}

.form-view span {
    color: var(--dark-color);
    font-size: 12px;
    text-align: left;
}

.form-view p {
    color: #2E4053;
    border-bottom: 1px solid;
    border-color: var(--dark-color);
    text-align: left;
    height: 30px;
}

.form-view .no-border p {
    border-bottom: none;
}

i.fa-solid, i.fa-regular {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 20px;
}

.progress-bar-label {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
}

#editor {
    height: 300px !important;
    border-bottom: #ffffff;
    border-radius: 0;
    line-height: normal;
}

.json-key {
    color: brown;
}

.json-string {
    color: green;
}

.json-boolean {
    color: blue;
}

.json-null {
    color: magenta;
}

/* Avisos en lateral */

#promise-notice {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0.25;
    height: 0;
    background-color: #f4f4f4;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 1s, height 1s;
    border-bottom: 2px solid var(--medium-color);
    box-shadow: var(--box-shadow);
    padding-top: 15px;
}

#promise-notice.success {
    color: white;
    background-color: green;
}

#promise-notice.error {
    color: white;
    background-color: red;
}

#promise-notice.waiting {
    color: white;
    background-color: blue;
}

#notice-box {
    display: none;
    align-items: center;
    position: fixed;
    top: 10px;
    right: 10px;
    color: var(--white-color);
    background-color: rgb(41, 125, 182);
    padding: 0 10px 5px 10px;
    z-index: 999;
    box-shadow: var(--box-shadow);
    border-radius: 7px 7px 0 0;
    opacity: 1;
    transition: opacity 2s ease-in-out;
    font-size: 0.85rem;
}

#notice-box-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


#close-notice-box {
    margin: 0 -10px 0 0;
    text-align: right;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.8rem;
}

.close-notice-box {
    margin: 0 22px 0 0;
    text-align: right;
}

#notice-box-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 2s linear;
}

.notice-box-progress {
    height: 3px;
    width: 0;
    background: #ffe01b;
}


/**
Listados universal para toda la app
 */

.list-container {
    border-radius: 0.5rem;
    margin: 0;
    width: 100%;
    border: 1px solid #eeeeef;
}

.list {
    border-radius: 0;
    box-shadow: none;
    margin: 2rem;
    font-size: 0.8rem !important;
}

.list.header {
    background-color: #f3f3f5;
    color: #504656;
    padding: 12px;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    font-weight: bold;
    margin: 0;
    width: 100%;
    border: none;

}

.list.section {
    background-color: var(--first-color);
    padding: 3px 3px 3px 14px;
    margin: 14px 0 0 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.list.section h3,
.list.section h4 {
    font-weight: 600;
    padding: 0;
    margin: 0;
    color: var(--white-color);
}

.list.subsection {
    padding: 0;
    margin: 0;
}

.list.subsection h3,
.list.subsection h4 {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--second-color);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 3px 3px 14px;
    margin: 14px 0 0 0;
    color: var(--white-color);
}

.list.line {
    color: #666666;
    font-size: 0.8rem;
    margin: 0;
    padding: 12px;
    display: flex; /* Habilita el modelo de caja flexible */
    align-items: center; /* Centra verticalmente los elementos hijos */
    border: none;
}

.list.separator {
    margin: 1rem 0;
    border-top: 3px dotted var(--medium-color);
}

.list.line:nth-child(even) {
    background-color: #f8f8f8;
}

.list.line:nth-child(odd) {
    background-color: #ffffff;
}

.list.line:hover {
    background-color: #c1d7e6;
    color: #ffffff;
    cursor: pointer;
}

.list.header.selected {
    font-weight: 700;
}

input[type="date"].form-control {
    -webkit-appearance: none; /* Deshabilitar el estilo predeterminado */
    appearance: none;
    padding: 0.8rem 1.3rem 0.8rem 0.8rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    color: #495057;
}


/**
Botones personalizados
 */
.btn-custom {
    background-color: #f6f7f8;
    color: #566572;
    border: 2px solid #e3e6e8;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estado de hover */
.btn-custom:hover,
.btn-custom:focus {
    background-color: #c1d7e6;
    border-color: #c1d7e6;
    color: #566572;
}

/* Estado activo */
.btn-custom:active {
    background-color: #566572;
    border-color: #566572;
    color: #ffffff;
}

/* Estado deshabilitado */
.btn-custom:disabled {
    background-color: #cccccc;
    border-color: #cccccc;
    color: #666666;
}

/* Ajustar tamaño del botón */
.btn-custom.btn-sm {
    padding: 5px 10px;
    font-size: 14px;
}

.btn-custom.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

.whatsapp-btn,
.whatsapp-btn:link,
.whatsapp-btn:visited {
    border: 1px solid #198754;
    color: #198754;
    padding: 2px 14px;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #198754;
    color: #ffffff;
}

.who-is-there-icon {
    position: absolute;
    bottom: -9px;
    right: 0;
    color: #666666;
    font-size: 0.4rem;
}

.users-inline {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 35px;
    margin-right: 150px;
    z-index: 999;
    align-items: flex-start;
    justify-content: flex-end;
    height: 80px;
}

.users-inline p {
    margin-right: 10px;
    white-space: nowrap;
}

.users-inline p:last-child {
    margin-right: 0;
}

/* Tabla */
.table-head {
    font-size: 0.82rem;
    vertical-align: middle;
    background-color: rgb(243, 243, 245);
    border-radius: 0.5rem 0.5rem 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.table-head th {
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.table-head th:first-child {
    border-top-left-radius: 0.5rem;
}

.table-head th:last-child {
    border-top-right-radius: 0.5rem;
}

.table-row {
    font-size: 0.82rem;
    vertical-align: middle;
}

.table-container {
    border-radius: 0.5rem 0.5rem 0 0;
    border: 1px solid rgb(238, 238, 239);
    overflow-y: auto;
    display: block;
    width: 100%;
    height: 100%;
}


.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.spinner-grow {
    width: 3rem;
    height: 3rem;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    right: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.project-type-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    border: 1px solid #666666;
    font-size: 0.75em;
    background-color: #FFFFFF;
    color: #666666 !important;
}

.project-type-internal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #FFD700;
    color: #333333 !important;
}

.project-type-structure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #166866;
    color: #ffffff !important;
}

.project-type-tv_show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #1F91DC;
    color: #ffffff !important;
}

.project-type-tv_fiction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #39C5BB;
    color: #333333 !important;
}

.project-type-theater {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #5a2c33;
    color: #ffffff !important;
}

.project-type-film {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #22AB74;
    color: #ffffff !important;
}

.project-type-commercial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #B9CAD4;
    color: #333333 !important;
}

.project-type-low_budget_film {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #ff00f4;
    color: #FFFFFF !important;
}


.project-type-template {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #ffb0c6;
    color: #333333 !important;
}

.project-type-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #a26bff;
    color: #FFFFFF !important;
}




.project-phase-pre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #EBEBEB;
    color: #333333 !important;
}

.project-phase-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #64646C;
    color: #ffffff !important;
}

.project-phase-post {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 0.25rem;
    font-size: 0.75em;
    background-color: #DDDDDD;
    color: #333333 !important;
}

.silleras-btn{
    background-color: #ffffff;
    border: 1px solid var(--warning-color);
    border-radius: 4px;
}

.void-background {
    background: repeating-linear-gradient(45deg, /* Ángulo de las líneas */ rgba(218, 218, 218, 0.3), /* Color azul con transparencia */ rgba(195, 195, 196, 0.3) 10px, /* Tamaño de la línea azul */ rgba(255, 255, 255, 0.7) 10px, /* Espacio entre líneas con transparencia */ rgba(255, 255, 255, 0.7) 20px /* Tamaño del espacio */);
}

@media (max-width: 767px) {

    .nav-under-line {
        margin: 5px 15px 5px 0;
        text-decoration: none;
        padding: 0 10px 1px 0;
        color: var(--first-color);
        cursor: default;
        font-weight: 600;
        overflow-x: auto;
    }
}