/* Minification failed. Returning unminified contents.
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(68,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(71,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(74,28): run-time error CSS1039: Token not allowed after unary operator: '-tertiary-color'
(78,28): run-time error CSS1039: Token not allowed after unary operator: '-quaternary-color'
(82,28): run-time error CSS1039: Token not allowed after unary operator: '-quinary-color'
(86,28): run-time error CSS1039: Token not allowed after unary operator: '-sextary-color'
(92,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(99,28): run-time error CSS1039: Token not allowed after unary operator: '-quinary-color'
(104,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(111,28): run-time error CSS1039: Token not allowed after unary operator: '-tertiary-color'
(116,28): run-time error CSS1039: Token not allowed after unary operator: '-tertiary-color'
(123,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(128,28): run-time error CSS1039: Token not allowed after unary operator: '-quaternary-color'
(135,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(140,28): run-time error CSS1039: Token not allowed after unary operator: '-quinary-color'
(147,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(152,28): run-time error CSS1039: Token not allowed after unary operator: '-sextary-color'
(159,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(166,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(170,17): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(174,17): run-time error CSS1039: Token not allowed after unary operator: '-tertiary-color'
(178,17): run-time error CSS1039: Token not allowed after unary operator: '-quaternary-color'
(182,17): run-time error CSS1039: Token not allowed after unary operator: '-quinary-color'
(186,17): run-time error CSS1039: Token not allowed after unary operator: '-sextary-color'
(191,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(194,17): run-time error CSS1039: Token not allowed after unary operator: '-quinary-color'
(266,17): run-time error CSS1039: Token not allowed after unary operator: '-color-black'
(275,12): run-time error CSS1038: Expected hex color, found '#ffff'
(298,28): run-time error CSS1039: Token not allowed after unary operator: '-color-primary'
(299,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(300,28): run-time error CSS1039: Token not allowed after unary operator: '-color-primary'
(578,12): run-time error CSS1038: Expected hex color, found '#ffff'
 */
/*VARIABLES DE IDENTIDAD*/
:root {
    --primary-color: #354E3C; /*Verde fuerte*/
    --secondary-color: #B6BECD; /*azul gris*/
    --tertiary-color: #c8af95; /*cafe claro*/
    --quaternary-color: #fcd6a6; /*amarillo pastel*/
    --quinary-color: #d8a28f; /*beige/mamey*/
    --sextary-color: #fff; /*blanco*/
}
/*Custom clases*/
.w-89 {
    width: 89% !important;
}

.w-95 {
    width: 95% !important;
}

.fs-7 {
    font-size: 0.85rem !important;
}

.fs-12px {
    font-size: 12px !important;
}
.fs-13px {
    font-size: 13px !important;
}

.fs-18px {
    font-size: 18px !important;
}

.shadow-start {
    box-shadow: -5px 0 5px -5px rgba(0, 0, 0, 0.5);
}

.mt-6 {
    margin-top: 5rem !important;
}
.mt-7 {
    margin-top: 6rem !important;
}
.mt-8 {
    margin-top: 7rem !important;
}
.mb-6 {
    margin-bottom: 5rem !important;
}

.scaleHover:hover{
    transform: scale(1.2) !important;
}
/*Custom colors*/
.bg-blue-gray {
    background-color: #F2F9FA !important;
}

.text-gray-ligth {
    color: #7F8C8D !important;
}

.bg-white-ligth {
    background-color: #F8F9FA !important;
}
/*----------IDENTIDAD---------*/
.bg-primaryColor { 
    background-color: var(--primary-color) !important;
}
.bg-secondaryColor {
    background-color: var(--secondary-color) !important;
}
.bg-tertiaryColor { 
    background-color: var(--tertiary-color) !important;
    color: black !important
}
.bg-quaternaryColor { 
    background-color: var(--quaternary-color) !important;
    color: black !important
}
.bg-quinaryColor { 
    background-color: var(--quinary-color) !important;
    color: black !important
}
.bg-sextaryColor { 
    background-color: var(--sextary-color) !important;
}

