/*RESET**********************************************************************
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; 
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block; 
}
body {
	line-height: 1.4;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #373636;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.overlay-visible {
    opacity: .5;
    visibility: visible;
}
.no-scroll {
    /* position: fixed; */
    width: 100%;
    overflow: hidden;
}
/* .container {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
} */
.container-fluid {
    width: 100%;
}
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.container.page{
    margin-top: 4rem;
    margin-bottom: 7rem;
    max-width: 900px;
}
.overlay {
    position: absolute;
    background-color: rgba(0,0,0,0.85);
    opacity: 0;
    transition: all .5s cubic-bezier(0.32,1,0.23,1) 100ms;
}

.hide-mobile {
    display: none !important;
}
@media(min-width: 764px) {
    .show-tablet {
        display: block !important;
    }
    .hide-tablet {
        display: none !important;
    }
}
@media(min-width: 1024px) {
    .hide-mobile {
        display: block !important;
    }
    .hide-desktop {
        display: none !important;
    }
}


.input-bar {
    background-color: transparent;
    border: 0px solid;
    border-bottom: 1px solid var(--main-color);
    padding: .5rem;
    vertical-align: bottom;
    transition: all .3s ease-in-out;
}
.input-bar:focus {
    outline: none;
}

.aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 100%;
    display: block;
    text-decoration: none;
    color: var(--main-color);
}
.aspect-ratio-large {
    padding-top: 56.25%;
    display: block;
    position: relative;
    width: 100%;
}
.aspect-ratio-box img, .aspect-ratio-large img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button {
    display: block;
    padding: .7rem .5rem .5rem;
    border-radius: 40px;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    font-family: 'spartan-bold';
    font-size: .875rem;
    cursor: pointer;
    outline: none;
}
.button:active {
    /* outline: none; */
    /* border: none; */
}
.button span {
    font-family: 'spartan-bold';
}
.button:focus {
    outline:0;
}
.button-add {
    width: 100%;
    color: var(--background);
    background-color: var(--main-color);
    transition: .3s all ease;
    border: 2px solid var(--main-color);
}
.button-black {
    color: var(--background);
    background-color: var(--main-color);
    transition: .3s all ease;
    border: 2px solid var(--main-color);
}
.button-cart {
    color: var(--background);
    background-color: var(--main-color);
    transition: .3s all ease;
    border: 2px solid var(--main-color);
}
.button-keep {
    color: var(--main-color);
    background-color: var(--background);
    border: 2px solid var(--main-color);    
}
.button-add:active {
    background-color: var(--color-gold);
}
.button-add:hover, .button-black:hover {
    color: var(--main-color);
    background-color: var(--background);
    transition: .3s all ease;
}

.button-secondary {
    color: var(--main-color);
    background-color: var(--background);
    border: 2px solid var(--main-color);
    transition: .3s all ease;
}
.button-secondary:hover {
    background-color: var(--main-color);
    color: var(--background);
    transition: .3s all ease;
}
.button-secondary:hover .icon {
    fill: var(--background);
}
.submit-button {
    outline: none;
    border: none;
    background: transparent;
}
.button-guide {
    margin: 1rem 0;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background-color: transparent;
    transition: .3s all ease;
}
.button-guide:hover {
    color: white;
    background-color: var(--color-gold);
    transition: .3s all ease;
}
.button-300{
    width:300px;
}
.dot-green,
.dot-red,
.dot-yellow {
   display: inline-block;
   width: .5rem;
   height: .5rem;
   border-radius: 100%;
}
.dot-green {
   background: var(--color-success);
}
.dot-red {
   background: var(--color-error);
}
.dot-yellow {
   background: var(--color-star);
}

.dark-overlay {
    position: relative;
}
.dark-overlay:after{
    content: '';
    position: absolute;
    z-index: 2;
    background: rgba(0,0,0,.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}



.color_swatch{
    display:inline-block;
    margin-right:10px;
    width:30px;
    height:30px;
    border-radius:50%;  
    line-height:30px;
    text-align:center; 
    border: 1px solid grey;
    cursor:pointer;
  }
  .color_swatch.selected{ 
  border: 3px solid grey;
  }
/* VARIABLES */
:root {
    /* --main-font:'spartan'; */
    /* --alternative-font: 'DM Serif Display', serif; */
    --background: #ffffff;
    --main-color: #000000;
    --secondary-black: #404040;
    --color-alpha: #F6F6F6;
    --color-beta: #9E9E9E;
    --color-gamma: #848484;
    --color-delta: #7C7C7C;
    --color-epsilon: #959595;
    --color-dseta: #E5E5E5;
    --color-eta: #AFAFAF;
    --color-theta: #E4E4E4;
    --color-iota:#B3B3B3;
    --color-error: #ff0033;
    --color-star:#FDCC0D;
    --color-success:  #2ECC40; 
    --color-gold: #DEBC74;
}

p, span, a, input {
    font-family: 'spartan-regular';
}

h1, h2, h3, h4, h5 {
    font-family: 'spartan-bold';
}
.card .aspect-ratio-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .card-icon {
    display: block;
    padding: .2rem;
    position: absolute;
    top: .625rem;
    right: .625rem;
    background-color: var(--background);
    border-radius: 50%;
    box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
}
.card .card-text {
    margin: .5rem 0.2rem .5rem 0;
}
  
  
  
.card-text .card-rating .icon-star {
    width: .688rem;
    height: .688rem;
    fill: var(--color-star);
}
.card .card-text .card-rating span {
    font-family: 'spartan-light';
    font-size: .75rem;
}

.card .card-text .card-title, .card .card-text .card-title a{
    /* white-space: nowrap; */
    overflow: hidden;
    /* text-overflow: ellipsis; */
    padding: .6rem 0;
    font-family: 'spartan-semibold';
    font-size: .75rem;
    transition: .2s all ease-in-out;
    text-decoration: none;
    color:black;
}
.card .card-text .card-title:hover {
    color: var(--color-delta);
    transition: .2s all ease-in-out;
}

.card .card-text .card-price {
    font-family: 'spartan-light';
    font-size: .875rem;
}
.carousel-container {
max-width: 1200px;
margin-top: 2rem;
padding-bottom: 1rem;
}

.slider .card, .sliderx .card {
    width: 22.5rem;
    padding: .5rem;
}

@media only screen and (max-width: 764px) {
    .slider .card, .sliderx .card {
        width: 33vw;
    } 
}
  
  
  
  
  
  
  
  
  
  
.card-text .card-rating .icon-star {
    width: .75rem;
    height: .75rem;
    fill: var(--color-star);
}
.card .card-text .card-rating span {
    font-family: 'spartan-light';
    font-size: .75rem;
}

.card .card-text .card-title, .card .card-text .card-title a{
    /* white-space: nowrap; */
    overflow: hidden;
    /* text-overflow: ellipsis; */
    padding: .6rem 0;
    font-family: 'spartan-semibold';
    font-size: .75rem;
    transition: .2s all ease-in-out;
    text-decoration: none;
    color:black;
}
.card .card-text .card-title:hover {
    color: var(--color-delta);
    transition: .2s all ease-in-out;
}

.card .card-text .card-price {
    font-family: 'spartan-light';
    font-size: .875rem;
}
.rating-tag {
    display: flex;
    align-items: center;
}
.card .card-text .card-rating .rating .rating-tag span,
.card .card-text .card-rating .rating .rating-tag p {
    font-size: .625rem;
}
.rating .rating-tag .superstar {
    font-size: 1rem !important;
}

.rate-numbers {
    color: var(--color-delta);
    margin-left: .4rem;
}
.star-ratings-css {
    unicode-bidi: bidi-override;
    color: #c5c5c5;
    font-size: 1rem !important;
    position: relative;
    padding: 0;
}

.star-ratings-css-top {
    color: var(--color-star);
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}
.star-ratings-css-bottom {
    padding: 0;
    display: block;
    z-index: 0;
}
@media(min-width: 764px) {
    .rating .rating-tag span, .rating .rating-tag p {
        font-size: .75rem;
        margin-right: .3rem;
    }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
.checker-container {
    display: block;
    position: relative;
    bottom: .5rem;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }/* Hide the browser's default checkbox */
  .checker-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }/* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1rem;
    width: 1rem;
    background-color: #fff;
    border: 1px solid #cecece;
    border-radius: 3px;
  }
  .checkmark:checked {
  }
  .checker-container input:active {
      box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
  }
  /* On mouse-over, add a grey background color */
  .checker-container:hover input ~ .checkmark {
    background-color: #fff;
  }
  .checker-container input:checked ~ .checkmark {
    background-color: #fff;
    border: 1px solid;
  
  }/* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    border: 1px solid;
  }/* Show the checkmark when checked */
  .checker-container input:checked ~ .checkmark:after {
    display: block;
  }/* Style the checkmark/indicator */
  .checker-container .checkmark:after {
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
.conditions-bar {
    background-color: var(--color-alpha);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem 0;
    filter: grayscale(100%);
} 
.conditions-bar .condition-symbol {
    text-align: center;
    padding: .5rem;
}
.conditions-bar .symbol-text {
    font-size: .625rem;
    font-family: 'spartan-light';
    line-height: 1.4;
}
.conditions-bar .symbol-text span {
    font-weight: bold;
}



.filter-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2147484000; 
    background: var(--background);
    /* display: none; */
    border-top: 1px solid var(--color-eta);
    transition: .5s all ease-in-out;
    transform: translateY(100%);
    height: 50vh;
}





.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: calc(100% - 2rem);
    position: sticky;
    z-index: 1;
    top: 0;
    background-color: var(--background);
}




.filter-modal-header .close-filter{
    cursor: pointer;
}
.filter-modal-header .filter-title{
    text-transform: uppercase;
    font-family: 'spartan-semibold';
}
.filter-modal-header .filter-subtitle{
    font-size: .875rem;
    color: var(--color-delta);
}
.filter-modal .filter-options {
    margin: 2rem 1rem 1rem;
}
  /* FILTER CHEKBOXES */
.filter-modal .checkmark {
    border: none; 
    left: 20%;
    top: .5rem;
}
.filter-modal .checker-container input:checked ~ .checkmark {
    border: none;
}
.filter-modal .checker-container {
    border-bottom: 1px solid var(--color-beta);
    padding-left: 0;
    padding-bottom: .6rem;
}

.filter-modal .filter-option {
    color: var(--color-beta);
    display: inline-block;
    width: 100%;
    position: relative;
    right: 2.5%;
}
.filter-modal .checker-container input:checked ~ .filter-option {
    color: black;
}
.filter-modal .range-price {
    margin: 2rem auto;
    text-align: center;
}



/* ********* */
/* FILTER MODAL DESKTOP************************ */
.filter-desktop-container {
    position: relative;
}
.general-filters-desktop .filter-modal {
    position: absolute;
    z-index: 10;
    height: 10rem;
    min-width: 10rem;
    border: 1px solid var(--color-iota);
    background-color: var(--background);
    border-radius: 3px;
    top: 3.5rem;
    left: .75rem;
    overflow-y: scroll;
    padding-top: 1rem;
    transform: none;
    display: none;
}
.general-filters-desktop .filter-modal .filter-options {
    margin: 0;
}
.general-filters-desktop .filter-modal .filter-options .filter-option {
    right: 0;
    text-align: left;
    margin: .5rem 0 .5rem 2rem;
    width: 77%;
}
.general-filters-desktop .filter-modal .checker-container {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 1rem;
    border-bottom: none;
}
.general-filters-desktop .filter-modal .checker-container .checkmark::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    border-width: 0px;
    border: none;
}
.general-filters-desktop .filter-modal .checkmark {
    border-radius: 50%;
    top: 35%;
    left: .5rem;
    transform: translate(0, -50%);
    border: 1px solid var(--color-beta);
}
.general-filters-desktop .filter-modal .checker-container input:checked ~ .checkmark {
    border: 1px solid black;
}


.filter-opened {
    background-color: var(--color-dseta) !important;
    transition: .2s all ease;   
}

