/*# sourceMappingURL=custom.min.css.map */


.fila-especial {
    background-color: rgba(146, 212, 0, 0.3) !important;
     font-style: italic;
     color: #666;
}

select option:disabled {
    color: #ccc;
    background-color: #f5f5f5;
}


.productos-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.producto-card {
    border: 1px solid #dee2e6;
    background: #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    background-color: #fff;
    transition: all 0.2s;
}

.producto-card:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.producto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.producto-header .input-group {
    width: auto;
    flex-grow: 1;
}

.producto-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.producto-detalles {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.producto-detalles > div {
    flex: 1;
    min-width: 100px;
}

.producto-detalles label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    display: block;
}

.custom-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}



.seccion-bloqueada {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seccion-activa {
    display: block;
    opacity: 1;
}

.input-bloqueado {
    background-color: #f8f9fa;
    cursor: not-allowed;
    border: 1px solid #e9ecef;
}

/* Estilo para inputs bloqueados */
.input-bloqueado {
    background-color: #f8f9fa;
    cursor: not-allowed;
    border: 1px solid #e9ecef;
    color: #6c757d;
}

/* Estilo para selects bloqueados */
.select-bloqueado {
    background-color: #f8f9fa;
    cursor: not-allowed;
    border: 1px solid #e9ecef;
    color: #6c757d;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Estilo especial para selects importantes bloqueados */
.select-bloqueado-importante {
    background-color: #e9f7ef;
    /*border: 1px solid #c3e6cb;*/
    /*color: #28a745;*/
    /*font-weight: bold;*/
}

/* Quitar el borde rojo de validación cuando está bloqueado */
.input-bloqueado.is-invalid,
.select-bloqueado.is-invalid {
    border-color: #e9ecef !important;
}


.toast {
    --bs-toast-padding-x: 0.75rem;
    --bs-toast-padding-y: 0.5rem;
    --bs-toast-spacing: 0.5rem;
    --bs-toast-max-width: 350px;
    --bs-toast-font-size: 0.875rem;
    --bs-toast-color: #ffffff; /* Texto blanco para mejor contraste */
    --bs-toast-bg: rgba(43, 43, 43, 0.9); /* Color principal con transparencia */
    --bs-toast-border-width: 1px;
    --bs-toast-border-color: rgba(255, 255, 255, 0.15);
    --bs-toast-border-radius: 0.25rem; /* Añadido bordes redondeados suaves */
    --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Sombra más visible */
    --bs-toast-header-color: #ffffff;
    --bs-toast-header-bg: rgba(38, 38, 38, 0.85); /* Mismo color pero más opaco */
    --bs-toast-header-border-color: rgba(255, 255, 255, 0.15);

    width: var(--bs-toast-max-width);
    max-width: 100%;
    font-size: var(--bs-toast-font-size);
    color: var(--bs-toast-color);
    pointer-events: auto;
    background-color: var(--bs-toast-bg);
    background-clip: padding-box;
    border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
    box-shadow: var(--bs-toast-box-shadow);
    border-radius: var(--bs-toast-border-radius);
}

/* Estilos adicionales para mejorar la apariencia */
.toast-header {
    font-weight: 600;
    border-bottom: 1px solid var(--bs-toast-header-border-color);
}

.toast-header .btn-close {
    filter: invert(1); /* Invertir color del botón de cierre para mejor visibilidad */
}

/* Efecto al pasar el ratón */
.toast:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

.toast.showing {
    opacity: 0
}

.toast:not(.show) {
    display: none
}

.toast-container {
    position: absolute;
    z-index: 1090;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none
}

.toast-container > :not(:last-child) {
    margin-bottom: var(--bs-toast-spacing)
}

.toast-header {
    display: flex;
    align-items: center;
    padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
    color: var(--bs-toast-header-color);
    background-color: var(--bs-toast-header-bg);
    background-clip: padding-box;
    border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
    border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
    border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))
}

.toast-header .btn-close {
    margin-right: calc(var(--bs-toast-padding-x) * -.5);
    margin-left: var(--bs-toast-padding-x)
}

