@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    font-family: "Montserrat", sans-serif !important;
    hyphens: auto;
    background-color: var(--colorFondo);
    color: var(--text);
}

a {
    color: #6b6b6b;
    text-decoration: none;
}

a:hover {
    color: #6b6b6b;
    text-decoration: none;
}

.dashboardTitle {
    color: #727176;
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.1em;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
  # Page Title
  --------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #6b6b6b;
}

/*--------------------------------------------------------------
# Boton de Regreso hasta arriba
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--links);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: var(--colorDash);
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: var(--colorDash);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: var(--text);
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--colorSelect);
    color: var(--colorActive);
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: var(--colorDash);
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 95px;
    padding: 20px 30px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

@media (min-width: 1200px) {
    #main,
    #footer {
        margin-left: 260px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
    place-content: center;
    width: 260px;
    padding: 15px 0px;
    background-color: var(--colorFondo);
}

@media (min-width: 1200px) {
    .logo {
        width: 260px;
    }
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #6b6b6b;
    font-family: "Nunito", sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--colorFondo);
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: #6b6b6b;
}

.header .search-bar {
    min-width: 360px;
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

.header .search-form input {
    border: 0;
    font-size: 14px;
    color: #6b6b6b;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}

.header .search-form button i {
    color: #6b6b6b;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #6b6b6b;
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: var(--colorSelect);
}

.header-nav .nav-profile img {
    max-height: 36px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .notifications .notification-item:hover {
    background-color: var(--colorSelect);
}

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: var(--colorSelect);
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text);
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    background-color: var(--colorSelect);
}

/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/
.regresar {
    background-color: var(--colorSelect);
    color: #fff;
    display: inline-flex;
}

button.regresar:hover {
    background-color: whitesmoke !important;
    color: #fff;
    border: 1px solid #6b6b6b !important;
}
a.regresar:hover {
    background-color: whitesmoke !important;
    color: #fff;
    border: 1px solid #6b6b6b !important;
}

.division {
    border-bottom: 3px solid var(--colorSelectFondoHeader);
    padding-bottom: 10px;
    /* text-align-last:center ; */
}

/*--------------------------------------------------------------
# Titulos
--------------------------------------------------------------*/

.semaforo0 {
    color: red;
    padding-top: 5px;
    font-size: 1.25rem;
}
.semaforo1 {
    color: var(--colorSelectFondoHeader);
    padding-top: 5px;
    font-size: 1.25rem;
}
.semaforo2 {
    color: green;
    padding-top: 5px;
    font-size: 1.25rem;
}

/*--------------------------------------------------------------
# Separadores
--------------------------------------------------------------*/
.divBorderItems {
    border-bottom: var(--verde) solid 1px;
}

/*--------------------------------------------------------------
# inputs
--------------------------------------------------------------*/
.inputComent {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid var(--colorPrincipal);
    border-radius: 0.375rem;
}
.inputComent:focus,
.inputComent:active {
    box-shadow: 2px 2px 10px 2px var(--colorSelectFondoHeader);
    border: 1px solid var(--colorPrincipal);
}

