:root {
    --orange: #f37800;
    --blue: #00689e;
    --light-blue: #256edb;
    --yellow: #fff38e;
    --dark-yellow: #edd400;
    --red: #2A3C21;
    --light-gray: #fafafa;
    --border-gray: rgb(223, 223, 223);
    --dark-gray: #514e4e;
    --medium-gray: #585858;
    --text-gray: rgb(141, 141, 141);
    --green: #25d366;
    --soft-green: #dfffea;
    --soft-orange: #f9f9f9;
    --medium-orange: #faf3f0;
    --dark-background: #4c4c4c;
    scroll-behavior: auto !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -o-crisp-edges;
    /* Opera */
    image-rendering: -webkit-optimize-contrast;
    /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /* IE (non-standard property) */

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    background-color: #F7EFE0;
    color: var(--dark-gray);
}

div,
span,
p {
    -webkit-font-smoothing: subpixel-antialiased;
}

.text-muted {
    color: var(--text-gray) !important;
}

.text-dark-gray {
    color: var(--dark-gray) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.background-yellow {
    background-color: var(--yellow) !important;
    color: var(--dark-gray) !important;
}

.background-green {
    background-color: var(--green) !important;
}

.green {
    color: var(--green);
}

.yellow {
    color: var(--yellow);
}

.dark-yellow {
    color: var(--dark-yellow);
}

.product-page .btn:not(.product-card .btn),
.cart-dropdown .btn,
.product-page .alert {
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    border: none;
    transition: 0.3s all;
}

.product-page .btn:not(.product-card .btn):hover,
.cart-dropdown .btn:hover,
.product-page .alert:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--red);
    border: none;
    color: #F7EFE0;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--red);
    color: white;
}

.text-gray {
    color: var(--text-gray);
}

.product-card {
    border: 1px solid var(--border-gray);
    border-radius: 2px;
    color: #333;
    margin-bottom: 0.5rem;
}

.page-title {
    background-image: url(../../img/fondo-categoria.jpg);
    height: 180px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 45%);
    color: white;
}

@media (max-width: 991px) {
    .page-title {
        height: 160px;
    }
}

.page-title a {
    color: white;
}

.product-page h1,
.category-page h1 {
    text-transform: uppercase;
    font-weight: 900;
}

@media (min-width: 992px) {
    .page-title h1 {
        width: 50%;
    }
}

.page-title img {
    max-height: 80px;
}

.category-page .sidebar .content {
    background-color: white;
    border-radius: 0.5rem;
    border: 0;
    -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 12%);
}

.category-page .sidebar h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    display: block;
}

.filter-list li a {
    text-decoration: none;
    color: var(--dark-gray);
    border: 1px solid var(--border-gray);
    padding: 3px;
    display: block;
    text-align: center;
    margin-bottom: 4px;
    transition: all 0.2s;
    border-radius: 0.2rem;
    background-color: white;
}

.filter-list li a:hover,
.filter-list li.active a {
    color: white;
    border: 1px solid var(--red);
    background-color: var(--red);
}

.category-page .col-sm-3 {
    padding-right: calc(var(--bs-gutter-x) * 0.3);
    padding-left: calc(var(--bs-gutter-x) * 0.3);
}

.category-page .dropdown .btn {
    border: 1px solid var(--border-gray);
    background-color: white;
    font-weight: 700;
}

.category-page .dropdown ul {
    border: 1px solid var(--border-gray);
}

.category-page .pagination a {
    color: var(--dark-gray);
}

.category-page .pagination .active a {
    color: white;
    background-color: var(--red);
    border-color: var(--red);
    z-index: 1;
}

.product-card .card-body {
    padding: 0.4rem;
}