@media(min-width: 764px) {
    .general-filters-desktop .filter-modal .filter-modal-header {
        display: none;
    }
}
@-webkit-keyframes buttonFromLeftToRight {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    25% {
      opacity: 0;
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  
    75% {
      opacity: 1;
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  }
  
  @keyframes buttonFromLeftToRight {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    25% {
      opacity: 0;
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  
    75% {
      opacity: 1;
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  }
  
  @-webkit-keyframes buttonFromRightToLeft {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    25% {
      opacity: 0;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
  
    75% {
      opacity: 1;
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  }
  
  @keyframes buttonFromRightToLeft {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    25% {
      opacity: 0;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  
    50% {
      opacity: 0;
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
  
    75% {
      opacity: 1;
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  }


/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-button{position:absolute;background:hsla(0,0%,100%,.75);border:none;color:#333}.flickity-button:hover{background:#fff;cursor:pointer}.flickity-button:focus{outline:0;box-shadow:0 0 0 5px #19f}.flickity-button:active{opacity:.6}.flickity-button:disabled{opacity:.3;cursor:auto;pointer-events:none}.flickity-button-icon{fill:currentColor}.flickity-prev-next-button{top:50%;width:44px;height:44px;border-radius:50%;transform:translateY(-50%)}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button .flickity-button-icon{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-page-dots{position:absolute;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:10px;height:10px;margin:0 8px;background:#333;border-radius:50%;opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{opacity:1}

.flickity-prev-next-button {
    display: none;
    border: none;
    box-shadow: 0 2px 10px rgba(54,54,54, .15);
    background: white;
    color: black;
    cursor: pointer;
    text-align: center;
    width: 45px;
    height: 45px;
    top: 45%;
    stroke-width: 1px;
    overflow: hidden;
    transition: background 0.15s ease-in-out, opacity 0.15s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.flickity-prev-next-button svg {
    width: auto;
    height: 18px;
    stroke-width: 1.5px;
}
.flickity-prev-next-button.previous:hover svg {
    -webkit-animation: buttonFromRightToLeft 0.5s ease-in-out forwards;
    animation: buttonFromRightToLeft 0.5s ease-in-out forwards;
  }
  .flickity-prev-next-button.next:hover svg {
    -webkit-animation: buttonFromLeftToRight 0.5s ease-in-out forwards;
    animation: buttonFromLeftToRight 0.5s ease-in-out forwards;
  }
@media(min-width: 1024px) {
    .flickity-prev-next-button {
        display: none;
        display: block;
    }  
}
.help-card {
    text-align: center;
}
.help-card a {
    text-decoration: none;
}
.help-div {
    margin-bottom: 1rem;
}
.help-div .icon {
    width: 1.5rem;
    position: relative;
    top: .4rem;
    margin-right: .5rem;
}
.help-div span {
    color: var(--color-success);
    font-size: 1rem;
    font-family: 'spartan-semibold' !important;
}
.icon {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
}
.icon-2 {
    display: inline-block;
}
.icon-2 svg {
    width: 3rem;
    height: 3rem;
}


.social-icons .social-link {
    display: block;
    border-radius: 50%;
    padding: .5rem;
    margin: 1rem;
    height: 1.5rem;
    width: 1.5rem;
    position: relative;
}
.social-icons .social-link span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.social-count .social-icons {
    background: var(--main-color);
}
.social-count .social-icons {
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.social-count .social-icons .social-icons-flex {
    display: flex;
    align-items: center;
}
.social-count .social-icons .social-link{
    background: var(--background);
    margin-right: 0.3rem;
}
.social-count .social-icons .social-link-recount{
    color: var(--background);
    font-family: 'spartan-light';
    font-size: .875rem;
    margin-top: .15rem;
}
.social-count .social-icons .social-link svg{
    fill: var(--main-color);
}
.radio a {
    text-decoration: underline;
    color: var(--main-color);
}
.radio p {
    font-size: .875rem;
    line-height: 1.4;
}
.radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom radio button */
  .radio .dot {
    position: absolute;
    top: 0;
    left: 0;
    height: 1rem;
    width: 1rem;
    background-color: white;
    border-radius: 50%;
    border: 2px solid var(--main-color);
  }
  
 
  /* When the radio button is checked, add a blue background */
  .radio input:checked ~ .dot {
    background-color: white;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .dot:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio input:checked ~ .dot:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio .dot:after {
    top: 25%;
    left: 25%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color);
  }
  .customer-order   .radio .dot {
    border: 2px solid var(--color-eta);
  }
  .customer-order .radio .dot:after {
    background: var(--color-eta);
  }
/*! jQuery UI - v1.12.1 - 2021-02-24
* http://jqueryui.com
* Includes: core.css, slider.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.amount {
  outline: none;
  width: 90%;
  text-align: center;
  font-family: 'spartan-regular';
  margin: 1rem auto; 
  display: block;
}
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2rem;
	height: 1.2rem;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
  height: .5em;
  background-color: var(--color-theta);
  border-radius: 10px;
  margin: 0 auto;
  width: 80%;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.35rem;
  margin-left: -.6em;
  background-color: var(--main-color);
  border-radius: 50%;
  outline: none;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
  height: 100%;
  background-color: var(--main-color);
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.pagination {
    text-align: center;
    width: 100%;
    margin:3rem auto;
}

.pagination .pagination-nav {
    white-space: nowrap;
}

.pagination .pagination-nav .pagination-item {
    padding: .5rem 1.6rem;
    text-decoration: none;
    color: var(--main-color);
}
.pagination-item.link {
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.pagination-item.link:hover{
    color: var(--color-epsilon);
} 
.pagination-item.is-active {
    border-bottom: 3px solid var(--color-epsilon);
    font-weight: bold;
}


@media(min-width: 764px) {
    .pagination .pagination-item {
        padding: .5rem 1.6rem;
    }
}
@media(max-width: 764px) {
    .pagination .pagination-item {
        padding: .5rem 1rem;
    }
}
.side-carousel {
    background-color: white;
    box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
    position: absolute;
    top: 1rem;
    width: 100%;
    border-radius: 20px;
    left: calc(100% - 2rem);
    transition: all .5s ease;
    z-index: 3;
}
.side-carousel-2 {
    top: 12rem;
    z-index: 2;
}

.side-carousel-open {
    transition: all .5s ease;
    left: 5%;
    z-index: 4;
}

.side-carousel .side-title {
    transform: rotate(-90deg);
    font-size: .75rem;
    display: inline-block;
    position: relative;
    left: -3rem;
    top: 5.3rem;
    padding: 1rem 0;
}
.side-product-carousel {
    margin-left: 2rem;
    margin-top: -1rem;
}
.side-carousel .slider .card {
    width: 7rem;
}
.side-carousel .card-info {
    color: var(--main-color);
    font-size: .75rem;
    text-decoration: underline;
}

@media(min-width: 764px) {
    .side-carousel {
        display: none;
    }
}
.swatch { 
    margin:1em 0; 
  }
  /* Label */
  .swatch .header {
    margin: 0.5em 0;
  }
  /* Hide radio buttons.*/
  .swatch input { 
    display:none;
  }
  .swatch label {
    /* Rounded corners */
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px; 
    -*-float:left;
    
    -min-width: 40px !important; 
    -height:40px !important; 
    margin:0; 
    border:none; 
    background-color:transparent;
    
    text-align:center;
    line-height:40px;
    white-space:nowrap;
    text-transform:uppercase;
    color: black;
      font-family: 'spartan-light';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      font-size: .75rem;
  
  }
  .swatch-element label { padding:0 10px; }
  .color.swatch-element label { padding:0; }
   
  .swatch input:checked + label { 
    color: var(--color-gold) !important;  
  } 
  .swatch .swatch-element.selected { 
      border-color: var(--color-gold);
  }
  .swatch-element.variant-unavailable.selected { 
      border-color: var(--color-gold); 
  }
  
  .variant-unavailable-selected {
      border-color: var(--color-gold)  !important;
      border: 2px solid var(--color-gold)  !important;
  }
    .swatch.clearfix{
        text-align:center;
    }
        
  
  .swatch .swatch-element { 
      position: relative;
      border-radius: 100%;
      display: inline-block;
      width: 2.8rem;
      height: 2.8rem;
      font-size: .813rem;
      border: 1px solid;
      border-radius: 100%;
      cursor: pointer;
      margin-right: .15rem;
      margin-top: .5rem;
      text-align: center;
  
  }
  @media(max-width: 475px) {
      .reduced .swatch .swatch-element { 
          width: 2rem;
          height: 2rem;
          font-size: .625rem;
      }
  }
  @media(min-width: 764px ) {
    .swatch.clearfix{
        text-align:left;
    }
  }
  /* Image with the cross in it */
  .crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
  .swatch .swatch-element .crossed-out { display:none; }
  .swatch .swatch-element.soldout .crossed-out { display:block; }
  .swatch .swatch-element.soldout label {
    filter: alpha(opacity=60); /* internet explorer */
    -khtml-opacity: 0.6;      /* khtml, old safari */
    -moz-opacity: 0.6;       /* mozilla, netscape */
    opacity: 0.6;           /* fx, safari, opera */
  }
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}


#size-close {
    cursor: pointer;
}
.guide-modal-content {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--background);
    padding: .5rem;
    padding-top: 0;
}
.guide-modal-content header {
    position: sticky;
    top: 0;
    background-color: var(--background);
}
.guide-modal-content .cart-header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem 0 1.5rem;
}
.guide-modal-content .cart-header-top h3 {
    width: 90%;
    text-align: center;
}
.table-scroll {
	position:relative;
	max-width: 800px;
    margin:auto;
    margin-bottom: 2rem;
	overflow:hidden;
	/* border:1px solid #000; */
}
.table-wrap {
	width:100%;
	overflow:auto;
}
.table-scroll table {
	width:100%;
	margin:auto;
	border-collapse:collapse;
	border-spacing:0;
    font-family: 'spartan-light';
}
.table-scroll th, .table-scroll td {
	padding:5px 10px;
	border:1px solid #000;
	white-space:nowrap;
	vertical-align:top;
}
.table-scroll thead, .table-scroll tfoot {
	background:#f9f9f9;
}
.clone {
	position:absolute;
	top:0;
	left:0;
	pointer-events:none;
}
.clone th, .clone td {
	visibility:hidden
}
.clone td, .clone th {
	border-color:transparent
}
.clone tbody th {
	visibility:visible;
    color:black;
    background-color: var(--color-alpha);
    border:1px solid #000;
}
.clone .fixed-side {
	background:#eee;
    visibility:visible;
    color: black;
    background-color: var(--color-alpha);
}
.clone thead, .clone tfoot{background:transparent;}

#tallas-modal {
    position: fixed;
    z-index: 78;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85vh;
    overflow: auto;
    background-color: rgba(0,0,0, .4);
}


.tallaje{
    cursor: pointer;
}
.tallaje.selected{
    background-color: var(--color-gold);
    color: white;
}


.table-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    z-index: 1;
    left: 130px;
    top: 45%;
    width: calc(100% - 120px);
}
.table-arrows .icon {
    cursor: pointer;
    padding: .4rem;
    border-radius: 50%;
    background-color: var(--background);
    -webkit-box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
            box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
    position: absolute;
}
#slideLeft {
    left: 0;
}
#slideRight {
    right: 0;
}
.table-arrows .icon:last-child {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);

}

.img-tallaje {
    display: flex;
    flex-direction: column;
    margin: 0 1.5rem;
}
#img_tallaje {
	width: 100%;
  max-height:300px;
}
.img-tallaje .size-info {
    margin: 1rem 0;
}
.img-tallaje .tallaje-buttons {
    margin: 1rem 0;
}
.img-tallaje .button-guide {
    width: 100%;
}

@media(max-width: 764px) {
    .table-scroll {
        zoom:.8;
    }
    
}
@media(min-width: 764px) {
  #img_tallaje {
  	margin-top: 2rem;
    display:block;
    width: 50%;
  }
    .img-tallaje {
        flex-direction: row;
      justify-content: center;
        margin: 1rem 0 2rem;
    }
    .img-tallaje .button-guide {
        width: 80%;
      margin: 1rem auto;
    } 
    .img-tallaje .tallaje-buttons {
        margin-left: 1rem;
      width: 50%;
    }
  
}
@media(min-width: 810px) {
    .table-arrows {
        display: none;
    }
}
.banner{
    /* margin-bottom: 1rem; */
}

.banner-content {

}

/* BANNER CONTENT CROSSED JSON DISTRIBUTION */
.banner-position {
    position: relative;
    display: flex;
    flex-direction: column;
}
.banner-position.below .banner-text{
    order: 2;
}
.banner-position.below .image-wrapper{
    order: 1;
}
.banner-position.below .countdown{
    order: 3;
}
.position-right {
    margin-left: 1rem;
}
.position-left {
    margin-right: 1rem;
}

.icon-info {
    cursor: pointer;
    position: absolute;
}
.icon-info svg {
    transition: all 1s ease;
}
.flip {
    transform: rotate(360deg);
    transition: all 1s ease;
}
.icon-info-left {
left: 0;
margin-left: 1rem;
}
.position-right .icon-info-left {
    margin-left: 0;
}
.icon-info-right {
right: 0;
}
.position-right .icon-info-right {
    margin-right: 1rem;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.banner-position .align-left {
    margin-left: 1rem;
}
.position-right .align-left {
    margin-left: 0;
}
.position-right .align-right {
    margin-right: 2rem;
}

/* ****** */

.banner-text {
    padding: 2rem 0 1rem;
}
.banner-heading {
    font-size: 1.125rem;
    margin-bottom: .7rem;
}
.banner-subheading {
 font-size: .875rem;   
 font-family: 'spartan-regular';
}
.banner-button {
    text-decoration: none;
    font-size: .75rem;
    display: inline-block;
    border-radius: 40px;
    font-family: 'spartan-bold';
    padding: .5rem;
    margin: 1rem 0 .75rem;
    position: relative;
    padding-top: 8px;
    padding-bottom: 4px;
}
.banner-button span {
    font-family: inherit;
    /* vertical-align: middle; */
}
.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    display: block;
}
.banner-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: unset; */

}

.banner .banner-text .countdown{
    display: none;
}
.banner .banner-text .movable-navigation{
    display: none;
}
.banner .countdown {
    padding: 1.5rem 0 1rem;
}
.banner .countdown .count-title {
    font-size: .688rem;
    font-family: 'spartan-regular';
    margin-bottom: 1rem;
}
.banner .countdown .count-time {
    font-size: .75rem;
    letter-spacing: 1.5px;
}
.banner .countdown .count-number {
    font-family: 'spartan-bold';
    font-size: 1.125rem;
}
.banner .countdown .count-letter {
margin-right: .3rem;
font-family: 'spartan-semibold';
}
.banner-content .carousel-container {
    max-width: 100%;
}