/*--------------------------------------------------------------
# Slider de imagenes en maquinaria
--------------------------------------------------------------*/
.contFotoMaquinaria {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.buttonImage {
    width: 3em;
    height: 3em;
    background-color: var(--colorTexto) !important;
}

.image-container {
    position: relative;
}

.image-wrapper button {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.contFotoMaquinaria {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.buttonImage {
    align-self: flex-start;
    margin-top: 10px;
    margin-right: 10px;
}

.imgMaquinaria {
    padding-left: auto;
}

.inputKilometraje {
    width: max-content;
    margin-left: -5px;
}

@media only screen and (min-width: 1200px) {
    .inputKilometraje {
        margin-left: -12px;
    }
    .buttonImage {
        margin-left: -38px !important;
        width: 2.4em;
        height: 2.4em;
    }
    .spinner {
        top: -500px;
    }
    .btnRegresarTop {
        margin-left: 77px;
    }
    .btnViewDescargar {
        padding: 6px 12px !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    .btnViewDescargar .btn-text {
        display: none !important;
    }

    .btnViewDescargar .icon {
        display: block !important;
        margin-bottom: 5px !important;
        font-size: 18px !important;
    }
    .btnViewDelete {
        width: 2.8em !important;
        height: 2.8em !important;
        margin-left: 15px !important;
    }
}

/* Escritorio extra grande */
/* @media screen and (min-width: 992px) and (max-width: 1450px){
  .btnViewDescargar {
    padding: 6px 12px !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  .btnViewDescargar .btn-text {
    display: none !important;
  }

  .btnViewDescargar .icon {
    display: block !important;
    margin-bottom: 5px !important;
    font-size: 18px !important;
  }
  .btnViewDelete {
    width: 2.8em !important;
    height: 2.8em !important;
    margin-left: 15px !important;
  }
} */

/*--------------------------------------------------------------
Alta de maquinaria
--------------------------------------------------------------*/
/*Button con eye para ver documentos*/
.btnView {
    margin-left: 10px !important;
    background-color: white !important;
    color: var(--colorPrincipal);
}
.small-card-group-date .card {
    height: 355px !important;
}

.btnView:hover {
    background-color: #cee8a1 !important;
    color: red !important;
}
.divAñadir {
    text-align: end !important;
}
@media screen and (max-width: 620px) {
    .logo {
        width: 190px !important;
    }
    .divAñadir {
        text-align: start !important;
    }
    .textTitulo {
        font-size: 17px !important;
    }
    .btnSinFondo {
        font-size: 10px !important;
        margin-top: 2px !important;
    }
    .screenChecklists {
        font-size: 12px !important;
    }

    /*Este button es de editar la maquinaria*/
    .buttonImage {
        margin-left: -35px !important;
        width: 2.2em;
        height: 2.2em;
    }

    .spinner {
        top: -380px;
        position: absolute;
        border: 15px solid var(--colorPrincipal) !important;
        border-top: 15px solid rgba(255, 255, 255, 0) !important;
        border-radius: 50%;
        width: 140px !important;
        height: 140px !important;
        animation: spin 2s linear infinite;
        margin: 0 auto;
    }
    .btnRegresarTop {
        margin-left: 31px;
    }
    .small-card-group .card {
        height: 200px !important;
    }
    .btnViewDescargar {
        padding: 6px 12px !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    .btnViewDescargar .btn-text {
        display: none !important;
    }

    .btnViewDescargar .icon {
        display: block !important;
        margin-bottom: 5px !important;
        font-size: 18px !important;
    }

    .btnViewDelete {
        width: 2.8em !important;
        height: 2.8em !important;
        margin-left: 25px !important;
    }
}

/* Escritorio pequeño / tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .textTitulo {
        font-size: 20px !important;
    }
    .spinner {
        top: -350px;
        position: absolute;
        border: 25px solid var(--colorPrincipal) !important; /* Color del borde */
        border-top: 25px solid rgba(255, 255, 255, 0) !important; /* Color del borde superior */
        border-radius: 50%;
        width: 190px !important;
        height: 190px !important;
        animation: spin 2s linear infinite; /* Duración y tipo de animación */
        margin: 0 auto;
    }
    .btnRegresarTop {
        margin-left: 49px;
    }
    .small-card-group .card {
        height: 200px !important;
    }
    .btnViewDescargar {
        padding: 6px 12px !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    .btnViewDescargar .btn-text {
        display: none !important;
    }

    .btnViewDescargar .icon {
        display: block !important;
        margin-bottom: 5px !important;
        font-size: 18px !important;
    }

    .btnViewDelete {
        width: 2.8em !important;
        height: 2.8em !important;
        margin-left: 25px !important;
    }
}

/* Celular grande */
@media only screen and (min-width: 620px) and (max-width: 768px) {
    .ExpirationDates {
        margin-left: 15px !important;
    }
    .divAñadir {
        text-align: start !important;
    }
    .spinner {
        top: -370px;
        position: absolute;
        border: 30px solid var(--colorPrincipal) !important; /* Color del borde */
        border-top: 30px solid rgba(255, 255, 255, 0) !important; /* Color del borde superior */
        border-radius: 50%;
        width: 210px !important;
        height: 210px !important;
        animation: spin 2s linear infinite; /* Duración y tipo de animación */
        margin: 0 auto;
    }
    .btnRegresarTop {
        margin-left: 37px;
    }
    .btnViewDescargar {
        padding: 6px 12px !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    .btnViewDescargar .btn-text {
        display: none !important;
    }

    .btnViewDescargar .icon {
        display: block !important;
        margin-bottom: 5px !important;
        font-size: 18px !important;
    }
    .btnViewDelete {
        width: 2.8em !important;
        height: 2.8em !important;
        margin-left: 20px !important;
    }
}

/* Macbook Pro / laptop */
@media only screen and (min-width: 992px) and (max-width: 1440px) {
    /*ALta maquinaria*/
    .inputNumberKilometraje {
        width: 55%;
    }
    .buttonImage {
        margin-left: -30px !important;
        width: 1.8em;
        height: 1.8em;
    }
    .inputKilometraje {
        width: 45%;
        font-size: 13px;
    }
    .spinner {
        top: -430px;
        position: absolute;
        border: 28px solid var(--colorPrincipal) !important;
        border-top: 28px solid rgba(255, 255, 255, 0) !important;
        border-radius: 50%;
        width: 260px !important;
        height: 260px !important;
        animation: spin 2s linear infinite;
        margin: 0 auto;
    }

    .btnRegresarTop {
        margin-left: 50px;
    }

    .small-card-group .card {
        height: 200px !important;
    }

    .btnViewDescargar {
        padding: 6px 12px !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    .btnViewDescargar .btn-text {
        display: none !important;
    }

    .btnViewDescargar .icon {
        display: block !important;
        margin-bottom: 5px !important;
        font-size: 18px !important;
    }
    .btnViewDelete {
        width: 2.8em !important;
        height: 2.8em !important;
        margin-left: 15px !important;
    }
}

/*Ajuste a las cards en Alta maquina en subida de documentos*/
.small-card-group .card {
    height: 170px;
    margin-bottom: 20px !important;
}

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.col-12.text-center.mb-3 {
    position: relative;
}

#spinner-container {
    position: absolute;
    left: 35%;
}

.spinner {
    border: 35px solid var(--colorPrincipal);
    border-top: 35px solid rgba(255, 255, 255, 0);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    animation: spin 2s linear infinite;
    position: absolute;
    z-index: 9999;
}

/* Estilos para el autocompletado */
.ui-autocomplete {
    position: absolute !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
}
.ui-menu-item {
    padding: 8px;
    cursor: pointer;
    background-color: var(--colorActive) !important;
}

/* Estilos para el elemento que hagas hover */
.ui-state-focus,
.ui-autocomplete .ui-state-active {
    background-color: #f0f0f0;
}

table {
    table-layout: fixed;
}
th,
td {
    width: 100px;
    word-wrap: break-word !important;
}

.contDocumentos .card-body label {
    font-size: 20.5px !important;
}

.labelSubTitulo {
    font-size: 5px !important;
    line-height: 1.3;
    padding-top: 10px;
    padding-bottom: 5px;
    font-weight: 600 !important;
}

.form-control-textarea {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #7d9651;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    resize: vertical !important;
}

.buttonImage {
    margin-left: -45px;
    margin-top: -0.5px;
}

.fc .fc-toolbar-title {
    font-size: 2em !important;
    font-weight: bold; /* Negritas */
    font-family: "Nunito", sans-serif;
    color: #6b6b6b;
}

/* ///////////////////////////////Acomodo de Titulos de Tablas */

.no-wrap {
    max-width: 150px;
    /* Ajusta el valor según tus necesidades */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Estilo para el tooltip */
.no-wrap:hover {
    overflow: visible;
    white-space: normal;
    z-index: 1;
    position: relative;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    font-size: 15px;
}

.iconoTablas {
    color: var(--colorIconos);
    font-size: x-large;
}

/*--------------------------------------------------------------
  # Login
  --------------------------------------------------------------*/

.fondoLogin {
    height: 100vh;
}

.bienvenido {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--colorPrincipal);
}

.login-box {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    padding: 70px;
    transform: translate(-50%, -50%);
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    color: #575756;
    text-align: center;
}

.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #575756;
    outline: none;
    background: rgb(224, 242, 160) !important;
}

.login-box .user-box input:label {
    background-color: rgb(224, 242, 160);
}

.login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: var(--colorPrincipal);
    pointer-events: none;
    transition: 0.5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: var(--colorPrincipal);
    font-size: 12px;
}

.login-box form button {
    width: 100%;
    padding: 10px 0px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 40px;
    letter-spacing: 4px;
    background-color: var(--colorPrincipal);
    border: none;
}

.login-box button:hover {
    filter: brightness(1.2);
    color: #fff;
    border-radius: 5px;
}

form div label.textLabel,
.txtOlvide {
    font-size: 0.7em;
}

.txtOlvide {
    text-align: end;
}

.text-end {
    right: 0%;
}

.login-box button span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d5f26b);
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.login-box button span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #d5f26b);
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.login-box button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #d5f26b);
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.login-box button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #d5f26b);
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.inputRelleno {
    background: #d5f26b !important;
}

/*--------------------------------------------------------------
  # Lista
  --------------------------------------------------------------*/

#header .datos {
    flex: 1 !important; /* La propiedad flex distribuirá el espacio disponible entre los elementos hijos */
}

#header .lista-datos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding: 0;
    list-style: none;
    padding: 5px;
    display: flex;
}

