﻿/* Optimized stylesheet: retains only selectors used across views and scripts */
:root {
    --color-rosa1: #fffafa;
    --color-rosa2: #ffcfe2;
    --color-rosa3: #ff95bf;
}
:root {
    --header-mobile-height: 64px;
}

@font-face {
    font-family: 'Abel';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/montserrat-v23-latin-regular.woff2) format('woff2'), url(fonts/montserrat-v23-latin-regular.woff) format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInUp{
    0% {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInDown{
    0% {
        opacity: 0;
        transform: translate3d(0, -15px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInLeft{
    0% {
        opacity: 0;
        transform: translate3d(-15px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInRight{
    0% {
        opacity: 0;
        transform: translate3d(15px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes slideInLeft{
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInRight{
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInUp{
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes slideInDown{
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes fadeOut{
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOutUp{
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -15px, 0);
    }
}
@keyframes fadeOutDown{
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }
}
@keyframes fadeOutLeft{
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-15px, 0, 0);
    }
}
@keyframes fadeOutRight{
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(15px, 0, 0);
    }
}
@keyframes slideOutLeft{
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutRight{
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutUp{
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutDown{
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes bounce{
    0%,
    20%,
    53%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
@keyframes flash{
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes pulse{
    0% {
        transform: scaleZ(1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scaleZ(1);
    }
}
@keyframes rubberBand{
    0% {
        transform: scaleZ(1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scaleZ(1);
    }
}
@keyframes shakeX{
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shakeY{
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(0, -10px, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(0, 10px, 0);
    }
}
@keyframes tada{
    0% {
        transform: scaleZ(1);
    }
    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        transform: scaleZ(1);
    }
}
@keyframes heartBeat{
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}
@keyframes spin{
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes progress-bar-stripes{
    0% {
        background-position: 0 0;
    }
    to {
        background-position: 1rem 0;
    }
}
.slick{
    opacity: 0;
}
.slick.slick-initialized,
.slick.slick-fallback{
    animation-duration: .6s;
    animation-name: fadeIn;
    opacity: 1;
}
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}
.slick-list{
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    min-width: 100%;
    transform: translateZ(0);
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-disabled .slick-list{
    cursor: default ;
}
.slick-track{
    position: relative;
    left: 0;
    top: 0;
    display: block;
    transform: translateZ(0);
}
.slick-track:before,
.slick-track:after{
    content: "";
    display: table;
}
.slick-track:after{
    clear: both;
}
.slick-disabled .slick-track{
    transform: translateZ(0) ;
}
.slick-slide{
    float: left;
    min-height: 1px;
    transition: opacity .3s ease, transform .3s ease;
}
.slick-slide:focus{
    outline: none;
}
.slick-slider:not(.slick-initialized) .slick-slide{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
[dir=rtl] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-arrow{
    position: absolute;
    top: 50%;
    margin-top: -19px;
    z-index: 1;
    font-size: 24px;
    opacity: 0;
    border: 2px solid #e5e5e5;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    background-color: #fff;
    border-color: #fff;
    color: #515151;
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 38px;
    width: 38px;
    line-height: 34px;
    font-size: 18px;
    font-size: 0;
}
.slick-arrow:focus{
    outline: 0;
}
    .slick-arrow:not(.disabled):not([disabled]):hover,
    .slick-arrow:not(.disabled):not([disabled]):focus {
        opacity: 1;
        background-color: #fff;
        border-color: var(--color-rosa1);
    }
.slick-arrow:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: #dfdfdf;
    border-color: #d9d9d9;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.slick-arrow:before,
.slick-arrow:after{
    font-size: 30px;
}
    .slick-arrow:before {
        font-family: Material icons outlined;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        vertical-align: middle;
        overflow: hidden;
        color: var(--color-rosa3);        
    }
.slick-vertical .slick-arrow{
    right: inherit;
    top: inherit;
    margin-top: inherit;
    left: 50% ;
    margin-left: -19px ;
}
.slick-arrow[aria-disabled=true]{
    opacity: 0 ;
    pointer-events: none;
}
.slick-dotted .slick-arrow{
    margin-top: -45px;
}
@media screen and (min-width: 769.1px){
    .slick-slider:hover .slick-arrow{
            opacity: 1;

    }
}
.slick-prev{
    left: 16px;
}
.slick-prev:before{
    content: "keyboard_arrow_left";
}
.slick-vertical .slick-prev{
    top: 16px;
}
.slick-vertical .slick-prev:before{
    content: "keyboard_arrow_up";
}
.slick-next{
    right: 16px;
}
.slick-next:before{
    content: "keyboard_arrow_right";
}
.slick-vertical .slick-next{
    bottom: 16px;
}
.slick-vertical .slick-next:before{
    content: "keyboard_arrow_down";
}
.slick__dots-wrapper{
    max-width: 180px;
    padding: 5px 0;
    overflow: hidden;
}
.slick-dots{
    list-style: none;
    margin: 30px 0 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    -ms-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
@media screen and (max-width: 769px){
    .slick-dots{
            margin-top: 16px;

    }
}
.hero-section .slick-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
}
.slick-dots li{
    display: inline-flex;
    padding: 7px;
    cursor: pointer;
    line-height: 1;
}
.slick-dots li:hover button{
    opacity: 1;
}
.slick-dots li button,
.slick-dots li a{
    font-size: 0;
    opacity: .6;
    line-height: 1;
}
.slick-dots li button:before,
.slick-dots li button:after,
.slick-dots li a:before,
.slick-dots li a:after{
    font-size: 15px;
}
.slick-dots li button:before,
.slick-dots li a:before{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "lens";
    border-radius: 50%;
    background-color: #515151;
    transform: scale(0.5);
    transition: all .3s ease;
}
.hero-section .slick-dots li button:before,
.hero-section .slick-dots li a:before{
    color: #fff;
    background-color: #fff;
}
.slick-dots li button:focus,
.slick-dots li a:focus{
    outline: none;
}
.slick-dots li.slick-active button,
.slick-dots li.slick-active a{
    opacity: 1;
}
.slick-dots li.slick-active button:before,
.slick-dots li.slick-active a:before{
    content: "trip_origin";
    background-color: transparent;
    transform: scale(1);
}
@media screen and (min-width: 769.1px){
    .slick-center-mode .slick-list{
            padding-left: 0 ;
            padding-right: 0 ;

    }
}
@media screen and (max-width: 769px){
    .slick-center-mode .slick-list{
            padding-left: 40px ;
            padding-right: 40px ;

    }
}
.slick-center-mode .slick-slide,
.slick-center-mode .slick-slide[aria-hidden=true]:not(.slick-cloned)~.slick-cloned[aria-hidden=true]{
    opacity: .6;
}
@media screen and (min-width: 769.1px){
    .slick-center-mode .slick-slide,
        .slick-center-mode .slick-slide[aria-hidden=true]:not(.slick-cloned)~.slick-cloned[aria-hidden=true]{
            transform: scale(0.8);

    }
}
.slick-center-mode .slick-center,
.slick-center-mode .slick-slide[aria-hidden=true]:not([tabindex="-1"])+.slick-cloned[aria-hidden=true]{
    opacity: 1;
}
@media screen and (min-width: 769.1px){
    .slick-center-mode .slick-center,
        .slick-center-mode .slick-slide[aria-hidden=true]:not([tabindex="-1"])+.slick-cloned[aria-hidden=true]{
            transform: scale(1);

    }
}
.slick-center-mode .slick-slide:not(.slick-current)>*{
    pointer-events: none;
}
.btn-zoom{
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: .6;
    z-index: 3;
    line-height: 1;
}
.product-single__media-wrapper:hover .btn-zoom{
    opacity: 1;
}
.btn-zoom .zoom-icon:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "zoom_in";
}
.zoom-active+.btn-zoom{
    opacity: 1;
}
.zoom-active+.btn-zoom .zoom-icon:after{
    content: "zoom_out";
}
.zoomImg{
    background-color: #fff;
    min-height: 100%;
    min-width: 100%;
    animation-duration: .3s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.lazyload,
.lazyloading{
    opacity: 0;
}
.lazyloaded{
    opacity: 1;
    transition: opacity .6s ease;
}
.slick-cloned .lazyloading:not(.lazyload){
    opacity: 1;
    transition: opacity .6s ease;
}
.grecaptcha-badge{
    z-index: 3;
    display: none ;
}
*,
*:before,
*:after{
    box-sizing: border-box;
}
html,
body{
    height: 100%;
}
body{
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
}
body.js-drawer-open,
body.js-modal-open{
    overflow-y: hidden;
}
@media screen and (min-width: 769.1px){
    body.js-drawer-open,
        body.js-modal-open{
            padding-right: 16.5px;

    }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary{
    display: block;
}
body,
input,
textarea,
button,
select{
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-size: 15px;
    line-height: 1.5;
    color: #515151;
}
a{
    background-color: transparent;
}
b,
strong{
    font-weight: 700;
}
em{
    font-style: italic;
}
small{
    font-size: 12px;
}
img{
    max-width: 100%;
    border: 0;
}
button,
input,
optgroup,
select,
textarea{
    color: inherit;
    font: inherit;
    margin: 0;
}
button[disabled],
html input[disabled]{
    cursor: default;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner{
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring{
    outline: 1px dotted ButtonText;
}
input[type=search],
input[type=number],
input[type=email],
input[type=password]{
    -webkit-appearance: none;
    -moz-appearance: none;
}
textarea{
    overflow: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
}
[hidden]{
    display: none ;
}
a,
button,
[role=button],
input,
label,
select,
textarea{
    touch-action: manipulation;
    transition: opacity .3s ease, background .3s ease, border .3s ease, box-shadow .3s ease;
}
a:hover,

[role=button]:hover,
textarea:hover{
    opacity: .6;
}
a:active,
a:focus,
button:active,
button:focus,
[role=button]:active,
[role=button]:focus,
input:active,
input:focus,
label:active,
label:focus,
select:active,
select:focus,
textarea:active,
textarea:focus{
    opacity: 1;
}
p{
    text-rendering: optimizeLegibility;
    margin-top: 0;
    margin-bottom: 15px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6{
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    text-rendering: optimizeLegibility;
    color: #202020;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .1px;
    line-height: 1.2;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a{
    color: #202020;
    text-decoration: none;
    font-weight: inherit;
}
h1,
.h1{
    font-size: 28px;
}
h2,
.h2{
    font-size: 22px;
}
h3,
.h3{
    font-size: 19px;
}
h4,
.h4{
    font-size: 16px;
}
h5,
.h5{
    font-size: 14px;
}
h6,
.h6{
    font-size: 15px;
}
a{
    color: #515151;
    text-decoration: none;
}
a:not([href]){
    cursor: pointer;
}
a:not([href]):focus{
    outline: none;
}
.form-vertical input,
.form-vertical select,
.form-vertical textarea,
.form-vertical fieldset,
.form-vertical .checkbox,
.form-vertical .radio{
    width: 100%;
    margin-bottom: 15px;
}
.form-vertical [type=radio],
.form-vertical [type=checkbox]{
    display: inline-block;
    width: auto;
    margin-right: 3px;
}
.form-vertical input[type=submit]{
    display: inline-block;
    width: auto;
}
.form-vertical textarea{
    min-height: 200px;
}
.note,
.errors{
    border-radius: 17px;
    border: 2px solid #e5e5e5;
    padding: 6px 10px;
    margin-bottom: 15px;
    text-align: left;
}
.note ul,
.note ol,
.errors ul,
.errors ol{
    margin-top: 0;
    margin-bottom: 0;
}
.note a,
.errors a{
    color: var(--color-rosa1);
    text-decoration: underline;
}
.note li:last-child,
.errors li:last-child{
    margin-bottom: 0;
}
.note p,
.errors p{
    margin-bottom: 0;
}
.form-success{
    color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    text-align: center;
}
.newsletter-section .form-success{
    margin-bottom: 0;
}
.errors{
    color: red;
    border-color: red;
}
.input-error{
    border-color: red ;
}
label{
    display: block;
    margin-bottom: 3px;
}
[type=radio]+label,
[type=checkbox]+label{
    display: inline-block;
}
label[for]{
    cursor: pointer;
}
.inline-label{
    display: inline-block;
    margin-right: 7px;
}
input{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    background-color: #fff;
    border-color: var(--color-rosa2);
    color: var(--color-rosa3);
    max-width: 100%;

}
    input[type="text"] {
        font-style: italic;
    }
input:focus{
    outline: 0;
}
input:not(.disabled):not([disabled]):hover,
input:not(.disabled):not([disabled]):focus{
    color: var(--color-rosa3);
    background-color: #fff;
    border-color: var(--color-rosa3);
    cursor:pointer;
}
input:not(.disabled):not([disabled]):active{
    color: #515151;
   
      border-color: var(--color-rosa3) !important;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
input::-webkit-input-placeholder{
    color: red;
    opacity: 1 ;
    font-style: italic;
    font-size: 14px;
}
input:-moz-placeholder{
     color: red;
    opacity: 1 ;
    font-style: italic;
     font-size: 14px;
}
input::-moz-placeholder{
    color: red;
    opacity: 1 ;
    font-style: italic;
     font-size: 14px;
}
input:-ms-input-placeholder{
    color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
     font-size: 14px;
}
input::-ms-input-placeholder{
     color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
     font-size: 14px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #fff inset ;
}
    input:-webkit-autofill {
        -webkit-text-fill-color: #606060 ;
    }
input::-webkit-autofill,
input::-webkit-autofill:hover, 
input::-webkit-autofill:focus, 
input::-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #fff inset ;
}
    input::-moz-autofill {
        -webkit-text-fill-color: #606060 ;
    }
input:-moz-autofill,
input:-moz-autofill:hover, 
input:-moz-autofill:focus, 
input:-moz-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #fff inset ;
}
    input:-moz-autofill {
        -webkit-text-fill-color: #606060 ;
    }
input::-moz-autofill,
input::-moz-autofill:hover, 
input::-moz-autofill:focus, 
input::-moz-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #fff inset ;
}
    input::-moz-autofill {
        -webkit-text-fill-color: #606060 ;
    }
input:-ms-autofill,
input:-ms-autofill:hover, 
input:-ms-autofill:focus, 
input:-ms-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #fff inset ;
}
    input:-ms-autofill {
        -webkit-text-fill-color: #606060 ;
    }
input::-ms-autofill,
input::-ms-autofill:hover, 
input::-ms-autofill:focus, 
input::-ms-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #fff inset ;
}
    input::-ms-autofill {
        -webkit-text-fill-color: #606060 ;
    }
input[type=submit]{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
}
input[type=submit]:focus{
    outline: 0;
}
input[type=submit]:not(.disabled):not([disabled]):hover,
input[type=submit]:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
input[type=submit]:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
input[type=checkbox]{
    height: initial;
}
input[type=image]{
    background-color: transparent;
}
input[type=radio]{
    cursor: pointer;
}
input[type=checkbox],
input[type=radio]{
    margin: 0 10px 0 0;
    padding: 0;
    width: auto;
}
input[type=checkbox]:hover,
input[type=checkbox]:focus,
input[type=radio]:hover,
input[type=radio]:focus{
    outline: none;
    box-shadow: none ;
}
.input--small{
    padding: 6px 10px;
}
.input-full{
    width: 100%;
}
.input-group{
    display: flex;
}
.input-group .input-group-field{
    border-top-right-radius: 0 ;
    border-bottom-right-radius: 0 ;
    border-right: 0;
    width: 100%;
}
.input-group .input-group-btn{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex-shrink: 0;
}
textarea{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    background-color: #fff;
    border-color: var(--color-rosa3);
    color: var(--color-rosa3);
    max-width: 100%;
    vertical-align: top;
}
textarea:hover{
         border-color: var(--color-rosa3);
    
}
textarea:focus{
    outline: 0;
}
textarea::-webkit-input-placeholder{
       color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
    font-size: 14px;
}
textarea:-moz-placeholder{
        color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
    font-size: 14px;
}
textarea::-moz-placeholder{
       color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
    font-size: 14px;
}
textarea:-ms-input-placeholder{
       color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
    font-size: 14px;
}
textarea::-ms-input-placeholder{
       color: var(--color-rosa2) ;
    opacity: 1 ;
    font-style: italic;
    font-size: 14px;
}
.tooltip{
    z-index: 3;
    background-color: #202020;
    color: #fff;
    border-radius: 17px;
    padding: 6px 10px;
    bottom: 100%;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    font-size: 12px;
    line-height: 1.5;
    transform: translate(-50%, 15px);
    transition: all .3s ease;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.tooltip:after{
    border-left: solid transparent 7px;
    border-right: solid transparent 7px;
    border-top: solid #202020 7px;
    bottom: -7px;
    content: " ";
    height: 0;
    position: absolute;
    width: 0;
}
.tooltip-wrapper{
    position: relative;
}
.tooltip-wrapper .tooltip{
    left: 50%;
}
.cart__row .tooltip-wrapper{
    display: inline-block ;
}
fieldset{
    margin: 0;
    padding: 0;
}
select{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    padding: 16px 48px 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    background-color: #fff;
    border-color: var(--color-rosa1);
    color: var(--color-rosa3);
    max-width: 100%;
    cursor: pointer;
    text-indent: .01px;
    text-overflow: "";
    -o-appearance: none;
    appearance: none;
    background-image: url(../images/icon-select.svg);
    background-repeat: no-repeat ;
    background-position: right 24px center;
    background-size: auto 15px;
}
select:focus{
    outline: 0;
}
select:not(.disabled):not([disabled]):hover,
select:not(.disabled):not([disabled]):focus{
    border-color: var(--color-rosa2);
    color: var(--color-rosa3);
    opacity: 1;
}
select:not(.disabled):not([disabled]):active{
     border-color: var(--color-rosa2);
     color: var(--color-rosa3);
     opacity: 1;
}
select::-webkit-input-placeholder{
    color: #515151;
    opacity: .7;
}
select:-moz-placeholder{
    color: #515151;
    opacity: .7;
}
select::-moz-placeholder{
    color: #515151;
    opacity: .7;
}
select:-ms-input-placeholder{
    color: #515151;
    opacity: .7;
}
select::-ms-input-placeholder{
    color: #515151;
    opacity: .7;
}
.ie9 select,
.lt-ie9 select{
    padding-right: 24px;
    background-image: none;
}
.select--small{
    padding: 6px 30px 6px 10px;
    background-position: right 10px center;
}
.ie9 .select--small,
.lt-ie9 .select--small{
    padding-right: 10px;
}
@media screen and (min-width: 769.1px){
    .select-max{
            max-width: 250px;

    }
}
option{
    color: #515151;
    background-color: #fff;
}
select.select-link{
    padding: 0 ;
    background-color: transparent ;
    color: var(--color-rosa1) ;
    border: 0 ;
    background-image: none ;
    -ms-box-shadow: none ;
    -o-box-shadow: none ;
    box-shadow: none ;
    color: var(--color-rosa1);
    text-decoration: underline;
    transition: opacity .3s ease, background .3s ease, border .3s ease, box-shadow .3s ease;
}
select.select-link:hover{
    opacity: .6;
}
select.select-link:active,
select.select-link:focus{
    opacity: 1;
}
select.select-link:hover{
    color: var(--color-rosa1) ;
    opacity: .6 ;
}
select.select-link:active,
select.select-link:focus{
    opacity: 1 ;
}
.checkbox{
    position: relative;
    min-height: 24px;
    padding-left: 27px;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.checkbox label{
    margin-bottom: 0;
}
.checkbox label:before,
.checkbox label:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    font-size: 24px;
    line-height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio]{
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
    z-index: -1;
    opacity: 0 ;
}
.checkbox input[type=checkbox][disabled]~label,
.checkbox input[type=checkbox].disabled~label,
.checkbox input[type=radio][disabled]~label,
.checkbox input[type=radio].disabled~label{
    cursor: default;
}
.checkbox input[type=checkbox][disabled]~label:before,
.checkbox input[type=checkbox][disabled]~label:after,
.checkbox input[type=checkbox].disabled~label:before,
.checkbox input[type=checkbox].disabled~label:after,
.checkbox input[type=radio][disabled]~label:before,
.checkbox input[type=radio][disabled]~label:after,
.checkbox input[type=radio].disabled~label:before,
.checkbox input[type=radio].disabled~label:after{
    cursor: default;
    opacity: .6;
}
.checkbox input[type=checkbox]:checked~label:before,
.checkbox input[type=checkbox]:checked~label:after,
.checkbox input[type=radio]:checked~label:before,
.checkbox input[type=radio]:checked~label:after{
    color: var(--color-rosa1);
}
.checkbox input[type=checkbox]:checked~label:after{
    content: "check_box";
}
.checkbox label:after{
    content: "check_box_outline_blank";
}
.radio{
    position: relative;
    min-height: 24px;
    padding-left: 27px;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.radio label{
    margin-bottom: 0;
}
.radio label:before,
.radio label:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    font-size: 24px;
    line-height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
.radio input[type=checkbox],
.radio input[type=radio]{
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
    z-index: -1;
    opacity: 0 ;
}
.radio input[type=checkbox][disabled]~label,
.radio input[type=checkbox].disabled~label,
.radio input[type=radio][disabled]~label,
.radio input[type=radio].disabled~label{
    cursor: default;
}
.radio input[type=checkbox][disabled]~label:before,
.radio input[type=checkbox][disabled]~label:after,
.radio input[type=checkbox].disabled~label:before,
.radio input[type=checkbox].disabled~label:after,
.radio input[type=radio][disabled]~label:before,
.radio input[type=radio][disabled]~label:after,
.radio input[type=radio].disabled~label:before,
.radio input[type=radio].disabled~label:after{
    cursor: default;
    opacity: .6;
}
.radio input[type=checkbox]:checked~label:before,
.radio input[type=checkbox]:checked~label:after,
.radio input[type=radio]:checked~label:before,
.radio input[type=radio]:checked~label:after{
    color: var(--color-rosa1);
}
.radio input[type=radio]:checked~label:after{
    content: "radio_button_checked";
}
.radio label:after{
    content: "radio_button_unchecked";
}
ul,
ol{
    padding: 0;
    text-rendering: optimizeLegibility;
}
ol ol{
    list-style: lower-alpha;
}
ol{
    list-style: decimal;
}
ul.square{
    list-style: square outside;
}
ul.disc{
    list-style: disc outside;
}
ol.alpha{
    list-style: lower-alpha outside;
}
.no-bullets{
    list-style: none outside;
    margin-bottom: 0;
    margin-left: 0;
}
ol,
ul,
dl{
    margin: 0 0 15px 15px;
}
hr{
    border: 0;
    clear: both;
    height: 0;
    margin: 7.5px auto;
}
.hr-divider{
    border-top: 2px solid #e5e5e5;
    margin-top: 0;
    margin-bottom: 0;
}
.hr-rev{
    margin-left: -30px;
    margin-right: -30px;
}
@media screen and (max-width: 769px){
    .hr-rev{
            margin-left: -16px;
            margin-right: -16px;

    }
}
.hr--xs{
    margin-top: 1.5px;
    margin-bottom: 1.5px;
}
.hr--sm{
    margin-top: 3.5px;
    margin-bottom: 3.5px;
}
.hr--lg{
    margin-top: 11px;
    margin-bottom: 11px;
}
button{
    cursor: pointer;
    background: none;
    border: none;
    display: inline-block;
    padding: 0;
}
.btn{
    
    border-radius: 17px;
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
    color: #515151;
}
.btn:focus{
    outline: 0;
}
/*.btn:not(.disabled):not([disabled]):hover,
.btn:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa2);
    -ms-box-shadow: 0 0 0 .1rem var(--color-rosa2);
    -o-box-shadow: 0 0 0 .1rem var(--color-rosa2);
    box-shadow: 0 0 0 .1rem var(--color-rosa2);
}*/
/*.btn:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: var(--color-rosa2);
    border-color: var(--color-rosa2);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}*/
.btn--primary{
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa3);
    color: #fff;
}
.btn__add-to-cart-text{
    font-size:17px;
}
.btn--primary:not(.disabled):not([disabled]):hover,
.btn--primary:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    opacity: .95;
}
.btn--primary:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn-outline-primary{
    background-color: transparent;
    border: 2px solid var(--color-rosa1);
    color: var(--color-rosa3);
}


.btn-outline-primary:not(.disabled):not([disabled]):hover,
.btn-outline-primary:not(.disabled):not([disabled]):focus{
      background-color: transparent;
    border: 2px solid var(--color-rosa2);
    color: var(--color-rosa3);
    box-shadow: none;
}
.btn-outline-primary:not(.disabled):not([disabled]):active{
      background-color: transparent;
    border: 2px solid var(--color-rosa3);
    color: var(--color-rosa3);
    box-shadow: none;

}
.btn-reveal-primary:not(.disabled):not([disabled]):hover,
.btn-reveal-primary:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
.btn-reveal-primary:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn--square{
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 58px;
    width: 58px;
    line-height: 54px;
    font-size: 24px;
}
.btn-square-small{
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 38px;
    width: 38px;
    line-height: 34px;
    font-size: 18px;
}
.btn-square-xsmall{
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 30px;
    width: 30px;
    line-height: 26px;
    font-size: 12px;
}
.btn--small{
    padding: 6px 10px;
}
.btn--xsmall{
    padding: 4px 8px;
    font-size: 12px;
}
.btn--full{
    width: 100%;
}
.btn--banner{
    padding-left: 30px;
    padding-right: 30px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    display: block;
    width: 100%;
}
@media screen and (max-width: 769px){
    .btn--banner{
            padding-left: 16px;
            padding-right: 16px;

    }
}
.tienda-challenge__button{
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
}
.tienda-challenge__button:not(.disabled):not([disabled]):hover,
.tienda-challenge__button:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
.tienda-challenge__button:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-facebook:hover:not(.disabled):not([disabled]):hover,
.btn.btn-facebook:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #30497c;
    border-color: #2d4373;
    -ms-box-shadow: 0 0 0 .2rem #718dc8;
    -o-box-shadow: 0 0 0 .2rem #718dc8;
    box-shadow: 0 0 0 .2rem #718dc8;
}
.btn.btn-facebook:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #293e6a;
    border-color: #263961;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-twitter:hover:not(.disabled):not([disabled]):hover,
.btn.btn-twitter:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #0d8ddc;
    border-color: #0c85d0;
    -ms-box-shadow: 0 0 0 .2rem #0967a0;
    -o-box-shadow: 0 0 0 .2rem #0967a0;
    box-shadow: 0 0 0 .2rem #0967a0;
}
.btn.btn-twitter:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #0b7ec4;
    border-color: #0b76b8;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-pinterest:hover:not(.disabled):not([disabled]):hover,
.btn.btn-pinterest:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #980617;
    border-color: #8c0615;
    -ms-box-shadow: 0 0 0 .2rem #f6354a;
    -o-box-shadow: 0 0 0 .2rem #f6354a;
    box-shadow: 0 0 0 .2rem #f6354a;
}
.btn.btn-pinterest:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #800513;
    border-color: #740511;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-whatsapp:hover:not(.disabled):not([disabled]):hover,
.btn.btn-whatsapp:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #1fb256;
    border-color: #1da851;
    -ms-box-shadow: 0 0 0 .2rem #77e7a1;
    -o-box-shadow: 0 0 0 .2rem #77e7a1;
    box-shadow: 0 0 0 .2rem #77e7a1;
}
.btn.btn-whatsapp:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #1b9d4c;
    border-color: #1a9247;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-linkedin:hover:not(.disabled):not([disabled]):hover,
.btn.btn-linkedin:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #0b5d85;
    border-color: #0a5579;
    -ms-box-shadow: 0 0 0 .2rem #2eb0ee;
    -o-box-shadow: 0 0 0 .2rem #2eb0ee;
    box-shadow: 0 0 0 .2rem #2eb0ee;
}
.btn.btn-linkedin:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #094d6d;
    border-color: #084461;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-reddit:hover:not(.disabled):not([disabled]):hover,
.btn.btn-reddit:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #d93b00;
    border-color: #cc3700;
    -ms-box-shadow: 0 0 0 .2rem #ff8f66;
    -o-box-shadow: 0 0 0 .2rem #ff8f66;
    box-shadow: 0 0 0 .2rem #ff8f66;
}
.btn.btn-reddit:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #bf3400;
    border-color: #b33000;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-messenger:hover:not(.disabled):not([disabled]):hover,
.btn.btn-messenger:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #0066d9;
    border-color: #0060cc;
    -ms-box-shadow: 0 0 0 .2rem #66aeff;
    -o-box-shadow: 0 0 0 .2rem #66aeff;
    box-shadow: 0 0 0 .2rem #66aeff;
}
.btn.btn-messenger:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #005abf;
    border-color: #0054b3;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn.btn-email:hover:not(.disabled):not([disabled]):hover,
.btn.btn-email:hover:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    opacity: .95;
}
.btn.btn-email:hover:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn-top{
    background-color: #fff;
    border-color: #fff;
    color: #515151;
    position: fixed;
    z-index: 2;
    bottom: 30px;
    opacity: 0 ;
    transition: opacity .6s ease, visibility .6s ease, bottom .6s ease;
}
.btn-top:not(.disabled):not([disabled]):hover,
.btn-top:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: #ececec;
    border-color: #e6e6e6;
    -ms-box-shadow: 0 0 0 .2rem #cccccc;
    -o-box-shadow: 0 0 0 .2rem #cccccc;
    box-shadow: 0 0 0 .2rem #ccc;
}
.btn-top:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: #dfdfdf;
    border-color: #d9d9d9;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
@media screen and (max-width: 769px){
    .btn-top{
            bottom: 16px;
            padding: 0;
            letter-spacing: 0;
            border-radius: 17px;
            height: 38px;
            width: 38px;
            line-height: 34px;
            font-size: 18px;

    }
}
.btn-top.btn-top-visible{
    opacity: 1 ;
    visibility: visible ;
}
.scroll-sticky_addtocart .btn-top.btn-top-visible{
    bottom: 104px;
}
@media screen and (max-width: 769px){
    .scroll-sticky_addtocart .btn-top.btn-top-visible{
            bottom: 70px;

    }
}
.btn-top.btn-top-left{
    left: 30px;
}
@media screen and (max-width: 769px){
    .btn-top.btn-top-left{
            left: 16px;

    }
}
.btn-top.btn-top-right{
    right: 30px;
}
@media screen and (max-width: 769px){
    .btn-top.btn-top-right{
            right: 16px;

    }
}
.btn-top.btn-top-center{
    left: 50%;
    margin-left: -29px;
}
@media screen and (max-width: 769px){
    .btn-top.btn-top-center{
            margin-left: -19px;

    }
}
.btn--loading{
    opacity: .6;
}
.btn--loading .btn__text{
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}
.btn--loading:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "cached";
    animation: spin 1s infinite cubic-bezier(0.35, 0, 0.25, 1);
}
.view-all-box{
    text-align: center;
    margin-top: 30px;
}
@media screen and (max-width: 769px){
    .view-all-box{
            margin-top: 16px;

    }
}
.variant-unavailable .tienda-payment-button,
.variant-soldout .tienda-payment-button{
    display: none;
}
.tienda-payment-button>div>div>div{
    margin-top: 7.5px;
    display: flex;
    flex-wrap: wrap;
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.tienda-payment-button .tienda-payment-button__button{
    -moz-flex: 1;
    flex: 1;
    min-height: 38px ;
    border-radius: 17px ;
    transition: all .3s ease;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--unbranded{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    background-color: transparent;
    border-color: var(--color-rosa1);
    color: var(--color-rosa1);
    text-transform: uppercase;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--unbranded:focus{
    outline: 0;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--unbranded:not(.disabled):not([disabled]):hover,
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--unbranded:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    opacity: .92;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--unbranded:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--branded .tienda-cleanslate>div[role=button]{
    border-radius: 17px ;
    padding: 6px 10px ;
    min-height: 38px ;
    max-height: 38px ;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--branded .tienda-cleanslate>div[role=button][aria-disabled=true]{
    opacity: .6 ;
}
.tienda-payment-button .tienda-payment-button__button.tienda-payment-button__button--branded .tienda-cleanslate>div[role=button] span[aria-hidden=true]{
    font-family: Abel, sans-serif ;
    font-weight: 400 ;
    font-style: normal ;
    letter-spacing: 0px ;
    text-transform: uppercase ;
}
.tienda-payment-button .tienda-payment-button__more-options{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 6px 10px;
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
    color: #515151;
    text-decoration: none ;
    margin-top: 7px;
    width: 100%;
    display: none ;
}
--color-rosa2
.tienda-payment-button .tienda-payment-button__more-options:focus{
    outline: 0;
}
.tienda-payment-button .tienda-payment-button__more-options:not(.disabled):not([disabled]):hover,
.tienda-payment-button .tienda-payment-button__more-options:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa2);
    -ms-box-shadow: 0 0 0 .2rem #ac86ff;
    -o-box-shadow: 0 0 0 .2rem #ac86ff;
    box-shadow: 0 0 0 .2rem #ac86ff;
}
.tienda-payment-button .tienda-payment-button__more-options:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.tienda-payment-button .tienda-payment-button__more-options:before{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "credit_card";
    margin-right: 3px;
}
.tienda-payment-button .tienda-payment-button__button--branded .tienda-cleanslate iframe{
    max-height: 38px ;
}
.tienda-payment-button .zoid-outlet>iframe.zoid-component-frame{
    z-index: inherit ;
}
.tienda-payment-button .tienda-payment-button__button--hidden{
    display: none ;
}
.additional_checkout_buttons .dynamic-checkout__content:empty{
    display: none;
}
@media screen and (max-width: 1025.1px){
    .additional_checkout_buttons .dynamic-checkout__content{
            padding-top: 0 ;

    }
}
.additional_checkout_buttons div[data-tienda-buttoncontainer=true],
.additional_checkout_buttons ul[data-tienda-buttoncontainer=true]{
    margin: 0 -3.5px ;
    flex-direction: row ;
}
.additional_checkout_buttons div[data-testid=grid-cell],
.additional_checkout_buttons li[data-testid=grid-cell]{
    -moz-flex: 1 ;
    flex: 1 ;
    margin: 7px 3.5px 0 ;
    height: initial ;
}
.additional_checkout_buttons div[data-testid=grid-cell]>div[role=button],
.additional_checkout_buttons li[data-testid=grid-cell]>div[role=button]{
    border-radius: 17px ;
    min-height: 38px ;
    height: 100% ;
}
.badge{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: calc(100% - 16px);
    background-color: #202020;
    color: #fff;
    border-radius: 17px;
    padding: 4px 5px;
    white-space: nowrap;
    vertical-align: baseline;
    line-height: 1;
    display: inline-block;
    position: relative;
}
.badge>.tooltip-wrapper{
    position: initial;
}
.dropdown-wrapper{
    display: inline-block;
    line-height: 1;
    white-space: normal;
    position: relative;
}
.dropdown-open>.dropdown-toggle{
    opacity: .6;
}
.dropdown-menu{
  left: 0;
  background-color: #fff;
  border: 2px solid #e5e5e5;
  line-height: 1.5;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  padding: 8px 0;
  position: absolute;
  width: max-content;
  max-width: 250px;
  min-width: 175px;
  z-index: 1001; 
  text-align: left;
  border-radius: 8px;
}
#HeaderAccountMenu{
    left: -145px ;
}
.dropdown-menu.dropdown-outside{
    left: auto;
    right: 0;
}
.dropdown-menu.dropdown-menu-up{
    left: 0;
    bottom: 100%;
}
.dropdown-menu.dropdown-menu-body{
    padding: 16px;
}
.dropdown-menu.dropdown-open{
    visibility: visible;
    animation-duration: .3s;
    animation-name: fadeInDown;
    animation-fill-mode: both;
}
.dropdown-menu.is-closing{
    display: block;
    animation-duration: .3s;
    animation-name: fadeOutUp;
    animation-fill-mode: both;
}
.dropdown-menu-parent.dropdown-list-up{
    bottom: 38px;
}
.dropdown-menu-grandchild{
    left: 100%;
    top: -8px;
    margin-left: 4px;
    z-index: 1002;
}
.dropdown-menu-grandchild.dropdown-outside{
    left: -100%;
    margin-left: -4px;
}
.dropdown-menu-up .dropdown-menu-grandchild{
    top: auto;
    bottom: -8px;
}
.dropdown-menu-grandchild2{
    left: 100%;
    top: -8px;
    margin-left: 4px;
    z-index: 1003;
}
.dropdown-menu-grandchild2.dropdown-outside{
    left: -100%;
    margin-left: -4px;
}
.dropdown-menu-up .dropdown-menu-grandchild2{
    top: auto;
    bottom: -8px;
}
.dropdown-item{
    position: relative;
    list-style: none;
    padding: 0 8px;
}
.dropdown-item.dropdown-item-has-grandchild:after{
    content: "";
    width: 4px;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    right: -4px;
}
.dropdown-outside .dropdown-item.dropdown-item-has-grandchild:after{
    right: auto;
    left: -4px;
}
.dropdown-link{
    display: block;
    width: 100%;
    padding: 8px;
    background-color: transparent;
    text-align: left;
    border-radius: 17px;
    transition: all .3s ease;
}
.dropdown-link:hover,
.dropdown-link:focus,
.dropdown-open>.dropdown-link{
    background-color: #f2f2f2;
    opacity: 1;
    border-radius:10px ;
}
.dropdown-link.dropdown-link-active{
    color: var(--color-rosa1);
}
.dropdown-menu-grandchild .dropdown-link{
    white-space: normal;
}
.dropdown-link.dropdown-toggle:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "chevron_right";
}
.card{
    background-color: #fff;
    border-radius: 17px;
    display: flex;
    -moz-flex-direction: column;
    flex-direction: column;
    width: 100%;
}
.card:empty{
    display: none;
}
.section-default .card{
    background-color: #fff;
}
.card .card{
    background-color: var(--color-secundario);
}
.card+.modal-footer{
    border-top: 0;
}
.card-full{
    border-radius: 0;
    border-right: 0;
    border-left: 0;
}
@media screen and (max-width: 769px){
    .card-group>.card{
            border-radius: 0;

    }
    .card-group>.card:first-of-type{
            border-top-left-radius: 17px;
            border-top-right-radius: 17px;

    }
    .card-group>.card:last-of-type{
            border-bottom-left-radius: 17px;
            border-bottom-right-radius: 17px;

    }
}
.card-group>.card+.card{
    margin-top: 15px;
}
@media screen and (max-width: 769px){
    .card-group>.card+.card{
            border-top: 2px solid #e5e5e5;
            margin-top: 0;

    }
    #CartDrawer .card-group>.card+.card{
            border-top: inherit;
            margin-top: 15px;

    }
}
.card-header{
    border-bottom: 2px solid #e5e5e5;
    padding: 16px;
    border-radius: 0;
    width: 100%;
    text-align: left;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.card-header:empty{
    display: none;
}
.card-header:not(.active) .card-header-icon{
    color: inherit;
    flex-shrink: 0;
}
.card-image,
.card-image img{
    border-bottom-left-radius: 0 ;
    border-bottom-right-radius: 0 ;
}
.card-body{
    padding: 16px;
    display: flex;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: center;
    justify-content: center;
    -moz-flex: auto;
    flex: auto;
}
.card-body.rte{
    margin-bottom: 0;
}
@media screen and (max-width: 769px){
    .card-body{
            padding: 16px;

    }
}
.card-body> :last-child{
    margin-bottom: 0;
}
.card-body-xs{
    padding: 8px;
}
.card-body-lg{
    padding: 30px;
}
.card-footer{
    border-top: 2px solid #e5e5e5;
    padding: 16px;
}
.card-footer> :last-child{
    margin-bottom: 0;
}
.card-footer:empty{
    display: none;
}
.card-footer-xs{
    padding: 8px;
}
.progress{
    position: relative;
    height: 10px;
    background-color: #fff;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.progress.progress-rounded{
    border-radius: 17px;
}
.progress-bar{
    background-color: var(--color-rosa1);
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.4) 25%, transparent 0, transparent 50%, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0.4) 75%, transparent 0, transparent);
    background-size: 1rem 1rem;
    transition: all .3s ease;
    animation: progress-bar-stripes 1s linear infinite;
}
.progress-rounded .progress-bar{
    border-radius: 17px;
}
.tab-header{
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.tab-header:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "keyboard_arrow_down";
    margin-left: 7px;
    flex-shrink: 0;
    font-size: 20px;
}
.tab-header:not(.active){
    border-bottom-color: transparent ;
}
.tab-header:not(.active)+.tab-body{
    display: none;
}
.tab-header> :not(:first-child){
    margin-left: 7px;
}
.tab-header.active:after{
    content: "keyboard_arrow_up";
}
.tab-header-title{
    margin-right: auto;
}
.tab-content{
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-fill-mode: both;
}
.tab-content> :last-child{
    margin-bottom: 0;
}
.table-wrap{
    max-width: 100%;
    overflow: auto;
    border-radius: 17px;
    -webkit-overflow-scrolling: touch;
}
table{
    width: 100%;
    border-spacing: 0;
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    table-layout: auto;
    overflow: hidden;
    text-align: center;
}
.section-default table{
    background-color: #fff;
}
table a{
    color: var(--color-rosa1);
    text-decoration: underline;
}
table thead tr:last-child th,
table thead tr:last-child td{
    border-bottom: 2px solid #e5e5e5;
}
table tfoot tr:first-child th,
table tfoot tr:first-child td{
    border-top: 2px solid #e5e5e5;
}
table tbody tr{
    transition: all .3s ease;
}
table tbody tr:nth-of-type(odd){
    background-color: #fff;
}
table tbody tr:hover{
    background-color: #fff;
}
table tr:last-child th,
table tr:last-child td{
    border-bottom: 0;
}
table th,
table td{
    padding: 16px;
    border-right: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
}
table th:last-child,
table td:last-child{
    border-right: 0;
}
table th> :last-child,
table td> :last-child{
    margin-bottom: 0;
}
table td{
    padding: 16px;
}
table th{
    padding: 8px 16px;
    background-color: #202020;
    color: #fff;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
}
@media screen and (max-width: 769px){
    table th{
            font-size: 12px;

    }
}
.order-notes{
    margin-top: 7px;
}
.media-wrapper{
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
}
.media-wrapper iframe{
    height: 100%;
}
.media-wrapper.video-wrapper{
    padding-bottom: 56.25%;
    height: 0;
    height: auto;
}
.section-default .media-wrapper{
    background-color: #fff;
}
.wrapper-full .media-wrapper{
    border-radius: 0;
}
.media{
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.wrapper-full .media{
    border-radius: 0;
}
.media-content{
    position: relative;
    width: 100%;
    z-index: 1;
}
.product-single__media-wrapper{
    position: relative;
}
.slick-initialized .product-single__media-wrapper{
    display: block ;
}
.product-single__media-wrapper iframe,
.product-single__media-wrapper model-viewer,
.product-single__media-wrapper .tienda-model-viewer-ui,
.product-single__media-wrapper img,
.product-single__media-wrapper video,
.product-single__media-wrapper .plyr,
.product-single__media-wrapper .media-item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
}
.product-single__media-wrapper iframe,
.product-single__media-wrapper .media-video,
.product-single__media-wrapper model-viewer,
.product-single__media-wrapper .tienda-model-viewer-ui,
.product-single__media-wrapper .media-item,
.product-single__media-wrapper .plyr,
.product-single__media-wrapper .plyr__video-wrapper{
    height: 100%;
}
img{
    border: 0 none;
    border-radius: 17px;
}
img,
iframe{
    max-width: 100%;
}
svg:not(:root){
    overflow: hidden;
}
.image-link{
    display: block;
}
.imgset{
    object-fit: contain;
    vertical-align: middle;
}
.bgset{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.image-gray{
    opacity: .6;
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.image-gray:hover{
    opacity: 1;
    filter: none;
}
.image-sm{
    height: 18px ;
}
.image-md{
    height: 24px ;
}
.image-lg{
    height: 36px ;
}
.image-xl{
    height: 48px ;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__controls-area{
    background: white;
    border-color: #2020200d;
}
.tienda-model-viewer-ui model-viewer{
    color: var(--color-rosa1);
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster{
    border: 2px solid #e5e5e5;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 58px;
    width: 58px;
    line-height: 54px;
    font-size: 24px;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
    transition: all .3s ease;
    pointer-events: none;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster:focus{
    outline: 0;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster:not(.disabled):not([disabled]):hover,
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    box-shadow: 0 0 0 0.2rem var(--color-rosa1);
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster .tienda-model-viewer-ui__poster-control-icon{
    width: 58px;
    height: 58px;
}
.product-single__media:hover .tienda-model-viewer-ui .tienda-model-viewer-ui__button--poster{
    transform: translate(-50%, -50%) scale(1.3);
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__controls-area{
    background-color: transparent;
    border: none;
    bottom: 16px;
    right: 16px;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control{
    width: initial;
    height: initial;
    color: #515151;
    font-size: 24px;
    background-color: transparent ;
    line-height: 1;
    margin-top: 3px;
    transition: all .3s ease;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control:focus{
    outline: auto;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control svg{
    display: none ;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control:after{
    display: none;
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control.tienda-model-viewer-ui__button--zoom-in:before{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "zoom_in";
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control.tienda-model-viewer-ui__button--zoom-out:before{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "zoom_out";
}
.tienda-model-viewer-ui .tienda-model-viewer-ui__button--control.tienda-model-viewer-ui__button--fullscreen:before{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "fullscreen";
}
.tienda-model-viewer-ui.tienda-model-viewer-ui--fullscreen .tienda-model-viewer-ui__button--control.tienda-model-viewer-ui__button--fullscreen:before{
    content: "fullscreen_exit";
}
.product-single__view-in-space:not(.product-single__view-in-space--multi){
    visibility: hidden;
}
@media screen and (min-width: 769.1px){
    .product-single__view-in-space[data-tienda-xr-hidden]{
            display: none;

    }
}
.product-single__view-in-space .icon{
    vertical-align: middle;
}
.product-single__view-in-space--disabled{
    display: none;
}
.product-single__media-group.slick-initialized~.product-single__view-in-space:not([data-tienda-xr-hidden]),
.product-single__media-group--single-xr~.product-single__view-in-space:not([data-tienda-xr-hidden]){
    visibility: visible;
}
.product-single__media-group.slick-initialized .product-single__view-in-space--multi,
.product-single__media-group--single-xr .product-single__view-in-space--multi{
    display: none;
}
.plyr.plyr--full-ui.plyr--video{
    cursor: pointer;
}
.plyr.plyr--full-ui.plyr--video .plyr__controls{
    background-color: #202020;
    color: #fff;
    border: 0;
    margin: 0;
    opacity: .8;
}
.plyr.plyr--full-ui.plyr--video .plyr__control{
    transition: all .3s ease;
}
.plyr.plyr--full-ui.plyr--video .plyr__volume,
.plyr.plyr--full-ui.plyr--video .plyr__tooltip{
    background-color: #202020;
    border-radius: 17px;
    color: currentColor;
}
.plyr.plyr--full-ui.plyr--video .plyr__volume:before,
.plyr.plyr--full-ui.plyr--video .plyr__tooltip:before{
    border-top-color: #202020;
}
.plyr.plyr--full-ui.plyr--video input[type=range]{
    background-color: transparent;
    color: currentColor;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]:focus::-webkit-slider-runnable-track{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-ms-fill-lower{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-ms-fill-upper{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]:focus::-ms-fill-lower{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]:focus::-ms-fill-upper{
    background-image: linear-gradient(to right, currentColor var(--value, 0), rgba(255, 255, 255, 0.6) var(--value, 0));
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-thumb{
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-moz-range-thumb{
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.plyr.plyr--full-ui.plyr--video input[type=range]::-ms-thumb{
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.plyr.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{
    box-shadow: 0 0 0 3px #ffffff4d;
}
.plyr.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{
    box-shadow: 0 0 0 3px #ffffff4d;
}
.plyr.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{
    box-shadow: 0 0 0 3px #ffffff4d;
}
.plyr.plyr--full-ui.plyr--video .plyr__progress__buffer{
    display: none;
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid{
    border: 2px solid #e5e5e5;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 58px;
    width: 58px;
    line-height: 54px;
    font-size: 24px;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
    pointer-events: none;
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid:focus{
    outline: 0;
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid:not(.disabled):not([disabled]):hover,
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    box-shadow: 0 0 0 0.2rem var(--color-rosa1);
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid svg{
    width: 58px;
    height: 58px;
}
.product-single__media:hover .plyr.plyr--full-ui.plyr--video .plyr__control.plyr__control--overlaid{
    transform: translate(-50%, -50%) scale(1.3);
}
.rte{
    margin-bottom: 15px;
}
.rte> :last-child{
    margin-bottom: 0;
}
.rte ul ul,
.rte li{
    margin-bottom: 0;
}
.rte img{
    height: auto;
}
.rte a{
    color: var(--color-rosa1);
    word-break: break-word;
}
.rte .table-wrap{
    margin-bottom: 15px;
}
.rte blockquote{
    padding: 30px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
}
.rte blockquote:before,
.rte blockquote:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    content: "format_quote";
    color: var(--color-rosa1);
    display: block;
}
.rte blockquote:before{
    text-align: left;
    margin-left: -16px;
}
.rte blockquote:after{
    text-align: right;
    margin-right: -16px;
}
.rte blockquote p:last-child{
    margin-bottom: 0;
}
.text-center .rte ul,
.text-center .rte ol,
.text-center.rte ul,
.text-center.rte ol{
    list-style-position: inside;
    margin-left: 0;
}
blockquote{
    margin: 0;
    display: block;
    width: 100%;
}
cite{
    display: block;
    font-size: 12px;
}
cite:before{
    content: "horizontal_rule";
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
}
.pagination a,
.pagination .page.current{
    border: 2px solid #e5e5e5;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 0;
    letter-spacing: 0;
    border-radius: 17px;
    height: 38px;
    width: 38px;
    line-height: 34px;
    font-size: 18px;
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
    color: #515151;
}
.pagination a:focus,
.pagination .page.current:focus{
    outline: 0;
}
.pagination a:not(.disabled):not([disabled]):hover,
.pagination a:not(.disabled):not([disabled]):focus,
.pagination .page.current:not(.disabled):not([disabled]):hover,
.pagination .page.current:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa2);
    -ms-box-shadow: 0 0 0 .2rem #ac86ff;
    -o-box-shadow: 0 0 0 .2rem #ac86ff;
    box-shadow: 0 0 0 .2rem #ac86ff;
}
.pagination a:not(.disabled):not([disabled]):active,
.pagination .page.current:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.pagination .page.current{
    transition: opacity .3s ease, background .3s ease, border .3s ease, box-shadow .3s ease;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
}
.pagination .page.current:hover{
    opacity: .6;
}
.pagination .page.current:active,
.pagination .page.current:focus{
    opacity: 1;
}
.pagination .page.current:not(.disabled):not([disabled]):hover,
.pagination .page.current:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    box-shadow: 0 0 0 0.2rem var(--color-rosa1);
}
.pagination .page.current:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.select-box{
    padding: 15px;
    border: 2px dashed var(--color-rosa1);
    width: 100%;
    border-radius: 17px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    -webkit-touch-callout: all;
    -o-user-select: all;
    user-select: all;
}
.material-icons-outlined{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
}
.icon-image{
    line-height: 1;
}
.icon-svg{
    width: 1em;
    vertical-align: middle;
    margin-top: -.2em;
}
.icon-middle{
    vertical-align: middle;
}
.icon-width{
    text-align: center;
    width: 1.25em;
    flex-shrink: 0;
}
.icon-spin:after{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "cached";
    animation: spin 1s infinite cubic-bezier(0.35, 0, 0.25, 1);
}
.icon-sm{
    font-size: 18px;
}
.icon-md{
    font-size: 24px;
}
.icon-lg{
    font-size: 36px;
}
.icon-xl{
    font-size: 48px;
}
.qty-container{
    display: block;
    position: relative;
    max-width: 114px;
    width: 100%;
    min-width: 114px;
}
.product-single__form .qty-container{
    max-width: 100%;
}
.is-loading .qty-container{
    opacity: .6;
    transition: none;
}
.qty-input{
    width: 100%;
}
.qty-container .qty-input{
    text-align: center;
    -moz-appearance: textfield;
}
.qty-container .qty-input.cart__product-qty{
    background-color: transparent;
    border-color: transparent;
}
.qty-container .qty-input::-webkit-outer-spin-button,
.qty-container .qty-input::-webkit-inner-spin-button{
    display: none;
    -webkit-appearance: none;
    margin: 0;
}
.qty-adjust{
    position: absolute;
    display: none;
    top: 0;
    z-index: 1;
    overflow: hidden;
    -o-user-select: none;
    user-select: none;
    backface-visibility: hidden;
}
.qty-container .qty-adjust{
    display: inherit;
}
.qty-minus{
    left: 0;
}
.qty-plus{
    right: 0;
}
.qty-error{
    margin-top: 7px;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}
.overlay{
    color: #fff;
}
.overlay:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}
.overlay h1,
.overlay .h1,
.overlay h2,
.overlay .h2,
.overlay h3,
.overlay .h3,
.overlay h4,
.overlay .h4,
.overlay h5,
.overlay .h5,
.overlay h6,
.overlay .h6,
.overlay p,
.overlay .text-link{
    color: #fff;
}
.overlay-backdrop{
    background-color: #202020a6;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999999996;
    transition: all .6s ease;
}
.overlay-content{
    background-color: #fff;
    border-color: var(--color-rosa3);
    color: #202020;
}
.overlay-content hr{
    border-color: var(--color-rosa3);
}
.overlay-content a,
.overlay-content button{
    color: #202020;
}
.overlay-content .text-link{
    color: #2dffb3;
}
.overlay-content .text-muted{
    color: #a5a5a5;
}
.overlay-content select.select-link:hover{
    color: #2dffb3 ;
}
.overlay-content .btn,
.overlay-content textarea,
.overlay-content select,
.overlay-content input{
    background-color: #fff;
    border-color: var(--color-rosa3);
    color:var(--color-rosa3);
}
.overlay-content .btn:not(.disabled):not([disabled]):hover,
.overlay-content .btn:not(.disabled):not([disabled]):focus,
.overlay-content textarea:not(.disabled):not([disabled]):hover,
.overlay-content textarea:not(.disabled):not([disabled]):focus,
.overlay-content select:not(.disabled):not([disabled]):hover,
.overlay-content select:not(.disabled):not([disabled]):focus,
.overlay-content input:not(.disabled):not([disabled]):hover,
.overlay-content input:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color:var(--color-rosa3);
    background-color: #fff;
    border-color: var(--color-rosa1);
    -ms-box-shadow: 0 0 0 .1rem var(--color-rosa1);
    -o-box-shadow: 0 0 0 .1rem var(--color-rosa1);
}
.overlay-content .btn:not(.disabled):not([disabled]):active,
.overlay-content textarea:not(.disabled):not([disabled]):active,
.overlay-content select:not(.disabled):not([disabled]):active,
.overlay-content input:not(.disabled):not([disabled]):active{
     color:var(--color-rosa3);
     background-color: #fff;
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.overlay-content .btn::-webkit-input-placeholder,
.overlay-content textarea::-webkit-input-placeholder,
.overlay-content select::-webkit-input-placeholder,
.overlay-content input::-webkit-input-placeholder{
    color: #202020;
    opacity: .7;
}
.overlay-content .btn:-moz-placeholder,
.overlay-content textarea:-moz-placeholder,
.overlay-content select:-moz-placeholder,
.overlay-content input:-moz-placeholder{
    color: #202020;
    opacity: .7;
}
.overlay-content .btn::-moz-placeholder,
.overlay-content textarea::-moz-placeholder,
.overlay-content select::-moz-placeholder,
.overlay-content input::-moz-placeholder{
    color: #202020;
    opacity: .7;
}
.overlay-content .btn:-ms-input-placeholder,
.overlay-content textarea:-ms-input-placeholder,
.overlay-content select:-ms-input-placeholder,
.overlay-content input:-ms-input-placeholder{
    color: #202020;
    opacity: .7;
}
.overlay-content .btn::-ms-input-placeholder,
.overlay-content textarea::-ms-input-placeholder,
.overlay-content select::-ms-input-placeholder,
.overlay-content input::-ms-input-placeholder{
    color: #202020;
    opacity: .7;
}
.overlay-content .slick-arrow{
    background-color: #fff;
    border-color: #fff;
    color: #202020;
}
.overlay-content .slick-arrow:not(.disabled):not([disabled]):hover,
.overlay-content .slick-arrow:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #202020;
    background-color: #ececec;
    border-color: #e6e6e6;
    -ms-box-shadow: 0 0 0 .2rem #cccccc;
    -o-box-shadow: 0 0 0 .2rem #cccccc;
    box-shadow: 0 0 0 .2rem #ccc;
}
.overlay-content .slick-arrow:not(.disabled):not([disabled]):active{
    color: #202020;
    background-color: #dfdfdf;
    border-color: #d9d9d9;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.overlay-content .card{
    background-color: #f7f7f7;
}
.overlay-content .card .card{
    background-color: #fff;
}
.overlay-content .card .card-footer,
.overlay-content .card .card-header{
    border-color: var(--color-rosa3);
}
.overlay-content .tab-body{
    border-color: #2dffb3;
}
.overlay-content .progress{
    background-color: #f7f7f7;
}
.overlay-content .progress-bar{
    background-color: #2dffb3;
}
.overlay-content .bg-default{
    background-color: #f7f7f7;
}
.overlay-content .btn--primary{
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    color: #fff;
}
.overlay-content .btn--primary:not(.disabled):not([disabled]):hover,
.overlay-content .btn--primary:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa3);
    
}
.BtnBuscar:hover{
    box-shadow:none 
}
.BtnBuscar:focus{
    box-shadow:none 
}
.overlay-content .btn--primary:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.overlay-content .btn-outline-primary{
    background-color: transparent;
    border-color: var(--color-rosa1);
    color: var(--color-rosa1);
}
.overlay-content .btn-outline-primary:not(.disabled):not([disabled]):hover,
.overlay-content .btn-outline-primary:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    box-shadow: 0 0 0 0.2rem var(--color-rosa1);
}
.overlay-content .btn-outline-primary:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.overlay-content .badge,
.overlay-content .tooltip{
    background-color: #202020;
    color: #fff;
}
.overlay-content .tooltip:after{
    border-top-color: #202020;
}
.overlay-content .swatch label{
    background-color: #f7f7f7;
}
.overlay-content .swatch input:checked+.swatch-element{
    border-color: #202020;
}
.overlay-content .swatch-element{
    border-color: var(--color-rosa3);
}
.overlay-content h1,
.overlay-content .h1,
.overlay-content h2,
.overlay-content .h2,
.overlay-content h3,
.overlay-content .h3,
.overlay-content h4,
.overlay-content .h4,
.overlay-content h5,
.overlay-content .h5,
.overlay-content h6,
.overlay-content .h6{
    color: #202020;
}
.overlay-content .text-primary{
    color: var(--color-rosa3);
}
.overlay-content .text-secondary{
    color: #2dffb3;
}
.overlay-content .text-sale{
    color: red;
}
.overlay-content .form-success{
    color: var(--color-rosa1);
    border-color: var(--color-rosa1);
}
.overlay-content .errors{
    color: #2dffb3;
    border-color: #2dffb3;
}
.overlay-content .select-box{
    border-color: #2dffb3;
}
.overlay-content .checkbox input[type=checkbox]:checked~label:before,
.overlay-content .checkbox input[type=checkbox]:checked~label:after{
    color: var(--color-rosa1);
}
.overlay-content .radio input[type=radio]:checked~label:before,
.overlay-content .radio input[type=radio]:checked~label:after{
    color: var(--color-rosa1);
}
.overlay-content table{
    border-color: var(--color-rosa3);
}
.overlay-content table tbody tr:nth-of-type(odd){
    background-color: #f7f7f799;
}
.overlay-content table tbody tr:hover{
    background-color: #f7f7f7;
}
.overlay-content table th,
.overlay-content table td{
    border-color: var(--color-rosa3) ;
}
.overlay-content table th{
    background-color: #202020;
    color: #fff;
}
.overlay-content .media-wrapper{
    background-color: #f7f7f7;
}
.overlay-content .placeholder-svg{
    fill: #20202099;
    background-color: #f7f7f7;
}
.overlay-content select{
    background-image: url(images/icon-select-overlay.svg);
}
.modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000000005;
    width: 100vw;
    height: 100%;
    outline: 0;
    display: none;
    overflow: hidden;
    transition: all .3s ease;
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and (min-width: 769.1px){
    .modal{
            padding-top: 60px;
            padding-bottom: 60px;

    }
}
.section-full-width>.modal{
    padding-bottom: 0;
}
.section-full-width.section-no-title>.modal{
    padding-top: 0;
}
@media screen and (max-width: 769px){
    .modal{
            padding-bottom: 0;

    }
}
.modal.js-modal-open,
.modal.is-closing{
    display: block;
    overflow-y: auto;
}
@media screen and (min-width: 769.1px){
    .modal.js-modal-open{
            animation-duration: .6s;
            animation-name: fadeInDown;
            animation-fill-mode: both;

    }
}
@media screen and (max-width: 769px){
    .modal.js-modal-open{
            animation-duration: .6s;
            animation-name: fadeInUp;
            animation-fill-mode: both;

    }
}
@media screen and (min-width: 769.1px){
    .modal.is-closing{
            animation-duration: .6s;
            animation-name: fadeOutUp;
            animation-fill-mode: both;

    }
}
@media screen and (max-width: 769px){
    .modal.is-closing{
            animation-duration: .6s;
            animation-name: fadeOutDown;
            animation-fill-mode: both;

    }
}
.modal-dialog{
    min-height: 100%;
    transition: padding .3s ease, max-width .3s ease;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1180px;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
@media screen and (max-width: 769px){
    .modal-dialog{
            padding-left: 16px;
            padding-right: 16px;

    }
}
@media screen and (max-width: 769px){
    .modal-dialog{
            padding-left: 0;
            padding-right: 0;
            -moz-align-items: flex-end;
            -ms-align-items: flex-end;
            -o-align-items: flex-end;
            align-items: flex-end;

    }
}
.modal-content{
    pointer-events: auto;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 600px;
}
.modal-content:focus{
    outline: none;
}
@media screen and (max-width: 769px){
    .modal-content{
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            width: 100% ;

    }
}
.modal-small .modal-content{
    width: 400px;
}
.modal-large .modal-content{
    width: 800px;
}
.modal-xlarge .modal-content{
    width: 100%;
}
.modal-header{
    border-bottom: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
    padding: 16px;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.modal-title{
    margin-bottom: 0;
    margin-right: 7px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.modal-close{
    margin-left: auto;
    flex-shrink: 0;
}
.modal-body{
    padding: 16px;
}
.modal-footer{
    border-top: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
    padding: 16px;
}
.overlay-modal{
    z-index: 1000000004;
}
.overlay-modal.bgset:after{
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #20202066;
}
.modal.js-modal-open+.overlay-modal{
    display: block;
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.modal.is-closing+.overlay-modal{
    display: block;
    animation-duration: .6s;
    animation-name: fadeOut;
    animation-fill-mode: both;
}
.payment-icons li{
    line-height: 0;
}
.payment-icon{
    height: 18px;
    width: auto;
}
.custom-payment-icon{
    border-radius: 3px;
}
.placeholder-svg{
    border-radius: 17px;
    fill: #20202099;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    display: block;
}
.section-default .placeholder-svg{
    background-color: #fff;
}
.wrapper-full .placeholder-svg,
.hero .placeholder-svg{
    border-radius: 0;
}
.media-wrapper .placeholder-svg{
    height: 100%;
}
.review-badge>*{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.review-badge+.product-single__title{
    margin-top: 11px;
}
.product-single__title+.review-badge{
    margin-bottom: 11px;
}
.toasts{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999997;
    width: 100%;
    height: 100%;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    transition: all .3s ease;
}
.overlay-toasts{
    display: block;
    opacity: 0;
    visibility: hidden;
}
.toasts.visible+.overlay-toasts{
    opacity: 1;
    visibility: visible;
}
.toast{
    max-width: 420px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.toast-image{
    width: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}
.toast-image svg,
.toast-image img{
    display: block;
    width: 100%;
}
.toasts-group{
    overflow-y: auto;
}
.toasts-group>.toast+.toast{
    margin-top: 15px;
}

.slick-featured-collections{
    justify-content:center;
}

.grid {
    list-style: none;
    margin: 0 0 0 -30px;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 769px){
    .grid{
            margin-left: -16px;

    }
}
.grid.grid-full{
    margin-left: 0;
}
.grid.grid-small{
    margin-left: -16px;
}
.grid.grid-xsmall{
    margin-left: -8px;
}
.grid.grid-spacer{
    margin-bottom: -30px;
}
@media screen and (max-width: 769px){
    .grid.grid-spacer{
            margin-bottom: -16px;

    }
}
.grid.grid-spacer.grid-small{
    margin-bottom: -16px;
}
.grid.grid-spacer.grid-xsmall{
    margin-bottom: -8px;
}
.grid__item{
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    flex-basis: 0;
    flex-grow: 1;
}
@media screen and (max-width: 769px){
    .grid__item{
            padding-left: 16px;
            width: 100%;
            -moz-flex: 0 0 100%;
            flex: 0 0 100%;

    }
}
.grid-full>.grid__item{
    padding-left: 0 ;
}
.grid-small>.grid__item{
    padding-left: 10px;
}
.grid-xsmall>.grid__item{
    padding-left: 8px;
}
.grid-spacer>.grid__item{
    margin-bottom: 30px;
}
@media screen and (max-width: 769px){
    .grid-spacer>.grid__item{
            margin-bottom: 16px;

    }
}
.grid-spacer.grid-small>.grid__item{
    margin-bottom: 16px;
}
.grid-spacer.grid-xsmall>.grid__item{
    margin-bottom: 8px;
}
.grid__item[class*=push--]{
    position: relative;
}
.one-whole{
    width: 100%;
    -moz-flex: 0 0 100%;
    flex: 0 0 100%;
}
.one-fifth{
    width: 20%;
    -moz-flex: 0 0 20%;
    flex: 0 0 20%;
}
.two-fifths{
    width: 40%;
    -moz-flex: 0 0 40%;
    flex: 0 0 40%;
}
.three-fifths{
    width: 60%;
    -moz-flex: 0 0 60%;
    flex: 0 0 60%;
}
.four-fifths{
    width: 80%;
    -moz-flex: 0 0 80%;
    flex: 0 0 80%;
}
.one-twelfth{
    width: 8.333%;
    -moz-flex: 0 0 8.333%;
    flex: 0 0 8.333%;
}
.two-twelfths{
    width: 16.666%;
    -moz-flex: 0 0 16.666%;
    flex: 0 0 16.666%;
}
.three-twelfths{
    width: 25%;
    -moz-flex: 0 0 25%;
    flex: 0 0 25%;
}
.four-twelfths{
    width: 33.333%;
    -moz-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
}
.five-twelfths{
    width: 41.666%;
    -moz-flex: 0 0 41.666%;
    flex: 0 0 41.666%;
}
.six-twelfths{
    width: 50%;
    -moz-flex: 0 0 50%;
    flex: 0 0 50%;
}
.seven-twelfths{
    width: 58.333%;
    -moz-flex: 0 0 58.333%;
    flex: 0 0 58.333%;
}
.eight-twelfths{
    width: 66.666%;
    -moz-flex: 0 0 66.666%;
    flex: 0 0 66.666%;
}
.nine-twelfths{
    width: 75%;
    -moz-flex: 0 0 75%;
    flex: 0 0 75%;
}
.ten-twelfths{
    width: 83.333%;
    -moz-flex: 0 0 83.333%;
    flex: 0 0 83.333%;
}
.eleven-twelfths{
    width: 91.666%;
    -moz-flex: 0 0 91.666%;
    flex: 0 0 91.666%;
}
.push--one-fifth{
    left: 20%;
}
.push--two-fifths{
    left: 40%;
}
.push--three-fifths{
    left: 60%;
}
.push--four-fifths{
    left: 80%;
}
.push--one-twelfth{
    left: 8.333%;
}
.push--two-twelfths{
    left: 16.666%;
}
.push--three-twelfths{
    left: 25%;
}
.push--four-twelfths{
    left: 33.333%;
}
.push--five-twelfths{
    left: 41.666%;
}
.push--six-twelfths{
    left: 50%;
}
.push--seven-twelfths{
    left: 58.333%;
}
.push--eight-twelfths{
    left: 66.666%;
}
.push--nine-twelfths{
    left: 75%;
}
.push--ten-twelfths{
    left: 83.333%;
}
.push--eleven-twelfths{
    left: 91.666%;
}
.overflow-hidden{
    overflow: hidden ;
}
.align-top{
    -moz-align-items: flex-start ;
    -ms-align-items: flex-start ;
    -o-align-items: flex-start ;
    align-items: flex-start ;
}
.align-center{
    -moz-align-items: center ;
    -ms-align-items: center ;
    -o-align-items: center ;
    align-items: center ;
}
.align-bottom{
    -moz-align-items: flex-end ;
    -ms-align-items: flex-end ;
    -o-align-items: flex-end ;
    align-items: flex-end ;
}
.justify-start{
    -ms-justify-content: flex-start ;
    justify-content: flex-start ;
}
.justify-center{
    -ms-justify-content: center ;
    justify-content: center ;
}
.justify-end{
    -ms-justify-content: flex-end ;
    justify-content: flex-end ;
}
.flex-auto{
    width: auto;
    -moz-flex: 0 0 auto ;
    flex: 0 0 auto ;
}
.flex-fill{
    -moz-flex: 1 1 auto ;
    flex: 1 1 auto ;
}
.flex-wrap{
    flex-wrap: wrap ;
}
.flex-nowrap{
    flex-wrap: nowrap ;
}
@media only screen and (max-width: 769px){
    .small--one-whole{
            width: 100%;
            -moz-flex: 0 0 100%;
            flex: 0 0 100%;

    }
    .small--one-fifth{
            width: 20%;
            -moz-flex: 0 0 20%;
            flex: 0 0 20%;

    }
    .small--two-fifths{
            width: 40%;
            -moz-flex: 0 0 40%;
            flex: 0 0 40%;

    }
    .small--three-fifths{
            width: 60%;
            -moz-flex: 0 0 60%;
            flex: 0 0 60%;

    }
    .small--four-fifths{
            width: 80%;
            -moz-flex: 0 0 80%;
            flex: 0 0 80%;

    }
    .small--one-twelfth{
            width: 8.333%;
            -moz-flex: 0 0 8.333%;
            flex: 0 0 8.333%;

    }
    .small--two-twelfths{
            width: 16.666%;
            -moz-flex: 0 0 16.666%;
            flex: 0 0 16.666%;

    }
    .small--three-twelfths{
            width: 25%;
            -moz-flex: 0 0 25%;
            flex: 0 0 25%;

    }
    .small--four-twelfths{
            width: 33.333%;
            -moz-flex: 0 0 33.333%;
            flex: 0 0 33.333%;

    }
    .small--five-twelfths{
            width: 41.666%;
            -moz-flex: 0 0 41.666%;
            flex: 0 0 41.666%;

    }
    .small--six-twelfths{
            width: 50%;
            -moz-flex: 0 0 50%;
            flex: 0 0 50%;

    }
    .small--seven-twelfths{
            width: 58.333%;
            -moz-flex: 0 0 58.333%;
            flex: 0 0 58.333%;

    }
    .small--eight-twelfths{
            width: 66.666%;
            -moz-flex: 0 0 66.666%;
            flex: 0 0 66.666%;

    }
    .small--nine-twelfths{
            width: 75%;
            -moz-flex: 0 0 75%;
            flex: 0 0 75%;

    }
    .small--ten-twelfths{
            width: 83.333%;
            -moz-flex: 0 0 83.333%;
            flex: 0 0 83.333%;

    }
    .small--eleven-twelfths{
            width: 91.666%;
            -moz-flex: 0 0 91.666%;
            flex: 0 0 91.666%;

    }
    .push--small--one-fifth{
            left: 20%;

    }
    .push--small--two-fifths{
            left: 40%;

    }
    .push--small--three-fifths{
            left: 60%;

    }
    .push--small--four-fifths{
            left: 80%;

    }
    .push--small--one-twelfth{
            left: 8.333%;

    }
    .push--small--two-twelfths{
            left: 16.666%;

    }
    .push--small--three-twelfths{
            left: 25%;

    }
    .push--small--four-twelfths{
            left: 33.333%;

    }
    .push--small--five-twelfths{
            left: 41.666%;

    }
    .push--small--six-twelfths{
            left: 50%;

    }
    .push--small--seven-twelfths{
            left: 58.333%;

    }
    .push--small--eight-twelfths{
            left: 66.666%;

    }
    .push--small--nine-twelfths{
            left: 75%;

    }
    .push--small--ten-twelfths{
            left: 83.333%;

    }
    .push--small--eleven-twelfths{
            left: 91.666%;

    }
    .small--show{
            display: block ;

    }
    .small--hide{
            display: none !important ;

    }
    .small--text-left{
            text-align: left ;

    }
    .small--text-right{
            text-align: right ;

    }
    .small--text-center{
            text-align: center ;

    }
    .small--full{
            width: 100% ;

    }
    .small--sticky{
            position: sticky;
            transform: translateZ(0);
            z-index: 3;
            top: 0;

    }
    .small--overflow-hidden{
            overflow: hidden ;

    }
    .small--align-top{
            -moz-align-items: flex-start ;
            -ms-align-items: flex-start ;
            -o-align-items: flex-start ;
            align-items: flex-start ;

    }
    .small--align-center{
            -moz-align-items: center ;
            -ms-align-items: center ;
            -o-align-items: center ;
            align-items: center ;

    }
    .small--align-bottom{
            -moz-align-items: flex-end ;
            -ms-align-items: flex-end ;
            -o-align-items: flex-end ;
            align-items: flex-end ;

    }
    .small--justify-start{
            -ms-justify-content: flex-start ;
            justify-content: flex-start ;

    }
    .small--justify-center{
            -ms-justify-content: center ;
            justify-content: center ;

    }
    .small--justify-end{
            -ms-justify-content: flex-end ;
            justify-content: flex-end ;

    }
    .small--flex-auto{
            width: auto;
            -moz-flex: 0 0 auto ;
            flex: 0 0 auto ;

    }
    .small--flex-fill{
            -moz-flex: 1 1 auto ;
            flex: 1 1 auto ;

    }
    .small--flex-wrap{
            flex-wrap: wrap ;

    }
    .small--flex-nowrap{
            flex-wrap: nowrap ;

    }
}
@media only screen and (min-width: 769.1px) and (max-width: 1025px){
    .medium--one-whole{
            width: 100%;
            -moz-flex: 0 0 100%;
            flex: 0 0 100%;

    }
    .medium--one-fifth{
            width: 20%;
            -moz-flex: 0 0 20%;
            flex: 0 0 20%;

    }
    .medium--two-fifths{
            width: 40%;
            -moz-flex: 0 0 40%;
            flex: 0 0 40%;

    }
    .medium--three-fifths{
            width: 60%;
            -moz-flex: 0 0 60%;
            flex: 0 0 60%;

    }
    .medium--four-fifths{
            width: 80%;
            -moz-flex: 0 0 80%;
            flex: 0 0 80%;

    }
    .medium--one-twelfth{
            width: 8.333%;
            -moz-flex: 0 0 8.333%;
            flex: 0 0 8.333%;

    }
    .medium--two-twelfths{
            width: 16.666%;
            -moz-flex: 0 0 16.666%;
            flex: 0 0 16.666%;

    }
    .medium--three-twelfths{
            width: 25%;
            -moz-flex: 0 0 25%;
            flex: 0 0 25%;

    }
    .medium--four-twelfths{
            width: 33.333%;
            -moz-flex: 0 0 33.333%;
            flex: 0 0 33.333%;

    }
    .medium--five-twelfths{
            width: 41.666%;
            -moz-flex: 0 0 41.666%;
            flex: 0 0 41.666%;

    }
    .medium--six-twelfths{
            width: 50%;
            -moz-flex: 0 0 50%;
            flex: 0 0 50%;

    }
    .medium--seven-twelfths{
            width: 58.333%;
            -moz-flex: 0 0 58.333%;
            flex: 0 0 58.333%;

    }
    .medium--eight-twelfths{
            width: 66.666%;
            -moz-flex: 0 0 66.666%;
            flex: 0 0 66.666%;

    }
    .medium--nine-twelfths{
            width: 75%;
            -moz-flex: 0 0 75%;
            flex: 0 0 75%;

    }
    .medium--ten-twelfths{
            width: 83.333%;
            -moz-flex: 0 0 83.333%;
            flex: 0 0 83.333%;

    }
    .medium--eleven-twelfths{
            width: 91.666%;
            -moz-flex: 0 0 91.666%;
            flex: 0 0 91.666%;

    }
    .push--medium--one-fifth{
            left: 20%;

    }
    .push--medium--two-fifths{
            left: 40%;

    }
    .push--medium--three-fifths{
            left: 60%;

    }
    .push--medium--four-fifths{
            left: 80%;

    }
    .push--medium--one-twelfth{
            left: 8.333%;

    }
    .push--medium--two-twelfths{
            left: 16.666%;

    }
    .push--medium--three-twelfths{
            left: 25%;

    }
    .push--medium--four-twelfths{
            left: 33.333%;

    }
    .push--medium--five-twelfths{
            left: 41.666%;

    }
    .push--medium--six-twelfths{
            left: 50%;

    }
    .push--medium--seven-twelfths{
            left: 58.333%;

    }
    .push--medium--eight-twelfths{
            left: 66.666%;

    }
    .push--medium--nine-twelfths{
            left: 75%;

    }
    .push--medium--ten-twelfths{
            left: 83.333%;

    }
    .push--medium--eleven-twelfths{
            left: 91.666%;

    }
    .medium--show{
            display: block ;

    }
    .medium--hide{
            display: none !important;

    }
    .medium--text-left{
            text-align: left ;

    }
    .medium--text-right{
            text-align: right ;

    }
    .medium--text-center{
            text-align: center ;

    }
    .medium--full{
            width: 100% ;

    }
    .medium--sticky{
            position: sticky;
            transform: translateZ(0);
            z-index: 3;
            top: 0;

    }
    .medium--overflow-hidden{
            overflow: hidden ;

    }
    .medium--align-top{
            -moz-align-items: flex-start ;
            -ms-align-items: flex-start ;
            -o-align-items: flex-start ;
            align-items: flex-start ;

    }
    .medium--align-center{
            -moz-align-items: center ;
            -ms-align-items: center ;
            -o-align-items: center ;
            align-items: center ;

    }
    .medium--align-bottom{
            -moz-align-items: flex-end ;
            -ms-align-items: flex-end ;
            -o-align-items: flex-end ;
            align-items: flex-end ;

    }
    .medium--justify-start{
            -ms-justify-content: flex-start ;
            justify-content: flex-start ;

    }
    .medium--justify-center{
            -ms-justify-content: center ;
            justify-content: center ;

    }
    .medium--justify-end{
            -ms-justify-content: flex-end ;
            justify-content: flex-end ;

    }
    .medium--flex-auto{
            width: auto;
            -moz-flex: 0 0 auto ;
            flex: 0 0 auto ;

    }
    .medium--flex-fill{
            -moz-flex: 1 1 auto ;
            flex: 1 1 auto ;

    }
    .medium--flex-wrap{
            flex-wrap: wrap ;

    }
    .medium--flex-nowrap{
            flex-wrap: nowrap ;

    }
}
@media only screen and (min-width: 1025.1px){
    .large--one-whole{
            width: 100%;
            -moz-flex: 0 0 100%;
            flex: 0 0 100%;

    }
    .large--one-fifth{
            width: 20%;
            -moz-flex: 0 0 20%;
            flex: 0 0 20%;

    }
    .large--two-fifths{
            width: 40%;
            -moz-flex: 0 0 40%;
            flex: 0 0 40%;

    }
    .large--three-fifths{
            width: 60%;
            -moz-flex: 0 0 60%;
            flex: 0 0 60%;

    }
    .large--four-fifths{
            width: 80%;
            -moz-flex: 0 0 80%;
            flex: 0 0 80%;

    }
    .large--one-twelfth{
            width: 8.333%;
            -moz-flex: 0 0 8.333%;
            flex: 0 0 8.333%;

    }
    .large--two-twelfths{
            width: 16.666%;
            -moz-flex: 0 0 16.666%;
            flex: 0 0 16.666%;

    }
    .large--three-twelfths{
            width: 25%;
            -moz-flex: 0 0 25%;
            flex: 0 0 25%;

    }
    .large--four-twelfths{
            width: 33.333%;
            -moz-flex: 0 0 33.333%;
            flex: 0 0 33.333%;

    }
    .large--five-twelfths{
            width: 41.666%;
            -moz-flex: 0 0 41.666%;
            flex: 0 0 41.666%;

    }
    .large--six-twelfths{
        /*    width: 50%;
            -moz-flex: 0 0 50%;*/
            flex: 0 0 50%;

    }
    .large--seven-twelfths{
            width: 58.333%;
            -moz-flex: 0 0 58.333%;
            flex: 0 0 58.333%;

    }
    .large--eight-twelfths{
            width: 66.666%;
            -moz-flex: 0 0 66.666%;
            flex: 0 0 66.666%;

    }
    .large--nine-twelfths{
            width: 75%;
            -moz-flex: 0 0 75%;
            flex: 0 0 75%;

    }
    .large--ten-twelfths{
            width: 83.333%;
            -moz-flex: 0 0 83.333%;
            flex: 0 0 83.333%;

    }
    .large--eleven-twelfths{
            width: 91.666%;
            -moz-flex: 0 0 91.666%;
            flex: 0 0 91.666%;

    }
    .push--large--one-fifth{
            left: 20%;

    }
    .push--large--two-fifths{
            left: 40%;

    }
    .push--large--three-fifths{
            left: 60%;

    }
    .push--large--four-fifths{
            left: 80%;

    }
    .push--large--one-twelfth{
            left: 8.333%;

    }
    .push--large--two-twelfths{
            left: 16.666%;

    }
    .push--large--three-twelfths{
            left: 25%;

    }
    .push--large--four-twelfths{
            left: 33.333%;

    }
    .push--large--five-twelfths{
            left: 41.666%;

    }
    .push--large--six-twelfths{
            left: 50%;

    }
    .push--large--seven-twelfths{
            left: 58.333%;

    }
    .push--large--eight-twelfths{
            left: 66.666%;

    }
    .push--large--nine-twelfths{
            left: 75%;

    }
    .push--large--ten-twelfths{
            left: 83.333%;

    }
    .push--large--eleven-twelfths{
            left: 91.666%;

    }
    .large--show{
            display: block ;

    }
    .large--hide{
            display: none ;

    }
    .large--text-left{
            text-align: left ;

    }
    .large--text-right{
            text-align: right ;

    }
    .large--text-center{
            text-align: center ;

    }
    .large--full{
            width: 100% ;

    }
    .large--sticky{
            position: sticky;
            transform: translateZ(0);
            z-index: 3;
            top: 0;

    }
    .large--overflow-hidden{
            overflow: hidden ;

    }
    .large--align-top{
            -moz-align-items: flex-start ;
            -ms-align-items: flex-start ;
            -o-align-items: flex-start ;
            align-items: flex-start ;

    }
    .large--align-center{
            -moz-align-items: center ;
            -ms-align-items: center ;
            -o-align-items: center ;
            align-items: center ;

    }
    .large--align-bottom{
            -moz-align-items: flex-end ;
            -ms-align-items: flex-end ;
            -o-align-items: flex-end ;
            align-items: flex-end ;

    }
    .large--justify-start{
            -ms-justify-content: flex-start ;
            justify-content: flex-start ;

    }
    .large--justify-center{
            -ms-justify-content: center ;
            justify-content: center ;

    }
    .large--justify-end{
            -ms-justify-content: flex-end ;
            justify-content: flex-end ;

    }
    .large--flex-auto{
            width: auto;
            -moz-flex: 0 0 auto ;
            flex: 0 0 auto ;

    }
    .large--flex-fill{
            -moz-flex: 1 1 auto ;
            flex: 1 1 auto ;

    }
    .large--flex-wrap{
            flex-wrap: wrap ;

    }
    .large--flex-nowrap{
            flex-wrap: nowrap ;

    }
}
.tienda-section{
    position: relative;
}
.tienda-section:empty{
    display: none;
}
.section-default{
    background-color: #fff;
}
.section-border{
    border-top: 2px solid #e5e5e5;
}
.section-full-width.section-no-title{
    background-color: inherit;
}
.section-header,
.tienda-policy__title{
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}
.section-header>*:last-child,
.tienda-policy__title>*:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 769px){
/*    .section-header,
        .tienda-policy__title{
            padding-bottom: 30px;

    }*/
/*    .section-header:after,
        .tienda-policy__title:after{
            content: "";
            border-bottom: 2px solid #e5e5e5;
            display: block;
            left: -16px;
            right: -16px;
            padding-top: 65px;
            position: absolute;

    }*/
    .wrapper-full .section-header:after,
        .wrapper-full .tienda-policy__title:after{
            display: none;

    }
    .wrapper-full .section-header,
        .wrapper-full .tienda-policy__title{
            padding-bottom: 0;

    }
}
@media screen and (min-width: 769.1px){
    .page-title,
        .tienda-policy__title h1,
        .tienda-policy__title .h1{
            font-size: 20px;
            word-wrap: break-word;
            word-break: break-word;

    }
}
@media screen and (min-width: 769.1px){
    .section-header__subtitle{
            font-size: 18px;

    }
}
#PageContainer{
    display: flex;
    -moz-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}
.main-content{
    display: block;
    position: relative;
    z-index: 2;
}
.box{
    transition: all .3s ease;
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and (min-width: 769.1px){
    .box{
            padding-top: 60px;
            padding-bottom: 60px;

    }
}
.section-full-width>.box{
    padding-bottom: 0;
}
.section-full-width.section-no-title>.box{
    padding-top: 0;
}
@media screen and (min-width: 769.1px){
    .box-small{
            padding-top: 0px;
            padding-bottom: 0px;

    }
}
.wrapper{
    transition: padding .3s ease, max-width .3s ease;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1180px;
}
@media screen and (max-width: 769px){
    .wrapper{
            padding-left: 16px;
            padding-right: 16px;

    }
}
.wrapper-fluid{
    transition: padding .3s ease, max-width .3s ease;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
}
@media screen and (max-width: 769px){
    .wrapper-fluid{
            padding-left: 16px;
            padding-right: 16px;

    }
}
.wrapper-full{
    max-width: 100%;
}
.breadcrumbs{
    padding: 6px 0;
    background-color: #fff;
}
@media screen and (max-width: 769px){
    .breadcrumbs{
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;

    }
}
@media screen and (min-width: 769.1px){
    .breadcrumbs .grid__item:first-of-type{
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;

    }
}
.grid.slick-initialized{
    margin-left: 0;
}
@media screen and (max-width: 769px){
    .grid.slick-initialized{
            margin-left: -16px;
            margin-right: -16px;

    }
}
@media screen and (min-width: 769.1px){
    .grid.slick-initialized{
            margin-left: -15px;
            margin-right: -15px;
            border-radius: 17px;

    }
}
@media screen and (max-width: 769px){
    .grid.slick-initialized .slick-list{
            padding-left: 8px;
            padding-right: 8px;

    }
}
.grid.slick-initialized .slick-track{
    display: flex;
    flex-wrap: wrap;
}
.grid.slick-initialized .slick-slide{
    padding-left: 0;
    -moz-flex: 0 0 auto;
    flex: 0 0 auto;
}
@media screen and (max-width: 769px){
    .grid.slick-initialized .slick-slide{
            margin-left: 8px;
            margin-right: 8px;

    }
}
@media screen and (min-width: 769.1px){
    .grid.slick-initialized .slick-slide{
            margin-left: 15px;
            margin-right: 15px;

    }
}
@media screen and (min-width: 769.1px){
    .grid.slick-initialized.grid-small{
            margin-left: -8px;
            margin-right: -8px;

    }
    .grid.slick-initialized.grid-small .slick-slide{
            margin-left: 8px;
            margin-right: 8px;

    }
    .grid.slick-initialized.grid-small.slick-vertical .slick-list{
            margin-top: -8px;
            margin-bottom: -8px;

    }
    .grid.slick-initialized.grid-small.slick-vertical .slick-slide{
            margin-top: 8px;
            margin-bottom: 8px;

    }
}
@media screen and (min-width: 769.1px){
    .grid.slick-initialized.grid-xsmall{
            margin-left: -4px;
            margin-right: -4px;

    }
    .grid.slick-initialized.grid-xsmall .slick-slide{
            margin-left: 4px;
            margin-right: 4px;

    }
    .grid.slick-initialized.grid-xsmall.slick-vertical .slick-list{
            margin-top: -4px;
            margin-bottom: -4px;

    }
    .grid.slick-initialized.grid-xsmall.slick-vertical .slick-slide{
            margin-top: 4px;
            margin-bottom: 4px;

    }
}
.grid.slick-initialized.grid-spacer,
.grid.slick-initialized.grid-spacer .grid__item{
    margin-bottom: 0;
}
.grid.slick-initialized.grid-full,
.grid.slick-initialized.grid-full .grid__item{
    margin-left: 0;
    margin-right: 0;
}
.is-sold-out .grid-product__wrapper{
    opacity: .6;
}
.grid-product__image-wrapper{
    position: relative;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}
.grid-product__image-link{
    -moz-flex: auto;
    flex: auto;
}
.grid-product__meta:hover{
    opacity: 1;
}
.cs-active .grid-product--wrapper:not(.product-hover-image){
    display: block ;
}
.grid-product--wrapper{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.has-hover-image:hover .grid-product--wrapper:not(.product-hover-image){
    display: none;
}
.product-hover-image{
    display: none;
}
.has-hover-image:hover .product-hover-image{
    display: block;
}
.grid-product__badge{
    position: absolute;
    z-index: 1;
}
.grid-product__badge.grid-product__badge-top-left{
    top: 8px;
    left: 8px;
}
.grid-product__badge.grid-product__badge-top-right{
    top: 8px;
    right: 8px;
}
.grid-product__badge.grid-product__badge-bottom-right{
    bottom: 8px;
    right: 8px;
}
.grid-product__badge.grid-product__badge-bottom-left{
    bottom: 8px;
    left: 8px;
}
.grid-product__price-min{
    position: relative;
}
.tooltip-wrapper.tooltip-position-bottom .tooltip{
    bottom: inherit;
    top: 100%;
    margin-bottom: 0;
    margin-top: 15px;
    transform: translate(-50%, -15px);
}
.tooltip-wrapper.tooltip-position-bottom .tooltip:after{
    border-top: 0;
    border-bottom: solid #202020 7px;
    top: -7px;
    bottom: inherit;
}
.tooltip-wrapper .money:hover+.tooltip{
    opacity: 1;
    transform: translate(-50%);
}
.collection-list-products{
    margin-bottom: 0 ;
}
.collection-list-products.collection-list-products--list .list-product:nth-of-type(even) .list-product__wrapper{
    background-color: #fff;
}
.collection-list-products.collection-list-products--grid-list .list-product:nth-of-type(4n) .list-product__wrapper{
    background-color: #fff;
}
.list-product__wrapper{
    margin-left: 0;
    padding: 30px 15px;
}
.is-sold-out .list-product__wrapper{
    opacity: .6;
}
.list-product__image-wrapper{
    margin-bottom: 0 ;
    padding-left: 0;
}
.list-product__image{
    position: relative;
}
.list-product__image-link{
    -moz-flex: auto;
    flex: auto;
}
.list-product__image-link img,
.list-product__image-link svg{
    border: 2px solid #e5e5e5;
}
.list-product__details-wrapper{
    margin-bottom: 0 ;
    padding-left: 30px;
}
@media screen and (max-width: 769px){
    .list-product__details-wrapper{
            padding-left: 16px;

    }
}
.list-product--wrapper{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.has-hover-image:hover .list-product--wrapper:not(.product-hover-image){
    display: none;
}
.cs-active .list-product--wrapper:not(.product-hover-image){
    display: block ;
}
.cs-active .product-hover-image{
    display: none ;
}
.list-product__badge{
    position: absolute;
    z-index: 1;
}
.list-product__badge.list-product__badge-top-left{
    top: 8px;
    left: 8px;
}
.list-product__badge.list-product__badge-top-right{
    top: 8px;
    right: 8px;
}
.list-product__badge.list-product__badge-bottom-right{
    bottom: 8px;
    right: 8px;
}
.list-product__badge.list-product__badge-bottom-left{
    bottom: 8px;
    left: 8px;
}
@media screen and (max-width: 769px){
    .list-product__badge{
            font-size: 9px;

    }
}
.collection_grid-item{
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.collection_grid-image{
    transition: all .3s ease;
}
.collection_grid-animation:hover .collection_grid-image{
    transform: scale(1.3);
}
.collection_grid-inner{
    padding: 0 16px;
}
.collection_grid-text-wrapper{
    text-align: center;
}
.collection_grid-title{
    margin-bottom: 0;
}
.collection_grid--xsmall{
    min-height: 100px;
}
.collection_grid--small{
    min-height: 200px;
}
.collection_grid--medium{
    min-height: 300px;
}
.collection_grid--large{
    min-height: 400px;
}
.collection_grid--xlarge{
    min-height: 500px;
}
.announcement-section{
    z-index: 2;
}
.sticky-announcement_bar .announcement-section{
    position: sticky;
    transform: translateZ(0);
    z-index: 3;
    top: 0;
    z-index: 7;
}
#announcement{
    background-color: var(--color-rosa1);
    color: var(--color-rosa3);
}
#announcement a{
    color: var(--color-rosa3);
}
#announcement .rte{
    margin-bottom: 0;
}
#announcement p{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.announcement-grid{
    height: 38px;
}
.social-medias+.announcement-left-message{
    margin-left: 7px;
}
.announcement-message .slick-track{
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.announcement-right-message+ul{
    margin-left: 7px;
}
.header-section{
    position: relative;
    z-index: 6;
}
.sticky-header .header-section{
    position: sticky;
    transform: translateZ(0);
    z-index: 3;
    top: 0;
    z-index: 6;
}
.sticky-header:not(.sticky-announcement_bar) .header-section:before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
}
.sticky-header.sticky-announcement_bar .header-section{
    top: 38px;
}
@media screen and (max-width: 769px){
    .transparent-header--no-mobile .header-section .header-container{
            position: initial ;

    }
}
.site-header{
    background-color: #fff;
    border-bottom: 2px solid #e5e5e5;
    border-color: transparent;
    height: 70px;
    position: relative;
    transition: all .3s ease;
}
.site-header .site-nav__link,
.site-header .site-header__logo-link{
    color: #202020;
}
@media screen and (min-width: 1025.1px){
    .nav-hidden .site-header .large--hide{
            display: block ;

    }
    .nav-hidden .site-header .medium--hide.small--hide{
            display: none !important;

    }
}
.header-wrapper{
    position: relative;
    height: 100%;
}
.header-grid{
    height: 100%;
}
@media screen and (max-width: 769px){
    .header-grid.grid{
            margin-left: -8px;

    }
    .header-grid>.grid__item{
            padding-left: 8px;

    }
}
.nav-container-left-icons{
    order: 1;
}
.nav-container-logo{
    height: 100%;
    order: 2;
}
@media screen and (min-width: 1025.1px){
    .nav-center-logo .nav-container-logo{
            order: 3;

    }
}
.nav-container-menu{
    order: 3;
}
@media screen and (min-width: 1025.1px){
    .nav-right .nav-container-menu{
            text-align: right;

    }
    .nav-center .nav-container-menu{
            text-align: center;

    }
    .nav-center-logo .nav-container-menu{
            order: 2;

    }
}
.nav-container-right-icons{
    order: 4;
}
.nav-container-right-icons .customer-name{
    margin-right: 7px;
}
.inner-nav-containers{
    height: 100%;
    margin: 0;
}
.site-nav__item{
    position: relative;
    display: inline-block;
    line-height: 1;
    white-space: normal;
    margin: 0;
}
.site-nav__link{
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
    display: inline-block;
    text-decoration: none;
    padding: 8px;
    white-space: nowrap;
}
@media screen and (max-width: 769px){
    .site-nav__link{
            padding: 4px;

    }
}
.site-header__logo{
    height: 100%;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .1px;
    line-height: 1.2;
    font-size: 28px;
    margin: 0;
}
@media screen and (max-width: 769px){
    .site-header__logo{
            font-size: 15px;

    }
}
.site-header__logo .inverted-logo{
    display: none;
}
.site-header__logo .mobile-logo{
    display: none;
    height: 100%;
}
.site-nav__link--icon{
    letter-spacing: 0 ;
    font-size: 24px;
}
.cart-link{
    position: relative;
}
.cart-link__bubble{
    display: none;
}
.cart-link__bubble--visible{
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    right: 5px;
    bottom: 5px;
    border: 2px solid white;
    background-color: var(--color-rosa1);
    border-radius: 50%;
    transition: all .3s ease;
}
@media screen and (max-width: 769px){
    .cart-link__bubble--visible{
            width: 12px;
            height: 12px;
            right: 0;
            bottom: 0;

    }
}
.site-nav__link--icon .cart-count,
.site-nav__link--icon .wl-count {
    position: absolute;
    top: 7px;
    right: 16px;
    font-size: 9px;
    color: #fff;
    background: var(--color-rosa3);
    border-radius: 10px;
    padding: 4px;
}

.sticky-header.is-scrolling.transparent-header--mobile .site-header{
    background-color: #fff;
    border-color: #fff;
    width: 100%;
}
.sticky-header.is-scrolling.transparent-header--mobile .site-header .site-nav__link,
.sticky-header.is-scrolling.transparent-header--mobile .site-header .site-header__logo-link{
    color: #202020;
}
.sticky-header.is-scrolling.transparent-header--mobile .cart-link__bubble--visible{
    background-color: var(--color-rosa1);
    border-color: #fff;
}
@media screen and (min-width: 769.1px){
    .sticky-header.is-scrolling.transparent-header--no-mobile .site-header{
            background-color: #fff;
            border-color: #fff;
            width: 100%;

    }
    .sticky-header.is-scrolling.transparent-header--no-mobile .site-header .site-nav__link,
        .sticky-header.is-scrolling.transparent-header--no-mobile .site-header .site-header__logo-link{
            color: #202020;

    }
    .sticky-header.is-scrolling.transparent-header--no-mobile .cart-link__bubble--visible{
            background-color: var(--color-rosa1);
            border-color: #fff;

    }
}
@media screen and (min-width: 769.1px){
    .sticky-header.is-scrolling .site-header__logo .default-logo{
            display: block;

    }
    .sticky-header.is-scrolling .site-header__logo .inverted-logo{
            display: none;

    }
}
@media screen and (max-width: 769px){
    .site-header{
            height: 60px;

    }
    .transparent-header--no-mobile .site-header{
            background-color: #fff ;
            border-color: #fff;

    }
    .transparent-header--no-mobile .site-header .site-nav__link,
        .transparent-header--no-mobile .site-header .site-header__logo-link{
            color: #202020 ;

    }
    .site-header__logo .default-logo{
            ;

    }
    .site-header__logo .inverted-logo{
            display: none ;

    }
    .site-header__logo .mobile-logo{
            display: block;

    }
    .cart-link__bubble--visible{
            background-color: var(--color-rosa1) ;
            border-color: #fff ;

    }
}
.drawer{
    position: fixed;
    overflow: hidden;
    top: 0;
    bottom: 0;
    z-index: 999999999;
    display: none;
    -moz-flex-direction: column;
    flex-direction: column;
    transition: all .6s ease;
}
.drawer:focus{
    outline: none;
}
.drawer.js-drawer-open,
.drawer.is-closing{
    display: flex;
}
.drawer .drawer__header,
.drawer .drawer__footer,
.drawer .drawer__inner{
    opacity: 0;
}
.drawer--left{
    max-width: 100%;
    left: 0;
}
@media screen and (min-width: 769.1px){
    .drawer--left{
            width: 300px;

    }
}
@media screen and (max-width: 769px){
    .drawer--left{
            width: 100%;

    }
}
.drawer--left.js-drawer-open{
    -ms-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 40px #00000012;
    animation-duration: .6s;
    animation-name: slideInLeft;
    animation-fill-mode: both;
}
.drawer--left.is-closing{
    animation-duration: .6s;
    animation-name: slideOutLeft;
    animation-fill-mode: both;
}
.drawer--right{
    max-width: 100%;
    right: 0;
}
@media screen and (min-width: 769.1px){
    .drawer--right{
            width: 50%;

    }
}
@media screen and (max-width: 769px){
    .drawer--right{
            width: 50%;

    }
}
.drawer--right.js-drawer-open{
    -ms-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 40px #00000012;
    animation-duration: .6s;
    animation-name: slideInRight;
    animation-fill-mode: both;
}
.drawer--right.is-closing{
    animation-duration: .6s;
    animation-name: slideOutRight;
    animation-fill-mode: both;
}
.drawer--top{
    max-height: 100%;
    width: 100%;
    top: 0;
    height: fit-content;
}
.drawer--top.js-drawer-open{
    -ms-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 40px #00000012;
    animation-duration: .6s;
    animation-name: slideInDown;
    animation-fill-mode: both;
}
.drawer--top.is-closing{
    animation-duration: .6s;
    animation-name: slideOutUp;
    animation-fill-mode: both;
}
.drawer--bottom{
    max-height: 100%;
    width: 100%;
    bottom: 0;
    height: fit-content;
}
.drawer--bottom.js-drawer-open{
    -ms-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 40px #00000012;
    animation-duration: .6s;
    animation-name: slideInUp;
    animation-fill-mode: both;
}
.drawer--bottom.is-closing{
    animation-duration: .6s;
    animation-name: slideOutDown;
    animation-fill-mode: both;
}
.drawer.js-drawer-open+.overlay-drawer{
    display: block;
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.drawer.is-closing+.overlay-drawer{
    display: block;
    animation-duration: .6s;
    animation-name: fadeOut;
    animation-fill-mode: both;
}
.drawer__header{
    height: 70px;
    width: 100%;
    z-index: 10;
    padding: 0 16px;
    border-bottom: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    flex-shrink: 0;
}
@media screen and (max-width: 769px){
    .drawer__header{
            height: 60px;

    }
}
.drawer.js-drawer-open .drawer__header{
    animation-duration: .6s;
    animation-name: fadeInDown;
    animation-fill-mode: both;
}
.drawer.is-closing .drawer__header{
    animation-duration: .6s;
    animation-name: fadeOutUp;
    animation-fill-mode: both;
}
.drawer__title{
    padding-right: 15px;
    font-size: 16px;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .1px;
    line-height: 1.2;
    line-height: 1.5;
    -moz-flex: auto;
    flex: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.drawer__inner{
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    -moz-flex: auto;
    flex: auto;
}
.drawer--top .drawer__inner,
.drawer--bottom .drawer__inner{
    overflow: auto;
}
.drawer.js-drawer-open .drawer__inner{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.drawer.is-closing .drawer__inner{
    animation-duration: .6s;
    animation-name: fadeOut;
    animation-fill-mode: both;
}
.drawer__inner-section{
    padding: 30px;
}
@media screen and (max-width: 769px){
    .drawer__inner-section{
            padding: 16px;

    }
}
.drawer__inner-section> :last-child{
    margin-bottom: 0;
}
.drawer__inner-section:empty{
    display: none;
}
.drawer__inner-section+.drawer__inner-section{
    border-top: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
}
.drawer__inner-section .errors{
    color: #2dffb3;
    border-color: #2dffb3;
}
.drawer__footer{
    background-color: #f7f7f7;
    padding: 16px;
    flex-shrink: 0;
}
.drawer__footer:empty{
    display: none;
}
.drawer.js-drawer-open .drawer__footer{
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-fill-mode: both;
}
.drawer.is-closing .drawer__footer{
    animation-duration: .6s;
    animation-name: fadeOutDown;
    animation-fill-mode: both;
}
.mobile-nav{
    margin-left: 0;
    margin-bottom: 0;
}
.mobile-nav>*{
    margin-bottom: 0;
}
.mobile-nav>*+*{
    margin-top: 5px;
}
@media screen and (max-width: 769px){
    .mobile-nav>*{
            margin-bottom: 0;

    }
    .mobile-nav>*+*{
            margin-top: 13px;

    }
}
.mobile-nav__item{
    position: relative;
    display: block;
    margin-bottom: 0;
    list-style: none;
}
.mobile-nav>.mobile-nav__item{
    
}
.mobile-nav__item a{
    display: block;
    color: #202020;
    text-decoration: none;
}
.mobile-nav__has-sublist{
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.mobile-nav__has-sublist .mobile-nav__link{
    width: 100%;
}
.mobile-nav__has-sublist:not(.active)+.tab-body{
    display: none;
}
.mobile-nav__sublist{
    display: none;
    margin-bottom: 0;
    
    position: relative;
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-fill-mode: both;
}
.mobile-nav__sublist:before{
    content: "";
    border-left: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
    position: absolute;
    margin-left: -15px;
    left: 0;
    height: 100%;
}
.mobile-nav__sublist .mobile-nav__item+.mobile-nav__item{
    margin-top: 10px;
}
.mobile-nav__has-sublist a,
.mobile-nav>.mobile-nav__item:not(.mobile-nav__item--secondary)>a{
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 14px;
}
.mobile-nav>.mobile-nav__item>.mobile-nav__sublist>.mobile-nav__item>a,
.mobile-nav>.mobile-nav__item>.mobile-nav__sublist>.mobile-nav__item>.mobile-nav__has-sublist>a{
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 15px;
}
.mobile-nav__toggle-open{
    display: block;
}
.mobile-nav--expanded .mobile-nav__toggle-open,
.mobile-nav__toggle-close{
    display: none;
}
.mobile-nav--expanded .mobile-nav__toggle-close{
    display: block;
}
#SearchDrawer{
    background: var(--color-rosa1);
}
#SearchDrawer.drawer{
    bottom: auto;
}
.footer-section{
    margin-top: auto;
}
.site-footer{
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa3);
    color: var(--color-rosa3);
    position: relative;
    z-index: 0;
    border-top: 2px solid;
}
.site-footer hr{
    border-color: var(--color-rosa3);
}
.site-footer a,
.site-footer button{
    color: var(--color-rosa3);
}
.site-footer .text-link{
    color: #2dffb3;
}
.site-footer .text-muted{
    color: #797979;
}
.site-footer select.select-link:hover{
    color: #2dffb3 ;
}
.site-footer .btn,
    .site-footer textarea,
    .site-footer select,
    .site-footer input{
        background-color: #fff;
        border-color: var(--color-rosa1);
        color: var(--color-rosa3);
    
}
.site-footer .btn:not(.disabled):not([disabled]):hover,
.site-footer .btn:not(.disabled):not([disabled]):focus,
.site-footer textarea:not(.disabled):not([disabled]):hover,
.site-footer textarea:not(.disabled):not([disabled]):focus,
.site-footer select:not(.disabled):not([disabled]):hover,
.site-footer select:not(.disabled):not([disabled]):focus,
.site-footer input:not(.disabled):not([disabled]):hover,
.site-footer input:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: var(--color-rosa3);
    background-color: #fff;
    border-color: var(--color-rosa2);
    
    
}
.site-footer .btn:not(.disabled):not([disabled]):active,
.site-footer textarea:not(.disabled):not([disabled]):active,
.site-footer select:not(.disabled):not([disabled]):active,
.site-footer input:not(.disabled):not([disabled]):active{
   color: var(--color-rosa3);
    background-color: var(--color-rosa3);
     background-color: #fff;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.site-footer .btn::-webkit-input-placeholder,
.site-footer textarea::-webkit-input-placeholder,
.site-footer select::-webkit-input-placeholder,
.site-footer input::-webkit-input-placeholder{
    color: red;
    opacity: .7;
}
.site-footer .btn:-moz-placeholder,
.site-footer textarea:-moz-placeholder,
.site-footer select:-moz-placeholder,
.site-footer input:-moz-placeholder{
      color: var(--color-rosa3);
    opacity: .7;
}
.site-footer .btn::-moz-placeholder,
.site-footer textarea::-moz-placeholder,
.site-footer select::-moz-placeholder,
.site-footer input::-moz-placeholder{
     color:red;
    opacity: .7;
}
.site-footer .btn:-ms-input-placeholder,
.site-footer textarea:-ms-input-placeholder,
.site-footer select:-ms-input-placeholder,
.site-footer input:-ms-input-placeholder{
     color: red;
    opacity: .7;
}
.site-footer .btn::-ms-input-placeholder,
.site-footer textarea::-ms-input-placeholder,
.site-footer select::-ms-input-placeholder,
.site-footer input::-ms-input-placeholder{
     color:red;
    opacity: .7;
}
.site-footer .slick-arrow{
    background-color: #202020;
    border-color: #202020;
    color: #fff;
}
.site-footer .slick-arrow:not(.disabled):not([disabled]):hover,
.site-footer .slick-arrow:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #0d0d0d;
    border-color: #070707;
    -ms-box-shadow: 0 0 0 .2rem #535353;
    -o-box-shadow: 0 0 0 .2rem #535353;
    box-shadow: 0 0 0 .2rem #535353;
}
.site-footer .slick-arrow:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: #000;
    border-color: #000;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.site-footer .card{
    background-color: #161616;
}
.site-footer .card .card{
    background-color: var(--color-rosa1);
}
.site-footer .card .card-footer,
.site-footer .card .card-header{
    border-color: var(--color-rosa3);
}
.site-footer .tab-body{
    border-color: #2dffb3;
}
.site-footer .progress{
    background-color: #161616;
}
.site-footer .progress-bar{
    background-color: #2dffb3;
}
.site-footer .bg-default{
    background-color: #161616;
}
.site-footer .btn--primary{
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa1);
    color: #fff;
}
.site-footer .btn--primary:not(.disabled):not([disabled]):hover,
.site-footer .btn--primary:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: var(--color-rosa3);
    
    
    
}
.site-footer .btn--primary:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.site-footer .btn-outline-primary{
    background-color: transparent;
    border-color: var(--color-rosa1);
    color: var(--color-rosa1);
}
.site-footer .btn-outline-primary:not(.disabled):not([disabled]):hover,
.site-footer .btn-outline-primary:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
.site-footer .btn-outline-primary:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    box-shadow: none;
}
.site-footer .badge,
.site-footer .tooltip{
    background-color: #fff;
    color: #202020;
}
.site-footer .tooltip:after{
    border-top-color: #fff;
}
.site-footer .swatch label{
    background-color: #161616;
}
.site-footer .swatch input:checked+.swatch-element{
    border-color: #fff;
}
.site-footer .swatch-element{
    border-color: var(--color-rosa3);
}
.site-footer h1,
.site-footer .h1,
.site-footer h2,
.site-footer .h2,
.site-footer h3,
.site-footer .h3,
.site-footer h4,
.site-footer .h4,
.site-footer h5,
.site-footer .h5,
.site-footer h6,
.site-footer .h6{
    color: var(--color-rosa3);
    font-weight:600;
}
.site-footer .text-primary{
    color: var(--color-rosa1);
}
.site-footer .text-secondary{
    color: #2dffb3;
     font-weight:600;
}
.site-footer .text-sale{
    color: red;
}
.site-footer .form-success{
    color: var(--color-rosa1);
    border-color: var(--color-rosa1);
}
.site-footer .errors{
    color: #2dffb3;
    border-color: #2dffb3;
}
.site-footer .select-box{
    border-color: #2dffb3;
}
.site-footer .checkbox input[type=checkbox]:checked~label:before,
.site-footer .checkbox input[type=checkbox]:checked~label:after{
    color: var(--color-rosa1);
}
.site-footer .radio input[type=radio]:checked~label:before,
.site-footer .radio input[type=radio]:checked~label:after{
    color: var(--color-rosa1);
}
.site-footer table{
    border-color: var(--color-rosa3);
}
.site-footer table tbody tr:nth-of-type(odd){
    background-color: #16161699;
}
.site-footer table tbody tr:hover{
    background-color: #161616;
}
.site-footer table th,
.site-footer table td{
    border-color: var(--color-rosa3) ;
}
.site-footer table th{
    background-color: #fff;
    color: #202020;
}
.site-footer .media-wrapper{
    background-color: #161616;
}
.site-footer .placeholder-svg{
    fill: #fff;
    background-color: #161616;
}
.site-footer select{
    background-image: url(images/icon-select-footer.svg);
}
@media screen and (max-width: 769px){
    .footer-item+.footer-item{
            padding-top: 14px;

    }
    .footer-item+.footer-item:before{
            content: "";
            border-top: 2px solid #e5e5e5;
            border-color: var(--color-rosa3);
            position: relative;
            display: block;
            margin-bottom: 30px;

    }
}
@media screen and (min-width: 769.1px){
    .inline-footer li{
            display: inline-block;
            margin-right: 30px;
            margin-bottom: 0;

    }
    .inline-footer li:last-child{
            margin-right: 0;

    }
}
.site-footer__linktitle{
    color: #fff;
}
.site-footer__linklist a{
    color: var(--color-rosa3);
    display: inline-block;
    margin-bottom: 7px;
    font-weight:600;
}
.site-footer__linklist>li:last-child a{
    margin-bottom: 0;
}
ul.site-footer__linklist{
  column-count: 3;
  column-gap: 20px;
}
.ChkSuscribe{
    display: flex;
    align-items: center;
    padding-bottom: 12px;
}
.top-footer{
    padding: 30px 0;
    border-bottom: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
}
@media screen and (min-width: 769.1px){
    .footer-social-title{
            margin-bottom: 0;

    }
}
.bottom-footer{
    padding: 30px 0;
    border-top: 2px solid #e5e5e5;
    border-color: var(--color-rosa3);
}
@media screen and (min-width: 769.1px){
    .bottom-footer .bottom-footer__copyright{
            display: flex;
            -moz-align-items: center;
            -ms-align-items: center;
            -o-align-items: center;
            align-items: center;

    }
}
@media screen and (min-width: 769.1px){
    .credentials{
            margin-bottom: 0;

    }
}
.hero-container{
    overflow: hidden;
    position: relative;
}
.hero{
    width: 100%;
    border-radius: 0;
    display: flex;
}
.hero.hero-auto{
    height: auto;
}
.slide-link{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
@media screen and (min-width: 769.1px){
    .hero--xsmall{
            min-height: 300px;

    }
}
@media screen and (min-width: 769.1px){
    .hero--small{
            min-height: 400px;

    }
}
@media screen and (min-width: 769.1px){
    .hero--medium{
            min-height: 500px;

    }
}
@media screen and (min-width: 769.1px){
    .hero--large{
            min-height: 600px;

    }
}
@media screen and (min-width: 769.1px){
    .hero--xlarge{
            min-height: 100vh;

    }
}
@media screen and (max-width: 769px){
    .hero-mobile-xsmall{
            min-height: 200px;

    }
}
@media screen and (max-width: 769px){
    .hero-mobile-small{
            min-height: 300px;

    }
}
@media screen and (max-width: 769px){
    .hero-mobile-medium{
            min-height: 400px;

    }
}
@media screen and (max-width: 769px){
    .hero-mobile-large{
            min-height: 500px;

    }
}
@media screen and (min-width: 769.1px){
    .tienda-section.hero-section:first-child .hero--xlarge,
        .hero-first .hero--xlarge{
            min-height: calc(100vh - 108px);

    }
    .transparent-header--desktop .tienda-section.hero-section:first-child .hero--xlarge,
        .transparent-header--desktop .hero-first .hero--xlarge{
            min-height: calc(100vh - 38px);

    }
}
@media screen and (max-width: 769px){
    .tienda-section.hero-section:first-child .hero-mobile-xlarge,
        .hero-first .hero-mobile-xlarge{
            min-height: calc(100vh - 98px);

    }
    .transparent-header--mobile .tienda-section.hero-section:first-child .hero-mobile-xlarge,
        .transparent-header--mobile .hero-first .hero-mobile-xlarge{
            min-height: calc(100vh - 38px);

    }
}
@media screen and (min-width: 769.1px){
    .transparent-header--desktop .tienda-section.hero-section:first-child .hero-content,
        .transparent-header--desktop .hero-first .hero-content{
            padding-top: 70px;

    }
}
@media screen and (min-width: 769.1px){
    .transparent-header--desktop.menu_bar--present .tienda-section.hero-section:first-child .hero-content,
        .transparent-header--desktop.menu_bar--present .hero-first .hero-content{
            padding-top: 108px;

    }
}
@media screen and (max-width: 769px){
    .transparent-header--mobile .tienda-section.hero-section:first-child .hero-content,
        .transparent-header--mobile .hero-first .hero-content{
            padding-top: 60px;

    }
}
@media screen and (max-width: 769px){
    .transparent-header--mobile.menu_bar--present .tienda-section.hero-section:first-child .hero-content,
        .transparent-header--mobile.menu_bar--present .hero-first .hero-content{
            padding-top: 98px;

    }
}
.hero-video{
    object-fit: cover;
    min-height: 100%;
}
.hero__inner{
    transition: all .3s ease;
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and (min-width: 769.1px){
    .hero__inner{
            padding-top: 60px;
            padding-bottom: 60px;

    }
}
.section-full-width>.hero__inner{
    padding-bottom: 0;
}
.section-full-width.section-no-title>.hero__inner{
    padding-top: 0;
}
.hero__text-wrapper{
    transition: padding .3s ease, max-width .3s ease;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1180px;
}
@media screen and (max-width: 769px){
    .hero__text-wrapper{
            padding-left: 16px;
            padding-right: 16px;

    }
}
.hero-content{
    display: inline-block;
    opacity: 0;
}
@media screen and (min-width: 1025.1px){
    .hero-content{
            width: 66.666%;

    }
}
.slick-dotted .hero-content{
    padding-bottom: 30px;
}
.hero-content> :last-child{
    margin-bottom: 0;
}
.slick-current .lazyloaded+.hero__inner .hero-content,
.hero:not(.hero__slide) .lazyloaded+.hero__inner .hero-content{
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-fill-mode: both;
}
@media screen and (min-width: 769.1px){
    .hero__text{
            font-size: 18px;

    }
}
.hero-collection .hero__text{
    margin-bottom: 0;
}
.slick-hero .slick-track,
.slick-hero .slick-slide{
    display: flex;
}
@media screen and (min-width: 769.1px){
    .featured-row-right{
            order: 1;

    }
}
.featured-image-section .wrapper-full .image{
    border-radius: 0;
}
.image-bar{
    overflow: hidden;
}
@media screen and (max-width: 769px){
    .image-bar{
            max-width: 400px;
            margin: 0 auto;

    }
}
.image-bar__item{
    display: block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.image-bar__content,
.image-bar__item{
    position: relative;
    width: 100%;
}
.image-bar--small .image-bar__content,
.image-bar--small .image-bar__item{
    height: 94px;
}
.image-bar--medium .image-bar__content,
.image-bar--medium .image-bar__item{
    height: 357px;
}
.image-bar--large .image-bar__content,
.image-bar--large .image-bar__item{
    height: 488px;
}
.image-bar__caption{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}
.quote-icon-wrapper{
    background-color: var(--color-rosa1);
    border-radius: 17px;
}
.quote-icon{
    color: #fff;
}
@media screen and (min-width: 769.1px){
    .logo-list-title{
            font-size: 16px;
            margin-bottom: 0;

    }
}
@media screen and (max-width: 769px){
    .logo-bar__item img{
            display: block;
            margin: 0 auto;

    }
}
.map-container{
    position: relative;
    width: 100%;
}
@media screen and (max-width: 769px){
    .map-container .media{
            position: relative;
            height: 250px;

    }
}
.map-section--display-map .map-section__image{
    display: none ;
}
.map-section--load-error .map-section__image{
    display: block ;
}
.map-section__content{
    border: none;
}
@media screen and (min-width: 769.1px){
    .map-section__content{
            width: 33.333%;
            padding: 30px;

    }
}
@media screen and (max-width: 769px){
    .map-section__content{
            background-color: #fff;

    }
}
.gm-style-cc,
.gm-style-cc+div{
    visibility: hidden;
}
.featured-blog__author{
    text-transform: capitalize;
}
.comment+.comment{
    margin-top: 15px;
}
.rss-link{
    font-size: .6em;
}
.cart__price-wrapper{
    width: 60px;
    word-wrap: break-word;
    line-height: 1.2;
}
.cart__price{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.cart__product-has-discount .cart__price{
    display: block;
}
.cart__subtotal-discounted{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.cart__subtotal-price{
    max-width: 75%;
}
.product-discount{
    margin-top: 3px;
    margin-bottom: 0;
    color: var(--color-rosa1);
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.order-discount{
    margin-bottom: 3px;
    color: var(--color-rosa1);
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.cookie-message{
    display: none;
}
.cart--no-cookies .cookie-message{
    display: block;
}
#CartDrawer{
    -moz-flex-direction: row;
    flex-direction: row;
}
.cart-products{
    padding: 0 ;
}
.collection-tags a{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 6px 10px;
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
    color: #515151;
}
.collection-tags a:focus{
    outline: 0;
}
.collection-tags a:not(.disabled):not([disabled]):hover,
.collection-tags a:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa2);
    -ms-box-shadow: 0 0 0 .2rem #ac86ff;
    -o-box-shadow: 0 0 0 .2rem #ac86ff;
    box-shadow: 0 0 0 .2rem #ac86ff;
}
.collection-tags a:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.collection-tags .tag--active a{
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
}
.collection-tags .tag--active a:not(.disabled):not([disabled]):hover,
.collection-tags .tag--active a:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
.collection-tags .tag--active a:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.collection-tags .tag--active:not(.tag--all) a:before{
    font-family: Material icons outlined;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: bottom;
    overflow: hidden;
    content: "highlight_off";
    margin-right: 3px;
}
.collection-layout-button{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 6px 10px;
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
    color: #515151;
}
.collection-layout-button:focus{
    outline: 0;
}
.collection-layout-button:not(.disabled):not([disabled]):hover,
.collection-layout-button:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa2);
    -ms-box-shadow: 0 0 0 .2rem #ac86ff;
    -o-box-shadow: 0 0 0 .2rem #ac86ff;
    box-shadow: 0 0 0 .2rem #ac86ff;
}
.collection-layout-button:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.collection-layout-button.collection-layout-button--active{
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
}
.collection-layout-button.collection-layout-button--active:not(.disabled):not([disabled]):hover,
.collection-layout-button.collection-layout-button--active:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
.collection-layout-button.collection-layout-button--active:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.collection-controls{
    margin-bottom: 60px;
}
.collection-controls-wrapper{
    display: flex;
    -ms-justify-content: end;
    justify-content: end;
}
@media screen and (max-width: 1025.1px){
    .collection-controls-wrapper{
            -ms-justify-content: space-between;
            justify-content: center;

    }
    .collection-controls-wrapper .collection-layout-buttons{
            margin-left: auto;

    }
}
.collection-sortby-content{
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: baseline;
}
@media screen and (max-width: 769px){
    .collection-sortby-content{
            -moz-flex-direction: column;
            flex-direction: column;      
            align-items: center;
            text-align: center;


    }
}
.collection-sortby-label{
    flex-shrink: 0;
}
.password-main{
    min-height: 100vh;
    display: flex;
    -moz-flex-direction: column;
    flex-direction: column;
}
.password-page__header{
    padding: 16px 0;
    border-bottom: 2px solid #e5e5e5;
}
.password-content{
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -moz-flex: auto;
    flex: auto;
}
.password-page__content{
    width: 100%;
}
.password-page__footer{
    padding: 30px;
    background-color: #fff;
}
.product-single__media-group.slick-initialized .slick-track{
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}
.product-single__media-flex-wrapper:last-of-type{
    margin-bottom: 0 ;
}
.product-stacked_media_flex{
    flex-basis: auto;
}
.product-single__media-flex{
    width: 100%;
}
.product-single__thumbnails{
    margin-top: 16px;
}
.product-single__thumbnail{
    opacity: .6;
}
.slick-current .product-single__thumbnail{
    opacity: 1;
}
.thumbnail-media-external_video .product-single__thumb{
    object-fit: none;
}
.product-single__thumbnail-badge{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.product-single__thumbnail-badge .icon{
    border-radius: 17px;
    fill: var(--color-rosa1);
    width: 30px;
    height: 30px;
}
.product-single__thumbnail-badge .icon-3d-badge-full-color-element,
.product-single__thumbnail-badge .icon-video-badge-full-color-element{
    fill: #fff;
}
@media screen and (max-width: 769px){
    .product-single-divider{
            margin-top: 30px;

    }
}
.product-single__meta--wrapper{
    margin-top: 10px;
    align-self: flex-start;
}
@media screen and (max-width: 769px){
    .product-single__title{
            font-size: 19px;

    }
}
.variant-unavailable .price-container{
    display: none;
}
.product-single__price--compare-at{
    margin-left: 3px;
}
.product-single__unit{
    display: none;
}
.price-container--unit-available .product-single__unit{
    display: block;
}
@media screen and (min-width: 769.1px){
    .radio-wrapper{
            -moz-flex: 50%;
            flex: 50%;

    }
}
.product-single__form .product-form__item{
    margin-bottom: 15px;
}
.product-single__form .product-form__item>label{
    display: block;
    margin-bottom: 3px;
}
.product-single__form .product-form__item .product-form__input{
    width: 100%;
    padding: 6px 30px 6px 10px;
    background-position: right 10px center;
}
.ie9 .product-single__form .product-form__item .product-form__input,
.lt-ie9 .product-single__form .product-form__item .product-form__input{
    padding-right: 10px;
}
.single-option-radio{
    border: 0;
    padding-top: 0;
    position: relative;
}
.single-option-radio input{
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}
.lt-ie9 .single-option-radio input{
    position: relative;
    height: auto;
    width: auto;
    clip: initial;
}
.single-option-radio label{
    border: 2px solid #e5e5e5;
    border-radius: 17px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -o-appearance: none;
    appearance: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: normal;
    text-transform: uppercase;
    padding: 6px 10px;
    min-width: 38px;
}
.single-option-radio label:focus{
    outline: 0;
}
.lt-ie9 .single-option-radio label.disabled{
    display: none;
}
.single-option-radio input[type=radio]:not(:checked)+label{
    background-color: var(--color-secundario);
    border-color: var(--color-secundario);
    color: #515151;
}
.single-option-radio input[type=radio]:not(:checked)+label:not(.disabled):not([disabled]):hover,
.single-option-radio input[type=radio]:not(:checked)+label:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #515151;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa2);
    -ms-box-shadow: 0 0 0 .2rem #ac86ff;
    -o-box-shadow: 0 0 0 .2rem #ac86ff;
    box-shadow: 0 0 0 .2rem #ac86ff;
}
.single-option-radio input[type=radio]:not(:checked)+label:not(.disabled):not([disabled]):active{
    color: #515151;
    background-color: var(--color-rosa3);
    border-color: var(--color-rosa2);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.single-option-radio input[type=radio]:checked+label{
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    color: #fff;
}
.single-option-radio input[type=radio]:checked+label:not(.disabled):not([disabled]):hover,
.single-option-radio input[type=radio]:checked+label:not(.disabled):not([disabled]):focus{
    opacity: 1;
    color: #fff;
    background-color: #ba9854;
    border-color: #b6924b;
    -ms-box-shadow: 0 0 0 .2rem #93753b;
    -o-box-shadow: 0 0 0 .2rem #93753b;
    box-shadow: 0 0 0 .2rem #93753b;
}
.single-option-radio input[type=radio]:checked+label:not(.disabled):not([disabled]):active{
    color: #fff;
    background-color: var(--color-rosa1);
    border-color: var(--color-rosa1);
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.single-option-radio .option-radio-disabled+label{
    text-decoration: line-through;
}
.variant-label-option-value{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.product-single__variants{
    display: none;
}
.no-js .product-single__variants{
    display: block;
}
.product-single__quantity{
    display: inline-block;
    width: 100%;
}
.variant-unavailable .product-single__quantity,
.variant-soldout .product-single__quantity{
    display: none;
}
.product-single__add-to-cart{
    margin-bottom: 15px;
}
.btn--add-to-cart{
    width: 100%;
}
.section-description.section-blank{
    padding-top: 0;
}
.product-single__description>p:first-child:empty,
.product-single__description>p:last-child:empty,
.pt-description>p:first-child:empty,
.pt-description>p:last-child:empty{
    display: none;
}
.back-box{
    text-align: center;
    position: relative;
}
.back-box+*{
    border-top: none ;
}
.back-box+.tienda-section>div{
    border-top: none ;
}
.page-empty{
    text-align: center;
}
body .tienda-policy__container{
    max-width: initial;
    margin: initial;
    padding-left: initial;
    padding-right: initial;
}
body .tienda-policy__container .rte{
    margin-bottom: 0;
}
.spacer-auto>*{
    margin-bottom: 0;
}
.spacer-auto>*+*{
    margin-top: 15px;
}
.spacer-auto-lg>*{
    margin-bottom: 0;
}
.spacer-auto-lg>*+*{
    margin-top: 22px;
}
.spacer-auto-sm>*{
    margin-bottom: 0;
}
.spacer-auto-sm>*+*{
    margin-top: 7px;
}
.spacer-auto-xs>*{
    margin-bottom: 0;
}
.spacer-auto-xs>*+*{
    margin-top: 3px;
}
.spacer-top{
    margin-top: 15px;
}
.spacer-top-lg{
    margin-top: 22px;
}
.spacer-top-sm{
    margin-top: 7px;
}
.spacer-top-xs{
    margin-top: 3px;
}
.spacer-top-auto{
    margin-top: auto;
}
.spacer-top-none{
    margin-top: 0;
}
.spacer-bottom{
    margin-bottom: 15px;
}

.spacer-bottom-md {
    margin-bottom: 10px;
}

.spacer-bottom-lg{
    margin-bottom: 22px;
}
.spacer-bottom-sm{
    margin-bottom: 7px;
}
.spacer-bottom-xs{
    margin-bottom: 3px;
}
.spacer-bottom-auto{
    margin-bottom: auto;
}
.spacer-bottom-none{
    margin-bottom: 0;
}
.spacer-left{
    margin-left: 15px;
}
.spacer-left-lg{
    margin-left: 22px;
}
.spacer-left-sm{
    margin-left: 7px;
}
.spacer-left-xs{
    margin-left: 3px;
}
.spacer-left-auto{
    margin-left: auto;
}
.spacer-right{
    margin-right: 15px;
}
.spacer-right-lg{
    margin-right: 22px;
}
.spacer-right-sm{
    margin-right: 7px;
}
.spacer-right-xs{
    margin-right: 3px;
}
.spacer-right-auto{
    margin-right: auto;
}
.spacer-none{
    margin: 0;
}
.spacer-reset{
    margin: initial;
}
.spacer-x-auto{
    margin-left: auto;
    margin-right: auto;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.flex-column{
    -moz-flex-direction: column;
    flex-direction: column;
}
.flex-shrink{
    flex-shrink: 0;
}
.flex-nowrap{
    flex-wrap: nowrap;
}
.flex-0{
    -moz-flex: 0;
    flex: 0;
}
.flex-1{
    -moz-flex: 1;
    flex: 1;
}
.flex-2{
    -moz-flex: 2;
    flex: 2;
}
.flex-3{
    -moz-flex: 3;
    flex: 3;
}
.flex-100{
    -moz-flex: 100%;
    flex: 100%;
}
.justify-between{
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.justify-around{
    -ms-justify-content: space-around;
    justify-content: space-around;
}
@media screen and (min-width: 769.1px){
    .order-0{
            order: 0;

    }
}
@media screen and (min-width: 769.1px){
    .order-1{
            order: 1;

    }
}
@media screen and (min-width: 769.1px){
    .order-2{
            order: 2;

    }
}
@media screen and (max-width: 769px){
    .small-order-0{
            order: 0;

    }
}
@media screen and (max-width: 769px){
    .small-order-1{
            order: 1;

    }
}
@media screen and (max-width: 769px){
    .small-order-2{
            order: 2;

    }
}
.display-none{
    display: none;
}
.display-block{
    display: block;
}
.display-inline{
    display: inline;
}
.text-ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.text-primary,
.text-secondary{
    color: var(--color-rosa1);
}
.text-sale{
    color: red;
}
.text-small{
    font-size: 12px;
}
.text-medium{
    font-size: 13px;
    font-style: italic;
}
.text-large{
    font-size: 18px;
}
.text-link{
    color: var(--color-rosa1);
    text-decoration: underline;
}
@media screen and (min-width: 769.1px){
    .text-lead{
            font-size: 18px;

    }
}
.text-accent,
.text-money{
    font-family: Abel, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.text-sub{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.text-strike{
    text-decoration: line-through ;
}
.text-capitalize{
    text-transform: capitalize;
}
.text-muted{
    color: #b9b9b9;
}
.text-italic{
    font-style: italic;
}
@media screen and (max-width: 769px){
    .text-small-mobile{
            font-size: 12px;

    }
}
.border-top{
    border-top: 2px solid #e5e5e5;
}
.border-bottom{
    border-bottom: 2px solid #e5e5e5;
}
.border-rounded{
    border-radius: 17px;
}
.border-top-none{
    border-top: 0;
}
.border-bottom-none{
    border-bottom: 0;
}
.radius-none{
    border-radius: 0;
}
.radius-circle{
    border-radius: 17px;
}
.bg-default,
.section-default .bg-default{
    background-color: #fff;
}
.fadeIn{
    animation-duration: .6s;
    animation-name: fadeIn;
    animation-fill-mode: both;
}
.fadeInUp{
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-fill-mode: both;
}
.fadeInDown{
    animation-duration: .6s;
    animation-name: fadeInDown;
    animation-fill-mode: both;
}
.fadeInLeft{
    animation-duration: .6s;
    animation-name: fadeInLeft;
    animation-fill-mode: both;
}
.fadeInRight{
    animation-duration: .6s;
    animation-name: fadeInRight;
    animation-fill-mode: both;
}
.fadeOut{
    animation-duration: .6s;
    animation-name: fadeOut;
    animation-fill-mode: both;
}
.fadeOutUp{
    animation-duration: .6s;
    animation-name: fadeOutUp;
    animation-fill-mode: both;
}
.fadeOutDown{
    animation-duration: .6s;
    animation-name: fadeOutDown;
    animation-fill-mode: both;
}
.fadeOutLeft{
    animation-duration: .6s;
    animation-name: fadeOutLeft;
    animation-fill-mode: both;
}
.fadeOutRight{
    animation-duration: .6s;
    animation-name: fadeOutRight;
    animation-fill-mode: both;
}
.slideInLeft{
    animation-duration: .6s;
    animation-name: slideInLeft;
    animation-fill-mode: both;
}
.slideInRight{
    animation-duration: .6s;
    animation-name: slideInRight;
    animation-fill-mode: both;
}
.slideInUp{
    animation-duration: .6s;
    animation-name: slideInUp;
    animation-fill-mode: both;
}
.slideInDown{
    animation-duration: .6s;
    animation-name: slideInDown;
    animation-fill-mode: both;
}
.slideOutLeft{
    animation-duration: .6s;
    animation-name: slideOutLeft;
    animation-fill-mode: both;
}
.slideOutRight{
    animation-duration: .6s;
    animation-name: slideOutRight;
    animation-fill-mode: both;
}
.slideOutUp{
    animation-duration: .6s;
    animation-name: slideOutUp;
    animation-fill-mode: both;
}
.slideOutDown{
    animation-duration: .6s;
    animation-name: slideOutDown;
    animation-fill-mode: both;
}
.bounce{
    animation-duration: .6s;
    animation-name: bounce;
    animation-fill-mode: both;
}
.flash{
    animation-duration: .6s;
    animation-name: flash;
    animation-fill-mode: both;
}
.pulse{
    animation-duration: .6s;
    animation-name: pulse;
    animation-fill-mode: both;
}
.rubberBand{
    animation-duration: .6s;
    animation-name: rubberBand;
    animation-fill-mode: both;
}
.shakeX{
    animation-duration: .6s;
    animation-name: shakeX;
    animation-fill-mode: both;
}
.shakeY{
    animation-duration: .6s;
    animation-name: shakeY;
    animation-fill-mode: both;
}
.tada{
    animation-duration: .6s;
    animation-name: tada;
    animation-fill-mode: both;
}
.heartBeat{
    animation-duration: .6s;
    animation-name: heartBeat;
    animation-fill-mode: both;
}
.infinite{
    animation-iteration-count: infinite;
}
.slow{
    animation-duration: 1s;
}
.fast{
    animation-duration: .3s;
}
.spin{
    animation: spin 1s infinite cubic-bezier(0.35, 0, 0.25, 1);
}
.visually-hidden{
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}
.visually-shown{
    clip: initial;
    overflow: visible;
    position: inherit;
    height: initial;
    width: initial;
}
.visible{
    opacity: 1;
    visibility: visible;
}
.hide-empty:empty{
    display: none;
}
.inline-list{
    list-style: none;
    margin-left: 0;
    margin-right: -7px;
    margin-bottom: -7px;
}
.inline-list>*{
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 7px;
    vertical-align: middle;
}
.clearfix:after{
    content: "";
    display: table;
    clear: both;
}
.whitespace-nowrap{
    white-space: nowrap;
}
.hover-none:hover{
    opacity: 1;
}
@media screen and (min-width: 769.1px){
    body.js-drawer-open .prevent-scrollbar-shift,
        body.js-modal-open .prevent-scrollbar-shift{
            padding-right: 16.5px;

    }
}
.sticky-header .sticky-check-header{
    top: 85px;
}
@media screen and (max-width: 769px){
    .sticky-header .sticky-check-header{
            top: 58px;

    }
}
.sticky-announcement_bar .sticky-check-header{
    top: 53px;
}
@media screen and (max-width: 769px){
    .sticky-announcement_bar .sticky-check-header{
            top: 36px;

    }
}
.sticky-header.sticky-announcement_bar .sticky-check-header{
    top: 123px;
}
@media screen and (max-width: 769px){
    .sticky-header.sticky-announcement_bar .sticky-check-header{
            top: 96px;

    }
}
[disabled],
.disabled{
    cursor: default ;
    opacity: .6 ;
}
.draggable{
    cursor: move;
    cursor: grab;
    cursor: -webkit-grab;
}
.draggable:active{
    cursor: move;
    cursor: grab;
    cursor: grabbing;
    cursor: -webkit-grabbing;
}
.drawer__footer .route-div .route-widget{
    -ms-justify-content: center ;
    justify-content: center ;
}
.drawer__footer .route-div .rw-text-top,
.drawer__footer .route-div .rw-text-bottom{
    color: #fff;
}
.spr-badge{
    font-size: 12px;
}
@media screen and (max-width: 769px){
    .collection-filters-btn{
            margin-bottom: 15px;

    }
}
.filter-group-body ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.filter-group-body ul li:not(:last-child){
    margin-bottom: 10px;
}
.dbtfy-filter-list-links li.active a{
    color: var(--color-rosa1);
}
.dbtfy-order_feedback .order-feedback,
.dbtfy-order_feedback .order-feedback-other{
    margin-bottom: 0;
}
.dbtfy-page_transition{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000000008;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    opacity: 1;
    visibility: visible;
    transition: opacity .6s ease, visibility .6s ease;
}
.dbtfy-page_transition.pt-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.dbtfy-page_transition .pt-wrapper{
    width: 100%;
    height: 100%;
}
.dbtfy-product_tabs+.product-single__description,
.product-single__description+.dbtfy-product_tabs{
    margin-top: 15px;
}
.dbtfy-product_tabs .review-widget{
    border-top: 0;
}
.dbtfy-product_tabs .review-widget>*{
    border-top: 0;
}
.dbtfy-product-tab-box{
border-left: 4px solid var(--color-rosa1);
}
.dbtfy-product-tab-box:hover{
border-left: 4px solid var(--color-rosa3);

}
.dbtfy-product-tab-box [class^=horizontal-tab]{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 16px;
}
.dbtfy-product-tab-box [class^=horizontal-tab] div{
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-fill-mode: both;
}
.dbtfy-product-tab-box .vertical-tab{
    margin-top: 16px ;
}
.horizontal-tab-box{
    display: flex;
    margin-top: 16px ;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    transform: translateY(2px);
}
.horizontal-tab-box .card-header{
    border-bottom: none;
}
.horizontal-tab-box .product-tab{
    flex-shrink: 0;
}
.horizontal-tabs-body .tab-body{
    border-left: none;
    border-top: 2px solid #e5e5e5;
}
.horizontal-tabs-body .tab-content{
    overflow: auto;
}
.horizontal-tab-active{
    position: relative;
    font-weight: 400;
    color: #000 ;
}
.horizontal-tab-active:after{
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    display: block;
    border-bottom: 2px solid var(--color-rosa1);
}
@media screen and (max-width: 769px){
    body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .grid{
            margin-left: -8px;

    }
}
@media screen and (max-width: 769px){
    body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .grid__item{
            padding-left: 8px;

    }
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .image-sticky_addtocart,
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart svg{
    width: 58px;
    height: 58px;
}
@media screen and (max-width: 769px){
    body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .image-sticky_addtocart,
        body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart svg{
            width: 38px;
            height: 38px;

    }
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .title-sticky_addtocart{
    margin-bottom: 0;
    width: 100%;
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .select-wrapper-sticky_addtocart select{
    width: 100%;
}
@media screen and (min-width: 769.1px) and (max-width: 1025px){
    body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .select-wrapper-sticky_addtocart{
            max-width: 18%;

    }
}
@media screen and (max-width: 769px){
    body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .select-wrapper-sticky_addtocart{
            max-width: 100%;

    }
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .text-wrapper-sticky_addtocart{
    max-width: 30%;
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .input-sticky_addtocart{
    background-color: transparent;
    border-color: transparent;
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .dbtfy-sticky-price-box .discount-sticky-price,
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .dbtfy-sticky-price-box .total-sticky-compare-price{
    margin-left: 3px;
}
body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .review-badge{
    white-space: nowrap;
}
@media screen and (max-width: 769px){
    body:not(.dbtfy-sticky_addtocart-destroy) .dbtfy-sticky_addtocart .btn--sticky_addtocart{
            padding: 6px 10px;

    }
}
body:not(.dbtfy-sticky_addtocart-destroy) .announcement-container{
    z-index: 3;
}
body:not(.dbtfy-sticky_addtocart-destroy).template-product .page-container{
    padding-bottom: 74px;
}
@media screen and (max-width: 769px){
    body:not(.dbtfy-sticky_addtocart-destroy).template-product .page-container{
            padding-bottom: 54px;

    }
}
@font-face{
    font-family: Material Icons Outlined;
    font-weight: 400;
    font-style: normal;
    font-display: block;
    src: url(fonts/material-icons-outlined.woff2) format("woff2");
}
div[class*='preorder-container-'].product__image-container{
    overflow: visible;
}
div[class*='preorder-container-'],
li[class*='preorder-container-'],
td[class*='preorder-container-']{
    position: relative;
}
.preorder-badge.rectangle{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    width: 20%;
    text-align: center;
    font-weight: bold;
    color: #FFF;
    overflow: hidden;
}
.preorder-badge.circle{
    display: table;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    color: #FFF;
    overflow: hidden;
}
.preorder-badge.circle span{
    display: table-cell;
    vertical-align: middle;
}
.preorder-badge.ribbon{
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}
.preorder-badge.ribbon span{
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    position: absolute;
    top: 19px;
    right: -21px;
}
.preorder-badge.ribbon span::before{
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #888888;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #888888;
}
.preorder-badge.ribbon span::after{
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #888888;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #888888;
}
.cart__row .preorder-badge{
    display: none;
}
@media only screen and (max-width: 600px){
    .preorder-badge.circle{
            top: 10px;
            right: 10px;
            padding: 5px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-weight: bold;
            overflow: hidden;
            line-height: 16px;
            font-size: 12px;

    }
}
.jquery-modal.blocker.current{
    z-index: 999999999;
}
.pn-mixed-cart-warning-title{
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.pn-modal{
    opacity: 1;
    display: none;
    overflow: visible;
    padding: 0px;
}
.pn-manual-modal-container{
    display: block;
    
    position: fixed;
    
    z-index: 9999;
    
    left: 0;
    top: 0;
    width: 100%;
    
    height: 100%;
    
    overflow: auto;
    
    background-color: black;
    
    background-color: rgba(0, 0, 0, 0.4);
    
}
.pn-manual-modal-content{
    background-color: #fefefe;
    margin: 15% auto;
    
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    
    max-width: 600px;
}
.pn-mixed-cart-warning-content{
    text-align: center;
}
.loading-image{
    width: 85px;
}
.loader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: auto;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.79);
    display: none;
    align-items: center;
    justify-content: center;
}
.ui-widget-overlay{
    opacity: 0.6 ;
    background: #fff ;
}
.ui-dialog{
    position: fixed ;
    height: auto;
    width: 300px;
    top: 0 ;
    left: 363.5px;
    display: block;
    z-index: 10000000000;
}
progress{
    text-align: center;
    height: 1.6em;
    width: 100%;
    -webkit-appearance: none;
    border: none;
    
    position: relative;
    border-radius: 4px;
    color: white;
    overflow: hidden;
}
progress:before{
    content: attr(data-label);
    font-size: 0.8em;
    vertical-align: 0;
    
    position: absolute;
    left: 0;
    right: 0;
}
progress::-webkit-progress-bar{
    background-color: #f5f5f5;
}
.nav-progress::-webkit-progress-bar{
    background-color: #ffffff ;
}
progress::-webkit-progress-value{
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    background-color: #5cb75c;
}
progress::-moz-progress-bar{
    background-color: #f5f5f5;
}
.progress_percent{
    left: 9px;
    display: flex;
    position: absolute;
    z-index: 100;
    margin-left: 64%;
}
.pg-mg{
    margin-left: 50%;
}
.setting-note{
    padding-left: 20px;
}
.watch-later-btn{
    background-color: #fff;
    border-color: #ccc;
    box-shadow: none;
    color: #333;
    display: flex;
    align-items: center;
}
.watch-later-btn span{
    margin-right: 6px;
    position: relative;
    top: 2px;
}
.watch-later-btn img{
    height: 20px;
    width: 20px;
}
.line-through{
    text-decoration: line-through;
}
#notify-stock-back-modal .bg-black,
.ordersfy-modal{
    font-family: 'Josefin Sans', sans-serif;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 555;
}
.c-widget{
    max-width: 400px;
    
}
.c-widget .sd_payment_type{
    float: left;
    width: 100%;
    margin: 10px 0 5px;
}
.c-widget .sd_payment_type label{
    float: left;
    width: 100%;
    font-size: 14px;
}
.c-widget .product-form__item label{
    display: block;
}
.c-widget .sd_payment_type.sd-custom-price-type span{
    width: 100%;
    padding: 0;
    float: left;
    margin: 10px 0 0;
    padding-right: 15px;
}
.c-widget .sd_payment_type [type="radio"]:checked+label,
.c-widget .sd_payment_type [type="radio"]:not(:checked)+label{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.c-widget .sd_payment_type span label{
    border: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 14px;
    color: #707070;
    font-weight: 500;
    margin-bottom: 5px;
    border-radius: 4px;
}
.c-widget .sd_payment_type label{
    float: left;
    width: 100%;
    font-size: 14px;
}
.c-widget .sd_payment_type [type="radio"]:checked+label:before,
.c-widget .sd_payment_type [type="radio"]:not(:checked)+label:before{
    content: '';
    position: absolute;
    left: 10px;
    top: 11px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 18px;
    background: #fff;
}
.c-widget .sd_payment_type [type="radio"]:not(:checked)+label:after{
    opacity: 0;
    transform: scale(0);
}
.c-widget .sd_payment_type [type="radio"]:checked+label:after,
.c-widget .sd_payment_type [type="radio"]:not(:checked)+label:after{
    content: '';
    position: absolute;
    transition: all 0.2s ease;
    left: 17px;
    top: 15px;
    width: 5px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.c-widget .sd_payment_type [type="radio"]:checked,
.c-widget .sd_payment_type [type="radio"]:not(:checked){
    position: absolute;
    left: -9999px;
}
.c-widget .sd_payment_type [type="radio"]:checked+label:before{
    background-color: #007bff;
    border-color: #007bff;
}
.c-widget .sd-span-custompart-price{
    border: 1px solid #ddd;
    max-width: 150px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    min-height: 42px;
}
.c-widget .sd-span-custompart-price span.sd-cust-currency{
    padding: 5px 15px;
    border-right: 1px solid #ccc;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
}
.c-widget input.price-input-preorder{
    -moz-appearance: textfield;
    padding: 7px 15px;
    border: 0px;
    outline: none;
    min-height: unset;
    font-size: 15px;
    width: 100%;
    display: inline-block;
}
.partial-initial-payment{
    color: #68b562;
    font-size: 15px;
}
.pn-partial-payment{
    display: block;
    width: 100%;
}
.pn-partial-payment ul{
    display: inline-block;
    
    margin: 20px 0;
    border: 1px solid #fff;
    font-size: 14px;
}
.pn-partial-payment ul li{
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.pn-partial-payment ul li.active{
    background-color: #00800017;
}
.pn-partial-payment ul li span{
    min-width: 150px;
    text-align: left;
    margin-right: 10px;
    word-break: break-word;
}
.pn-original-subtotal{
    text-decoration: line-through;
    display: inline-block;
}
.pn-discounted-subtotal{
    font-weight: bold;
    margin-left: 20px;
    display: inline-block;
    font-size: 1.3em;
}
.pn-line-item-original-price{
    text-decoration: line-through;
}
.pn-line-item-discounted-price{
    font-size: 1.2em;
    margin-left: 8px;
}
@media screen and (min-width: 767px){
    .nav-container-menu>li>a,
        .nav-container-menu .inner-nav-containers>li>a{
            font-size: 16px;

    }
}
/*#PageContainer {
    overflow-x: visible;*/ /* solo bloquea scroll horizontal */
    /*overflow-y: hidden;*/ /* deja que sticky funcione */
/*}*/

.home-slider .slick-dots{
    position: absolute;
    bottom: 1rem;
    padding-right: 1.5rem;
    justify-content: flex-end;
}
.home-slider .slick-arrow{
    display: none ;
}
@media only screen and (max-width: 768px){
    .grid__item{
            padding-left: 0;

    }
    .collection-list-products .grid__item{
            padding-left: 16px;

    }
    .grid.product-single{
            margin-left: 0;

    }
}
.featured-collections-section .grid.slick-initialized{
    padding: 0 2rem;
}
.featured-collections-section .slick-list{
    overflow: visible;
}
.featured-collections-section .slick-dots{
    position: relative;
    bottom: auto;
}
.gallery-section .grid{
    margin-left: 0;
}
.newsletter-section .grid{
    margin-left: 0;
}
.slick-dots{
    position: relative;
    bottom: auto;
}
.section-description{
    padding-left: 1rem;
    padding-right: 1rem;
}
.contenido-productos{
    display: flex;
}
@media only screen and (max-width: 1025.1px){
    .contenido-productos{
            flex-direction: column;

    }
}
.contenido-productos .collection-controls{
    margin-bottom: 5px;
}
.contenido-productos .w-content{
    background: #fff;
    padding: 1rem;
    width:100%;
     border-radius:17px;
}
.contenido-productos .w-content .collection-controls-wrapper{
    margin-top: 10px;
}
.contenido-productos .sidebar-productos{
    padding-right: 0rem;
    width: 250px;
    min-width: 250px;
    padding-top: 0px;
    background: #fff;
    margin-right: 10px;
    border-radius:17px;
}
@media only screen and (max-width: 1025.1px){
    .contenido-productos .sidebar-productos{
            width: 100%;
            margin-bottom: 1rem;

    }
}
.contenido-productos .sidebar-productos .link-cat{
    display: block;
}
.contenido-productos .sidebar-productos .price-input{
    width: 100%;
    display: flex;
    margin: 0px 0 20px;
}
.contenido-productos .sidebar-productos .price-input .field{
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
}
.contenido-productos .sidebar-productos .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14px;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}
.contenido-productos .sidebar-productos input[type="number"]::-webkit-outer-spin-button,
.contenido-productos .sidebar-productos input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
.contenido-productos .sidebar-productos .price-input .separator{
    width: 30px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}
.contenido-productos .sidebar-productos .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}
.contenido-productos .sidebar-productos .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--color-rosa1);
}
.contenido-productos .sidebar-productos input{
    padding: 0;
    border: none;
    transition: none;
    background-color: none;
    border-color: none;
    box-shadow: none;
}
.contenido-productos .sidebar-productos input:focus{
    border: none ;
    outline: none;
    box-shadow: none;
}
.contenido-productos .sidebar-productos input:hover{
    border: none;
    outline: none;
}
.contenido-productos .sidebar-productos .range-input{
    position: relative;
}
.contenido-productos .sidebar-productos .range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contenido-productos .sidebar-productos input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--color-rosa1);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.contenido-productos .sidebar-productos input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--color-rosa1);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.main-content.bg-gris{
    background: #f8f8f8;
}
.breadcrumbs.bg-gris{
    background: #f8f8f8;
    font-size: 15px;
    margin-top: 30px;
}
.product-single__description{
    text-align: justify;
}
.section-description h3{
    margin-bottom: 1rem;
}
@media only screen and (max-width: 768px){
    .section-description{
            padding-right: 0;

    }
}
.tabla-esp{
    border-radius: 0;
    border: none;
    text-align: left;
    margin-bottom: 3rem;
}
.tabla-esp thead th{
    background: var(--color-rosa1);
}
.tabla-esp tr:nth-child(odd){
    background: #f8f8f8;
}
.tabla-esp tr td{
    border: none;
}
@media only screen and (max-width: 768px){
    .grid-cuenta{
            margin-left: 0;

    }
    .grid-mi-cuenta{
            margin-left: 0;

    }
    .site-footer{
            padding: 0px 20px;

    }
}
.wrap-checkout{
    padding: 40px 0 60px;
    display: flex;
}
@media only screen and (max-width: 768px){
    .wrap-checkout{
            flex-direction: column;

    }
}
.wrap-checkout .checkout-form{
    width: 50%;
    min-width: 50%;
}
@media only screen and (max-width: 768px){
    .wrap-checkout .checkout-form{
            width: 100%;
            padding-left: 16px;
            margin-bottom: 50px;

    }
}
.wrap-checkout .checkout-form h2{
    margin-bottom: 20px;
}
.wrap-checkout .checkout-form .form-group{
    margin-bottom: 20px;
}
.wrap-checkout .checkout-form .form-group input{
    width: 100%;
}
.wrap-checkout .checkout-form .form-group select{
    width: 100%;
}
.wrap-checkout .checkout-form .botones-comprar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 768px){
    .wrap-checkout .checkout-form .botones-comprar{
            flex-direction: column;

    }
}
.wrap-checkout .checkout-form .volver-carrito{
    display: inline-flex;
    font-size: 16px;
    min-width: 150px;
    align-items: center;
}
.wrap-checkout .checkout-form .volver-carrito svg{
    width: 10px;
    margin-right: 5px;
}
@media only screen and (max-width: 550px){
    .wrap-checkout .checkout-form .volver-carrito{
            width: 100%;
            margin-bottom: 1rem;

    }
}
.wrap-checkout .checkout-form .btn--primary{
    width: 250px ;
    min-width: 150px;
}
@media only screen and (max-width: 550px){
    .wrap-checkout .checkout-form .btn--primary{
            width: 100% ;
            min-width: 100%;

    }
}
.wrap-checkout .checkout-detalle{
    width: 50%;
    min-width: 50%;
    padding-left: 2rem;
}
@media only screen and (max-width: 768px){
    .wrap-checkout .checkout-detalle{
            width: 100%;
            padding-left: 0;

    }
}
.checkout-detalle h2{
    margin-bottom:20px;
}
.wrap-checkout .checkout-detalle .box-orden{
    border: 1px solid var(--color-rosa1);
    padding: 1.5rem 1.3rem;
    border-radius:17px;
}
.wrap-checkout .checkout-detalle .form-newsletter{
    display: flex;
    align-items: flex-start;
}
.wrap-checkout .checkout-detalle .form-newsletter input{
    margin-top: 4px;
}
.grid__item.full-width{
    min-width: 100%;
}
.mensaje-checkout{
    padding: 40px 0 60px;
}
.datos-compra p{
    margin-bottom: 5px;
}
.datos-compra .btn-volver{
    width: 250px;
    margin-top: 20px;
}
.w-modal{
    position: fixed;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.w-modal.visible{
    display: flex;
}
.w-modal .modal-body{
    width: 700px;
    border-radius: 10px;
    padding: 2rem;
    max-width: 100%;
    background: #fff;
    text-align: center;
    position: relative;
}
@media only screen and (max-width: 640px){
    .w-modal .modal-body{
            padding: 3rem 1rem 1rem;

    }
}
.w-modal .modal-body h2{
    font-size: 30px;
}
.w-modal .modal-body .img-modal{
    margin: 10px 0;
}
.w-modal .modal-body .botones{
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}
@media only screen and (max-width: 640px){
    .w-modal .modal-body .botones{
            flex-direction: column;

    }
}
.w-modal .modal-body .botones .btn{
    min-width: 170px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
}
@media only screen and (max-width: 640px){
    .w-modal .modal-body .botones .btn{
            height: 50px;
            margin-bottom: 20px;
    }
}
.w-modal .cerrar-modal {
    font-size: 20px;
    position: absolute;
    top: 8px;
    right: 17px;
    cursor: pointer;
}
.slider-productos-rel .slick-arrow{
    display: none ;
}
.product-single .slick-arrow:before{
    color: #000;
    font-size: 24px;
}
.product-single .slick-arrow{
    width: 30px;
    height: 30px;
    margin: 0;
    line-height: 1.5;
}
.product__slider-thmb .slide{
    padding: 4px;
    transition: all .3s ease;
}
.product__slider-thmb .slide:hover{
    opacity: .8;
    cursor:pointer;
}
.w-terminos{
    padding: 3rem 0 6rem;
    text-align: justify;
}
.bottom-sticky_addtocart{
    position: fixed;
    background: #fff;
    z-index: 999;
    width: 100%;
    padding: 0.5rem;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    transform: translateY(100%);
}
.bottom-sticky_addtocart.visible{
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}
.btn-wsp{
    position: fixed;
    bottom: 1rem;
    left: 1.5rem;
    z-index: 999;
}
.btn-wsp img{
    width: 60px;
}
::-webkit-scrollbar{
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-thumb{
    background: var(--color-rosa2);
    border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover{
    background: var(--color-rosa3);
}
.BtnSuscribete{
    letter-spacing: 2px;
    border: 2px solid #fff ;
    background: var(--color-rosa2) ;
    height:60px ;
}
.BtnSuscribete:hover{
    box-shadow: 0 0 0 0.0rem #fff ;
    background:  var(--color-rosa2) ;
}
.chk-tienda{
  background-color: #fff ;
  border: 2px solid #000 ;
  width: 20px ;
  height: 20px ;
}
.chk-tienda:checked{
  background-color: #000 ;
  border: 2px dotted #f00 ;
  background: pink ;
}
.form-check{
  display: flex;
  align-items: center; 
}
.form-check label{
    margin-bottom:0px;
}
.fa-star{
color: var(--color-rosa3);
}

.fa-star-half-stroke {
    color: var(--color-rosa3);
}
.fa-chevron-left {
    padding-right: 5px;
}
.DivSeleccion{
    display: flex;
    justify-content: space-between;
}
.DivSeleccion div{
    width:48%;
}
.TrustBadgesModule_trustBadgeContainer{
    margin: auto;
    padding: 15px 5px 0;
}
.upcart-discount-code-input{
    padding: 10px;
    border-radius: 15px 0px 0px 15px;
    margin-bottom: 10px;
}
.upcart-discount-code-button{
    padding: 10px;
    border-radius: 0px 15px 15px 0px;
    margin-bottom: 10px;
    background: var(--color-rosa1);
}
.DivDescuentos{
    margin-bottom:10px;
}
.InputDescuentoSlide{
    height: 40px;
    border-radius:15px 0px 0px 15px;
}
.BtnDescuentoSlide{
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
     border-radius:0px 15px 15px 0px;
}
.upcart-trust-badge-image{
    width: 100%;
    height:100%;
}
#popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
#popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px){
    #popup-content{
        width: 50%;

    }
}
.select2-container--default .select2-selection--single{
    background-color: #fff;
    border: 2px solid var(--color-rosa2);
    color: var(--color-rosa3);
    height: 38px;
    line-height: 36px;
    border-radius: 10px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background: #f2f2f2;
    color: #333;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    border-color: var(--color-rosa3) transparent transparent transparent;
    top: 7px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    border-color: var(--color-rosa2);
    line-height: 35px;
    text-align: left;
}
.select2-container--default .select2-results__option--highlighted{
    background-color: var(--color-rosa1);
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background-color: var(--color-rosa1);
}
.select2-container--default .select2-results__option{
    padding: 8px;
    margin: 0;
    color: #515151;
}
.select2-container--open .select2-dropdown--below{
    top: -23px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}
.select2-selection__arrow:before{
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 16px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before{
    transform: rotate(180deg);
}
.select2-results__option i{
  padding-right: 5px;
}
.stickyOferta-desktop{
 position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: var(--color-rosa1);
  border: 1px solid var(--color-rosa3);
  padding: 20px 5px 20px 5px;
  z-index:9999;
  border-radius: 15px 0px 0px 15px;
  opacity: .7;
  cursor:pointer;
      text-align: center;
}
.stickyOferta-desktop:hover{
    opacity:1;
}
.stickyOferta-desktop p{
    margin:0px;
    font-size:17px;
    color: var(--color-rosa3);
}
.stickyOferta-mobile{
    display: none;
  
}
@media (max-width: 768px){
    .stickyOferta-desktop{
        display: none;

    }
    .imgRel{
        padding:5px;

    }
    .stickyOferta-mobile{
           cursor:pointer;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 10px;
        display: block;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
          z-index:998;
              text-align: center;

    }
    .stickyOferta-mobile p{
        margin:0px;
        font-size:17px;
        color: var(--color-rosa3);
        text-align:center;
    }
}
.contenedor-imagen-producto{
  position: relative;
}
.contenedor-imagen-producto img{
    object-fit: cover;
    width: 100%;
    height: 545px;
}
.contenedor-imagen-thmb{
   min-height: 175px; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.contenedor-imagen-thmb img{
    object-fit: cover;
    width: 100%;
    height: 175px;
}
.contenedor-imagen-categoria{
   min-height: 280px; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.contenedor-imagen-categoria img{
    object-fit: cover;
    width: 100%;
    height: 260px;
}
@media screen and (min-width: 768px) and (max-width: 1025px){
    .contenedor-imagen-categoria img{
        object-fit: cover;
        width: 100%;
        height: 395px;
    }
}
@media screen and (min-width: 600px) and (max-width: 768px){
    .contenedor-imagen-categoria img{
        object-fit: cover;
        width: 100%;
        height: 300px;
    }
}
@media screen and (min-width: 400px) and (max-width: 600px){
    .contenedor-imagen-categoria img{
        object-fit: cover;
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 360px){
    .bandera-promocion{

          font-size:13px;
          padding: 8px;

    }
}
.contenedor-imagen-relacionados{
  min-height: 300px; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.contenedor-imagen-relacionados img{
    object-fit: cover;
    max-width: 100%;
    height: 300px;
}

.ImgCategoria{
width:100%;
}

.slide .bandera-promocion{
     padding: 10px;
      box-shadow: 0 0 0 .2rem rgb(230 126 126 / 52%);
      top:20px;
      border-radius: 10px 0 0 10px;
      width: auto;
}
.producto-agotado img{
  filter: grayscale(100%);
}
.producto-agotado::after{

    content: "AGOTADO";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background-color: rgb(0 0 0 / 50%);
    padding: 3% 10px;
    border-radius: 5px;
    width: 100%;
    text-align:center;
}
.producto-agotado .bandera-promocion{
    display:none;
}
.producto-agotado-thmb img{
     filter: grayscale(100%);
}
.back-to-top{
  display: none;
  position: fixed;
  right: 50%;
  bottom: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-rosa2);
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 28px;
  cursor: pointer;

  animation-name: up-down;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes up-down{
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.product__slider-thmb{
  position: relative;
}
.product__slider-thmb img{
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
.product__slider-thmb img.slick-active{
  opacity: 1;
}
.product__slider-thmb img:not(.slick-active){
  opacity: 0.5;
}
.BtnActionNav{
    font-size: 19px;
    color: var(--color-rosa3) ;
}
.tab-resena{
  position: relative;
  padding-top: 0;
  padding-right: 0;
}
.botones-resenas{
  display: flex;
  justify-content: space-between;
  padding-right: 16px;
  align-items: baseline;
}

.botones-resenas .escribir {
    font-size: 16px;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    height: 36px;
    cursor: pointer;
    color: #000000;
    padding: 10px;
    display: inline-block;
    padding: 6px 12px;
    margin-top: 15px;

}

.botones-resenas .ver-mas-resenas{
  color: #000;
  cursor: pointer;
}
.cards-resenas {
    max-height: 320px;
    overflow: auto;
    padding-right: 16px;
    margin-top: 15px;
}
/*.cards-resenas:after{
  content: "";
  background: white;
  background: linear-gradient(0deg, white 0%, white 14%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 10;
}*/
.card-resena{
  border-bottom: 1px solid #ccc;
  padding-bottom: .7rem;
  margin-bottom: .7rem;
  text-align: left;
}
.card-resena:last-child{
  border: none;
}
.card-resena h3{
  font-size: .9rem;
  font-weight: 600;
  margin: 0 0rem;
}
.card-resena .fecha{
  color: #767676;
  font-size: .7rem;
}
.card-resena .stars{
  color: var(--color-rosa3);
  margin-bottom: .5rem;
}
.card-resena .comentario{
  display: flex;
  align-items: center;
}
.card-resena .comentario p{
  line-height: 1.3;
  font-size: .9rem;
  margin-bottom: 0;
  text-align: justify;
  padding-right: 30px;
}
.card-resena .comentario img{
  border-radius: 5px;
  width: 60px;
}
.modal-resenas .modal-body{
  max-height: 80vh;
  overflow: auto;
}
.modal-escribir-resenas{
  text-align: left;
}
.modal-escribir-resenas h3{
  margin: 0 0 1rem;
  font-weight: bold;
}
.modal-escribir-resenas .stars{
  display: flex;
  color: var(--color-rosa3);
}
.modal-escribir-resenas .stars .item{
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.modal-escribir-resenas .stars .item .on{
  display: none;
}
.modal-escribir-resenas .stars .item.activo .on{
  display: block;
}
.modal-escribir-resenas .stars .item.activo .off{
  display: none;
}
.modal-escribir-resenas .form-group{
  text-align: left;
  margin-bottom: 1.2rem;
}
.modal-escribir-resenas .form-group label{
  font-weight: bold;
}
.modal-escribir-resenas .form-group textarea{
  width: 100%;
  height: 160px;
  padding: .5rem 1rem;
}
.modal-escribir-resenas .form-group .btn{
  padding: 0.5rem;
  width: 150px;
}
.contenedor-imagen-resena{
  position: relative;
}
.contenedor-imagen-resena img{
    object-fit: cover;
    width: 100%;
    height: 60px;
    cursor: pointer;
}
.contenedor-imagen-resena2{
  position: relative;
}
.contenedor-imagen-resena2 img{
    object-fit: cover;
    width: 100%;
    height: 60px;
    cursor: pointer;
}
.ampliada{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.ampliada img{
  max-height: 70%;
  max-width: 70%;
}
.amp2{
      background-color: rgba(0, 0, 0, 0.5) ;
}
.MainError{
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5%;
}
.accordeonHeader{
  width: 100%;
  padding: 1rem;
  text-align: left;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left:6px solid var(--color-rosa1);
  border-bottom: 2px solid var(--color-rosa1);
}
.accordeonHeader:hover{
  opacity:1;
  color: var(--color-rosa3);
  border-left:6px solid var(--color-rosa3);
  border-bottom: 2px solid var(--color-rosa3);
}
.accordeonHeader.activo{
 background-color: var(--color-rosa1);
   color: var(--color-rosa3);
    border-left:6px solid var(--color-rosa3);
}
.accordeonHeader i{
    color: var(--color-rosa3);
}
.accordeonDetalle{
  width: 100%;
  display: none;
  transition: max-height 0.2s ease-out;
  background-color: #fff;
  border-bottom: 2px solid var(--color-rosa1);
  text-align: justify;
    border-left:6px solid var(--color-rosa3);
}
.accordeonDetalle p{
padding: 1rem;
}
.custom-checkbox input[type="checkbox"]{
  display: none;
}
.custom-checkbox .checkmark{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: middle;
}
.custom-checkbox .checkmark::after{
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-rosa3);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input[type="checkbox"]:checked ~ .checkmark{
  background-color: #fff;
  border-color:  var(--color-rosa3); 
}
.custom-checkbox input[type="checkbox"]:checked ~ .checkmark::after{
  display: block;
}
.custom-checkbox:hover input[type="checkbox"]:not(:disabled) ~ .checkmark{
  background-color: #fff;
  border-color:  var(--color-rosa3); 
}
.LinkNav{
    display: flex;
    justify-content: space-between;
}
.dropdown-list-parent,
.dropdown-menu-grandchild,
.dropdown-menu-grandchild2{
    margin-left: 1px;
}
.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.nav-wrapper{
  flex: 1;
  position: relative;
  display: inline-block;
  overflow-x: clip;
}
.nav-scroll{
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.nav-scroll::-webkit-scrollbar{
  display: none;
}
.nav-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  color: #000;
}
.nav-arrow-left{
  left: -20px; 
}
.nav-arrow-right{
  right: -20px; 
}
.nav-arrow:hover{
  color: #666;
}
@media (max-width: 767px){
    .nav-arrow{
        display: none;

    }
}
.nav-scroll{
  overflow: visible;
  position: relative;
}
.dropdown-menu{
  position: absolute;
  z-index: 1000;
}
.nav-wrapper{
  flex: 1;
  position: relative;
  display: inline-block;
}
.scroll-container{
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.scroll-container::-webkit-scrollbar{
  display: none;
}
.nav-scroll{
  overflow: visible;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 767px){
    .featured-collections-section .grid{
            display: flex;
            flex-wrap: wrap;
            justify-content: center; 
            gap: 1rem; 

    }
    .featured-collections-section .grid__item{
            display: flex;
            justify-content: center;
            flex: 0 0 90%; 
            margin: 0 auto;

    }
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.full {
    width: 100% !important;
}

.sticky {
    position: sticky;
    transform: translateZ(0);
    z-index: 3;
    top: 0;
}

.hero-image-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
}