@media(min-width: 764px) {
    .position-right {
        margin-left: 0;
    }
    .position-left {
        margin-right: 0;
    }
    .align-right {
        margin-right: 1rem;
    }
    .position-right .align-left {
        margin-left: 1rem;
    }
    .banner-text.align-left-desktop {
        text-align: left;
        margin-left: 1rem;
    }
    .banner-text.align-right-desktop {
        text-align: right;
        margin-right: 1rem;
    }
    .banner-position {
        flex-direction: row;
        padding: 2rem 0;
    }

    /* COUNTDOWN AND MOVABLE NAVIGATION */
    .banner .banner-position .countdown {
        display: none;
    }
    .banner .banner-content .movable-navigation {
        display: none;
    }
    .banner .banner-text .countdown {
        display: block;
        margin-left: 0;
    }
    .banner .banner-text .movable-navigation {
        display: block;
        padding-left: 0;
    }
    .movable-navigation {
        background-color: transparent !important;
    }
    .movable-navigation .movable-list {
        overflow-x: unset;
        overflow-y: unset;
        flex-wrap: wrap;
    }
    .banner-text.align-right-desktop .movable-navigation {
        padding-right: 0;
    }
    .banner-text.align-right-desktop .movable-navigation .movable-list {
        justify-content: flex-end;
    }
    .banner-text.align-right-desktop .movable-navigation .movable-list .movable-item {
        margin-left: 3rem;
        margin-right: 0;
    }


    /* ************************************ */
    /* BANNER POSITIONING */

    .banner-position.below .banner-text{
        order: 1;
    }
    .banner-position.below .image-wrapper{
        order: 2;
    }
    .banner-position .banner-text {
        width: 50%;
        max-width: 600px;
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .banner-position .image-wrapper {
        width: 50%;
        order: 1;
    }
    .banner-position .image-wrapper .image-container {
        padding-top: 85.25%;
    }
    .banner-position.position-left-desktop .banner-text {
        order: 1;
        position: absolute;
        max-width: 100%;
        right: 50%;
        height: 83%;
        width: calc(50vw - 1rem);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .banner-position.position-left-desktop .image-wrapper {
        order: 2;
        margin-left: 50%;
    }
    /* ************************************************** */
    /* ICON POSITIONING */

    .banner-text.align-right-desktop .icon-info-right {
        left: 5%;
    }
    .position-right-desktop .banner-text.align-right-desktop .icon-info-right {
        left: 50%;
    }
    /* ************** */
    .banner-content .carousel-container {
        margin-top: 0;
    }

    .banner-image.img-top {
        object-position: top;
    }
    .banner-image.img-bottom {
        object-position: bottom;
    }
}

@media(min-width: 1200px) {
    .banner-position.position-left-desktop .banner-text {
        width: 584px;
    }
    .banner-position .image-wrapper .image-container {
        padding-top: 65.25%;
    }
}
/* RATING ADJUSTMENT FOR BANNER SECTION */
@media(max-width: 764px) {
    .banner-content .carousel-container .slider .card {
        min-height: 228px;
    }
    .banner-content .carousel-container .card .ts-rating-light.productreviewsSummary .ts-reviewSummary-averageRating {
        display: table-caption;
    }
}
.billboard div {
    padding: 1rem;
}
.billboard p {
    font-family: 'spartan-bold';
    font-size: 1.25rem;
    text-align: center;
    line-height: 1.5;
}
.billboard .quotation {
    font-size: 2.5rem;
    height: 2.5rem;
}

.billboard .billboard-text {
    margin: 1rem 0;
}
.collection-list {
    margin: 4rem auto;
}
.collection-list h1 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}
.collection-list-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.collection-list-blocks .collection-block{
    width: 95%;
    padding: .5rem;
}
.collection-list-blocks .collection-block .button{
    text-decoration: none;
    color: var(--main-color);
    margin-top: 1rem;
    border: 2px solid;
    line-height: 2.2;
    border-radius: 0px;
    min-height: 60px;
    position: relative;
    transition: .3s all ease;
}
.collection-list-blocks .collection-block .button span{
    font-family: 'spartan-regular';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.collection-list-blocks .collection-block .button:hover{
    background-color: var(--color-alpha);
    transition: .3s all ease;
}

@media(min-width:764px) {
    .collection-list-blocks .collection-block{
        width: 22%;
        padding: .5rem;
    }
}
.extra-info {
    text-align: center;
    padding: 1rem;
}
.extra-info-block {
margin: 2rem auto;
}

.extra-info-title, .extra-info-block p {
    color: var(--color-delta);
}
.extra-info-title {
text-transform: uppercase;
margin-bottom: 1rem;
line-height: 1.5;
}
.extra-info-block ul {
    margin: 1rem;
}
.extra-info-block p, .extra-info li {
    font-family: 'spartan-light';
    line-height: 2;
    font-size: .875rem;
    margin-bottom: .75rem;
}
.extra-info-block h2,
.extra-info-block h3,
.extra-info-block h4,
.extra-info-block h5 {
    margin: 1rem 0;
    color: var(--color-delta);
}
.extra-info-block strong {
    font-family: 'spartan-semibold';
}
.extra-info-block a {
    text-decoration: none;
    color: var(--color-delta);
    font-weight: 600;
}
.extra-info-block img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0 2rem;
}
@media(min-width: 764px) {
    .extra-info-block p {
        font-size: 1rem;
    }
}
.footer {
}
.footer-list {
    background: var(--color-alpha);
}
.footer-group {
    padding-bottom: 1rem;
}
.footer-list-element {
    height: 2.815rem;
    border-bottom: 1px solid var(--color-gamma);
}
.footer-list-element:last-child {
    /* border-bottom: none; */
}
.footer-nav-link {
    text-decoration: none;
    font-family: 'spartan-medium';
    text-transform: uppercase;
    color: var(--color-gamma);
    text-align: center;
    font-size: .75rem;
    background-color: var(--color-alpha);
    display: block;
    line-height: 2.815rem;
}
.footer-nav-sublink {
    text-transform: capitalize;
    border-bottom: 1px solid var(--color-dseta);
    padding: .5rem 0;
    transition: color .2s ease-in-out;
}
.footer-nav-sublink:hover {
    color: var(--color-iota);
    transition: color .2s ease-in-out;
}
.side-line {
    display: none;
    border-right: 1px solid var(--color-gamma);
    height: .75rem;
    margin-top: 1rem;
}
.side-line:last-child {
    display: none !important;
}
.footer-social {
background-color: var(--color-epsilon);
}
.footer .social-icons {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer-social .social-link {
    background-color: var(--background);
}
.footer .social-link svg {
    fill: var(--color-beta);
}
.footer-bubbles {
    margin: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer-circle {
    display: block;
    width: 3.45rem;
    height: 3.45rem;
    margin: 1rem;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-circle img {
    width: 100%;
    height: 100%;
}
@media(min-width: 764px) {

    .footer-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .footer-list-element {
        border: none;
        margin: 0 1rem;
    }
    .footer-nav-link {
        margin-top: 1rem;
        line-height: 1.4;
    }
    .footer-nav-sublink {
        margin: 0 1rem 1.5rem;
        padding: 0;
        border: none;
    }
    .side-line {
        display: inline-block;
    }
    .footer .social-icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-circle {
        width: 6.9rem;
        height: 6.9rem;
    }
}


/* *************************************************** */
/* HEADER */
#shopify-section-header {
    position: sticky;
    top:0;
    background: var(--background);
    z-index: 10;
    transition: top 0.3s;
}
.header {
    -webkit-transition: margin-bottom 0.25s ease-in-out;
    -o-transition: margin-bottom 0.25s ease-in-out;
    transition: margin-bottom 0.25s ease-in-out;
    background-color: var(--background);
}
.header-navigation {
    border-bottom: 1px solid var(--color-dseta);
}
.header-navigation .header-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem;
    border-bottom: 1px solid var(--color-dseta);
}
.header-navigation .header-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .header-navigation .header-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; */
}
.header-navigation .nav-icons {
    text-align: right;
}
.header-navigation .nav-link {
    margin-left: .4rem;
}

/* SEARCH FORM */
@media(max-width: 764px) {
    .search-expanded{
        margin-bottom: 4.75rem;
    }
}
#mobile-search-bar {
    padding: 1rem;
    text-align: right;
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: visibility 0.25s ease-in-out, margin-top 0.25s ease-in-out;
    -o-transition: visibility 0.25s ease-in-out, margin-top 0.25s ease-in-out;
    transition: visibility 0.25s ease-in-out, margin-top 0.25s ease-in-out;
}
.is-visible {
    visibility: visible !important;
    z-index: 2 !important;
    margin-top: 3.75rem;
}
.search-form {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
#mobile-search-bar.is-visible .search-form {
    opacity: 1;
    -webkit-transition-delay: .15s;
         -o-transition-delay: .15s;
            transition-delay: .15s;
}
.input-search {
    vertical-align: bottom;
}
.desktop-search-bar {
    margin-top: .75rem;
}
.header-row-bottom .header-menu {
    padding: .75rem;
    width: 3.625rem;
    text-align: center;
}
.header-row-bottom .desktop-search-bar {
    width: 100%;
    margin-top: 0;
    text-align: right;
    border-left: 1px solid var(--color-dseta);
    padding: .75rem;
}
.header-row-bottom .desktop-search-bar .input-search{
    width: 70%;
}
.desktop-search-bar .search-icon {
    margin-left: 0;
}

button.search-icon{
    border:none;
    background: white;
    padding:0;
}
/* ****** */
.link-navigation-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.link-element-left {
    margin: .3rem 0;
}
.link-element-left a {
    text-decoration: none;
    font-size: .875rem;
    white-space: nowrap;
    color: var(--main-color);
    font-family: 'spartan-light';
}
.hline {
    height: .875rem;
    border-left: 2px solid var(--main-color);
    margin: .3rem .5rem;
}
.link-navigation {
    margin: 0 auto;
    margin-top: 2rem;
    position: relative;
}
.link-navigation-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.link-navigation-element {
    border-bottom: 2px solid transparent;
    -webkit-transition: margin-bottom .25s ease;
    -o-transition: margin-bottom .25s ease;
    transition: margin-bottom .25s ease;
}
.link-navigation-element:hover {
    border-bottom: 2px solid var(--main-color);
}
.link-navigation-element:hover .nav-link-inner {
    font-family: 'spartan-medium';
}
.link-navigation-element .nav-link-inner {
    display: block;
    margin: 1rem 1rem 0;
    padding-bottom: 1rem;
    text-decoration: none;
    color: var(--main-color);
    font-family: 'spartan-light';
}