#header .lista-datos li {
    flex-grow: 1;
    text-align: center;
}

.datos {
    display: block;
}

@media (max-width: 992px) {
    .datos {
        display: none;
    }
}

.lista-datos {
    background-color: var(--colorPrincipal);
    display: flex;
    padding: 0 20px;
    position: relative;
    font-size: 12px;
    line-height: 1;
    padding: 10px 0 10px 0;
    align-items: center;
    margin-bottom: 0px;
}

.lista-datos li {
    padding: 0 10px;
    position: relative;
    font-size: 12px;
    line-height: 1;
    color: var(--colorFondo);
    border-right: 1px solid var(--colorFondo);
    align-items: center;
    display: flex;
    height: 35px;
}

.lista-datos li:nth-child(6) {
    margin-left: auto;
    border-right: none;
}

.lista-datos li img {
    padding-right: 5px;
}

#header2 {
    display: flex;
    align-items: center;
}

/*--------------------------------------------------------------
# header - NavBar
--------------------------------------------------------------*/
.divnav {
    align-self: center;
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 10px 20px 10px 20px;
    margin-bottom: 0;
    position: relative;
}

@media (min-width: 994px) and (max-width: 2400px) {
    .nav-bar a {
        text-decoration: none !important;
        color: var(--colorPrincipal) !important;
        font-size: 1.1rem !important;
        font-weight: bold;
        flex: 1 !important;
        text-align: center !important;
        padding: 0px !important;
    }
}

.logo img {
    width: 100%;
    height: 85px;
    padding: 10px 20px 10px 20px;
}

.menu {
    display: flex;
}

.menu li {
    font-size: 12px;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--colorTexto);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--colorTexto);
    transition: 0.15s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}

.menu .activo a {
    font-weight: bold;
    color: var(--colorPrincipal);
}

.open-menu,
.close-menu {
    position: absolute;
    color: var(--colorTexto);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

@media (max-width: 992px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--colorPrincipal);
        transition: all 0.2s ease-in-out;
    }

    .menu li {
        margin-top: 40px;
    }

    .menu li a {
        color: var(--colorFondo);
    }

    .open-menu,
    .close-menu {
        display: block;
    }

    #check:checked ~ .menu {
        right: 0;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

.footer .copyright {
    text-align: center;
    color: var(--colorSelect);
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: var(--colorSelect);
}

.footer img {
    margin-bottom: 10px;
    max-height: 150px;
}

.contenedorFooter {
    margin: 30px 15px 15px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.seccionFooter {
    padding: 00px 15px 0px 15px;
    margin-bottom: 15px;
}

.seccionFooter a {
    text-decoration: none;
}

.seccionFooter p {
    color: var(--colorLetraFooter);
    max-width: 230px;
}

.seccionFooter h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--colorLetraFooter);
    margin-bottom: 0;
}

.seccionFooter h3 {
    font-size: 15px;
    font-weight: bold;
    color: var(--colorLetraFooter);
}

.seccionFooter h4 {
    font-size: 13px;
    font-weight: bold;
    color: var(--colorLetraFooter);
}

