.price:before {
    content: "Q"
}

.strike {
    text-decoration: line-through
}

.text-red {
    color: #0263b5
}

.text-center {
    text-align: center
}

.mainContainer {
    position: relative
}

.template {
    display: none
}

.shadow-1,
.sideCart__card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .06), 0 3px 8px rgba(0, 0, 0, .09)
}

.jsLazyContainer {
    background-color: #999
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.item-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@font-face {
    font-family: Work-Sans;
    src: url(/public/fonts/work-sans/WorkSans-Regular.ttf)
}

@font-face {
    font-family: Work-Sans-Bold;
    src: url(/public/fonts/work-sans/WorkSans-Bold.ttf)
}

.sideCart {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    right: 0;
    z-index: 4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    left: 100%
}

.sideCart--open {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 200;
    display: block
}

.sideCart__header {
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between; 
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 12px;
    font-size: 1.3rem;
    background-color: #fff
}

.sideCart__loading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: calc(100% - 50px);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, .8)
}

.sideCart__loading--hide {
    display: none
}

.sideCart__container {
    height: calc(100% - 90px);
    height: -moz-calc(100% - 90px)
}

.sideCart__content {
    height: 100%;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.sideCart__body,
.sideCart__empty {
    background-color: #fff
}

.sideCart__body {
    height: calc(100% - 100px);
    height: -moz-calc(100% - 100px);
    overflow-y: scroll
}

.sideCart__empty {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    font-size: 1.1em
}

.sideCart__emptyIcon {
    font-size: 4rem;
    margin-bottom: 35px
}

.sideCart__card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    margin-bottom: 10px;
    height: auto;
    min-height: 90px;
    overflow: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.sideCart__cardImg {
    width: 100px;
    height: 100px;
    padding: 5px
}

.sideCart__colorContainer {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    bottom: 5px;
    left: 42px
}

.sideCart__cardDetails {
    width: calc(100% - 80px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding: 5px
}

.sideCart__cardName {
    font-size: .9rem;
    font-weight: 900;
    height: auto;
    overflow-y: hidden;
    line-height: 17px;
    margin-bottom: 5px
}

.sideCart__cardName a {
    color: #000;
    font-size: 14px;
    font-weight: 600
}

.sideCart__cardSku {
    font-size: .8rem;
    margin-bottom: 2px
}

.sideCart__cardDetail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.sideCart__cardDetail small {
    margin-left: 5px
}

.sideCart__cardRemove {
    position: absolute;
    bottom: 7px;
    right: 20px;
    font-size: 1rem
}

.sideCart__cardRemove a {
    color: #777
}

.sideCart__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100px
}

.sideCart__footersubTotal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 5px auto;
    font-size: 18px
}

.sideCart__footerTotal {
    margin: 7px 0
}

.sideCart__footerButton {
    display: block;
    color: #fff;
    font-size: 14px;
    height: 50px;
    background: #0263b5;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #0263b5
}

.sideCart__footerButtonIcon {
    padding-left: 5px
}

.sideCart__footerContinue {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px auto;
    color: #000;
    font-size: 14px;
    width: 100%;
    height: 50px;
    text-decoration: underline
}

.sideMenu {
    position: fixed;
    top: 115px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 4;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    overflow-y: auto;
    overflow-x: hidden;
    right: 100%
}

.sideMenu--open {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 11;
    display: block
}

.sideMenu--open a {
    text-decoration: none
}

.sideMenu__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.sideMenu__topItem {
    width: 50%;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #ccc
}

.sideMenu__topItem:first-child {
    border-right: 1px solid #ccc
}

.sideMenu__topItem a {
    color: #000
}

.sideMenu__preload {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    background-color: #fff;
    height: calc(100vh - 50px);
    top: 50px;
    width: 100%
}

.sideMenu__preload--hide {
    display: none
}

.sideMenu__content {
    width: 100%
}

.menuBody__container {
    font-size: 1.1em;
    width: 400%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s
}

.menuBody__container a {
    color: #606060;
    font-weight: 100
}

.menuBody__container--secod {
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%)
}

.menuBody__container--third {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.menuBody__container--fourth {
    -webkit-transform: translateX(-75%);
    -ms-transform: translateX(-75%);
    transform: translateX(-75%)
}

.menuBody__firstLevel,
.menuBody__fourthLevel,
.menuBody__secondLevel,
.menuBody__thirdLevel {
    width: 25%
}

.menuBody__content {
    height: 0;
    overflow-y: hidden;
    list-style: none
}

.menuBody--show {
    height: auto;
    overflow-y: auto
}

.menuBody__categories,
.menuBody__comeBack {
    padding: 10px 15px;
    font-weight: 400;
    font-size: 14px
}

.menuBody__categories a,
.menuBody__comeBack a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.menuBody__title {
    padding: 15px;
    background-color: #ccc;
    font-size: 16px;
    font-weight: 600
}

.menuBody__back,
.menuBody__next {
    font-family: "Font Awesome 5 Free";
    font-weight: 600
}

.menuFooter__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    padding: 15px;
    font-weight: 900;
    font-size: 1.2rem
}