/* MOBILE DROPDOWN MAIN MENU */
.mobile-dropdown-menu {
    display: none;
    background-color: var(--background);
    height: 100vh;
    -height: auto;
    position: relative;
    z-index: 15;
    overflow-y: scroll;
    top: 111px;
}
.header-fixed {
    position: fixed;
    z-index: 15;
    width: 100%;
    top: 0;
}
.drop-menu-2 {
    display: none;
}
.dropdown-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.icon-container {
    text-align: right;
    margin: 1rem;
}
#close-dropdown, #back-dropdown {
    cursor: pointer;
}
#back-dropdown {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.dropdown-container {
    margin: 1rem;
    height: 4.375rem;
}
.dropdown-container-2 {
    text-align: center;
    margin: 1rem;
    height: 2.375rem;
    border-bottom: 2px solid var(--color-alpha);
    padding-bottom: .7rem;
}
.dropdown-link {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--main-color);
    font-family: 'spartan-bold';
    text-align: center;
    background-color: var(--color-alpha);
    display: block;
    line-height: 4.375rem;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.dropdown-link-2 {
    text-decoration: none;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.dropdown-image {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: .5rem;
}
.dropdown-title {
    font-family: 'spartan-bold';
    color: var(--color-epsilon);
    background-color: var(--color-alpha);
    text-transform: uppercase;
    height: 2.2rem;
    line-height: 2.5rem;
    text-align: center;
    margin: 1rem;
    display:block;
}



/* MEGAMENU */
.nav-link--megamenu:hover > .mega-menu {
    visibility: visible;
}
.mega-menu {
    background-color: var(--background);
    border: 1px solid var(--color-dseta);
    position: absolute;
    z-index: 100;
    visibility: hidden;
    padding: 1rem;
    left: 0;
    right: 0;
    top: 3.125rem;
}
.megamenu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.megamenu-column {
    width: 22%;
    margin: 1rem 1rem 1rem 0;
}
.megamenu-title {
    font-family: 'spartan-bold';
    font-size: .875rem;
    color: var(--color-epsilon);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.megamenu-element {
    margin-bottom: .75rem;
}
.megamenu-element a {
    color: var(--main-color);
    font-family: 'spartan-light';
    font-size: .875rem;
    text-decoration: none;
    color: var(--color-epsilon);
    -webkit-transition: font-family .1s ease-in-out;
    -o-transition: font-family .1s ease-in-out;
    transition: font-family .1s ease-in-out;
}
.megamenu-element a:hover {
    font-family: 'spartan-bold';
    -webkit-transition: font-family .33s ease-in-out;
    -o-transition: font-family .33s ease-in-out;
    transition: font-family .33s ease-in-out;
}
.black-box {
    display: block;
    width: 10.625rem;
    height: 10.625rem;
    line-height: 10.625rem;
    text-align: center;
    font-family: 'spartan-semibold';
    color: var(--background);
    text-decoration: none;
    background-color: var(--main-color);
    font-size: 1.5rem;
    white-space: nowrap;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
}

@media(min-width: 764px) {
    
    #shopify-section-header {
        position: static;
        border-bottom: 1px solid var(--color-dseta);
    }
    .header-navigation {
        border-bottom: 0px;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }
    .header-left, .logo-container, .header-row-top {
        width: 30%;
    }
    .header-left {
        margin-left: 1rem;
    }
    .logo-container {
        margin: 0 auto;
    }
    .logo {
        width: 8.375rem;
        height: auto;
    }
    .logo-link, .logo-desktop {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0 auto;
        margin-left: 0;
    } 
    .logo-desktop {
        width: 12.375rem;
        height: auto;
        margin: 0 auto -2rem;
    }
    .header-navigation .header-row-top {
        display: block;
        margin-right: 1rem;
        border-bottom: none;
    }
    .input-search {
        max-width: 11rem;
    }
}
@media(min-width: 1200px){
    .black-box {
        width: 220px;
        height: 220px;
        line-height: 220px;
    }
}
.test {
    font-family: var(--main-font);
}

/* HEADER ACCOUNT FLOATING ELEM */
    .header-acc-container {
        display: inline;
        position: relative;
    }
    .header-acc-container .account-float {
        position: absolute;
        height: 280px;
        z-index: 3;
        right: -2.4rem;
        top: 2.5rem;
    }
    .bubble
    {
    position: relative;
    width: 250px;
    height: 100%;
    padding: 0px;
    background: #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: var(--color-beta) solid 1px;
    }
    
    .bubble:after
    {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 20px 20px;
    border-color: #FFFFFF transparent;
    display: block;
    width: 0;
    z-index: 1;
    top: -20px;
    left: 177px;
    }
    
    .bubble:before
    {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 20px 20px;
    border-color: var(--color-beta) transparent;
    display: block;
    width: 0;
    z-index: 0;
    top: -21px;
    left: 177px;
    }
    .header-acc-container .account-float .button {
        margin: 1rem;
        width: 80%;
        font-size: .75rem;

    }
    .header-acc-container .account-float .acc-text {
        text-align: left;
        font-size: .875rem;
        margin-left: 1rem;
        margin-bottom: 1rem;
    }
    .header-acc-container .account-float .acc-text a {
        color: var(--main-color);
        font-family: 'spartan-semibold';
        text-decoration: none;
    }
    .header-acc-container .account-float .acc-text .icon {
        margin-right: .875rem;
    }
    .header-acc-container .account-float .acc-text span {
        vertical-align: middle;
    }
    .acc-fix {
        margin-left: 0 !important;
        position: relative;
    }
/*  */
/* *************************************************** */
.home-blog-wrapper {
    margin-top: 2rem;
    padding: 2rem 1rem 1rem;
    background-color: var(--color-alpha);
}
.home-blog-wrapper header {
    margin-bottom: 1.5rem;
}
.home-blog-wrapper h3, .home-blog-wrapper h4 {
    text-align: center;
}
.home-blog-wrapper h3 {
    font-family: 'dmserif';
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.home-blog-wrapper h4 {
    font-family: 'spartan-light';
    font-size: .875rem;
}
.home-blog-wrapper .article-title {
    font-family: 'dmserif-italic';
    font-size: .875rem;
    text-align: left;
    margin-top: 1.188rem;
    line-height: 1.2;
}
.home-blog-wrapper .article-link {
    text-decoration: none;
    display: inline-block;
    padding: .6rem .5rem .5rem;
    color: var(--color-delta);
    border: 1px solid var(--color-delta);
    border-radius: 40px;
    margin-top: 1.188rem;
    font-size: .875rem;
    font-family: 'spartan-semibold';
    background: transparent;
    transition: all .3s ease;
}
.home-blog-wrapper .article-link:hover {
    background: rgba(0,0,0,.1);
    transition: all .3s ease;
}
@media(min-width: 764px) {
    .home-blog-wrapper {
        background-color: transparent;
    }
}
.carousel-home {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.carousel-home h3, .carousel-home h4 {
    margin: 1rem;
}
.carousel-home h3 {
    font-size: 1.125rem;
}
.carousel-home h4 {
    font-size: .875rem;
    font-family: 'spartan-regular';
    margin-bottom: 0;
}
.carousel-button {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
    font-size: .875rem;
    font-family: 'spartan-semibold';
    margin-bottom: 1rem;
}
.home-tv {
    margin: 2rem auto 0;
}
.home-tv-title {
    text-align: center;
}
.home-tv-title span {
    font-family: 'spartan-semibold';
    vertical-align: text-top;
    font-size: 1.5rem;
}
.home-tv sup {
    vertical-align: super;
    font-family: 'dmserif';
    font-size: .875rem;
}
.tv-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}
.tv-container {
    width: 50%;
}
.square-2 p, .square-2 h3 {
    line-height: 1.5;
    margin-left: 1rem;
}
.square-2 h3 {
    font-size: 1.125rem;
    margin-bottom: .5rem;
}
.square-2 p {
    font-size: .875rem;
}

.tv-container.square-3 {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}
.tv-container.square-3 div {
    margin-bottom: 1.2rem;
    margin-left: 1rem;
}
.tv-content .square-3 h4 {
    font-size: .75rem;
    margin: 0 0 .5rem;
}
.tv-content .square-3 p {
    font-size: .825rem;
    font-family: 'spartan-light';
}

/* NEWS TICJER ANIMATION */
.news-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}
.news-ticker-scroll {
    width: 100%;
    display: flex;
    animation: ticker 30s linear infinite;
}
.news-ticker-scroll span {
    white-space: nowrap;
    font-family: 'spartan-regular';
    font-size: .875rem;
    padding: 1.2rem 0;
}

@keyframes ticker 
{
    0%
    {
        transform: translateX(100%);
    }
    100%
    {
        transform: translateX(-115%);
    }
}
/*  */
@media(min-width: 764px) {
    .tv-container {
    width: 25%;
    }
    .tv-container.square-1 {
       order: 1; 
    }
    .tv-container.square-2 {
       order: 2; 
    }
    .tv-container.square-3 {
       order: 4; 
    }
    .tv-container.square-4 {
       order: 3; 
    }
}
.movable-navigation {
    padding: 1.5rem 1rem 0;
}
.movable-navigation .movable-title {
    font-size: .688rem;
    font-family: 'spartan-regular';
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.movable-navigation .movable-list  {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1.5rem;
}
.movable-navigation .movable-list .movable-item {
    margin-right: 3rem; 
    margin-bottom: .675rem;
}
.movable-navigation .movable-list a {
    text-decoration: none;
    font-family: 'spartan-bold';
    font-size: .875rem;
}
.newsletter{
    margin: 2rem auto;
}
.newsletter-text {
    text-align: center;
    font-family: 'spartan-bold';
    font-size: .875rem;
    line-height: 2;
    max-width: 15.625rem;
    margin: 0 auto;
}

.newsletter-form {
    text-align: center;
    margin: 1.5rem 3rem 3rem;
}
.form-button {
    display: block;
    font-family: 'spartan-bold';
    text-transform: uppercase;
    font-size: .875rem;
    background-color: transparent;
    border: none;
    color: var(--main-color);
    margin: 1rem auto 0;
}

.form-success, .form-error {
    margin: 1rem auto;
    text-align: center;
}
.form-success {
    color: var(--color-gamma);
}
.form-error {
    color: var(--color-error);
}
.partner-container:after {
    content: 'flickity';
    display: none;
}
.partner-container .partner {
    width: 30%;
    height: 100px;
    display: flex;
    align-items: center; 
    margin: 1rem;
}

.partner-container .partner img {
    width: 100%;
    height: auto;
}

@media screen and ( min-width: 764px ) {

    .partner-container:after {
        content: '';
    }
    .partner-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .partner-container .partner {
        width: 25%;
        height: auto;
        margin: 2rem;
    }
}
@media screen and ( min-width: 1024px ) {
    .partner-container .partner {
        width: 18%;
    }

}
.promo {
    margin: 1rem 2.5%;
    padding: 1rem;
    background-color: var(--color-alpha);
}
.promo .icon-right {
    text-align: right;
    margin-bottom: .3rem;
}
.promo .icon {
    cursor: pointer;
}
.promo .promo-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.promo .promo-subtitle {
    margin-bottom: .75rem;
    font-family: 'spartan-regular';
    font-size: .75rem;
    width: 80%;
    line-height: 1.7;
    letter-spacing: 1px;
}
@media(min-width:1024px) {
    .promotion-banner {
        background-color: var(--color-alpha); 
    }
    .promo{
        background-color: transparent;
        display: flex;
        margin: 2rem auto;
    }
    .promo .promo-info, .promo .aspect-ratio-large {
        margin: 1rem;
    }
    .promo .icon-right {
        display: none;
        
    }
    .promo .promo-info {
        width: 40%;
    }
    .promo .promo-title {
        font-size: 2rem;
    }
    .promo .promo-subtitle {
        font-size: 1rem;
        width: 100%;
    }
    .promo .aspect-ratio-large {
        padding-top: 30.25%;
        width:60%;
    }
}


.reviews .review {
    padding: 1rem;
    background: var(--color-alpha);
    border-radius: .625rem;
    margin: 1rem;
    width: 70%;
}
.reviews .review .review-top {
    display: flex;
    justify-content: space-between;
}
.reviews .review .rating .icon-star {
    width: 1rem;
    height: 1rem;
    fill: var(--color-star);
}
.reviews .review .review-top{
    margin-top: .5rem;   
}
.reviews .review .review-top .rating-time {
    color: var(--color-delta);
    font-size: .875rem;
}
.reviews .review .review-comment {
    font-size: .875rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

///////
.reviews .reviews-top {
    display: flex;
    justify-content: space-evenly;
    margin: 2rem 0 auto;
}
.reviews-top .black-bubble {
    border-radius: 50%;
    text-align: center;
    background: black;
    color: white;
    font-size: .6rem;
    position: relative;
    height: 90px;
    width: 90px;
    padding: 10px;
}

.reviews-top .black-bubble .bubble-content{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.reviews-top .black-bubble .bubble-1{
    font-family: 'spartan-semibold';
}
.reviews-top .black-bubble .bubble-2{
    font-family: 'spartan-medium';
}
.reviews-top .black-bubble .bubble-3{
    font-size: 1.5rem;
}
.reviews-top .black-bubble .superstar{
    color: var(--color-star);
    font-size: 1.8rem;
}

.reviews-top .reviews-middle{
    font-size: .825rem;
    position: relative;
}
.reviews-top .reviews-middle .reviews-stars{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
.reviews-top .reviews-middle .middle-content{
    margin-top: 35px;
}
.reviews-top .reviews-middle p{
    text-align: center;
    margin-bottom: .3rem;
    font-family: 'spartan-medium';
}
.reviews-top .reviews-middle .superstar {
    font-size: 1.6rem;
}
.reviews .review {
    padding: 1rem;
    background: var(--color-alpha);
    border-radius: .625rem;
    margin: 1rem;
    width: 70%;
}
.reviews .review .review-top {
    display: flex;
    justify-content: space-between;
}
.reviews .review .rating .icon-star {
    width: 1rem;
    height: 1rem;
    fill: var(--color-star);
}
.reviews .review .client-name{
    font-size: .875rem;
    height: .875rem;
    font-family: 'spartan-semibold';
    text-align: right;
}
.reviews .review .review-top{
    margin-top: .5rem;   
}
.reviews .review .review-top .rating-time {
    color: var(--color-delta);
    font-size: .875rem;
}
.reviews .review .review-title {
    font-size: 1rem;
    margin-top: 1.5rem;
    font-family: 'spartan-medium';
}
.reviews .review .review-comment {
    margin-top: .5rem;
    font-size: .875rem;
    margin-bottom: .5rem;
    height: 110px;
}

.reviews .review .rate-numbers {
    font-size: 10px; 
    font-family: 'spartan-semibold';
    color: black;
}

@media(min-width: 764px) {
    .reviews-top .black-bubble {
        height: 180px;
        width: 180px;
        font-size: 1rem;
    }
    .reviews-top .black-bubble .bubble-3 {
        font-size: 2rem;
    }
    .reviews-top .black-bubble .superstar {
        font-size: 2.5rem;
    }
    .reviews-top .reviews-middle .middle-content{
        margin-top: 65px;
    }
    .reviews-top .reviews-middle {
        font-size: 1rem;
    }
    .reviews-top .reviews-middle .middle-1,
    .reviews-top .reviews-middle .middle-2 {
        font-size: 2rem;
    }
    .reviews-top .reviews-middle .superstar {
        font-size: 3rem;
    }


    .reviews .review {
        width: 33%;
    }
}

@media(max-width: 764px) {
    .black-bubble.bubble-right {
        
        margin-right: 10px;
        margin-top: -10px;
    }

     .black-bubble.bubble-left {
        margin-top: -10px;
        margin-left: 10px;
         
    }
 
    .bubble-content{
        zoom: .85; 
    }

    .reviews-top{
        margin-left: 3px !important;
        margin-right: -3px  !important;
    }

    .middle-1{
        font-size: 14.5px;
    }
    .middle-3{
        font-size: .5em;
    }
   
    .reviews-stars{
        zoom:.8;
    }

}
//////











.who {
    margin: 2rem auto 0;
    overflow-x: hidden;
}
.who-title {
    font-family: 'spartan-semibold';
    margin-bottom: 2rem;
    margin-top: .5rem;
    text-align: center;
}

.who .who-upper {
    display: flex;
    justify-content: space-between;
    padding: .5rem;
}
.who-upper .who-item:first-child .who-info {
    display: none;
}
.who .who-bottom {
    padding: .5rem;
    padding-top: 0;
}
.who .who-upper .who-item {
    width: 49%;
}
.who .who-upper .who-item:first-child {
    padding-right: .25rem;
}
.who .who-upper .who-item:last-child {
    padding-left: .25rem;
}
.who-upper .who-item:last-child .who-info{
    display: none;
}
.who .who-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.25rem;
    background-color: rgba(255,255,255, .5);
    text-decoration: none;
    color: var(--main-color);
    line-height: 1.2;
    height: 30%;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.who .who-banner p {
    font-family: 'dmserif';
    margin: .4rem;
}
.who .who-bottom .who-banner {
    background-color: transparent;
}
.who .blog-banner {
    display: none;
}
.who .blog-banner-2 {
    display: block;
}
@media (min-width: 764px) {
    .who .who-banner {
        display: none;
    }
    .who .who-upper {
        display: block;
        margin: 1rem auto;
    }
    .who .who-upper .who-item {
        width: auto;
    }
    .who .who-upper .who-item:first-child {
        margin: 0 auto 25%;
        padding-right: 0;
    }
    .who .who-upper .who-item:last-child {
        padding-left: 0;
    }
    .who .who-upper .who-item, .who .who-bottom .who-item  {
        position: relative;
    }
    .who-upper .who-item:first-child .aspect-ratio-box, 
    .who-upper .who-item:last-child .aspect-ratio-box{
        padding-top: 56.25%;
    }
    .who-upper .who-item:first-child .who-info{
        position: absolute;
        bottom: -40%;
        width: 70%;
        margin: 0 15%;
        z-index: 2;
        background-color: var(--background);
        min-height: 296px;
        display: block;
    }
    .who-upper .who-item:last-child .who-info{
        position: absolute;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 600px;
        background: rgba(0,0,0,.5);
        display: block;
    }
    .who-upper .who-item:first-child .who-info-title,
    .who-upper .who-item:last-child .who-info-title {
        font-size: 2rem;
        font-family: 'dmserif';
        margin: 2.5rem 0 0;
        text-align: center;
    }
    .who-upper .who-item:first-child .who-info-desc,
    .who-upper .who-item:last-child .who-info-desc {
        text-align: center;
        font-family: 'spartan-light';
        font-size: .875rem;
        margin: 0 18%;
        line-height: 2;
        padding: 1.5rem;
    }

    .who-upper .who-item:last-child .who-info-title,
    .who-upper .who-item:last-child .who-info-desc {
        text-align: left;
        margin: 0 10%;
        padding: 1.5rem 1.5rem 0;
    }
    .who-upper .who-item:last-child .who-info-title {
        margin-top: 20%;
    }
    .who-upper .who-item:last-child .who-info-desc {
        font-size: 1rem;
    }
    .who .blog-banner {
        display: block;
    }
    .who .blog-banner-2 {
        display: none;
    }
    .who-bottom .who-item .who-info {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
        line-height: 1.8;
        font-family: 'spartan-semibold';
    }
    .who-bottom .who-item .who-info .who-info-title span {
        font-size: 1.2rem;
        vertical-align: text-top;
        padding: .2rem;
    }
    .who-bottom .who-item .who-info a {
        display: inline-block;
        border-radius: 40px;
        text-decoration: none;
        margin-top: 1.5rem;
        font-size: .75rem;
        font-family: 'spartan-semibold';
        padding: .4rem .7rem .2rem;
        line-height: 2;
    }
}

@media(min-width: 1024px) {
    .who .who-upper .who-item:first-child {
        margin: 0 auto 15%;
    }
    .who-upper .who-item:first-child .aspect-ratio-box, 
    .who-upper .who-item:last-child .aspect-ratio-box,
    .who-bottom .who-item .aspect-ratio-large {
        padding-top: 39.25%;
    }
    .who-upper .who-item:first-child .who-info{
        bottom: -30%;
    }
}
.unfound-title {
    text-align: center;
    font-size: 1.3rem;
    margin: 2.5rem;
}

.unfound-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}
.search-unfound {
    text-align: center;
    margin: 1.5rem 3rem 3rem;
}
.read-more {
    color: var(--main-color);
    line-height: 1.65;
    font-size: 0.825rem;
    display: inline-block;
    position: relative;
    margin-top: 1rem;
    text-decoration: none;
}
.read-more:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: currentColor;
  visibility: visible;
  transition: all.3s ease-in-out;
}
.read-more:hover::before {
  visibility: hidden;
  width: 0;
}
/* BLOG AND ARTICLE BANNERS */
.banner-wrapper {
    width: 100%;
    overflow: hidden;
    margin-right: 0;
    margin-left: 0;
    position: relative;
}
.image-elem-wrap {
    /* height: 35vh; */
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}
.image-elem-wrap img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
}
.banner-wrapper .blog-banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    width: 100%;
}
.blog-banner-content .banner-text {
    margin: auto;
    max-width: 900%;
    text-align: center;
}
.banner-text .banner-heading {
    color: var(--background);
    font-size: 2.5rem;
    text-transform: uppercase;
}
.banner-text .banner-subheading {
    color: var(--background);
    font-size: 1rem;
    letter-spacing: 1px;
}
/* ******************* */
.articles-list {
    margin-top: 4rem;
}
.articles-list .featured-article,
.related-blogs .featured-article {
    border: thin solid var(--color-epsilon);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--background);
    margin: 0 .75rem 1.25rem;
}
.articles-list .featured-article .card-image {
    display: block;
    position: relative;
}
.featured-article .card-image .image-elem-wrap img {
    height: auto;
}
.featured-article .card-content {
    background: transparent;
    padding: 1.5rem;
}
.featured-article .card-content a {
    text-decoration: none;
    color: var(--main-color);
    transition: .3s all ease-in-out;
}