.flechas img {
    height: 20px;
}

.spacing {
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.pats {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pats img {
    height: 30px;
}

.pats a {
    padding-right: 15px;
}

.footer p {
    font-size: 10px;
}

.copyright {
    text-align: center;
    color: var(--colorFondo);
}

.copyright a {
    text-decoration: none;
    color: var(--colorFondo);
}

.copyright a:hover {
    color: var(--colorPrincipal);
}

.green-circle {
    width: 10px;
    height: 10px;
    background-color: var(--colorPrincipal);
    border-radius: 50%;
    margin-top: -10px;
}

.style-button {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    outline: inherit;
    color: var(--colorPrincipal);
}

/*--------------------------------------------------------------
  # Sidebar
  --------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 115px;
    left: 0;
    bottom: 0;
    width: 260px;
    z-index: 996;
    transition: all 0.3s;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--colorScroll) transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: var(--colorFondoMenu);
}

@media (max-width: 1199px) {
    .sidebar {
        left: -260px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--colorFondo);
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--colorScroll);
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {
    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -260px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--colorSelectLetraMenu);
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--colorSelectLetraMenu);
    transition: 0.3;
    background: var(--colorSelectFondoMenu);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--colorSelectLetraMenu);
}

.sidebar-nav .nav-link.collapsed {
    color: var(--colorTextoMenu);
    background: var(--colorFondoMenu);
    font-weight: bold;
}

.sidebar-nav .nav-link.collapsed i {
    color: var(--colorTextoMenu);
}

.sidebar-nav .nav-link:hover {
    color: var(--colorSelectLetraMenu);
    background: var(--colorSelectFondoMenu);
}

.sidebar-nav .nav-link:hover i {
    color: var(--colorSelectLetraMenu);
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--colorTextoMenu);
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: var(--colorSelectLetraMenu);
}

.sidebar-nav .nav-content a.active i {
    background-color: var(--colorSelectLetraMenu);
}

#sidebar .material-icons {
    padding-right: 5px;
}

.imgMaquinaria {
    width: 500px;
    height: 300px;
    object-fit: contain !important;
}

.p-0-m-0 {
    padding: 0 !important;
    margin: 0 !important;
}

.texticonos {
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.1em;
    font-weight: 500;
    color: var(--colorTexto);
}

@media (max-width: 991px) {
    .texticonos {
        font-size: 1.3em;
    }
}

.botonIconoPrincipal:hover {
    opacity: 0.6;
}

.textTitulo_1_6em {
    font-size: 1.6em !important;
    font-weight: 500;
    color: var(--colorPrincipal);
}

.textTitulo_2em {
    font-size: 2em !important;
    font-weight: 500;
    color: var(--colorPrincipal);
}

.tituloPrincipalCentrado {
    font-size: 24px;
    color: var(--colorPrincipal);
    text-align: start;
}

a.textEquipo {
    color: var(--colorTexto) !important;
}

a.textEquipo:hover {
    color: var(--colorSelectFondoHeader) !important;
}

.imgPersonal {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.imgIdCard {
    width: 290px;
    height: 200px;
}

.divBorder {
    border-bottom: var(--colorSelectFondoHeader) solid 3px !important;
}

input[type="checkbox"].check {
    width: 25px;
    height: 25px !important;
}

input[type="checkbox"].check:focus,
input[type="checkbox"].check:checked {
    background-color: var(--colorBotones);
}

.vistaFotoCombustibles {
    width: 80%;
}

.imgVista {
    object-fit: cover;
    width: 150px;
    height: 150px;
}

.imgVistaCombustible {
    object-fit: cover;
    width: 90%;
}

.txtVistaObra {
    font-size: 1.1em;
    line-height: 1.5em;
}

.contentCargas {
    border: 1px solid var(--colorSelectFondoHeader);
    border-radius: 9px;
}

button.BTNbCargaDescarga{
    border: none!important;
    background-color: var(--colorNoSelectFondoHeader);
    color: var(--colorTexto)!important;
    font-size: 1.3em;
    letter-spacing: 0.2em;
    text-align: center !important;
}

button.BTNbCargaDescarga.active,
button.BTNbCargaDescarga.active:hover,
button.BTNbCargaDescarga.active:focus {
    border: none !important;
    background-color: var(--colorIconos) !important;
    color: #fff !important;
    border-color: none !important;
    text-align: center !important;
}

svg.accionesIconos {
    color: var(--colorIconos);
}

.btnSinFondo {
    background-color: transparent;
    border: none;
    color: red;
}

.btnVerde {
    background-image: url("/img/general/plus-circle-fill.svg") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    border: none;
}

.btnRojo {
    background-image: url("/img/general/dash-circle-fill.svg") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    border: none;
}

input.inputCaja {
    width: 100% !important;
}

button.botonGral {
    background-color: var(--colorBotones) !important;
    color: #fff !important;
}

.labelTitulo {
    color: var(--colorPrincipal);
    font-size: 1.1em;
    line-height: 1.3;
    padding-bottom: 2px;
    font-weight: 600 !important;
}
input.inputCaja,
select {
    border: var(--colorPrincipal) 1px solid !important;
    border-radius: 0.375rem;
    height: 35px;
    font-size: 1em !important;
}

input.inputCaja:focus,
input.inputCaja:active,
select:focus,
select:active {
    box-shadow: 2px 2px 10px 2px var(--colorSelectFondoHeader) !important;
}

.backgroundTituloPrincipal {
    font-size: 25px;
    font-weight: 500;
    color: var(--colorTexto);
}

.backgroundTituloPrincipal:not(.collapsed) {
    color: var(--colorTexto);
    background-color: var(--colorSelectFondoHeader);
    box-shadow: 2px 2px 5px 1px var(--colorTexto) !important;
}

.backgroundTituloPrincipal:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: 2px 2px 5px 1px var(--colorTexto) !important;
}

textarea.form-control-textarea:focus,
textarea.form-control-textarea:active {
    box-shadow: 2px 2px 10px 2px var(--colorSelectFondoHeader) !important;
}

input.form-control-textarea:focus,
input.form-control-textarea:active {
    box-shadow: 2px 2px 10px 2px var(--colorSelectFondoHeader) !important;
}

.border-green {
    border: var(--colorPrincipal) 1px solid !important;
}

.selectoresSlider img {
    padding: 3px;
    margin: none;
    cursor: pointer;
    width: 10px !important;
    background-size: cover;
    border: var(--colorSelectFondoHeader) solid 1px;
}

.semaforo {
    background-color: red;
    width: 30px;
    height: 30px;
}

.semaforo2 {
    color: red;
    padding-top: 5px;
    font-size: 1.25rem;
}

.semaforo3 {
    color: green;
    padding-top: 5px;
    font-size: 1.25rem;
}

p span {
    font-weight: 400;
}

.btnMas {
    width: 100%;
    color: var(--colorSelectFondoHeader);
}

.alin {
    align-items: baseline;
}

#muestra {
    position: relative;
    margin: 1rem auto;
    width: 100%;
    height: 342px;
    background-color: #fff;
    overflow: hidden;
}

#selectores img {
    padding: 3px;
    margin: none;
    cursor: pointer;
    background-size: cover;
    border: var(--colorSelectFondoHeader) solid 1px;
    width: 19%;
}

#visor {
    width: 100%;
    background-size: cover;
    object-fit: cover;
}

#visor img {
    background-size: cover;
    object-fit: cover;
    object-position: center;
}

.card .card-body + .card-footer,
.card .card-footer {
    margin: auto !important;
}

/* -------  Boton de subir archivo documentos  ------- */
input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 0px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}
/* -------  Boton de subir archivo  imagenes ------- */
label[for="mi-archivo"],
label[for="mi-archivo1"],
label[for="mi-archivo2"],
label[for="mi-archivo3"],
label[for="mi-archivo4"],
label[for="mi-archivo5"],
label[for="mi-archivo6"],
label[for="mi-archivo-ruta"],
label[for="mi-archivo-frente"],
label[for="mi-archivo-derecho"],
label[for="mi-archivo-izquierdo"],
label[for="mi-archivo-trasero"],
label[for="mi-archivo-foto"],
label[for="ControlImagen"] {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--colorBotones);
    display: inline-block;
    transition: all 0.5s;
    cursor: pointer;
    padding: 15px 40px !important;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.ver.input[type="file"] {
    display: block !important;
}

table th {
    background-color: white !important;
    color: var(--colorPrincipal) !important;
}

.corte {
    border-left: 1px solid var(--colorPrincipal);
    border-right: 1px solid var(--colorPrincipal);
    vertical-align: middle;
}

.black {
    color: black !important;
}

.fc-button .fc-button-active {
    background: var(--colorPrincipal) !important;
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: var(--colorBotones) !important;
    border-color: var(--colorPrincipal) !important;
    color: hsl(0, 0%, 100%) !important;
}

.fc-button:not(.fc-button-active) {
    background-color: var(--colorPrincipal) !important;
    border-color: var(--colorPrincipal) !important;
    color: #ffffff !important;
}
.fc .fc-button:hover {
    background-color: var(--colorBotones) !important;
    border-color: var(--colorPrincipal) !important;
    color: #ffffff !important;
}

.botonSinFondo {
    background-color: #fff;
    padding: 0px;
    border: none;
}
.botonSinFondo:hover {
    opacity: 0.5;
}

p.botonTitulos {
    color: var(--colorPrincipal) !important;
    font-weight: 400;
}

.process-inner {
    background-color: transparent;
    color: #333;
    text-align: center;
    border: 1px solid #dedede;
}
.process-inner {
    width: 100%;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.process-inner .icon-holder {
    position: relative;
    top: 70px;
    display: inline-block;
    padding: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
}
.process-inner .textTitulo {
    position: relative;
    top: 60px;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.process-inner i {
    font-size: 40px;
    margin-bottom: 35px;
}
.process-inner h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.process-inner .description {
    width: 80%;
    margin: 0 auto;
    opacity: 0;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 200;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.process-inner:hover {
    border-color: var(--colorSelectFondoHeader);
}

.process-inner:hover .icon-holder {
    top: -30px;
}

.process-inner:hover .textTitulo {
    top: -30px;
}
.process-inner:hover .description {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.w-full {
    width: 100px;
}

.calendario {
    width: 85%;
    margin: 50px auto;
}

.textMes {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--colorPrincipal);
}
.calendarioDia {
    font-size: 0.7em;
    font-weight: 500;
    color: var(--colorPrincipal);
}

.textAno {
    font-size: 1.2em;
    text-align: center !important;
    letter-spacing: 0.5em;
    color: var(--colorTexto);
}

.nombreTarea {
    font-size: 1em;
    color: #333;
}
.textMesCurso:hover {
    font-size: 1.2em;
    color: var(--colorIconos);
}

.btnSinFondocALENDARIO {
    background-color: #fff;
    border: 1px solid var(--colorPrincipal);
    border-radius: 5px;
    padding: 6px;
    color: var(--colorPrincipal);
}

.imgBTNcalendario {
    width: 30px;
}

tr td.labelUrgente,
.labelUrgente {
    padding: 5px;
    background-color: red;
    color: #fff !important;
}

tr td.labelUrgente,
.labelUrgente {
    padding: 5px;
    background-color: red;
    color: #fff !important;
}

tr td.labelNecesaria,
.labelNecesaria {
    padding: 5px;
    background-color: orange;
    color: #fff !important;
}

tr td.labelDeseable,
.labelDeseable {
    padding: 5px;
    background-color: yellow;
    color: #333 !important;
}

tr td.labelProrrogable,
.labelProrrogable {
    padding: 5px;
    background-color: var(--colorBotones);
    color: #333 !important;
    border: none;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 25px;
    color: var(--colorTexto);
    text-align: left;
    background-color: var(--colorNoSelectFondoHeader);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

.acordionDos:hover,
.accordion-button:not(.collapsed) {
    background-color: var(--colorSelectFondoHeader);
    box-shadow: 2px 2px 10px 2px var(--colorTexto) !important;
    font-size: 25px;
}

.accordion-button:not(.collapsed)::after {
    color: gray !important;
}

.tituloCarrouselReparacion {
    width: 100%;
    background-color: var(--colorPrincipal);
    color: #ccc;
}

tr td.reparación {
    color: #3c73a4;
    font-weight: 700;
}

.carouselBoton {
    width: 80px;
}
tr td.labelEspera,
.labelEspera {
    padding: 5px;
    background-color: #1b3c58 !important;
    color: #fff !important;
}

tr td.labelRealizado,
.labelRealizado {
    padding: 5px;
    background-color: #3c73a4;
    color: #fff !important;
}

tr td.labelTerminado,
.labelTerminado {
    padding: 5px;
    background-color: #95c3eb;
    color: #333 !important;
}

.diaFecha {
    margin: 50px;
}

h2.diasSemana {
    font-size: 0.8em;
}

.numeroCalendario {
    font-size: 0.8em;
}

.celda {
    height: 10px;
}

.orange {
    color: var(--colorSelectFondoHeader);
}

.searchBox {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    background: var(--colorSelectFondoHeader);
    height: 51px;
    border-radius: 50px;
    padding: 5px;
}

.searchBox:hover > .searchInput {
    width: 240px;
    padding: 0 6px;
}

.searchBox:hover > .searchButton {
    background: white;
    color: var(--colorPrincipal);
}

.searchButton {
    color: white;
    float: right;
    width: 40px;
    height: 40px;
    border: 2px solid var(--colorPrincipal);
    border-radius: 50%;
    background: var(--colorIconos);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.searchInput {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: #333;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
}

@media screen and (max-width: 620px) {
    .searchBox:hover > .searchInput {
        width: 150px;
        padding: 0 6px;
    }
}

.cabeceraDias {
    background: var(--colorSelectFondoHeader);
    color: #333;
}

@media (max-width: 575px) {
    .display-4 {
        font-size: 2rem;
    }
    .day h5 {
        background-color: #f8f9fa;
        padding: 3px 5px 5px;
        margin: -8px -8px 8px -8px;
    }
    .date {
        padding-left: 4px;
    }
}

@media (min-width: 576px) {
    .day {
        height: 40px;
    }
}

.fondoVerde {
    background-color: #f1f8dd;
}

.fondoGris {
    background-color: #f8f7f2;
}

.fondoEventos {
    background-color: #81586c;
}

input.search-text {
    color: #222;
    position: relative;
    z-index: 5;
    transition: z-index 0.8s, width 0.5s, background 0.3s ease, border 0.3s;
    height: 45px;
    width: 0;
    margin: 0;
    padding: 5px 0 5px 40px;
    box-sizing: border-box;
    font-size: 16px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    border: 1px solid transparent;
    /*background: url(search.png) no-repeat left 9px center transparent;*/
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUxMiA1MTIiIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB3aWR0aD0iNTEycHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGQ9Ik01MDMuODY2LDQ3Ny45NzRMMzYwLjk1OCwzMzUuMDUyYzI4LjcyNS0zNC41NDQsNDYuMDE3LTc4LjkxMiw0Ni4wMTctMTI3LjMzNiAgYzAtMTEwLjA4NC04OS4yMjctMTk5LjMxMi0xOTkuMzEyLTE5OS4zMTJDOTcuNTk5LDguNDAzLDguMzUxLDk3LjYzMSw4LjM1MSwyMDcuNzE1YzAsMTEwLjA2NCw4OS4yNDgsMTk5LjMxMiwxOTkuMzEyLDE5OS4zMTIgIGM0OC40MzUsMCw5Mi43OTItMTcuMjkyLDEyNy4zMzYtNDYuMDE3bDE0Mi45MDgsMTQyLjkyMkw1MDMuODY2LDQ3Ny45NzR6IE0yOS4zMzEsMjA3LjcxNWMwLTk4LjMzNCw3OS45ODctMTc4LjMzMiwxNzguMzMyLTE3OC4zMzIgIGM5OC4zMjUsMCwxNzguMzMyLDc5Ljk5OCwxNzguMzMyLDE3OC4zMzJzLTgwLjAwNywxNzguMzMyLTE3OC4zMzIsMTc4LjMzMkMxMDkuMzE4LDM4Ni4wNDcsMjkuMzMxLDMwNi4wNSwyOS4zMzEsMjA3LjcxNXoiIGZpbGw9IiMzNzQwNEQiLz48L3N2Zz4=)
        no-repeat left 9px center transparent;
    background-size: 24px;
}
input.search-text:focus {
    z-index: 3;
    width: 270px;
    border: 1px solid #666;
    background-color: white;
    outline: none;
    cursor: auto;
    padding-right: 10px;
}

input.search-submit {
    position: relative;
    z-index: 4;
    top: 17px;
    left: 49px;
    width: 45px;
    height: 45px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    border-radius: 30px;
    cursor: pointer;
    background: none;
}

input.search-text::-webkit-search-cancel-button {
    cursor: pointer;
}

.listaMaterialMantenimiento {
    font-size: 1.4em;
    color: var(--colorPrincipal);
}
.start-100 {
    left: 97 !important;
}
.subEncabezado {
    font-size: 1.3em;
    font-weight: 500;
    color: var(--colorPrincipal);
}

/* -------------- COMBUSTIBLE ------------------*/
.combustibleBorde {
    border: var(--colorSelectFondoHeader) 2px solid;
    border-radius: 10px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%),
        0 1px 5px 0 rgb(0 0 0 / 12%);
}
.bordeTitulo {
    border-bottom: var(--colorSelectFondoHeader) 2px solid;
}

.combustibleTitulo,
.combustibleFecha {
    font-size: 2em;
    color: var(--colorPrincipal);
}

.combustibleTitulo {
    padding-bottom: 2px;
}

.combustibleLitros,
.combustibleHora {
    font-size: 1.5em;
    color: var(--colorPrincipal);
}

.combustiblefecha {
    font-size: 1.1em;
    color: var(--colorPrincipal);
}
.combustibleColorTexto {
    font-weight: 500;
    color: var(--colorPrincipal);
}

.conteDivCArgaDescarga {
    border-top: 1px solid var(--colorSelectFondoHeader) !important;
}

.combustiblePestaña {
    border-bottom: 1px solid var(--colorSelectFondoHeader) !important;
}
.combustiblePestaña:hover,
.combustiblePestaña:focus,
.combustiblePestaña.active {
    border-bottom: 1px solid var(--colorSelectFondoHeader) !important;
    border-top: none;
    border-left: none;
    border-right: none;
}

/* ---------- MENU ---------*/
.barra-lateral .menu a {
    text-decoration: none;
    display: block;
    padding: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.barra-lateral .menu li a:active {
    background-color: var(--colorTexto) !important;
}

.barra-lateral .menu li a:hover {
    background: var(--colorTexto);
    text-decoration: none;
}

ul {
    list-style: none;
}

ul li a.nav-link li.nav-item i svg.iconMenu {
    color: #fff !important;
    margin-right: 50px !important;
    font-weight: normal;
}

svg.iconMenu:hover {
    color: #fff !important;
}

/* ----------- PAGINACIÓN ----------------*/
.page-link {
    color: var(--colorPrincipal) !important;
}

.page-item {
    margin: 4px !important;
}

.page-link:active,
.page-link:focus {
    background-color: var(--colorSelectFondoHeader) !important;
}

.page-link:hover {
    background-color: #fff !important;
    border-bottom: var(--colorSelectFondoHeader) 2px solid !important;
    color: var(--colorTexto) !important;
}

.page-item.active .page-link {
    background-color: var(--colorSelectFondoHeader) !important;
    border: var(--colorSelectFondoHeader) !important;
    color: var(--colorTexto) !important;
}
.page-link {
    padding: 2px 3px !important;
}

select:focus,
input:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid var(--colorBotones) !important;
    outline-width: 0 !important;
    font-weight: 400;
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
}

.tabs {
    margin: 2px 5px 0px 5px;
    padding-bottom: 10px;
    cursor: pointer;
}

.tabs:hover,
.tabs.active {
    border-bottom: 5px solid var(--colorBotones);
}

a:hover {
    text-decoration: none;
    color: var(--colorPrincipal);
}

.box {
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
}

.modal-header-multiple {
    display: flex;
    justify-content: space-between;
}

.modal-header-multiple .tabs {
    flex: 1;
    text-align: center;
}

.modal-header-multiple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    align-items: center;
}

.modal-header-multiple .tabs.active {
    color: var(--colorPrincipal);
    font-weight: 1000 !important;
    border-radius: 5px;
}

.line {
    background-color: #f7cd22;
    height: 2px;
    width: 100%;
}

/* ----------- CALENDARIO ----------------*/

.filtroTipoEvento {
    font-weight: bold;
    background-color: var(--colorPrincipal);
    color: white;
}

.filtroTipoEvento option {
    font-weight: bold;
    background-color: var(--colorPrincipal);
    color: white;
}

.filtroTipoEvento option:checked:focus {
    font-weight: bold;
    background-color: var(--colorPrincipal);
    color: white;
}

.filtroTipoEvento:focus {
    font-weight: bold;
    background-color: var(--colorPrincipal);
    color: white;
}

@media screen and (max-width: 768px) {
    .tabs h6 {
        font-size: 12px;
    }

    .filtroTipoEvento {
        text-align: center;
    }

    .labelTitulo {
        text-align: center;
    }

    .filtroTipoEventoCentrar {
        text-align: center;
        margin-bottom: 20px !important;
    }

    .tituloPrincipalCentrado {
        margin-top: 7px !important;
        font-size: 12px !important;
        text-align: center;
    }
}

.radio-buttons input[type="radio"] {
    display: inline-block !important;
    margin-right: 10px !important;
}

/* ----------- SLIDER ----------------*/

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-200px * 12));
        transform: translateX(calc(-200px * 12));
    }
}