/*-----------IDENTIDAD BUTTONS-------*/
/*primary color*/
.btn-primaryColor {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 1px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}
.btn-primaryColor:hover {
    background-color: var(--quinary-color) !important;
    color: #fff !important;
}
/*secundary color*/
.btn-secondaryColor {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 1px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}
.btn-secondaryColor:hover {
    background-color: var(--tertiary-color) !important;
    color: #fff !important;
}
/*terciary color*/
.btn-tertiaryColor {
    background-color: var(--tertiary-color) !important;
    color: #fff !important;
    border-radius: 1px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}
.btn-tertiaryColor:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}
/*quaternay color*/
.btn-quaternaryColor {
    background-color: var(--quaternary-color) !important;
    color: black !important;
    border-radius: 1px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}
.btn-quaternaryColor:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
}
/*Quinary color*/
.btn-quinaryColor {
    background-color: var(--quinary-color) !important;
    color: white !important;
    border-radius: 1px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}
.btn-quinaryColor:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}
/*sextary*/
.btn-sextaryColor {
    background-color: var(--sextary-color) !important;
    color: black !important;
    border-radius: 1px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}
.btn-sextaryColor:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/*-----------IDENTIDAD TEXT-HOVER-------*/
/*primary color*/
.textHover-primaryColor:hover {
    color: var(--primary-color) !important;
}
/*secundary color*/
.textHover-secondaryColor:hover {
    color: var(--secondary-color) !important;
}
/*terciary color*/
.textHover-tertiaryColor:hover {
    color: var(--tertiary-color) !important;
}
/*quaternay color*/
.textHover-quaternaryColor {
    color: var(--quaternary-color) !important;
}
/*Quinary color*/
.textHover-quinaryColor:hover {
    color: var(--quinary-color) !important;
}
/*sextary color*/
.textHover-sextaryColor:hover {
    color: var(--sextary-color) !important;
}

/*---------TEXTCOLOR IDENTIDAD-----------*/
.text-primaryColor {
    color: var(--primary-color) !important;
}
.text-quinaryColor {
    color: var(--quinary-color) !important;
}
/*navbar*/
/*navbar canvasoff*/
.navbar-toggler-icon{
    color: white;

}
.img-navbar-logo {
    max-width: 100px;
    height: auto !important;
}
.offcanvas {
    max-width: 40%;
}
.offcanvas-backdrop {
    top: 63px !important;
}
.offcanvas.offcanvas-start {
    top: 63px;
}
.navbar-custom {
    background-color: white;
    width: 100vw !important;
}

.container-login-partial ul{
    display: flex !important;
    flex-direction:row !important;
}
.container-login-partial ul li {
    width: auto !important;
    display: flex !important;
    padding-left:0px !important;
}
.btn-menu-nav span i:hover {
    color: whitesmoke;
}
.btn-menu-nav:focus,
.btn-menu-nav:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.titulo-principal {
    color: #1f7752 !important;
    font-weight: bold;
    border-radius: 1px !important;
}

.opcion-nav {
    color: white !important;
}

.user-menu ul li,
.user-menu ul li a{
    width: 100% !important;
}



.card:hover {
    transform: scale(1.1);
}

.card-tercera {
    transform: none !important; 
}
.categories .list-group a, .form-check {
    text-decoration: none;
    font-size: 17px;
    color: var(--color-black);
}

.navbar-nav {
    margin-left: auto;
    font-weight: bold;
}

.footer {
    color: #ffff;
    width: 100%;
}
.footer-link:hover {
    color: #f9e6f9;
    font-weight: bolder;
}
.categories .list-group a:hover, .form-check:hover {
      font-weight: bold;
}



    .form-check-input:checked ~ .form-check-label {
        font-weight: bold;
    }

.products .card img {
    background-color: gray;
    width: 100%;
}

.pagination .page-item.active .page-link, .page-link.active, .page-item.active {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: 2px solid var(--color-primary);
}

.pagination .page-item .page-link {
    border: 1px solid #7F8C8D !important;
    color: #7F8C8D !important;
}

.pagination .page-item .arrow {
    border: none !important;
}
    .pagination .page-item .page-link:hover,
    .pagination .page-item .page-link.active {
        background-color: #2B316D !important;
        color: white !important;
        border-radius: 1px !important;
    }

.pagination .page-item .page-link-number {
    border: 1px solid #333 !important;
    color: #333 !important;
}