.product-card img {
    max-height: 220px;
    width: auto !important;
    max-width: 100%;
    margin: auto;
    position: absolute !important;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.product-card .img-container {
    height: 220px !important;
    position: relative;
}

.card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.product-card .card-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.product-card .price-box span {
    display: block;
}

.product-card .price-box .old-price {
    text-decoration: line-through;
    color: gray;
    font-size: 14px;
}

.product-card .price-box .product-price {
    font-weight: 900;
}

.product-card .product-reveal {
    visibility: hidden;
    height: 0;
    font-size: 0.9rem;
}

.product-card .card-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .badge {
    padding: 4px;
    border-radius: 0.2rem;
    text-transform: uppercase;
}

.product-card .badge.offer {
    background-color: var(--red);
    color: white;
}

.product-card .badge.shipping {
    background-color: var(--yellow);
    color: var(--dark-gray);
}

.product-card .btn-group .btn {
    border-radius: 0.1rem !important;
    margin: 0 1px;
    font-size: 0.8rem;
}

.product-card .btn-group .btn:first-child,
.product-card .btn-group .btn:last-child {
    background: #f5f5f5;
    color: var(--orange);
    font-size: 1rem;
}

/*header*/
.header-top {
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 24px;
    color: #F7EFE0;
    background-color: var(--red);
    font-weight: 500;
}

@media (max-width: 991px) {
    .header-top {
        padding: 0;
    }
}

.header-top a {
    color: inherit;
    text-decoration: none;
}

.header-top .header-right a i {
    font-size: 20px;
    margin: 0 5px;
}

header {
    z-index: 999;
}

@media (max-width: 991px) {
    header {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #fff;
    border-bottom-color: var(--red);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

header .container {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align: center;
    justify-content: space-between;
    -ms-flex-pack: justify;
}

header p {
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    line-height: 0.8rem;
}

header .header-middle {
    /*background-color: white;*/
    background-color: #2A3C21;
    align-items: center;
}

header .header-middle .header-contact {
    color: var(--dark-gray);
}

@media (max-width: 991px) {
}

header .header-middle .logo {
    max-width: 190px;
}

@media (max-width: 991px) {
    header .header-middle .logo {
        max-width: 120px;
    }
}

header .header-middle .header-left {
    padding-top: 3px;
    padding-bottom: 3px;
    overflow: hidden;
    position: relative;
}

header .header-middle .header-right {
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    header .header-middle .header-right {
        flex: 1;
        -ms-flex: 1;
    }
}

header .header-middle .header-right form {
    flex: 1;
    -ms-flex: 1;
    max-width: 100%;
}

.form-control:focus {
    box-shadow: none;
}

header .header-middle .header-right form button {
    background-color: var(--red);
    border-radius: 0px;
    border: 2px solid #F7EFE0 ;
}

header .header-middle .header-right form button i {
    color: white;
}

header .header-middle .header-right .search-input {
    background: #ffffff;
    border: 1px solid #dadada;
    border-radius: 0px;
}

header .header-middle .header-right .search-input::placeholder {
    color: var(--text-gray);
}

@media (max-width: 991px) {
    header .header-middle .header-right .search-input {
        border-radius: 0.6rem 0.6rem 0.6rem 0.6rem;
        font-size: 0.8rem;
    }
}

header .header-middle {
    position: static;
    top: -50px;
    transition: 0.7s top cubic-bezier(0.3, 0.73, 0.3, 0.74);
}

@media (min-width: 992px) {
    header .header-bottom {
        position: static;
        top: -50px;

        transition: 1s top cubic-bezier(0.3, 0.73, 0.3, 0.74);
        transition-delay: 0.3s;
    }
}

.content .m-filters {
    position: static !important;
    top: -50px;
    transition: 0.7s top cubic-bezier(0.3, 0.73, 0.3, 0.74);
}

header .header-contact {
    text-decoration: none;
    /*color: var(--red);*/
    color: #F7EFE0 !important;
}

header .header-contact a {
    text-decoration: none;
    color: var(--red);
}
header .header-contact span {
    font-weight: 900;
    font-size: 0.8rem;
    line-height: 0.8rem;
    display: block;
}

header .header-contact i {
    font-size: 1.8rem;
    color: var(--red);
    color: #F7EFE0 !important;
}

header .header-contact span {
    color: var(--red);
    color: #F7EFE0 !important;
}

@media (max-width: 991px) {
    header .header-contact i {
        font-size: 1.5rem;
    }
}

.header-search-wrapper {
    display: flex;
    display: -ms-flex;
    position: static;
    margin: 0;
    border-width: 0;
}

.header-bottom {
    background-color: var(--red);
    color: white;
}

.header-bottom nav > ul > li {
    display: inline;
}

.header-bottom nav > ul > li > div {
    display: inline-block;
}

.header-bottom nav > ul > li > div > a {
    display: inline-block;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-right: 1.5rem;
    text-decoration: none;
    color: #F7EFE0;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.header-bottom li:hover .megamenu {
    display: block;
}

.header-bottom .ofertas {
    background-color: var(--red);
    border-radius: 2px;
    padding: 0.2rem;
    padding-bottom: 0.4rem;
}

.header-bottom .ofertas a {
    padding-right: 0rem;
}

.megamenu {
    background-color: white;
    position: absolute;
    display: none;
    z-index: 999;
    box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 15%);
    border-radius: 0.25rem;
    max-width: 600px;
    min-width: 300px;
}

.megamenu a {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.megamenu a:hover {
    text-decoration: underline;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrumbs {
    font-size: 0.7rem;
}

.breadcrumb {
    align-items: center;
    margin: 0;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--text-gray);
}

.product-page .panel {
    background-color: white;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 0.25rem;
}

@media only screen and (min-width: 992px) {
    .product-page .images-container {
        width: 60%;
        min-width: 60%;
    }

    .product-page .sidebar {
        max-width: 40%;
        min-width: 40%;
    }
}

.product-page .product-main-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (max-width: 991px) {
    .product-page .product-main-image {
        max-height: 250px;
    }
    .product-thumbs img {
        max-height: 100px;
    }
}

.product-page .price-box {
    font-size: 1.2rem;
}

.product-page .old-price {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.product-page .iva {
    color: var(--red);
    font-size: 0.9rem;
}

.product-page .offer-percentage {
    font-size: 0.9rem;
    padding: 5px;
    background: var(--orange);
    color: #fff;
    display: inline-block;
    border-radius: 0rem;
}

.sidebar-block {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.product-page .num-block {
    cursor: pointer;
}

.product-page .num-block .num-in {
    background: #ffffff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    height: 35px;
    width: 100px;
}

.product-page .num-block .num-in span {
    width: 35%;
    display: block;
    height: 35px;
    float: left;
    position: relative;
}

.product-page .num-block .num-in span:before,
.product-page .num-block .num-in span:after {
    content: "";
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.product-page .num-block .num-in span.plus:after {
    transform: rotate(90deg);
}

.product-page .num-block .num-in input {
    float: left;
    width: 30%;
    height: 35px;
    border: none;
    text-align: center;
}

.product-page .metodos-pago img {
    max-height: 40px;
    margin: 2px;
    border: 1px solid #edf1f2;
    border-radius: 4px;
    display: inline;
}

.product-page .whatsapp {
    text-decoration: none;
    background-color: var(--green);
    color: white !important;
    padding: 0.3rem 0.5rem;
    font-weight: 700;
    border-radius: 0.3rem;
}

.product-page .contact a {
    text-decoration: none;
    color: var(--red);
    font-weight: 700;
}

.overflow-icon-btn {
    --bg-color: dodgerblue;
    text-decoration: none;
    background-color: var(--bg-color, dodgerblue);
    padding: 4px 8px;
    color: #fff !important;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.3s;
    white-space: nowrap;
    font-weight: 400 !important;
}

.overflow-icon-btn i {
    -webkit-text-stroke-color: var(--bg-color, dodgerblue);
    -webkit-text-stroke-width: 0.03em;
    font-size: 2.5em;
}

.overflow-icon-btn:hover,
.overflow-icon-btn:focus {
    text-shadow: 0 0 20px var(--bg-color, dodgerblue);
    box-shadow: 0 0 10px var(--bg-color, dodgerblue);
    color: white;
}

.overflow-icon-btn.like {
    --bg-color: #3b5998;
}

.overflow-icon-btn.youtube {
    --bg-color: #ff0000;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
    color: var(--orange);
}

.layer-marca {
    max-width: 150px !important;
}

.specs-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.product-conditions {
    list-style: none;
    margin: 0 0 0;
    padding: 0;
}

.product-conditions i {
    font-size: 17px;
    margin-right: 5px;
    color: #f37800;
}

.m-menu__checkbox {
    display: none;
}
label.m-menu__toggle {
    cursor: pointer;
}

.m-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    max-width: 400px;
    width: calc(100vw - 80px);
    height: calc(100vh - 20vh);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    background-color: #f6f6f6;
    border-radius: 0.25rem;
    transition: opacity 0.3s linear;
    border-radius: 5px;
}
.m-menu__overlay {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.m-menu__header {
    min-height: 50px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 5px 5px 0 0;
}
.m-menu__header span {
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    color: var(--dark-gray);
}

.m-menu__header {
    color: var(--dark-gray);
    background-color: white;
}

.m-menu i {
    font-size: 1.4rem;
}

.m-menu .categoria svg {
    width: 40px;
    height: 40px;
    fill: var(--orange);
}

.m-menu .categoria .name {
    font-weight: 500;
    font-size: 16px;
}
.m-menu .categoria {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    background-color: white;
    border-radius: 5px;
}

.m-menu .m-menu label.m-menu__toggle {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-bottom: 0;
    padding: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.m-menu__checkbox:checked + .m-menu__overlay {
    visibility: visible;
    opacity: 1;
}
.m-menu__checkbox:checked ~ .m-menu {
    visibility: visible;
    opacity: 1;
}

.m-filters {
    font-size: 0.9rem;
    font-weight: 700;
}

.m-filters .dropdown button {
    padding: 0;
    border: none;
    vertical-align: top;
    font-size: 0.9rem;
}

.m-filters .dropdown button::after {
    display: none;
}

.m-menu .arrow-up {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid white;
    right: 20px;
    top: -15px;
    position: absolute;
}

.menu-accordion {
    height: calc(100% - 150px);
}

.menu-accordion li {
    display: block;
    position: relative;
}

.menu-accordion li a {
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--dark-gray);
}

.menu-accordion li:not(:last-child) {
}

.menu-accordion li ul li a {
    display: block;
    text-transform: none;
    padding: 0.5rem 0 0.5rem 0.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #e8e8e8;
}

.menu-accordion li ul {
    display: none;
}

.menu-accordion li a i {
    font-size: 0.8rem !important;
    display: block;
    position: absolute;
    top: 40%;
    right: 0.5rem;
}

/*quick search*/

.quick-search {
    width: 90%;
    background-color: #fff;
    position: absolute;
    left: 0px;
    right: 0px;
    box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 15%);
    z-index: 1000;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    top: 100%;
    border-radius: 0.5rem;
}

.quick-search .producto {
    position: relative;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 2px;
}

.quick-search .producto a {
    text-decoration: none;
    color: var(--dark-gray);
}

.quick-search .producto .imagen {
    display: inline-block;
    margin: 2px;
    width: 27%;
    text-align: center;
}

.quick-search .producto .imagen img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
}

.quick-search .producto .contenido {
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
}

.quick-search .producto del {
    color: gray;
    font-size: 12px;
}

.quick-search .producto .contenido .nombre {
    display: block;
    font-weight: 500;
    font-size: 18px;
}

.quick-search .producto .contenido .precio {
    font-weight: 700;
    font-size: 17px;
}

.quick-search .producto .contenido .iva {
    margin-top: 3px;
    color: #f37800;
}

@media only screen and (max-width: 899px) {
    .quick-search {
        border-top: none;
        margin-left: auto;
        margin-right: auto;
    }
    .quick-search .envio-mobile {
        color: #ee5f5b;
        margin-top: 3px;
        margin-bottom: 3px;
        font-weight: 500;
    }
    .quick-search .producto .contenido {
        width: 60%;
        margin-top: 0px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: left;
    }
    .quick-search .producto .imagen {
        width: 37%;
    }
    .quick-search .producto .contenido .nombre {
        font-size: 16px;
        line-height: 1.1;
    }
    .quick-search .producto .contenido .precio {
        font-size: 15px;
    }
}

.quick-search .mensaje {
    padding: 20px;
    font-weight: 500;
    display: none;
    border-bottom: 1px solid #e2e2e2;
}

.quick-search .mensaje2 {
    padding: 10px;
    font-weight: 500;
    text-align: center;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.quick-search .mensaje {
    text-align: center;
}

.quick-search .preloader {
    display: none;
}

.border-bottom {
    border-color: #e8e8e8 !important;
}

.cart-content {
    max-height: calc(100% - 180px);
}

.cart-content .cart-item {
    font-size: 0.8rem;
}

.cart-content .cart-item a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.cart-content .cart-item .price {
    color: var(--orange);
    font-weight: 900;
}

.cart-content .cart-item .quantity {
    color: var(--text-gray);
}

.cart-dropdown .btn i {
    font-size: 1rem !important;
}

.alert {
    border: none;
    text-decoration: none;
}

.alert-primary {
    background-color: var(--soft-orange);
    color: var(--orange);
}

.alert-primary:hover {
    color: var(--red);
}

.alert-whatsapp {
    color: var(--green);
    text-decoration: none;
    border: 1px solid var(--green);
    border-radius: 0px;
    padding: 5px;
}

.alert-whatsapp i {
    font-size: 1.2rem;
}

.alert-whatsapp:hover {
    color: var(--green);
}

.footer {
    background-color: var(--dark-background);
}

.footer-middle {
    padding: 2.5rem 0 1rem;
}

footer .widget {
    margin-bottom: 2rem;
}

footer .widget-title {
    color: #F7EFE0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0.5rem 0 1rem;
}

.footer .contact-info {
    margin-bottom: 1rem;
}

.footer .contact-info li {
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer .contact-info-label {
    display: block;
    margin-bottom: 0;
    color: #F7EFE0;
    font-weight: 400;
    text-transform: uppercase;
}

.footer .widget li {
    color: #a8a8a8;
}

.footer .social-icons,
.m-menu-bottom .social-icons {
    display: flex;
    align-items: center;
}

.m-menu-bottom {
    background-color: white;
    border-radius: 5px;
}

.m-menu-bottom .social-icons {
    justify-content: center;
}

.footer .social-icon,
.m-menu-bottom .social-icon {
    background-color: transparent;
    border-color: #313438;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    width: 40px;
    height: 40px;
    box-shadow: none;
    font-size: 1rem;
    line-height: 3.6rem;
    border-radius: 50%;
    border: 1px solid #313438;
    text-align: center;
    text-decoration: none;
    opacity: 1;
}

.m-menu-bottom .social-icon {
    color: #313438;
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
}

.m-menu-bottom .social-icon i {
    font-size: 1rem;
}

.m-menu-bottom .social-icon .fa-facebook {
    color: #3b5998;
}

.m-menu-bottom .social-icon .fa-instagram {
    color: #c13584;
}

.m-menu-bottom .social-icon .fa-youtube {
    color: #c4302b;
}

footer a,
footer p {
    color: #a8a8a8;
    text-decoration: none;
}

footer a:hover {
    color: var(--red);
}

.footer .form-control {
    height: 3rem;
    padding: 0.8rem 1rem;
    border: 0;
    border-radius: 0;
    background: #292c30;
    color: rgb(192, 192, 192);
    font-size: inherit;
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid #313438;
    color: #a8a8a8;
}

@media (max-width: 991px) {
    .footer-bottom {
        padding: 1rem 0 4rem 0;
    }
}

.m-menu-bottom span {
    font-size: 0.8rem;
    font-weight: 400;
}

.header-middle .cog {
    height: auto;
    position: absolute;
}

.header-middle .cog-1 {
    max-width: 30px;
    top: -23px;
    left: 60px;
    animation: rotation-1 30s infinite linear;
}

.header-middle .cog-2 {
    max-width: 30px;
    bottom: -23px;
    left: 38px;
    animation: rotation-2 30s infinite linear;
}

@media (min-width: 992px) {
    .header-middle .cog-1 {
        max-width: 50px;
        top: -37px;
        left: 130px;
        animation: rotation-1 30s infinite linear;
    }

    .header-middle .cog-2 {
        max-width: 50px;
        bottom: -37px;
        left: 80px;
        animation: rotation-2 30s infinite linear;
    }

    .header-middle.fixed .cog-1 {
        display: none !important;
    }

    .header-middle.fixed .cog-2 {
        display: none !important;
    }
}

@keyframes rotation-1 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-359deg);
    }
}

@keyframes rotation-2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.toast:not(.show) {
    display: flex;
}

.toast {
    z-index: 1000;
    border: none;
    border-radius: 0.25rem;
}

.product-thumbs img {
    cursor: pointer;
}

.product-page .stats {
    color: var(--orange);
    font-weight: 700;
    border-radius: 0.25rem;

    background: repeating-linear-gradient(
        135deg,
        white 0px,
        white 20px,
        var(--soft-orange) 20px,
        var(--soft-orange) 40px
    );
}

.m-menu a.contact {
    text-decoration: none;
    color: var(--dark-gray);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: var(--soft-orange);
}

.product-page .comment {
    background-color: var(--soft-orange);
    color: var(--text-gray);
}

.product-page .comment i {
    color: var(--orange);
    font-size: 1.6rem;
}

@media (max-width: 991px) {
    .product-page .comment i {
        font-size: 1rem;
    }
}

.product-page .comment i.far {
    color: var(--text-gray);
}

.product-page .comment .content {
    font-size: 0.9rem;
}

.product-page .comment .answer {
    font-size: 0.8rem;
    font-weight: 700;
}

.product-page .comment-form {
    background-color: var(--soft-orange);
}

.product-page .comment-form label {
    font-weight: 700;
}

.product-page .comment-form .rating li {
    cursor: pointer;
}

.product-page .comment-form .rating li i {
    font-size: 1.6rem;
    color: var(--text-gray);
}

.product-page .comment-form .rating li.active i {
    color: var(--orange);
}

.whatsapp-floating {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 20px;
    left: 40px;
    background-color: var(--green);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px var(--dark-background);
    z-index: 1010;
}

.whatsapp-floating i {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .whatsapp-floating {
        bottom: 10px;
        left: 10px;
    }
}

.m-menu .filter-list {
    height: calc(100vh - 250px);
}

.popover-body {
    padding: 0.3rem;
}

.equipo-compatible {
    border: 1px solid var(--border-gray);
    border-radius: 2px;
    min-height: 80px;
    text-decoration: none;
    color: var(--dark-gray);
}

.equipo-compatible img {
    max-width: 80px;
    max-height: 80px;
    height: auto;
}

.equipo-compatible .action {
    color: white;
    background-color: var(--red);
    display: inline-block;
    font-size: 12px;
}