.slider {
    background: var(--colorPrincipal);
    height: 140px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider::before,
.slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    animation: scroll 60s linear infinite;
    padding-top: 10px;
    display: flex;
    width: calc(220px * 24);
}

/*--------------------------------------------------------------
# Textos
--------------------------------------------------------------*/
.contenido h1 {
    color: white;
    font-weight: 900;
    text-shadow: 5px 5px 10px rgb(0, 0, 0);
    font-family: "Oswald", sans-serif;
    word-break: auto-phrase !important;
    display: flex;
    flex-wrap: wrap;
}

.contenido h2 {
    font-weight: bold;
    color: var(--colorPrincipal);
}

.contenido h3 {
    font-weight: bold;
    color: var(--colorPrincipal);
}

.contenido h4 {
    font-weight: bold;
    color: var(--colorPrincipal);
}

.contenido p {
    font-weight: bold;
    color: var(--colorPrincipal);
    font-size: 12px;
}

.label {
    font-weight: 300;
    color: white;
    font-size: 12px;
}

/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/

.button {
    display: inline-block;
    padding: 1em 2em;
    background: var(--colorPrincipal);
    color: #fff;
    border: 2px solid var(--colorPrincipal);
    border-radius: 2em;
    transition-duration: 0.4s;
}