.pagination .page-item {
    margin-left: 7px;
    margin-right: 7px;
}

.pagination .page-item .arrow {
        border: none;
}

.text-secondary {
    color: #41444c !important;
}

/*############## Product Details ##############*/
.btn-option {
    background-color: transparent !important;
    color: black !important;
    border-color: #7f8c8d !important;
    font-size: small;
}
.btn-option.active{
    background-color: transparent !important;
    color: black !important;
    border-color: #354E3C !important;
    border: 2px solid;
}
    .text-featured {
    font-size: 17px;
}


.text-featured {
    font-size: 17px;
}

.img-principal {
    width: 65%;
    height: 30vh;
    background: gray;
}


.img-secondary {
    width: 25%;
    height: 15vh;
    opacity: 0.5;
    cursor: pointer;
}

.img-secondary:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, .2);
        transform: scale(1.1);
        opacity: 1;
}

.img-principal img, .img-secondary img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
}

.footer {
    display: flex;
    padding: 20px;
}

.footer-column {
    padding: 10px;
}


/*############## Shopping Cart ##############*/
/*progress*/
.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #bbb;
}
.step-text-active{
    color: black;
}
.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #212121;
}

.circle.active {
   border-color: black;
    color: black;
}

.r-total .text-secondary {
    border-color: gray;
}

.s-confirm .btn, #btn-checkout {
    padding: 8px 35px;
}

.line {
    flex: 1;
    height: 2px;
    background-color: #ddd;
}

    .line.active {
        background-color: black;
    }

.product_table-img {
    width: 200px;
    height: 150px;
    background: gray;
}

.product_table-img img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
}
/**/
.product-table-img {
    width: 80px;
    height: 80px;
    background: gray;
}

.product-table-img img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
}
/**/
.r-total .text-secondary {
    border-color: gray;
}

.s-confirm .btn, #btn-checkout {
    padding: 8px 35px;
}
.quantiti-input-list{
    width:15px !important;
}
/* Para navegadores basados en WebKit (Chrome, Safari, Edge) */
.quantiti-input-list::-webkit-outer-spin-button,
.quantiti-input-list::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Para Firefox */
.quantiti-input-list {
    -moz-appearance: textfield;
}

@media (max-width: 767px) {
    .r-total .btn {
        width: 100%;
        border: none !important;
    }
}


/*############## Checkout ##############*/
.checkout-title {
    font-size: 49px !important;
}

.btn-payment {
    padding: 10px 27px;
}
.btn-payment {
    padding: 16px 6px;
}
.btn-payment:hover, .btn-payment.active {
    background-color: #2B316D;
    color: white;
    border-radius: 1px !important;
 }

/*############## Contact ##############*/
.contact {
/*    background-image: url('/Images/Site/Banners/Decorative Backgrounds Metal 13.png');
*/    background-size: cover;
    background-repeat: no-repeat;
}
.h-100-custom {
    min-height: calc(100% - (90.13px));
}
.contact-container h1 {
    font-size: calc(2rem + 1.5vw) !important;
}

.form-container {
    margin-top: 7rem !important;
}

@media (max-width: 767px) {
    .btn-payment {
        width: 100%;
        margin-bottom: 10px;
    }
}