.featured-article .card-content a:hover {
    color: var(--color-epsilon);
}
.featured-article .blog-card-button {
    margin: auto 1.5rem 1.5rem;
}
.featured-article .blog-card-button a {
    color: var(--background);
    background-color: #404040;
    border-color: rgba(0,0,0,0);
    height: auto;
    font-size: 1rem;
    text-decoration: none;
    padding: .625rem 1rem;
    text-align: center;
    transition: .3s all ease-in-out;
}
.featured-article .blog-card-button a:hover,
.featured-article .blog-card-button a:active {
    transition: .3s all ease-in-out;
    background-color: var(--color-gold);
}
.blog-main .blog-excerpt {
    margin: 2rem .75rem;
}

/* SIDEBAR BLOG */
.blog-sidebar {
    margin-left: .75rem;
    margin-right: .75rem;
    width: calc(100% - 2rem);
    padding-bottom: 1.25rem;
}
.blog-sidebar .sidebar-promo {
    padding: 2rem;
    background-color: var(--main-color);
    text-align: center;
}
.sidebar-promo .sidebar-image {
    display: inline-block;
}
.sidebar-promo .sidebar-text {
    color: var(--background);
    margin: 1rem 0;
}
.sidebar-promo .sidebar-button {
    background-color: var(--color-star);
    text-decoration: none;
    color: var(--main-color);
    border-radius: 30px;
    padding: .5rem;
}
.sidebar-social {
    margin: 2rem 0;
    display: flex;
}
.sidebar-social .social-link {
    margin-right: .5rem;
    display: block;
    border-radius: 50%;
    padding: .75rem;
    height: 2rem;
    width: 2rem;
    position: relative;
    background-color: var(--main-color);
}

.sidebar-social .social-link span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    fill: white;
    width: 2rem;
    height: 2rem;
}

.sidebar-subscribe h3 {
    margin-bottom: 1rem;
}

.sidebar-subscribe .promo-sub-text{
    color: var(--color-gamma);
}

/* ARTICLE */

.banner-heading-article {
    background-color: black;
    font-size: 1.5rem;
    padding: .4rem;
    text-transform: uppercase;
    word-break: break-word;
    color: white;
}
.article-banner .image-elem-wrap img {
    height: auto;
}
.article-main .extra-info-block {
    margin-left: .75rem;
    margin-right: .75rem;
    width: calc(100% - 1.25rem);
}
.article-main .extra-info-block p {
    margin-bottom: 1rem;
}
.article-main .extra-info-block h2,
.article-main .extra-info-block h3,
.article-main .extra-info-block h4,
.article-main .extra-info-block h5 {
    font-size: 1.25rem;
    margin-bottom: .75rem;
    word-wrap: break-word;
    color: var(--secondary-black);
}

.article-main .extra-info-block img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0 2rem;
}   
.article-share {
    display: flex;
    justify-content: flex-start;
    margin: 2rem 1rem;
}
.article-share .share-btn {
    margin-right: .75rem;
    transition: .3s all ease-in-out;
}
.article-share .share-btn a {
    border: 1px solid var(--color-theta);
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
}
.article-share .share-btn .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.btn-twitter svg {
    fill: #1da1f1;
}
.btn-facebook svg {
    fill: #4266b2;
}
.btn-pinterest svg {
    fill: #e50122;
}
.btn-email svg {
    fill: #f14336;
}
.share-btn.btn-twitter:hover a {
    background-color: #1da1f1;
    transition: .3s all ease-in-out;
}
.share-btn.btn-facebook:hover a {
    background-color: #4266b2;
    transition: .3s all ease-in-out;
}
.share-btn.btn-pinterest:hover a {
    background-color: #e50122;
    transition: .3s all ease-in-out;
}
.share-btn.btn-email:hover a {
    background-color: #f14336;
    transition: .3s all ease-in-out;
}
.share-btn.btn-twitter:hover svg,
.share-btn.btn-facebook:hover svg,
.share-btn.btn-pinterest:hover svg,
.share-btn.btn-email:hover svg {
    transition: .3s all ease-in-out;
    fill: white;
} 

.last-articles {
    margin:  1rem 0;
}
.last-articles h3 {
    margin-bottom: 1rem;
}
.last-articles a {
    text-decoration: none;
    color: var(--main-color);
    display: inline-block;
    transition: .2s all ease-in-out;
    margin-bottom: 1rem;
    font-size: .875rem;
}
.last-articles a:hover {
    transition: .2s all ease-in-out;
    color: var(--color-epsilon);
}

@media(min-width: 764px) {
    .article-banner .image-elem-wrap {
        height: 60vh;
    }
    .articles-list {
        display: flex;
        flex-wrap: wrap;
    }
    .articles-list .featured-article {
        width: calc(50% - 2rem);
    }
    .blog-content {
        display: flex;
    }
    .blog-sidebar {
        margin-top: 4rem;
    }
    #shopify-section-blog-main, #shopify-section-article-main {
        width: 70%;
    }
    #shopify-section-blog-sidebar, #shopify-section-article-sidebar {
        width: 30%;
    }
    .related-blogs {
        display: flex;
    }
    .related-blogs .featured-article {
        width: 33%;
    }
}
@media(min-width: 1024px) {
    .articles-list .featured-article {
        width: calc(33% - 2rem);
    }
}
.cart {
    background-color: #fff;
    padding-top: 2rem;
    margin-bottom: 8rem;
}
.cart .section-title {
    line-height: 1.7;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-family: 'spartan-semibold';
}
.cart .desktop {
    display: none;
}
.cart .cart-info {
    text-align: left;
    color: var(--main-color);
    margin: 3rem 1rem;
    padding: .5rem;
}
.cart .cart-info .cart-header {
    border-bottom: 1px solid var(--color-beta);
    display: flex;
}
.cart .cart-info .cart-header .cart-header-elem p {
    color: var(--main-color);
}
.cart-info .cart-content {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--color-beta);
    padding-bottom: 2rem;
}
.cart-info .cart-content .product-title, 
.cart-info .cart-content .total,
.cart-info .cart-content .current-cart-price {
    text-decoration: none;
    color: var(--main-color);
    font-family: 'spartan-medium';
    font-size:1rem;
}
.cart-info .cart-content .current-cart-price {
    display: none;
    font-family: 'spartan-medium';
}
.cart-info .cart-content .delete-product,
.cart-info .cart-content .current-price {
    color: var(--main-color);
    font-weight: bold;
    font-size: 1rem;
    font-family: 'spartan-medium';
    transition: all .3s ease;
}
.cart-info .cart-content .delete-product:hover {
    color: var(--color-eta);
    transition: all .3s ease; 
}
.cart-info .cart-content .product-cart,
.cart-info .cart-content .cart-quantity,
.cart-info .cart-content .current.cart-price {
    padding: .4rem;
}
.cart-info .cart-content .product-cart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cart-info .cart-content .cart-product-img {
    display: inline-block;
}
.cart-info .cart-content .cart-product-img img {
    width: 120px;
    height: auto;
}
.cart-info .cart-content .card-title {
    margin-left: .5rem;
}
.cart-info .cart-content .card-title-top {
    font-size: 1rem;
    font-family: 'spartan-medium';
}
.cart-info .cart-content .cart-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-info .cart-content .cart-quantity table {
    margin-left: .6rem;
}
.cart-info .cart-content .cart-quantity th{
    padding: .4rem .6rem;
}
.cart-info .cart-content .cart-quantity svg {
    position: relative;
    top: .1rem;
    cursor: pointer;
}
.cart-price-original{
    text-decoration: line-through;
    opacity: .7;
    display: block;
    font-size:.8em
}
.cart-price-discount{
    display: block;
      background-color: green;
      color: white;
      clear: both;
      margin: auto;
      padding: 3px;
}
.cart .end-cart {
    text-align: right;
    margin: 1rem;
    position: relative;
}
.cart .end-cart .total,
.cart .end-cart button {
    margin: 1rem 0;
    font-size:22px;
}
.cart .end-cart button {
    font-size: .75rem;
    position: absolute;
    right: 0;
    margin-top: 2rem;
    padding: .5rem;
}
.cart .end-cart .total {
    font-family: 'spartan-medium';
    font-size: 1rem;
}
.cart .end-cart .subtotal {
    color: var(--main-color);
    line-height:20px;
    font-family: 'spartan-medium';
    font-size: 1rem;
}
.cart .end-cart .iva_incluido {
    color: var(--color-delta);
    font-size: 12px;
}
.cart .end-cart .subtotal span,
.cart .end-cart .total span,
.cart .end-cart .iva_incluido {
    font-family: 'spartan-medium';
    font-size: 1rem;
}