.toast-body {
    padding: var(--bs-toast-padding-x);
    word-wrap: break-word
}


.toasts-container {
    position: fixed;
    top: 3.25rem;
    padding-top: 1rem;
    width: 21.875rem;
    right: 0;
    padding-right: 1rem;
    z-index: 999999 !important;
}

@media (max-width: 767.98px) {
    .toasts-container {
        width: 18.75rem
    }
}

.toasts-container .toast {
    width: 100%
}

.img-miniature {
    width: 55px;
    height: auto;
}


.navbar.navbar-sticky {
    top: 5.25rem;
    position: -webkit-sticky;
    position: sticky;
    padding: 0;
    border-left: 1px solid rgba(0, 131, 61, .3);
    margin-left: 1rem
}

.navbar.navbar-sticky .nav {
    width: 100%;
    flex-direction: column
}

.navbar.navbar-sticky .nav .nav-link {
    color: rgba(0, 131, 61, .5);
    padding: .25rem 1.5rem
}

.navbar.navbar-sticky .nav .nav-link:hover {
    color: rgba(145, 211, 0, .75)
}

.navbar.navbar-sticky .nav .nav-link.active {
    color: var(--bs-theme);
    font-weight: 600
}


.profile .profile-img {
    /*height: 12.5rem;*/
    overflow: hidden;
    margin-bottom: 1rem;
    z-index: 10
}

.profile .profile-img img {
    max-width: 100%;
    width: 100%
}

.profile .profile-tab {
    position: relative;
    padding: 0 1.5rem;
    flex: 1
}

@media (max-width: 991.98px) {
    .profile .profile-tab {
        overflow: scroll;
        padding: 0 1rem;
        display: flex;
        flex-wrap: nowrap
    }
}

.profile .profile-tab .nav-item .nav-link {
    text-align: center
}

.profile .profile-tab .nav-item .nav-link .nav-value {
    font-size: 1.3125rem;
    font-weight: 600;
    margin-bottom: -.35rem
}

@media (max-width: 767.98px) {
    .profile .profile-tab .nav-item .nav-link .nav-value {
        font-size: 1.00625rem
    }
}

.profile .profile-tab .nav-item + .nav-item {
    margin-left: 1.5rem
}

.profile .profile-container {
    display: flex
}

@media (max-width: 991.98px) {
    .profile .profile-container {
        display: block
    }
}

.profile .profile-container .profile-sidebar {
    width: 15.625rem;
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .3)
}

@media (max-width: 991.98px) {
    .profile .profile-container .profile-sidebar {
        display: none
    }
}

.profile .profile-container .profile-content {
    flex: 1
}

.profile .profile-container .profile-content .profile-content-container {
    padding: 1.5rem
}

@media (max-width: 991.98px) {
    .profile .profile-container .profile-content .profile-content-container {
        padding: 1rem
    }
}

.profile .profile-img-list {
    list-style-type: none;
    margin: -.25rem;
    padding: 0
}

.profile .profile-img-list:after, .profile .profile-img-list:before {
    content: "";
    display: table;
    clear: both
}

.profile .profile-img-list .profile-img-list-item {
    width: 25%;
    padding: .25rem;
    float: left
}

.profile .profile-img-list .profile-img-list-item.main {
    width: 50%
}

.profile .profile-img-list .profile-img-list-item .profile-img-list-link {
    display: block;
    padding-top: 75%;
    overflow: hidden;
    position: relative
}

.profile .profile-img-list .profile-img-list-item .profile-img-list-link .profile-img-content, .profile .profile-img-list .profile-img-list-item .profile-img-list-link img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.profile .profile-img-list .profile-img-list-item .profile-img-list-link .profile-img-content:before, .profile .profile-img-list .profile-img-list-item .profile-img-list-link img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, .15)
}

.profile .profile-img-list .profile-img-list-item.with-number .profile-img-number {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 1.53125rem;
    font-weight: 600;
    line-height: 1.625rem;
    margin-top: -.765625rem;
    text-align: center
}