.button:hover {
    filter: brightness(1.15);
    color: #fff;
    border-color: var(--colorPrincipal);
}

.button.active {
    background: var(--colorPrincipal);
    color: #fff;
    border-color: var(--colorPrincipal);
}

/* PRODUCTS */
.product {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.product-category {
    padding: 0 10vw;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.product-container {
    padding: 0 10vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto;
    width: 250px;
    height: 550px;
    margin-right: 40px;
    border: 2px solid !important;
    border-color: var(--colorTexto);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-tag {
    position: absolute;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    color: #ff7d7d;
    right: 10px;
    top: 10px;
    text-transform: capitalize;
}

.card-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    width: 90%;
    text-transform: capitalize;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
    opacity: 0;
}

.product-card:hover .card-btn {
    opacity: 1;
}

.card-btn:hover {
    background: #ff7d7d;
    color: #fff;
}

.product-info {
    width: 100%;
    height: 100px;
    padding-top: 10px;
}

.product-brand {
    text-transform: uppercase;
}

.product-short-description {
    width: 100%;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    opacity: 0.5;
    text-transform: capitalize;
    margin: 5px 0;
}

.price {
    font-weight: 900;
    font-size: 20px;
}

.actual-price {
    margin-left: 20px;
    opacity: 0.5;
    text-decoration: line-through;
}

.pre-btn,
.nxt-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 8;
}

.pre-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-btn {
    right: 0;
}

.pre-btn img,
.nxt-btn img {
    opacity: 0.2;
}

.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;
}

.collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.collection {
    position: relative;
}

.collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 50px;
    text-transform: capitalize;
}

.collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
}

.ImgCard {
    width: -webkit-fill-available;
}

.card-body h2 {
    font-size: large;
}

.card-body h3 {
    font-size: small;
}

.precios {
    border-top: #212529 1px solid;
    border-bottom: #212529 1px solid;
}

.precios p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.listaCaracteristicas {
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 0px;
}

.listaCaracteristicas li {
    list-style: circle;
    font-size: 13px;
}

.botonesCard {
    text-align: center;
    margin: 5px;
    padding: 0px;
    height: 40px;
    width: 100%;
    font-weight: bold;
}

/*datos de contacto en backgroundImage - Quienes Somos*/

.liston {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
    text-align: -webkit-center;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.liston img {
    width: 30%;
}

.liston p {
    font-size: 16px;
    color: white;
    font-weight: 900;
    margin-top: 10px;
}

.liston span {
    font-size: 12px;
    font-weight: 900;
    margin-top: 10px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .liston img {
        width: 20%;
    }

    .liston span {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .liston img {
        width: 15%;
    }

    .liston span {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.d-flex1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section1 {
    flex-basis: auto;
    margin-bottom: 20px;
}

.icon1 {
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
}

/* Media query para dispositivos móviles */
@media (max-width: 767px) {
    .liston-linea {
        display: none;
    }

    .containerImgVideo {
        display: flex !important;
        justify-content: center !important;
    }

    .img-cotiza {
        width: 450px;
    }
}

@media (min-width: 767px) {
    .liston-carrusel {
        display: none;
    }

    .section-bg-image {
        position: relative;
        text-align: center;
        background-color: none;
        background-size: 500px 400px !important;
    }
}

/* Noticias */
.noticias img {
    height: 20px;
}

/* Estilo para la sección con imagen de fondo */
.section-bg-image {
    position: relative;
    text-align: center;
    background-color: none;
    padding: 45px 5px;
    background-size: 400px 300px !important;
    background-position: center;
    background-repeat: no-repeat;
}

/* Estilo para la imagen de fondo */
.q2cesFondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
}

.btn-green {
    background-color: green;
    color: white;
}

.parrafoVisionEmpresa {
    color: black !important;
    font-size: 16px !important;
    padding: 0px 25px;
}

.headerButton {
    margin-right: 5px !important;
    margin-bottom: 25px;
    font-size: 24px !important;
    border-radius: 2em;
    position: relative;
    color: #fff;
}

/* Pseudo-elemento para colorear el fondo */
.headerButton::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: -1;
    border-radius: 2em;
    background-color: var(--colorPrincipal);
}

.button-container {
    width: auto;
    height: 50px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 0;
    transition: background-color 0.3s ease;
    color: var(--colorPrincipal);
    background-color: #fff;
    font-weight: bold;
}

.button-container.active {
    background-color: var(--colorPrincipal);
    color: #fff;
}
