/* @font-face {
    font-family: 'theme01';
    src: url('/web/css/fonts/Lexend-Regular.ttf');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'theme01';
    src: url('/web/css/fonts/Lexend-Medium.ttf');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'theme01';
    src: url('/web/css/fonts/Lexend-Bold.ttf');
    font-style: normal;
    font-weight: 700;
} */
/* Fuente base (Regular o Normal) */
@font-face {
    font-family: 'Kelson';
    src: url('/web/css/fonts/kelson/kelson.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Light */
@font-face {
    font-family: 'Kelson';
    src: url('/web/css/fonts/kelson/kelson-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'Kelson';
    src: url('/web/css/fonts/kelson/kelson-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Kelson';
    src: url('/web/css/fonts/kelson/kelson-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


body {
    font-family: 'Kelson', sans-serif;
    background: #f8f8f8;
}

.title-bold {
    font-weight: 700;
    font-size: 2rem;
}

.font-bold {
    font-weight: 700;
    /* Usa Lexend-Bold.ttf */
}

.title-medium {
    font-size: 1.5rem;
}

.texto-light {
    font-weight: 300;
}

.text-light {

    /* Usa Lexend-Regular.ttf */
    font-size: 1rem;
    color: #555;
}

.texto-regular {
    font-weight: 300 !important;
    font-size: 0.9rem;
    color: #292929;
}

.btn-bold {
    font-weight: 700;
    font-family: 'template14', sans-serif;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.py-2-5 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
}

.text-hover-underline {
    opacity: 0.8 !important;
}

.text-hover-underline:hover {
    text-decoration: underline !important;
    opacity: 1 !important;
}

.star-icon {
    cursor: pointer;
}

/* hover y selección */
.star-icon:hover, .star-icon.fas {
    color: var(--color-primary) !important;
}

.border_top_cart {
    border-top: 2px solid var(--color-primary);
}

.btn-primario {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-primary);
    --bs-btn-active-border-color: var(--color-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-primary);
    --bs-btn-disabled-border-color: var(--color-primary);
}

.btn-outline-danger:hover {
    color: #dc3545;
    /* color original del texto */
    background-color: transparent;
    /* fondo transparente */
    border-color: #dc3545;
    /* color original del borde */
}

@media (max-width: 575.98px) {
    td.hide-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .grid_sm_none {
        display: none;
    }
}

.zoom-table {
    transform: scale(0.88);
    transform-origin: top left;
    /* o center center si prefieres */
    display: inline-block;
    width: 125%;
    /* esto fuerza que ocupe el ancho disponible */
}

/* Before chevron fontaswesome */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    padding-left: 0 !important;
    /* 🔥 elimina espacio a la izquierda */
    margin-left: 0 !important;
    /* 🔥 elimina margen si lo tuviera */
    display: inline-flex;
    /* 🔧 mejora alineación en línea */
    align-items: center;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--color-primary), var(--bs-text-opacity)) !important;
}

/* Clase global para enlaces personalizados */
.link-global {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.texto-primario {
    color: var(--color-primary);
}

.texto-secondario {
    color: var(--color-secondary);
}

.list-group-item.active {
    background-color: var(--color-primary) !important;
}

.border-primario {
    border-color: var(--color-secondary) !important;
}

.link-global:hover {
    color: var(--color-hover);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: none !important;
    /* anula el float de Bootstrap */
    padding-right: 0 !important;
    /* elimina padding extra */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    /* Unicode de fa-chevron-right */
    color: #adb5bd;
    margin: 0 0.3rem;
    /* 🔧 reduce separación horizontal */
    font-size: 0.65rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 1px;
    /* ajuste fino vertical */
}

.breadcrumb-item.active {
    color: #6c757d;
    font-size: 0.85rem;
}

/* End:Before chevron fontaswesome */

.text-justify {
    text-align: justify;
}

/* input[type="text"] {
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
} */
input.form-control,
select.form-select,
textarea.form-control,
input.form-check-input[type="radio"],
input.form-check-input[type="checkbox"] {
    box-shadow: none !important;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

input[type="text"]:focus {
    outline: none;
    /*  border-color: #495057; */
    /* darker secondary */
    border: 2px solid #F80;
    /* box-shadow: 0 0 8px rgba(73, 80, 87, 0.4); */
}

input.form-control:focus,
select.form-select:focus,
textarea.form-control:focus {
    border: 2px solid #F80;
    box-shadow: none !important;
    outline: none !important;
    /* opcional: elimina el contorno azul */
}

.quantity {
    display: flex;
    /* border: 1px solid #acabab; */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity button {
    background-color: #fff;
    color: #292929;
    border: none;
    cursor: pointer;
    font-size: 12px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}

.quantity button:hover {
    /*  background-color: #2980b9; */
}

.input-box {
    width: 30px;
    text-align: center;
    border: none;
    padding: 8px 0px;
    font-size: 16px;
    outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}

.zoomable {
    position: relative;
    overflow: hidden;
}

.zoomable__img {
    transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
    transition: transform 0.15s linear;
}

.zoomable--zoomed .zoomable__img {
    cursor: zoom-in;
    transform: scale(var(--zoom, 2));
}

.color-btn.active {
    outline: 3px solid var(--color-primary) !important;
    /* Borde sólido azul */
    box-shadow: none !important;
    /* Sin sombra */
    transition: none !important;
    /* Sin animación */
}

.nav-link {
    margin-right: 0px;
    background: #e6e6e6 !important;
    height: auto;
    line-height: 1;
    color: #444 !important;
    border: 2px solid transparent;
    /* 🔸 Previene "salto" al activar */
    border-radius: .375rem;
    /* Opcional: bordes redondeados */
    padding: .5rem 1rem;
    text-align: center;
    min-width: 50px;
}

.nav-link.active {
    border: 2px solid var(--color-primary);
    background: #e6e6e6 !important;
    color: #444 !important;
}

.guia_tallas {
    color: #444;
    text-decoration: underline;
}

.login .input-group-text {
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.btn-red {
    background-color: #e53935;
    color: white;
}

.btn-red:hover {
    background-color: #c62828;
}

.menu_head_1 a {
    padding-left: 5px;
    padding-right: 5px;
}

a.btn_1, .btn_1 {
    border: none;
    color: #fff;
    background: var(--color-primary);
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 12px 10px;
    padding-right: 10px;
    padding-left: 10px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    transition: all 0.3s ease-in-out;
    border-radius: 25px !important;
    line-height: normal;
}

.dropdown-access .dropdown-menu ul {
    margin: 15px -15px -15px -15px;
    padding: 0;
}

.dropdown-access .dropdown-menu ul li {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    border-top: 1px solid #ededed;
}

.dropdown-access .dropdown-menu ul li a {
    height: auto !important;
    color: #444 !important;
    border-left: 2px solid transparent;
    display: block;
    padding: 15px 15px 15px 50px !important;
    position: relative;
    line-height: 1;
}

.dropdown-menu.header {
    width: 260px;
    /*  left: 35%; */
    transform: translateX(-35%);
    border-top: 2px solid var(--color-primary);
    /* Amarillo Bootstrap */
    position: absolute;
    margin-top: 22px !important;
}

.dropdown-menu.icono {
    width: 260px;
    left: 35%;
    transform: translateX(-47%);
    border-top: 2px solid var(--color-primary);
    position: absolute;
    margin-top: 22px !important;
}

.dropdown-menu {
    max-width: 260px;
}

.btn-cambiar {
    background-color: #dc3545;
    color: #fff;
}

.btn-mantener {
    color: var(--color-primary);
    background: none;
    border: none;
    text-decoration: underline;
}

.dropdown-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--color-primary);
    /* Triángulo amarillo */
    z-index: 1;
}

.img_grid .desktop {
    max-height: 100%;
    max-width: 100% !important;
}

.img_grid {
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    /* fondo claro */
    color: #212529;
    /* texto oscuro */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    /* línea inferior suave */
    font-weight: 500;
}

/* .img_grid {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
} */

.content__main {
    overflow: hidden;
}

.detalles_title {
    font-weight: 700;
    line-height: 1.1;
    font-size: 2rem
}

.option_grid_view label.btn {
    border-radius: 50%;
}

.btn-group-toggle>.btn input[type="checkbox"], .btn-group-toggle>.btn input[type="radio"], .btn-group-toggle>.btn-group>.btn input[type="checkbox"], .btn-group-toggle>.btn-group>.btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-group-toggle .btn {
    border: 1px solid #ccc;
    margin: 2px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    padding: 0;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/* .option_grid_view label.btn.active {
  border: 4px solid var(--color-primary);
} */
.option_grid_view label.btn.active {
    box-shadow: 0 0 0 3px var(--color-primary);
}

.custom-search-input input[type="text"]:focus {
    outline: none;
}

.dropdown-cart .option_head_1 {
    position: relative;
}

a .option_head_1, a:hover .option_head_1 {
    color: #6f6f6e;
}

.option_head_1 {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.dropdown-cart .option_head_1 .counter_car {
    top: 25px;
    right: 0px;
}

.option_head_1 .counter_car {
    top: 48px;
    right: 70px;
    color: #fff;
}

.counter_car {
    background: var(--color-primary);
    padding: 1px 8px;
    border-radius: 50%;
    position: absolute;
    top: 38px;
    right: 55px;
    font-size: 11px;
    font-weight: 700;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

a .option_head_1, a:hover .option_head_1 {
    color: #6f6f6e;
}

.option_head_1 {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.non_changed {
    border: none;
    background: none;
    color: #007bff;
}

.nav_bussinnes>.nav-tabs>button.active, .nav_bussinnes>.nav-tabs>button:hover {
    border-top: 3px solid #007bff !important;
    background: #fff;
    /* font-weight: 700; */
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    border-top-color: rgb(222, 226, 230);
}

#addRegaloModal ul {
    margin-bottom: 0px !important;
}

.modal ul {
    margin-bottom: 0px !important;
}

.rest_checkout {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #8f8f8f;
}

.font-weight-light {
    font-weight: 300 !important;
}

#filters_stick select {
    border: none;
    background-color: #ddd;
    padding: 4px 5px;
    font-size: 15px;
    border-radius: 5px;
    color: #292929 !important;
}

.text-yellow {
    color: var(--color-primary) !important;
}

input::placeholder, textarea::placeholder {
    color: #adb5bd !important;
    /* Otro gris Bootstrap */
    font-weight: 400;
    font-size: 14px;
}

.form-label {
    margin-bottom: .3rem;
    font-weight: 700;
}

.form-control {
    border-radius: .25rem !important;
}

.bg-facebook {
    background: #3b579d;
}

.p-2 {
    padding: 0.5rem !important;
}

/* Start: custom modal */
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #f3f3f3;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    cursor: move;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #f3f3f3;
    border-radius: 0.3rem;
    outline: 0;
}

.modal-body {
    background: #f8f9f9;
    color: #292929;
}

.btn-close-modal {
    background: #fff !important;
    padding: .05em .5em !important;
    border-radius: .25em !important;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.modal .modal-dialog .modal-content .modal-header .close span {
    font-size: 20px;
    font-weight: 400;
    color: #6a6a6a;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    /* padding-top: 2px; */
}

@media (max-width: 767px) {
    .btn_3 {
        margin-top: 0px;
    }

    .small-gutters {
        margin-bottom: 1px
    }

    .mm-sticky {
        padding-bottom: 20px !important;
        margin-top: 0px !important;
    }

    .desktop_header {
        display: none;
    }

    .sm_none {
        display: none !important;
    }

    .padding_we {
        padding-top: 80px;
    }

    .justify-content-end {
        margin-top: 1px !important;
    }
}

.thumb_cart {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-right: 10px;
    float: left;
    position: relative;
    background-color: #fff;
    padding: 5px;
    box-sizing: content-box;
}

.thumb_cart img {
    width: 60px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.total_checkout {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.table-striped>tbody>tr:nth-of-type(2n+1) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: #212529 !important;
}

.btn-block {
    display: block;
    width: 100%;
}

.min_item_buy {
    font-size: 11px;
    font-weight: 700;
}

.table_shopping th, .table_shopping td {
    vertical-align: middle;
}

.table td,
.table th {
    padding: .30rem;
}

/* .scroll-column {
    height: 500px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
} */
thead th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa !important;
    /* obligatorio para cubrir lo que hay debajo */
    z-index: 10;
    /* asegura que esté encima */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table_shopping thead th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa !important;
    /* obligatorio para cubrir lo que hay debajo */
    z-index: 10;
    /* asegura que esté encima */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table_shopping tfoot td {
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 9;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
} */

.text-right {
    text-align: right;
}

input[type=number].update-qty {
    -moz-appearance: textfield;
    appearance: textfield;
}

.item_img_table {
    max-height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 3px solid #00559e;
    overflow-y: hidden;
    height: 45px;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.color_table {
    padding: 8px 0 0 8px;
    display: flex;
    align-items: center;
}

.translate-x-0 {
    transform: translateX(0);
}

.mtranslate-x-full {
    transform: translateX(-100%);
}

.transition {
    transition: all 150ms ease;
}

.transition-none {
    transition: none;
}

.ease-out {
    transition: all 0.3s ease-out;
}

.duration-300 {
    transition-duration: 300ms;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.max-w-xs {
    max-width: 20rem;
}

.w-auto {
    width: auto;
}

.h-8 {
    height: 2rem;
}

.block {
    display: block;
}

img, video {
    max-width: 100%;
    height: auto;
}

button.times, [role="button"] {
    cursor: pointer;
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
    border-width: 0;
}

.TaxonomyDesktop_text__u1uBt {
    color: var(--color-shade-1);
    font-size: 19px;
    line-height: 22.8px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mainhead {
    align-items: center;
    padding: 16px 13px 16px 24px;
    height: 56px;
    box-sizing: border-box;
    background: #f7f7f7;
    border-top: 4px solid var(--primary-theme-color);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.btn-yellow {
    background-color: var(--color-primary);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.category-item {
    border-left: 4px solid transparent;
    background-color: transparent;
    transition: all 0.2s ease;
    font-weight: normal;
    color: #333;
}

.category-item i {
    color: #adb5bd;
    /* gris suave */
    transition: color 0.2s ease;
}

/* Hover styles */
.category-item:hover {
    border-left-color: var(--color-primary);
    background-color: #f8f9fa;
    font-weight: bold;
}

.category-item:hover i {
    color: var(--color-primary);
}

/* Active styles (igual que hover) */
.category-item.active {
    border-left-color: var(--color-primary);
    background-color: #f8f9fa;
    font-weight: bold;
}

.category-item.active i {
    color: var(--color-primary);
}

[x-cloak] {
    display: none !important;
}

.sidebar {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
}

.sidebar.open {
    transform: translateX(0);
}

.flex-two {
    display: flex;
}

.mt-50 {
    margin-top: 50px;
}

@media (max-width: 640px) {

    .flex-two {
        display: block !important;
    }

    .w-screen {
        width: 80vw;
    }

    .posi {
        position: absolute;
        top: 10px;
    }
}

@media (min-width: 640px) {
    .sm\:w-80 {
        width: 20rem;
    }

    .posi {
        position: relative;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

/*  */
.HamburgerBtn_navigationOpen {
    overflow: hidden;
}

.bg-opacity-75 {
    /* opacity: 0.75; */
    background: rgba(0, 0, 0, 0.75);
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 /0.75);
}

.z-10 {
    z-index: 10;
}

.top-0 {
    top: 0px;
}

.left-0 {
    left: 0px;
}

.inset-0 {
    inset: 0px;
    top: 0px;
    left: 0px;
}

.fixed {
    position: fixed;
}

.flex {
    display: flex;
}

@media (min-width: 640px) {
    .sm\:w-80 {
        width: 20rem;
    }
}

.bg-white {
    /* opacity: 1; */
    background-color: rgb(255 255 255 / 1);
}

.border-t-\[4px\] {
    border-top-width: 4px;
}

.h-screen {
    height: 100vh;
}

.border-tema {
    border-color: #F29100;
}

/*  */
.barra_info_2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.barra_data img {
    width: 38px;
    filter: brightness(10);
}

.col-auto {

    padding-right: 15px;
    padding-left: 15px;
}

.text_1 {
    color: var(--color-primary);
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* .btn.btn-primary {
    color: var(--bs-white);
    border: none;
} */

/* .btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
} */

/* .btn.btn-light {
    color: var(--bs-primary);
    border: none;
} */

/* .btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
} */

/* .btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
} */


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
/* .header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
} */

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.barra-fluid {
    background: var(--color-secondary) !important;

}

.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

/* .feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
} */

/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/
.dropdown-menu input[type="radio"] {
    accent-color: #0d6efd;
    cursor: pointer;
}

.dropdown-menu label {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .25rem .75rem;
    cursor: pointer;
    transition: background .15s;
}

.dropdown-menu label:hover {
    background: #f8f9fa;
}

.dropdown-menu input[type="radio"]+span {
    color: #6c757d;
    font-weight: 400;
}

.dropdown-menu input[type="radio"]:checked+span,
.dropdown-menu label:hover span {
    font-weight: 600;
    color: #495057;
}

.accordion-button {
    font-weight: bold;
}

.accordion-body ul li {
    margin-bottom: 0.5rem;
}

.accordion-body a {
    text-decoration: none;
    color: #495057;
}

.accordion-body a:hover {
    text-decoration: underline;
    color: #0d6efd;
}

.subcategory-item {
    background-color: transparent;
    color: #0d1b2a;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none !important;
    /* sin subrayado */
    border-radius: 0 0.25rem 0.25rem 0;
    font-weight: normal;
}

.subcategory-item:hover {
    border-left-color: orange;
    background-color: #f1f1f1;
    font-weight: 600;
    /* negrita al pasar el mouse */
    color: #495867 !important;
    /* mantener color original */
    text-decoration: none !important;
}

.subcategory-item.active {
    border-left-color: orange;
    background-color: #f1f1f1;
    font-weight: 600;
    color: #495867;
    text-decoration: none !important;
}

/* Display search */

/* Ocultar detalles por defecto */
.item_grid_options {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    padding: 0px;
    border-top: 1px solid #dee2e6;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 5;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.desktop-scale {
    transform: scale(1);
}


@media (max-width: 991px) {
    .desktop-scale {
        transform: scale(0.8);
    }

    .item_grid_options {
        opacity: 1;
        visibility: visible;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.97);
        padding: 0px;
        border-top: 1px solid #dee2e6;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 5;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    }

    .img_grid {
        border-radius: 1px;
        display: flex;
        align-items: baseline;
        justify-content: center;
        height: 350px;
        overflow: auto;
    }
}

/* Mostrar detalles al hacer hover */
.item_grid:hover .item_grid_options {
    opacity: 1;
    visibility: visible;
}

/* Contenedor de la tarjeta del producto */
.item_grid {
    /* border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 10px; */
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    height: 100%;
}


/* Sombra al hacer hover */
.item_grid:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Imagen del producto */
.img_grid img:first-child {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    transition: filter 0.3s ease;
}

/* Oscurece un poco la imagen al hacer hover */
.item_grid:hover .img_grid img:first-child {
    filter: brightness(0.9);
}

/* Tamaño del select de tallas */
.select-size-id {
    font-size: 13px;
    height: 32px;
    padding: 4px 6px;
}

/* Medidas */
.measurement_parameters .description_item_catalog_2 {
    font-size: 12px;
    padding: 0 5px;
    color: #333;
    white-space: nowrap;
}


/* Responsive para móviles si se desea */
@media (max-width: 576px) {}

.container {
    max-width: 1220px;
}

.banner {
    min-height: 50px;
    max-height: 50px;
    background-size: cover;
    background-position: center;
}

.currency {
    font-size: 1rem;
    /* color: #666; */
    margin-right: 2px;
    font-weight: 500;
}

.amount {
    font-size: 1.2rem;
    font-weight: 600;
    /* color: #323030; */
}

#pricev .currency {
    font-size: 1.4rem;
    margin-right: 2px;
    font-weight: 500;
}

#pricev .amount {
    font-size: 1.8rem;
    font-weight: 600;
}

.carrito .currency {
    font-size: 0.7rem;
    margin-right: 2px;
    font-weight: 500;
}

.carrito .amount {
    font-size: 1rem;
    font-weight: 600;
}

.resumen .currency {
    font-size: 0.9rem;
    margin-right: 2px;
    font-weight: 500;
    color: var(--color-secondary) !important;
}

.resumen .amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary) !important;
}

.cupon .currency {
    font-size: 0.8rem;
    margin-right: 2px;
    font-weight: 500;
}

.cupon .amount {
    font-size: 1rem;
    font-weight: 600;
}

.total .currency {
    font-size: 1rem;
    color: var(--color-secondary) !important;
    font-weight: 500;
}

.total .amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-secondary) !important;
}

.mis-pedidos .currency {
    font-size: 0.7rem;
    margin-right: 2px;
    font-weight: 300;
}

.mis-pedidos .amount {
    font-size: 0.9rem;
    font-weight: 300;
}

.pos .currency {
    font-size: 0.7rem;
    font-weight: 500 !important;
}

.pos .amount {
    font-size: 0.8rem;
    font-weight: 500 !important;
}

.postotal .currency {
    font-size: 1rem;
    font-weight: 500;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.postotal .amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bs-dark-text-emphasis) !important;
}
.posdes .currency {
    font-size: 0.8rem;
    font-weight: 500;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.posdes .amount {
    font-size: 1rem;
    font-weight: 600;
    color: #6f7378 !important;
}