.cart .cart-empty {
    text-align: center;
}
.cart .cart-empty a {
    display: inline-block;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .cart .desktop {
        display: block;
    }
    .cart .cart-info .col1 {
        width: 60%;
    }
    .cart .cart-info .col2 {
        width: 20%;
        text-align: center;
    }
    .cart .cart-info .col3 {
        width: 20%;
        text-align: center;
        display: block;
    }
    .cart .cart-info .cart-content {
        margin-top: 2rem;
        flex-direction: row;
        align-items: center;
    }
    .cart .cart-info .cart-content .current-cart-price {
        display: block;
    }
    .cart .cart-info .cart-content .cart-quantity {
        flex-direction: column;

    }
    .cart .cart-info .cart-content .cart-quantity table {
        margin-left: 0;
    }
    .cart .cart-info .cart-content .cart-quantity .delete-product {
        display: block;
        margin-top: 2rem;
        margin-bottom: -3rem;
    }
    .cart .end-cart {
        margin-right: 4.5rem;
    }
}


/* CART MODAL */

#cart-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 21474840000;
    background: var(--background);
    border-top: 1px solid var(--color-eta);
    height: 90vh;
    transform: translateY(100%);
    transition: .5s all ease-in-out;
}
.open-cart {
    transform: translateY(0) !important;
}
#cart-modal .close-modal {
    cursor: pointer;
}
#cart-modal header {
    padding-top: .5rem;
    position: sticky;
    top: 0;
    background: var(--background);
    border-bottom: 1px solid var(--color-delta);
}
#cart-modal .cart-header-top,
#cart-modal .cart-header-bottom {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
}
#cart-modal .cart-header-top h3 {
    width: 90%;
    text-align: center;
    margin-left: 6.5%;
}
#cart-modal .cart-header-top .icon-modal {
    text-align: right;
    width: 10%;
}
#cart-modal .cart-header-bottom {
    justify-content: space-between;
}
#cart-modal .cart-header-bottom .cart-articles {
    font-family: 'spartan-light';
    font-size: .875rem;
}
#cart-modal .cart-header-bottom .cart-total {
    color: var(--color-delta);
}
#cart-modal .cart-header-bottom .total {
    font-family: 'spartan-semibold';
}
#cart-modal .cart-header-bottom .iva {
    font-size: .625rem;
}
#cart-modal .cart-modal-products {
    height: 60vh;
    overflow-y: scroll;
}
#cart-modal footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 1rem 0;
    box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
    background: var(--background);
}
#cart-modal footer .button {
    margin-bottom: .75rem;
    width: 80%;
}
#cart-modal .cart-modal-products .customer-order{
    border-bottom: 1px solid var(--color-theta);
    margin: 1rem 0;
}
#cart-modal .cart-modal-products .customer-order .order-image img {
    border-radius: 4px;
}
#cart-modal .cart-modal-products .customer-order .order-info {
    margin-left: .5rem;
}
#cart-modal .cart-modal-products .customer-order .order-n {
    font-size: .875rem;
}
#cart-modal .cart-modal-products .customer-order .cart-modal-variants {
    font-family: 'spartan-semibold';
    font-size: .75rem;
    color: var(--color-delta);
    margin-bottom: .5rem;
}
#cart-modal .cart-modal-products .customer-order .order-price {
    display: flex;
    flex-direction: column;
}
#cart-modal .minus-plus {
    border: 1px solid var(--main-color);
    border-radius: 40px;
    width: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .3rem .2rem .2rem;
    height: 1.25rem;
    margin-top: 1.5rem;
}
#cart-modal .minus-plus p {
    text-align: center;
    width: 33.33%;
}
#cart-modal .minus-plus .minus,
#cart-modal .minus-plus .plus {
    cursor: pointer;
    font-size: 1.25rem;
}
#cart-modal .delete-product {
    text-align: right;
    margin-bottom: 1rem;
    margin-right: .5rem;
}
#cart-modal .delete-product svg {
    width: 1.3rem;
    height: 1.3rem;
}

@media(max-width: 768px) {
    .cart-price-discount{
        display: block;
            background-color: green;
            color: white;
            clear: both; 
            padding: 3px;
            font-size: 12px;
            float: left;
            text-align: center;
            margin: 0;
            max-width: 120px;
            height: 16px;
            line-height: 21px;
        }
}
.collection-title {
    font-size: .875rem;
    text-transform: uppercase;
    text-align: center;
    margin: 2rem 1rem;
}
.collection-title-2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    margin: 2rem 1rem;
}

.collection-excerpt{
    text-align:center;
    margin-bottom:40px;
}
.collection-filters .general-filters {
    position: relative;
    width: 80%;
    margin: 1rem auto;
}
.collection-filters .general-filters.filters-flex {
    display: flex;
    justify-content: center;
}
.general-filters-desktop{
    display: none;
}
.general-filters:after {
        content: 'flickity';
        display: none;
}
.general-filters .flickity-button {
    background: transparent;
}
.general-filters .flickity-button:hover {
    background: transparent;
}
.general-filters .flickity-prev-next-button {
    top: 38%;
}
.general-filters .flickity-prev-next-button.previous {
    left: -2rem;
}
.general-filters .flickity-prev-next-button.next {
    right: -2rem;
}
.collection-filters .general-filters .filter-icon {
    background-color: black;
    fill: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    padding: .5rem;
    margin-bottom: 1rem;
}
.general-filters .general-filters-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 25%;
}
.general-filters .general-filters-item span {
    font-family: 'spartan-medium';
    font-size: .65rem;
    color: var(--main-color);
    text-align: center;
}
.filter-arrows {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
}
.filter-arrows span:first-child {
    rotate: 90deg;
    position: relative;
}
.filter-arrows span:last-child {
    rotate: -90deg;
    position: relative;
}
.filter-arrows svg{
    height: 4rem;
    width: 1rem;    
}

.collection-filters .owned-filters {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .75rem;
}
.collection-filters .owned-filters .owned-filters-item {
    font-family: 'spartan-medium';
    font-size: .625rem;
    margin: .75rem;
    padding: .3rem;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--main-color);
}
.owned-filters-item span {
    font-family: inherit;
}
.collection-filters .owned-filters .filter-selected {
    color: var(--background);
    background-color: var(--color-iota);
    border-radius: 40px;
}


.collection-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 1rem auto;
}
.collection-cards .card {
    width: 47%;
    -margin:.5rem;
    margin-bottom: 15px;
    margin-left: 0;
}

.collection-cards .card .rating {
    height: 15px;
}


.collection-cards .card .product-offer {
    top: .75rem;
    left: 0.5rem;
}

.product-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2147484000; 
    background: var(--background);
    /* display: none; */
    border-top: 1px solid var(--color-eta);
    transition: .5s all ease-in-out;
    transform: translateY(100%);
    height: 90vh;
}
.product-modal .product-template-carousel {
    xxmargin: 1rem 1rem 0;
    margin: 0;
}
.open-modal {
    transition: .5s all ease-in-out;
    transform: translateY(0);
    overflow-y: scroll;
}
.product-modal .icon-modal {
    padding: 1rem 1rem .5rem;
    text-align: right;
    left: calc(100% - 2rem);
    position: sticky;
    top: 0;
    z-index: 21;
    background: transparent;
}
.product-modal .icon-modal .icon {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    padding: .5rem;
    background-color: var(--background);
    border-radius: 50%;
    border: 1px solid black;
}
.product-modal .modal-inner-container {
    top: -50px;
}
.product-modal .modal-wrapper {
    display: flex;
    padding: 1rem 1rem 0;
    width: 90%;
    margin: 0 auto;
}
.product-modal .modal-wrapper .modal-image {
    margin-right: .5rem;
    width: 40%;
    width: 8.75rem;
    height: 8.75rem;
}
.product-modal .modal-wrapper .modal-text {
     width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: .5rem;
}
.product-modal .modal-wrapper .modal-text p {
    font-size: .875rem;
    line-height: 1.4;
}
.product-modal .modal-wrapper .modal-text .modal-variants p {
    margin-top: .5rem;
}
.product-modal .modal-wrapper .card-title {
    font-family: 'spartan-semibold';
    font-size: .75rem;
}
.product-modal .modal-wrapper .card-price{
    font-size: .875rem;
    text-align: right;
    width: 15%;
    xxmargin-top: .3rem;
    float: right; 
    white-space: nowrap;
}
.product-modal .product-variants{
    width: 91%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.product-modal .button {
    margin-bottom: 1rem;
    width: 90%;
    padding: .6rem 0 .5rem !important;
}
.card .product-modal:first-child {
    display: block;
}

@media(min-width: 764px) {
    .collection-cards .card {
        width: 30%;
    }
    .collection-cards .card .card-text .card-title {
        white-space: normal; 
    }
   
}

@media(max-width: 764px) {
    .card-title { 
        padding: 0.3rem 0 !important;
    }
    .ts-stars-reviewCount, .ts-reviewSummary-ratingValue, .ts-reviewSummary-bestRating{
        font-size: 10px !important;
    }
}


@media(min-width: 1024px) {
    .collection-cards .card {
        width: 23%;
    }
    .collection-looks .collection-cards .card {
        width: 30%;
    }
    .collection-filters {
        display: flex;
        flex-direction: column;
    }
    .general-filters:after {
        content: '';
    }
    .collection-filters .general-filters-desktop {
        order: 2;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin: 0 auto;
    }
    .general-filters-desktop .general-filters-item {
        display: inline-block;
        width: auto;
        margin: .75rem;
        padding: .5rem;
        white-space: nowrap;
        font-size: .75rem;
        font-family: 'spartan-medium';
        border-radius: 40px;
        border: 1px solid var(--color-iota);
        background: transparent;
        appearance: none;
        font-size: .75rem;
        cursor: pointer;
    }
    .general-filters-desktop .general-filters-item span {
        font-size: .75rem;
    }
    .collection-filters  .general-filters-desktop .filter-icon {
        display: none;
    }
    .collection-filters  .general-filters-desktop .icon {
        width: .7rem;
        height: .7rem;
    }
    .collection-filters .owned-filters {
        order: 1;
        justify-content: flex-start;
    }
}

/* Collection looks */

.collection-looks .product-image {
    margin: 0 auto;
}
.collection-looks .product-image img {
    display: block;
    margin: 0 auto 2rem;
}
.collection-looks .product-image iframe {
    margin: 0 auto;
    display: block;
}
.personal-account header {
    display: flex;
    align-items: center;
    -padding-top: .5rem;
    padding-top: 2rem;
}
.personal-account header h1 {
    width: 90%;
    -padding-left: 10%;
    text-align: center;
}

 
.account-container {
    background-color: var(--color-dseta);
}
#customer-login {
    margin-top: 2rem;
}
.account-page {
    background-color: #fff;
    min-height: 43.75rem;
    max-width: 40.25rem;
    margin: 0 auto;
    box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
    border-radius: 6px;
    margin-top: .1rem;
}
.account-page .icon-container {
    margin: 0;
    padding: 1rem;
}
.account-page .toggle-menu {
    margin: 1rem;
    border-radius: 30px;
    padding: 5px;
    background: var(--color-alpha);
    position: relative;
}
.account-page .toggle-menu .toggle-btn {
    border-radius: 30px;
    padding: .825rem 1.5rem .625rem;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    width: 49%;
    font-family: 'spartan-semibold';
    font-size: .825rem;
}
.account-page .toggle-menu #btn {
    position: absolute;
    top: 10%;
    transform: translateX(96%);
    width: 50%;
    height: 80%;
    border-radius: 30px;
    background: var(--background);
    transition: .3s all ease;
}
.account-page .toggle-menu #btn.btn-left {
    transform: translateX(1%);
    transition: .3s all ease;
}
.account-form {
    max-width: 31.25rem;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}