.right-column {
    width: 70%;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

.progressbar::before, .progress {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 4px;
        width: 100%;
        background-color: #dcdcdc;
        z-index: -1;
}

.sub-column {
    flex: 1;
    padding: 0 10px;
}

.footer h3,
.footer h5,
.footer p,
.footer input {
    margin: 10px 0;
}

.footer input {
    padding: 8px;
    width: calc(100% - 26px);
}

nav a {
    text-decoration: none;
    color: #ffff;
    display: block;
    margin: 5px 0;
}

nav a:hover {
    color: #1f7752;
}

.icon {
    background: url('path_to_arrow_icon') no-repeat right;
    padding-right: 20px;
}

/*Pantalla pago*/
.checkout-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pay {
    background-color: #fff;
    padding: 20px;
    border-radius: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 70px;
    font-size: 18px
}

    .pay:hover {
        transform: translateY(-10px) scale(1.02); /* Eleva la tarjeta */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Aumenta la sombra */
        color: #354E3C;
        border-left: 7px solid #354E3C;
    }

.h5, h5 {
    text-align: justify
}

.order-summary, .payment-options, .shipping-address {
    margin-bottom: 20px;
}

.item, .total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.total {
    font-weight: bold;
    color: #000;
}

.payment-method {
    display: flex;
    align-items: center;
    margin: 14px 0;
}

    .payment-method label {
        margin-left: 8px;
    }

.shipping-address p {
    margin: 4px 0;
    color: #555;
}

/* Responsive Style */
@media (max-width: 767px) {
    .progress-form {
        width: 100%;
    }
}

.footer-column input {
    background-color: white;
    color: gray;
}

.footer a {
    color: white;
}
@media (min-width: 500px) {
    .navbar-custom {
        width: auto !important;
    }
}

/*-------BREAKPOINTS DE BOOTSTRAP------*/
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .fs-sm-18px {
        font-size: 18px !important;
    }
    .fs-sm-16px {
        font-size: 16px !important;
    }
    .product-table-img {
        width: 130px;
        height: 120px;
        
    }
    .fs-sm-6 {
        font-size: 1rem !important;
    }
    .btn-payment {
        padding: 16px 13px;
    }
    .img-principal {
        width: 40%;
        height: 24vh;
        background: gray;
    }
    /*quinta*/
    .img-card-quinta {
        height: 50% !important;
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .opacity-md-100{
        opacity:1 !important;
    }
    .postition-md-static{
        position:static !important;
    }
    .fs-md-5 {
        font-size: 1.25rem !important;
    }
    .img-principal {
        width: 52%;
        height: 24vh;
        background: gray;
    }
    .translate-md-none {
        transform: none !important;
    }
    /*contact*/
    .form-container {
        margin-top: 2rem !important;
    }
    
    
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .fs-lg-16px {
        font-size: 16px !important;
    }
    .fs-lg-3 {
        font-size: calc(1.3rem + .6vw) !important;
    }
    .fs-4-lg {
        font-size: calc(1.275rem + .3vw) !important;
    }
    .product-table-img {
        width: 180px;
        height: 150px;
    }
    .quantiti-input-list {
        width: 30px !important;
    }
    .w-lg-auto {
        width: auto !important;
    }
    .btn-payment {
        padding: 20px 22px;
    }
    .fs-lg-16px {
        font-size: 16px !important;
    }
    .img-principal {
        width: 52%;
        height: 29vh;
        background: gray;
    }
    .offcanvas {
        max-width: 100% !important;
    }
    .first-section {
        min-width: 608px;
    }
    /*contact*/
    .form-container {
        margin: 3rem 6rem 6rem 6rem !important;
    }
    
    
}

@media (min-width: 1064px) {
    .first-section {
        min-width: 653px;
    }
}

@media (min-width: 1068px) {
    .first-section {
        min-width: 725px;
        left: 16.9% !important;
    }
}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .fs-xl-18px {
        font-size: 18px !important;
    }
    .btn-payment {
        padding: 20px 39px;
    }
    .first-section {
        min-width: 819px;
    }

}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .first-section {
        min-width: 67vw;
    }
}

/* navbar new */
.navbar-custom .btn-custom {
    background-color: #1e73be;
    color: #fff;
    border-radius: 1px;
}
.logo {
    height: 100%;
    position: absolute;
    width: 25.3%;
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
    left: 0;
    top: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.first-section {
    color: white;
    padding: 0.5% 2%;
    position: absolute;
    top: 0;
    left: 20.9%;
    clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 0% 100%);
    z-index: 3;
    height: 6.8vh;
}
.second-section {
    color: white;
    width: 25%;
    clip-path: polygon(4% 0, 100% 0%, 100% 100%, 0% 100%);
    padding: 0.5% 10%;
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
}
.second-section a{
    text-decoration: none;
    color: #fff;

}
.second-section a:hover{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.second-rw{
    padding-top: 5vh;
}
.second-rw-cl{
    font-weight: bold;
}
.second-rw-clt{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.second-rw-clt a{
    color: #000;
}
.section-end{
    list-style-type: none;
}

@media (min-width: 768px) and (max-width: 1204px){
    .second-rw-clt .btn-custom{
        font-size: 9px;
    }
}