.menuFooter__tracking a {
    color: #0263b5
}

.menuFooter__giftCard a {
    color: #0263b5
}

.menuFooter__blog a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3c3c3c
}

.menuFooter__blogTitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 900;
    margin-left: 10px;
    line-height: 25px
}

.menuFooter__containerImg {
    width: 85px;
    height: 59px;
    margin-right: 5px
}

.menuFooter__redes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.menuFooter__redes li {
    margin: 15px;
    font-size: 2.2em
}

.menuFooter__redes a {
    color: #3c3c3c
}

#recomendations-section,
.recomendations-section {
    background: #f1f3f4;
    padding-top: 5px;
    margin-top: 22px;
    padding-bottom: 30px
}

.similar-section {
    background: #fff;
    padding: 0 0 30px 0;
    margin-bottom: 32px
}

.recomendatios-sectionTitle {
    text-align: center;
    font-size: 1.5em;
    color: #5c5c5c
}

.recomendations_forYou {
    width: 95%;
    justify-self: center
}

.recomendations_forYou_card {
    width: 80%;
    background: #fafafa;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border-radius: 15px;
    margin: 0 10px
}

.recomendations_forYou_card img {
    width: 100%;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.recomendations_forYou_cardPromo {
    background: #f5f5f5;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    color: #898989;
    font-family: Work-Sans-regular;
    margin-top: 5px;
    min-height: 15px;
    font-size: .8em;
    display: none
}

.recomendations_forYou_cardPromo_empty {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    color: #898989;
    font-family: Work-Sans-regular;
    margin-top: 5px;
    min-height: 20px;
    display: none
}

.recomendations_forYou_cardName {
    font-family: Work-Sans-regular;
    font-size: .9em;
    min-height: 60px
}

.recomendations_forYou_cardBrand {
    font-family: Work-Sans-regular;
    color: #b6b6b6;
    margin: 10px 0;
    min-height: 20px;
    font-size: .8em
}

.recomendations_forYou_cardPriceInfo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0;
    gap: 7%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.recomendations_forYou_cardPrice {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3%;
    color: #255ba8
}

.recomendations_forYou_cardPrice .sellingUnit {
    font-size: .7em
}

.recomendations_forYou_cardPrice .quetzalPrice {
    font-size: 1.1em;
    font-family: Work-Sans-regular
}

.recomendations_forYou_cardDiscount {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: .8em;
    gap: 5px;
    min-height: 16px
}

.recomendations_forYou_cardSavings {
    color: #006e00;
    display: none
}

.recomendations_forYou_cardRatings {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin: 10px 0
}

.recomendations_forYou_cardRatings .grade {
    color: #9e9e9e
}

.recomendations_forYou_cardStock {
    margin-bottom: 10px;
    font-size: .9em;
    color: #b3261e;
    min-height: 18px
}

.recomendations_forYou_cardRedirect {
    background: #055ba8;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    margin: 10px 0
}

.recomendations_forYou_cardRedirect a {
    color: #fff;
    text-decoration: none
}

.recomendations_forYou_group {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px
}

#footer {
    background: #fafafa;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 40px
}

.footer-imgConta {
    text-align: center
}

.footer-imgConta img {
    max-width: 200px
}

.footer-titleContainer {
    text-align: center
}

.footer-title {
    font-size: 1em;
    color: #898989
}

.footer-socials {
    text-align: center
}

.footer-socials a {
    text-decoration: none
}

.footer-socials svg {
    /* border: 1px solid #6379c9;
    padding: 5px; */
    border-radius: 50%
}

.footer-information summary {
    color: #055ba8;
    background: #fff;
    padding: 12px;
    border-radius: 5px;
    margin: 5px 0
}

.footer-buyOnline,
.footer-corporate,
.footer-services {
    background: #fff;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.footer-callUs {
    padding-top: 10px;
    display: block
}

.footer-callUs a {
    text-decoration: none;
    color: #255ba8
}

.footer-callUs svg {
    vertical-align: bottom
}

.footer-copyData {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-top: 19px;
    font-size: .9em;
    color: #bfbfbf
}

.square_bottom {
    margin: 0 10px
}

#square_bottom {
    margin-top: 20px
}

.sideCart__cardImg img{
    width: 100%;
}

.sideCart__cardName a{
    text-decoration: none;
}

.sideCart__footerButton{
    text-decoration: none;
}

#featured-section{
        margin-bottom: 10px;
}

#banner_middle{
    width: 97%;
    margin-left: auto;
    margin-right: auto;
}

#banner_middle .slick-dots {
        position: absolute;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: auto;
        padding: 4px 7px 7px 5px;
        margin: 0;
        list-style: none;
        background: #ffffff94;
        border-radius: 20px;
            bottom: -25px;
    }