.account-form .section-title {
    line-height: 1.7;
    text-align: center;
    padding-top: 2rem;
    font-size: 1rem;
}
.account-form .form-text {
    text-align: center;
    margin: 2rem 0;
    line-height: 1.5;
}
.account-page .form-error {
    font-family: 'spartan-regular';
    color: var(--color-error);
}
.account-form .form-item {
    padding: 1rem 0;
    margin: 1rem auto;
    position: relative;
}
.account-form .form-item input, .account-form .form-item select, .account-form .form-item textarea {
    background-color: transparent;
    border: 0px solid;
    border-bottom: 1px solid var(--main-color);
    outline: none;
    color: var(--main-color);
    width: 90%;
    font-size: .85rem;
    padding: .75rem .875rem;
    transition: all .2s ease;
    appearance: none;
    font-family: 'spartan-semibold';
}

.account-form .form-item input:focus, .account-form .form-item select:focus, .account-form .form-item textarea:focus {
    border-bottom: 1px solid var(--color-epsilon);
}
.account-form .form-item select {
    appearance: none;
}
.account-form .form-item .select-country {
    position: relative;
}
.account-form .form-item .select-country .select-icon {
    position: absolute;
    right: 3%;
    top: 39%;
}
.account-form .form-item .select-country .select-icon svg {
    width: .8rem;
    height: .8rem;
}
.recovery-form .recovery-text {
    line-height: 1.7;
    font-family: 'dmserif';
    font-size: 1rem;
    margin-top: 2rem;
    width: 70%;
}
.account-form .recovery-password-button {
        font-size: 1rem;
        outline: none;
        border: none;
        background: transparent;
        cursor: pointer;
        transition: all .3s ease;
        padding: 2rem 0 1rem;
        display: block;
        text-align: right;
        width: 95%;
        font-family: 'dmserif';
        color: var(--main-color);
    }
.account-form .recovery-password-button:hover {
    color: var(--color-eta);
    transition: all .3s ease;
}

.account-form .button {
    cursor: pointer;
    padding: .8rem 0 .5rem;
    margin: 1rem 0 0;
    width: 95%;
}
.account-form .button-back {
    font-size: 1rem;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'dmserif';
    color: var(--main-color);
}
.account-form .button-back:hover {
    color: var(--color-eta);
    transition: all .3s ease;
}
.account-page .activate-error .form-error {
    margin: 0;
}
#pass-recover {
    text-align: center;
    font-family: 'spartan-semibold';
    font-size: 1rem;
    margin: 2rem 0;
    letter-spacing: 1px;
    transition: all .3s ease;
    cursor: pointer;
}
#pass-recover:hover {
    color: var(--color-eta);
    transition: all .3s ease;
}
.separate {
    display: flex;
    justify-content: center;
    margin: 4rem auto;
}
.separate .line {
    border-bottom: 2px solid var(--color-beta);
    width: 100%;
}
.separate p {
    font-family: 'spartan-bold';
    position: relative;
    top: .3rem;
}
.social-login .icon {
    width: 2.3rem;
    vertical-align: middle;
    height: auto;
}
.social-login .icon-google {
    width: 2rem;
    margin-right: .2rem;
}
.social-login .icon-amazon svg {
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
}
.account-form .social-login .button {
    text-align: center;
    letter-spacing: 2px;
    margin: 1rem auto 0;
}

#create-customer .form-item input, 
#create-customer .form-item select,
#reset_customer_password .form-item input {
    border: 2px solid var(--color-dseta);
    border-radius: 30px;
}
#reset_customer_password .form-item input {
    margin-top: 1rem;
}
#reset_customer_password .form-item label {
    color: var(--color-delta);
    font-size: 1rem;
    margin: .5rem;
    font-family: 'spartan-regular';
}
#create-customer .form-item label {
    color: var(--color-beta);
    font-family: 'spartan-regular';
    font-size: .75rem;
    margin: .5rem;
}
.date-form {
    display: flex;
    justify-content: center;
}
.form-item.date-form .date-elem {
    width: 100%;
    position: relative;
}
.form-item.date-form .date-icon {
    position: absolute;
    width: .8rem;
    right: 2rem;
    top: 25%;
    color: var(--color-eta);
}
 #create-customer .form-item.date-form .date-elem select {
    color: var(--color-eta);
}
#create-customer .register-info {
    background-color: var(--color-alpha);
    padding: .5rem .5rem 2rem;
}
#create-customer .register-info .section-title{
    text-align: left;
}

#create-customer .register-info .register-info-subtitle{
    font-family: 'spartan-light'; 
    font-size: .875rem;
    line-height: 1.4;
    margin-top: .5rem;
}
#create-customer .register-info .register-info-block {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 1rem .3rem;
    padding: .5rem;
    background-color: var(--background);
}
#create-customer .register-info .info-block-container {
    display: flex;
    align-items: center;
}
#create-customer .register-info .register-info-block p {
    white-space: nowrap;
    position: relative;
    right: .5rem;
    padding: .3rem;
    width: 214px;
}
#create-customer .register-info .register-info-block p span:first-child{
    font-family: 'spartan-semibold';
    font-size: .75rem;
}
#create-customer .register-info .register-info-block p span:last-child{
    font-family: 'spartan-regular';
    font-size: .75rem;
}
#create-customer .register-info .icon {
    width: 3.3rem;
    height: 3.3rem;
    position: relative;
    top: .5rem;
    right: .5rem;
}


/* PERSONAL ACCOUNT */
.account-page .welcome, .account-page .qr-code p {
  font-size: .825rem;  
  text-align: center;
  line-height: 1.4;
  margin: 1rem;
}
.account-page .welcome span:last-child {
    font-family: 'spartan-semibold';
}
.account-page .qr-code {
    text-align: center;
}
.account-page .account-banners .account-banner {
    border-radius: 4px;
    background: #DDBB74;
    width: 250px;
    height: 180px;
    padding: .5rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.account-page .account-banners .account-banner p {
    font-family: 'spartan-medium';
    font-size: .875rem;
    text-align: center;
    color: white;
}
.account-page .account-banners .account-banner .banner-price {
    font-size: 2rem;
}
.account-page .account-banners .account-banner .banner-date {
    font-size: .75rem;
}
.account-page .account-menu {
    background-color: var(--color-alpha);
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 1rem 1rem 4rem;
}
.account-page .account-menu .account-menu-sect {
    background-color: var(--background);
    border-radius: 4px;
    margin-bottom: 1rem;
}
.account-page .account-menu .account-menu-sect a {
    display: block;
    text-decoration: none;
    color: var(--main-color);
    font-family: 'spartan-bold';
    border-bottom: 1px solid var(--color-alpha);
}
.account-page .account-menu .account-menu-sect span, 
.account-page .account-menu .account-menu-sect p {
    vertical-align: middle;
    font-family:'spartan-semibold'
}
.account-page .account-menu .account-menu-sect p {
    display: flex;
    align-items: center;
    line-height: 1.4;
    padding: .5rem 1rem .5rem 0;
}
.account-page .account-menu .account-menu-sect p span:last-child {
    width: 80%;
}
.account-page .account-menu .account-menu-sect .icon {
    padding: .85rem;
}
.account-menu-sect .acc-menu-cont {
    display: none;
    margin: 1rem;
    font-size: .875rem;
    
}
.account-page .account-menu .account-menu-sect .acc-menu-cont p {
    display: block;
}
.account-page .account-menu .account-menu-sect .acc-menu-cont p,
.account-page .account-menu .account-menu-sect .acc-menu-cont span {
    font-family: 'spartan-light';
    font-size: .875rem;
}
.account-page .account-menu .account-menu-sect .acc-menu-cont a {
    border: none;
}
.account-page .account-menu .account-menu-sect .acc-menu-cont .help-card {
    text-align: left;
}
.account-page .account-menu .account-menu-sect .acc-menu-cont span {
    vertical-align: baseline;
}
/* ORDERS */
.customer-order {
    margin: 2rem 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-alpha);
    cursor: pointer;
}
.customer-order .order-image {
    display: block;
    /* width: 30%; */
}
.customer-order .order-image img {
    border-radius: 100%;
}
.customer-order .order-info {
    width: 50%;
}
.customer-order .order-info .order-n {
    font-family: 'spartan-medium';
    margin-bottom: .5rem;
}
.customer-order .order-info .order-date {
    font-size: .825rem;
    font-family: 'spartan-light';
    margin-bottom: .5rem;
}
.customer-order .order-info .order-status {
    font-family: 'spartan-semibold';
    font-size: .75rem;
    color: var(--color-delta);
}
.customer-order .order-price .order-p {
    margin-bottom: .5rem;
    font-family: 'spartan-bold';
}
.customer-order .order-price .order-q {
    white-space: nowrap;
    font-family: 'spartan-light';
    font-size: .75rem;
}

.infinite-paginator {
    max-width: 31.25rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2rem;
}
.infinite-paginator button {
    border: none;
    background: var(--background);
    color: var(--main-color);

}
.infinite-paginator button:hover {
    background: var(--color-alpha);
}

/* INDIVUAL ORDER */

.order-title {
    font-family: 'spartan-bold';
    font-size: .875rem;
    text-align: center;
    margin-bottom: 1rem;
}
.order-subtitle {
    text-align: center;
    font-size: .875rem;
    margin-bottom: 1rem;
}

.account-page .account-menu .account-banners .account-menu-sect {
    width: 80%;
    margin: 1rem;
}
.account-page .account-menu .account-menu-sect .product-order {
    padding: 1rem .5rem;
    border-bottom: 1px solid var(--color-alpha);
    display: flex;
}
.account-page .account-menu .account-menu-sect .product-order {
    width: 100px;
}
.account-page .account-menu .account-menu-sect .product-order img {
    width: 100px;
}
.account-menu-sect .product-order .product-order-info {
    margin-left: .5rem;
}
.account-page .account-menu .account-menu-sect .product-order .product-order-info p {
    padding-top: 0;
    font-size: .875rem;
    white-space: nowrap;
}
.account-page .account-menu .account-menu-sect .product-order a {
    border-bottom: none;
}
.account-menu-sect .product-order .product-order-variant,
.account-menu-sect .product-order .product-order-ref {
    font-family: 'spartan-light' !important;
}
.account-menu-sect .product-total-price {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}
.account-page .account-menu .account-menu-sect .product-total-price p,
.account-page .account-menu .account-menu-sect .shipping-text {
    font-family: 'spartan-regular';
    font-size: 1rem;
    padding: 1rem 0;
}
.account-page .account-menu .account-menu-sect .shipping-text {
    text-align: center;
    display: block;
    padding: 1rem 0;
}
.account-menu-sect .product-total-price .price-left p {
    text-align: left;
}
.account-menu-sect .product-total-price .price-right p {
    text-align: right;
}
.account-page .account-menu .account-menu-sect.pay-method {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

/* ADDRESSES */
.account-page .address {
    margin-top: 2rem;
}
.account-page .address .account-title{
    margin: 1rem 0;
}
.account-page .address.account-menu-sect p {
    display: block;
    text-align: center;
    line-height: 2;
    font-family: 'spartan-regular';
}
.address-buttons {
    display: flex;
}
.address-buttons .button {
    width: 45%;
} 
#modal-address-new, .modal-address-put {
    display: none;
    position: fixed;
    z-index: 7;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,.4);
}
#modal-address-new .modal-content,
.modal-address-put .modal-content {
    max-width: 37.5rem;
    margin: 0 auto;
    margin-bottom: 30vh;
    padding: 1.5rem;
    background-color: white;
}

.help-container {
    max-width: 40.25rem;
    margin: 1rem auto;
    padding: 1rem 0;
    box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
    border-radius: 6px;
    background-color: var(--background);
}
.help-container .help-title {
    text-align: center;
    font-size: .875rem;
    margin: 1rem 0;
}

@media(min-width: 41rem) {
    .account-container {
        padding: 2.5rem 0 5rem;
    }
    .account-page .account-menu .account-menu-sect .product-order img {
        width: 200px;
    }
}
#icon-help {
    position: fixed;
    z-index: 5;
    bottom: 1rem;
    right: 1rem;
}
.product-display {
    position: relative;
}
.product-template .icon-help {
    display: inline-block;
    background: var(--background);
    box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
    border-radius: 100%;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    position: relative;
}
.product-template .icon-help svg {
    position: absolute;  
    width: 4rem;
    height: 4rem;
    top: 50%;
    left: 45%;
    transform: translate(-50%,-50%);
}
.product-template-carousel:after {
    content: 'flickity';
    display: none;
}
.product-template-carousel .flickity-page-dots {
    bottom: 10px;
}
.product-template-carousel .flickity-page-dots .dot {
    width: .5rem;
    height: .5rem;   
    background: var(--background);
    border: 1px solid var(--background);
    opacity: 1;
}
.product-template-carousel .flickity-page-dots .dot.is-selected {
    background: transparent;
}
.product-thumbnails, .product-main-image {
    display: none;
}
.icon-fav, .product-new, .product-offer {
    top: 5%; 
    display: block;
    position: absolute;
}
.icon-fav, .product-new, .product-offer p {
box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
font-family: 'spartan-semibold';
}
.icon-fav {
    padding: .2rem;
    right: .875rem;
    background-color: var(--background);
    border-radius: 50%;
}
.product-new {
    font-size: .75rem;
    left: .875rem;
    border-radius: 40px; 
    background-color: var(--background);
    padding-left: .5rem; 
    padding-right: .5rem;
    height: 1.4rem;
    line-height: 1.6rem;
}
.product-offer {
    left: 5%;
    z-index: 9;
 
}
.product-offer p {
    font-size: .75rem;
    border-radius: 40px;
    padding-left: .5rem; 
    padding-right: .5rem;
    height: 1.4rem;
    line-height: 1.6rem;
    -padding: .5rem;
}
.product-offer p:first-child {
    background-color: var(--background);
    color: var(--color-error);
    margin-bottom: 1rem;
}
.product-offer p:last-child {
    color: var(--background);
    background-color: var(--color-error);
    display: inline-block;
}
.product-video {
    text-align: center;
    background-color: var(--color-alpha);
    padding: .5rem;
}
.product-video span {
    cursor: pointer;
}
.product-video .icon {
    transform: rotateY(45deg);
    rotate: 90deg;
    vertical-align: middle;
}
.product-video span:last-child {
    font-family: 'spartan-medium';
    font-size: .625rem;
}
.product-info {
    margin: 1rem;
}
.product-rating {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.share-section {
    position: relative;
}
.share-section #share-button {
    cursor: pointer;
}
.share-section .article-share {
    position: absolute;
    flex-direction: column;
    right: 0.5rem;
    top: -2.2rem;
    z-index: 3;
}
.article-share .share-btn.btn-email,
.article-share .share-btn.btn-facebook,
.article-share .share-btn.btn-pinterest,
.article-share .share-btn.btn-email {
    background-color: var(--background);
}
.rating .icon-star {
    width: 1rem;
    height: 1rem;
    fill: var(--color-star);
}
.rating span {
    font-family: 'spartan-light';
    font-size: .75rem;
    vertical-align: bottom;
}
.product-info .product-title {
    font-size: .875rem;
    font-family: 'spartan-medium';
    margin: .75rem 0;
}
.product-info .product-price, .product-info .product-price span {
    font-size: .938rem;
    font-family: 'spartan-light';
    margin-bottom: .75rem;
    font-weight: 800;
}
.actual-price {
    color: var(--color-error);
    margin-right: .5rem;
}
.crossed-price {
text-decoration: line-through;
}
.bag-container {
    display: inline;
}
.bag-container .cart-count {
    position: relative;
    display: inline-block;
    bottom: .5rem;
    right: 1rem;
    border-radius: 50%;
    background: var(--main-color);
    width: 1.125rem;
    height: 1.125rem;
}
.bag-container .cart-count span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: .75rem;
    color: white;
}
.product-variants .variant-size {
    position: relative;
    border-radius: 100%;
    display: inline-block;
    width: 2.8rem;
    height: 2.8rem;
    font-size: .813rem;
    border: 1px solid;
    border-radius: 100%;
    cursor: pointer;
    margin-right: .15rem;
    margin-top: .5rem;
}

.product-variants .variant-size span {
    color:black;
    font-family: 'spartan-light';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: .75rem;
}
.variant-unavailable {
    opacity: .5; 
}
.variant-unavailable:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
  
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
}
.variant-selected, .variant-selected span {
    color: var(--color-gold) !important;
}

.product-variants .button {
    margin-top: 1rem;
    width:100%;
}
.product-info .product-size-guide{
    margin-top: 1rem;
}
.product-info .product-size-guide a {
    text-decoration: underline;
    color: var(--main-color);
    font-size: .875rem;
}
.product-info .product-size-guide .hanger {
    border-radius: 100%;
    border: 1px solid;
    padding: .2rem;
    height: 1rem;
    width: 1rem;
}

.product-info-boxes {
    display: flex;
    border: 1px solid var(--color-eta);
    margin: 1rem auto;  
}
.product-info-boxes div {
    width: 50%;
    text-align: center;
}
.product-info-boxes div:first-child {
    border-right: 1px solid var(--color-dseta);
}
.product-info-boxes .icon {
    margin: .5rem;
}
.product-info-boxes .icon-store {
    display: inline-block;
    width: 3rem;
}
.product-info-boxes p {
    margin-bottom: .5rem;
}
.product-info-boxes .box-title {
    font-family: 'spartan-semibold';
    font-size: .75rem;
}
.product-info-boxes .box-subtitle {
    font-family: 'spartan-semibold';
    font-size: .75rem;
    color: var(--color-eta);    
}
.product-info-boxes .box-cont {
    color: var(--color-eta);    
    font-size: .75rem;
    font-family: 'spartan-light';
}
.product-info-boxes .box-subcont {
    color: var(--color-eta);     
    font-size: .688rem;  
    font-family: 'spartan-light';
}

.product-accordion {
    margin-top: 2rem;
}
.product-accordion .accordion-elem {
    border-bottom: 1px solid var(--color-theta);
    margin: 1rem 0;
}
.product-accordion .accordion-elem:last-child {
    border-bottom: 0px;
}
.product-accordion .accordion-title {
    text-align: center;
    font-size: .875rem;
    text-transform: uppercase;
    font-family: 'spartan-medium';
    letter-spacing: 1px;
    padding: .875rem 0;
    cursor: pointer;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-accordion .accordion-title .accordion-plus {
    position: relative;
    bottom: .2rem;
}
.product-accordion .accordion-title p:first-child {
    width: 90%;
}
.product-accordion .accordion-cont {
    margin: 1rem 0;
    font-size: .875rem;
    line-height: 1.5;
    display: none;
}
.product-accordion .accordion-cont p {
    margin-bottom: 1rem;
}
.product-accordion .accordion-cont p, .product-accordion .accordion-cont span {
    font-family: 'spartan-light';
    font-size: .875rem;
}
.product-accordion .accordion-cont .cont-bold {
    font-family: 'spartan-medium';

}

.product-accordion .faq-list .faq-elem .faq-title {
    border: 1px solid var(--color-theta);
    border-radius: 40px;
    padding: .5rem;
    text-align: center;
    cursor: pointer;
}
.product-accordion .faq-list .faq-elem .faq-title span {
    vertical-align: text-top;
}
.product-accordion .faq-list .faq-elem .faq-content {
    text-align: left;
    font-size: .875rem;
    display: none;
}
.product-accordion .faq-list .faq-elem .faq-content span {
    font-size: .875rem;
}
.page-faq .product-accordion .accordion-title {
    /*---test---*/
}

 
.video_thumb {
    position: relative;
    display: table;
    height: 72px;
    width: 72px; 
    background-size: 100%;
  }
  
  .video_thumb a {
    display: table-cell;
    height: 100%;
    width: 100%;
    text-align: center;
    vertical-align: middle;
  }
  
  .video_thumb a .circle {
    display: inline-block;
    border: 4px solid white;
    border-radius: 35px;
    padding: 20px;
    height: 10px;
    width: 10px;
  }
  
  .video_thumb a .circle .triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid white;
    transform: translate(-15%, -40%);
  }
    

.icons-normas{
    text-align: center;
}
 .norma-icon {
    width: 3rem;
    height: 3rem;  
    text-align: center;
    margin: 15px; 
    display:inline-block;
}
.norma-icon svg{
    width: 3rem;
    height: 3rem; 
}
.norma-icon p{
    font-size: 10px !important;
}

.norma-icon svg{
    vertical-align: middle;
}

  
.faq-selected {
    border: 1px solid var(--main-color) !important;
}
.faq-selected span {
    font-family: 'spartan-medium' !important;
}

.product-template .product-carousel {
    margin: 1rem;
    margin-bottom: 3.5rem;
}

.prod-car-title {
    padding-left: 1.5rem;
    margin-bottom: .5rem;
    font-family: 'spartan-bold';
    font-size: 1.875rem;
}

.look-title{
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: .6rem 0;
    font-family: 'spartan-semibold';
    font-size: .75rem;
}

.desktop-carousel {
    display: none;
}
.product-recommendations{
    visibility:hidden;
}

@media(min-width: 764px) {
    .product-template-carousel, .product-video {
        display: none;
    }
    .desktop-carousel {
        display: block;
    } 
    .product-template-carousel:after {
        content: ''; 
    }
    .product-display {
        margin: 1rem;
        display: flex;
    }
    .active-image {
        border: 1px solid var(--main-color);
    }
    .product-display .product-main-image {
        display: block;
    }
    .product-display .product-main-image {
        width: 100%;
        margin-left: 1rem;
    }
    .product-display .product-thumbnails {
        display: flex;
        flex-direction: column;
    }
    .product-display .product-thumbnails img {
        margin-bottom: 1rem;
    }
    .icon-fav, .product-new, .product-offer {
        top: 1rem;
    }
    .icon-fav {
        right: 2.2rem;
    }
    .product-display .product-offer, 
    .product-display .product-new {
        left: 15%;
    }
}
@media(min-width: 1024px) {

    .product-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4rem;
    }
    .product-display {
        width: 60%;
    }
    .product-display .product-main-image {
        width: 70%;
    }
    .product-info {
        width: 40%;
        margin: 1rem;
    }
    .product-info-boxes {
        border: 0px;
        display: block;
    }
    .product-info-boxes div:first-child {
        border-right: 0px;
    }
    .product-info-boxes div {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .product-info-boxes p {
        margin-bottom: 0;
        margin-right: .4rem;
    }
}

.klaviyo-bis-trigger{
    margin-top: 15px !important;
}

.looks-footer{ 
    margin-bottom:100px;
}
.search-template {
    min-height: 300px;
    max-width: 910px;
    margin:auto;
}
.search-template .search-unfound {
    display: flex;
    justify-content: center;
}
.search-template .section-title {
    text-align: center;
    font-family: 'spartan-semibold';
    font-size: 1.5rem;
    margin-right: 2rem; 
}

.reviews .reviews-top {
    display: flex;
    justify-content: space-evenly;
    margin: 2rem 0 auto;
}
.reviews-top .black-bubble {
    border-radius: 50%;
    text-align: center;
    background: black;
    color: white;
    font-size: .6rem;
    position: relative;
    height: 90px;
    width: 90px;
    padding: 10px;
}

.reviews-top .black-bubble .bubble-content{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.reviews-top .black-bubble .bubble-1{
    font-family: 'spartan-semibold';
}
.reviews-top .black-bubble .bubble-2{
    font-family: 'spartan-medium';
}
.reviews-top .black-bubble .bubble-3{
    font-size: 1.5rem;
}
.reviews-top .black-bubble .superstar{
    color: var(--color-star);
    font-size: 1.8rem;
}

.reviews-top .reviews-middle{
    font-size: .825rem;
    position: relative;
}
.reviews-top .reviews-middle .reviews-stars{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
.reviews-top .reviews-middle .middle-content{
    margin-top: 35px;
}
.reviews-top .reviews-middle p{
    text-align: center;
    margin-bottom: .3rem;
    font-family: 'spartan-medium';
}
.reviews-top .reviews-middle .superstar {
    font-size: 1.6rem;
}
.reviews .review {
    padding: 1rem;
    background: var(--color-alpha);
    border-radius: .625rem;
    margin: 1rem;
    width: 70%;
}
.reviews .review .review-top {
    display: flex;
    justify-content: space-between;
}
.reviews .review .rating .icon-star {
    width: 1rem;
    height: 1rem;
    fill: var(--color-star);
}
.reviews .review .client-name{
    font-size: .875rem;
    height: .875rem;
    font-family: 'spartan-semibold';
    text-align: right;
}
.reviews .review .review-top{
    margin-top: .5rem;   
}
.reviews .review .review-top .rating-time {
    color: var(--color-delta);
    font-size: .875rem;
}
.reviews .review .review-title {
    font-size: 1rem;
    margin-top: 1.5rem;
    font-family: 'spartan-medium';
}
.reviews .review .review-comment {
    margin-top: .5rem;
    font-size: .875rem;
    margin-bottom: .5rem;
    height: 110px;
}

.reviews .review .rate-numbers {
    font-size: 10px; 
    font-family: 'spartan-semibold';
    color: black;
}

@media(min-width: 764px) {
    .reviews-top .black-bubble {
        height: 180px;
        width: 180px;
        font-size: 1rem;
    }
    .reviews-top .black-bubble .bubble-3 {
        font-size: 2rem;
    }
    .reviews-top .black-bubble .superstar {
        font-size: 2.5rem;
    }
    .reviews-top .reviews-middle .middle-content{
        margin-top: 65px;
    }
    .reviews-top .reviews-middle {
        font-size: 1rem;
    }
    .reviews-top .reviews-middle .middle-1,
    .reviews-top .reviews-middle .middle-2 {
        font-size: 2rem;
    }
    .reviews-top .reviews-middle .superstar {
        font-size: 3rem;
    }


    .reviews .review {
        width: 33%;
    }
}

@media(max-width: 764px) {
    .black-bubble.bubble-right {
        
        margin-right: 10px;
        margin-top: -10px;
    }

     .black-bubble.bubble-left {
        margin-top: -10px;
        margin-left: 10px;
         
    }
 
    .bubble-content{
        zoom: .85; 
    }

    .reviews-top{
        margin-left: 3px !important;
        margin-right: -3px  !important;
    }

    .middle-1{
        font-size: 14.5px;
    }
    .middle-3{
        font-size: .5em;
    }
   
    .reviews-stars{
        zoom:.8;
    }

}