@charset "UTF-8";
/* Esta notacion va antes que cualquier otra cosa
Incluso antes de un comentario para que asi se pueda
indicar la codificación de caracteres dentro de la 
hoja de estilo CSS. */
/* Colors Default */
::-webkit-scrollbar {
  height: 0;
  width: 0; }

::-webkit-scrollbar-track {
  background-color: transparent; }

::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 100%, .3);
  border-radius: 30px; }
  ::-webkit-scrollbar-thumb:hover {
    background: #646464; }

* {
  box-shadow: unset;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  outline: 0;
  /* firefox compatibility */
  -webkit-overflow-scrolling: touch;
  padding: 0;
  scrollbar-width: none;
  /* scroll smooth Safari */
  -webkit-tap-highlight-color: rgba(var(--white), 0);
  /* Mobile tap focus callback */
  -webkit-tap-highlight-color: transparent;
  /* Mobile tap focus */ }

body,html {
  font-family: var(--font-primary-regular),system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 100%; }

a {
  color: var(--black);
  text-decoration: none; }

img,svg {
  height: auto;
  max-width: 100%; }

svg:not(:root) {
  overflow: unset; }

li {
  list-style: none; }

b,strong {
  font-family: var(--font-primary-medium);
  font-weight: 500; }

em,i {
  font-style: italic; }

u {
  text-decoration: underline; }

.btn-primary {
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Open Sans,sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: 2px;
  max-width: 300px;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }

.btn-primary:hover,.btn-secondary {
  border: 1px solid #000;
  color: #000; }

.btn-secondary {
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  font-family: Open Sans,sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: 2px;
  max-width: 300px;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }

.btn-secondary:hover {
  background-color: #000;
  color: #fff; }

.container {
  margin-left: auto;
  margin-right: auto;
  width: 1400px; }

/*
[{(xx)}] ---------------- Header [{(xx)}] 
*/
.Menu {
  left: 0;
  padding: 20px 30px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100; }

.MenuHome {
  display: none; }

.MenuProduct .Menu-links-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr; }

.MenuProduct .Menu-links-products-content {
  display: flex; }

.MenuProduct .Menu-link-wrapper-email,.MenuProduct .Menu-links-logo {
  display: none; }

.MenuProduct .Menu-link-wrapper-phone {
  display: block; }

.MenuProduct .Menu-link-wrapper-back {
  position: static; }

.MenuProduct .Menu-link {
  color: #000; }

.MenuCheckout .Menu-link-wrapper-back,.MenuCuidados .Menu-link-wrapper-back,.MenuProduct .Menu-link-wrapper-back {
  display: block; }

.Menu-link-wrapper-back {
  display: none;
  left: 30px;
  position: absolute;
  top: 70px;
  z-index: 1; }

.Menu-links-products-content {
  align-items: center;
  display: none;
  height: 0;
  justify-content: center; }
  .Menu-links-products-content .Menu-link-wrapper {
    margin-top: 30px; }
    .Menu-links-products-content .Menu-link-wrapper:not(:last-of-type) {
      margin-right: 20px; }

.Menu-links-content {
  align-items: center;
  display: flex;
  justify-content: space-between; }

.Menu-link-wrapper-email .Menu-link,.Menu-link-wrapper-phone .Menu-link {
  font-weight: 500;
  text-transform: unset; }

.Menu-link-wrapper-phone {
  display: none;
  text-align: right; }

.Menu-link {
  color: #fff;
  font-family: Open Sans,sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase; }
  .Menu-link:hover {
    color: #000; }
  .Menu-link .icon-link {
    align-items: center;
    display: flex;
    justify-content: center; }
    .Menu-link .icon-link img {
      height: 100%;
      max-height: 40px;
      max-width: 40px;
      width: 100%; }

.Menu-link-wrapper:first-child .icon-link {
  -webkit-animation: floatSmall 5s ease-in-out infinite;
  animation: floatSmall 5s ease-in-out infinite;
  transform: rotate(0deg) translate(-5px) rotate(0deg); }

.Menu-link-wrapper:nth-child(2) .icon-link {
  -webkit-animation: floatSmall 7s ease-in-out 1.7s infinite;
  animation: floatSmall 7s ease-in-out 1.7s infinite;
  transform: rotate(0deg) translate(-5px) rotate(0deg); }

.Menu-link-wrapper:nth-child(3) .icon-link {
  -webkit-animation: floatSmall 5s ease-in-out 1s infinite;
  animation: floatSmall 5s ease-in-out 1s infinite;
  transform: rotate(0deg) translate(-5px) rotate(0deg); }

.Menu-link-wrapper:nth-child(4) .icon-link {
  -webkit-animation: floatSmall 9s ease-in-out .3s infinite;
  animation: floatSmall 9s ease-in-out .3s infinite;
  transform: rotate(0deg) translate(-5px) rotate(0deg); }

@-webkit-keyframes floatSmall {
  0% {
    transform: rotate(0deg) translate(-5px) rotate(0deg); }
  to {
    transform: rotate(1turn) translate(-5px) rotate(-1turn); } }

@keyframes floatSmall {
  0% {
    transform: rotate(0deg) translate(-5px) rotate(0deg); }
  to {
    transform: rotate(1turn) translate(-5px) rotate(-1turn); } }

.Menu-links-logo {
  height: 0; }

.Menu-link-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  transform: translateY(-15px); }

.Menu-link-logo svg {
  width: 160px; }
  .Menu-link-logo svg path {
    fill: #fff; }

/* 
[{(xx)}] ---------------- End Header [{(xx)}] 
*/
/* 
[{(xx)}] ---------------- Footer [{(xx)}] 
*/
.Footer {
  bottom: 0;
  left: 0;
  padding: 0 30px 20px;
  position: fixed;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 10; }

.FooterHome,.FooterProduct .Footer-link-wrapper-left {
  display: none; }

.FooterCheckout .Footer-link,.FooterCuidados .Footer-link,.FooterProduct+.firma-dupla pre,.FooterShop .Footer-link {
  color: #000; }

.Footer-links-content {
  align-items: center;
  display: flex;
  justify-content: space-between; }

.Footer-link {
  color: #fff;
  font-family: Open Sans,sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase; }

/* 
[{(xx)}] ---------------- End Footer [{(xx)}] 
*/
.firma-dupla {
  bottom: 10px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: fixed;
  right: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1000; }
  .firma-dupla:hover pre {
    color: #000; }
  .firma-dupla pre {
    color: #fff;
    font-family: Open Sans,sans-serif;
    font-size: 12px;
    font-weight: 100; }

.Home {
  position: relative;
  z-index: 50; }

.Home-wrapper {
  height: 100vh;
  width: 100%; }

.Home-link-wrapper {
  display: block;
  height: 100%;
  left: 0;
  display: flex;
  position: fixed;
  top: 0;
  width: 100%; }

.Home-link-wrapper,.Home-logo {
  align-items: center;
  justify-content: center; }

.Home-logo {
  display: flex; }

.Home-logo svg {
  width: 400px; }

.Home-logo path {
  fill: #fff; }

.Home-title {
  color: #fff;
  font-family: Open Sans,sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2em;
  text-align: center;
  text-transform: uppercase; }

/*
[{(+++)}] Back Configs[{(+++)}] 
*/
/* image */
.BackImage-wrapper {
  height: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1; }

.BackImage-wrapper>.back-img,.BackImage-wrapper iframe,.BackImage-wrapper video {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

/* Video */
.BackIframe-wrapper {
  background-color: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%; }

.BackIframe-wrapper .iframe-wrapper,.BackIframe-wrapper iframe,.BackIframe-wrapper video {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%; }

.Shop-products {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 50; }

.Shop-product-link-wrapper:not(:last-of-type) {
  margin-right: 20px; }

.Shop-product-link-wrapper:first-child {
  -webkit-animation: float 5s ease-in-out infinite;
  animation: float 5s ease-in-out infinite;
  transform: rotate(0deg) translate(-10px) rotate(0deg); }

.Shop-product-link-wrapper:nth-child(2) {
  -webkit-animation: float 7s ease-in-out .7s infinite;
  animation: float 7s ease-in-out .7s infinite;
  transform: rotate(0deg) translate(-10px) rotate(0deg); }

.Shop-product-link-wrapper:nth-child(3) {
  -webkit-animation: float 5s ease-in-out 1s infinite;
  animation: float 5s ease-in-out 1s infinite;
  transform: rotate(0deg) translate(-10px) rotate(0deg); }

.Shop-product-link-wrapper:nth-child(4) {
  -webkit-animation: float 9s ease-in-out .3s infinite;
  animation: float 9s ease-in-out .3s infinite;
  transform: rotate(0deg) translate(-10px) rotate(0deg); }

@-webkit-keyframes float {
  0% {
    transform: rotate(0deg) translate(-10px) rotate(0deg); }
  to {
    transform: rotate(1turn) translate(-10px) rotate(-1turn); } }

@keyframes float {
  0% {
    transform: rotate(0deg) translate(-10px) rotate(0deg); }
  to {
    transform: rotate(1turn) translate(-10px) rotate(-1turn); } }

.Shop-product-link .icon-link {
  align-items: center;
  display: flex;
  justify-content: center; }
  .Shop-product-link .icon-link img {
    height: 100%;
    max-height: 70px;
    max-width: 70px;
    width: 100%; }

/* Shop Mobile */
.ShopMobile {
  display: none;
  margin: 0 auto;
  max-width: 500px;
  min-height: calc(100vh - 115px);
  padding-top: 30px;
  width: calc(100% - 40px); }

.ShopMobile-product:not(:last-of-type) {
  margin-bottom: 40px; }

.ShopMobile-products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr; }

.ShopMobile-product a {
  display: block; }

.ShopMobile-product-image-wrapper {
  margin-bottom: 20px;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%; }
  .ShopMobile-product-image-wrapper>.back-img,.ShopMobile-product-image-wrapper iframe,.ShopMobile-product-image-wrapper video {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  .ShopMobile-product-image-wrapper .back-img {
    background-size: contain; }
  .ShopMobile-product-image-wrapper .back-img,.ShopMobile-product-image-wrapper iframe,.ShopMobile-product-image-wrapper video {
    pointer-events: none; }

.ShopMobile-product-info h2,.ShopMobile-product-info p {
  font-family: Open Sans,sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
  text-transform: uppercase; }

.Cart-container {
  margin: 0 auto;
  max-width: 550px;
  padding: 20px 30px;
  width: 100%; }

.Cart-container .btn-secondary {
  max-width: 100%; }

.Cart-title-wrapper {
  margin-bottom: 60px; }

.Cart-title {
  font-family: Open Sans,sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase; }

.Cart-products {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  padding: 5px 0; }

/*
  Cart Product
*/
.CartItemProduct {
  display: flex;
  padding: 10px 0; }

.CartItemProduct-remove-wrapper {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  justify-content: center;
  margin-right: 10px; }

.CartItemProduct-remove-wrapper p {
  font-family: Open Sans,sans-serif;
  font-size: 15px;
  font-weight: 700; }

.CartItemProduct-image-wrapper {
  margin-right: 10px; }

.CartItemProduct-image-wrapper img {
  max-width: 109px;
  width: 100%; }

.CartItemProduct-title-wrapper {
  margin-right: 10px;
  max-width: 125px; }

.CartItemProduct-title-wrapper h2 {
  font-family: Open Sans,sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase; }

.CartItemProduct-quantity-wrapper {
  margin-right: 10px; }

.CartItemProduct-quantity-wrapper input {
  -webkit-appearance: none;
  border: 2px solid #000;
  border-radius: 0;
  font-family: Open Sans,sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 50px; }

.CartItemProduct-quantity-wrapper input::-webkit-inner-spin-button,.CartItemProduct-quantity-wrapper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0; }

.CartItemProduct-quantity-wrapper input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.CartItemProduct-price-wrapper {
  flex-grow: 1; }

.CartItemProduct-price-wrapper p {
  font-family: Open Sans,sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase; }

/*
  Cart Update
*/
.Cart-controls {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 0 80px; }

/*
  Cart Bottom
*/
.Cart-bottom,.Cart-controls {
  border-bottom: 2px solid #000; }

.Cart-bottom {
  margin-bottom: 50px;
  padding: 20px 0; }

.Cart-bottom-status {
  align-items: start;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr; }

.Cart-bottom-status:not(:last-of-type) {
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
  padding-bottom: 20px; }

.Cart-bottom-label h3,.Cart-bottom-result p {
  font-family: Open Sans,sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase; }

/*
  Cart Bottom
*/
.Cart-btn-submit-wrapper {
  align-items: center;
  display: flex;
  justify-content: center; }

.MiniCart {
  background: #fff;
  border: 2px solid #000;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, .2);
  display: none;
  padding: 15px;
  position: fixed;
  right: 30px;
  top: 48px;
  width: 280px;
  z-index: 100; }

.MiniCart-Visible {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  display: block; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

/* empty mini cart */
.MiniCart-empty {
  font-family: Open Sans,sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase; }

/* items in minicart */
.MiniCart-items,.MiniCartItem {
  width: 100%; }

.MiniCartItem {
  border-bottom: 2px solid #000;
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px; }

/* info */
.MiniCartItem-info {
  margin-right: auto; }

.MiniCartItem-quantity,.MiniCartItem-title {
  font-size: 15px; }

.MiniCartItem-btn-remove a,.MiniCartItem-quantity,.MiniCartItem-title {
  font-family: Open Sans,sans-serif;
  font-weight: 700;
  text-transform: uppercase; }

.MiniCartItem-btn-remove a {
  font-size: 14px; }

/* image */
.MiniCartItem-image-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: 15px;
  max-width: 85px; }

/* bottom minicart */
.MiniCart-bottom {
  width: 100%; }

.MiniCart-bottom-subtotal {
  align-items: center;
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin-bottom: 25px; }

.MiniCart-bottom-subtotal-label,.MiniCart-bottom-subtotal-price {
  font-family: Open Sans,sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase; }

.Cuidados-container {
  margin: 0 auto;
  max-width: 900px;
  padding: 20px 30px 80px;
  width: 100%; }

.Cuidados-container .btn-secondary {
  max-width: 100%; }

.Cuidados-title-wrapper {
  margin-bottom: 60px; }

.Cuidados-title {
  font-family: Open Sans,sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase; }

.Cuidados-products {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  padding: 5px 0; }

/*
  Content
*/
.Cuidados-content * {
  font-family: Open Sans,sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase; }

.Cuidados-content li {
  list-style: unset; }

.Cuidados-content em,.Cuidados-content i {
  font-style: italic; }

.Cuidados-content a {
  text-decoration: underline; }

.Product {
  overflow: hidden; }

.Product-container {
  align-items: flex-start;
  display: flex;
  left: 0;
  position: static;
  width: 100%;
  z-index: 50; }
  .Product-container .flickity-viewport {
    pointer-events: none; }
  .Product-container .flickity-prev-next-button {
    background-color: red;
    border-radius: 0;
    height: 60%;
    opacity: 0;
    width: 25%; }
  .Product-container .flickity-prev-next-button.previous {
    cursor: url(../img/icon-cursor-left.png) 16 16, auto;
    left: 60px; }
  .Product-container .flickity-prev-next-button.next {
    cursor: url(../img/icon-cursor-right.png) 16 16, auto;
    right: calc(50% - 60px); }

.Product-images {
  width: 100%; }

.Product-image-wrapper {
  display: block;
  height: 0;
  height: 100vh;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
  width: 100%; }
  .Product-image-wrapper>.back-img,.Product-image-wrapper iframe,.Product-image-wrapper video {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  .Product-image-wrapper .back-img {
    background-size: contain;
    left: 60px;
    width: 50%; }

.Product-info {
  height: 100vh;
  max-width: 400px;
  overflow: auto;
  padding: 10vh 0 0;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; }

.Product-title {
  font-family: Open Sans,sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase; }

.Product-description-wrapper {
  margin-bottom: 15px; }

.Product-description {
  font-family: Open Sans,sans-serif;
  font-size: 15px;
  font-weight: 700; }

.Product-price-wrapper {
  margin-bottom: 20px; }
  .Product-price-wrapper .Product-price {
    font-family: Open Sans,sans-serif;
    font-size: 18px;
    font-weight: 600; }

.Product-specifications {
  margin-bottom: 20px; }
  .Product-specifications,.Product-specifications * {
    font-family: Open Sans,sans-serif;
    font-size: 14px;
    font-weight: 600; }

.Product-guide-size {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin-bottom: 20px; }
  .Product-guide-size>div {
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    display: flex;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr); }
    .Product-guide-size>div:first-child {
      border-top: 1px solid #000; }
  .Product-guide-size .Product-guide-size-label:not(:last-of-type),.Product-guide-size .Product-guide-size-title:not(:last-of-type) {
    border-right: 1px solid #000; }
  .Product-guide-size .Product-guide-size-title {
    text-transform: uppercase; }
  .Product-guide-size .Product-guide-size-label,.Product-guide-size .Product-guide-size-title {
    align-items: center;
    display: flex;
    font-family: Open Sans,sans-serif;
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    justify-content: center; }

.Product-btn-wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px; }
  .Product-btn-wrapper .btn-secondary {
    font-family: Open Sans,sans-serif;
    font-size: 10px;
    font-weight: 700;
    max-width: unset;
    padding: 0 5px;
    width: 100%; }
    .Product-btn-wrapper .btn-secondary:not(:last-of-type) {
      margin-right: 10px; }

.Product-details {
  margin-bottom: 30px; }
  .Product-details .Product-details-title {
    font-family: Open Sans,sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px; }
  .Product-details .Product-details-content p {
    margin-bottom: 10px; }
  .Product-details .Product-details-content,.Product-details .Product-details-content * {
    font-family: Open Sans,sans-serif;
    font-size: 12px;
    font-weight: 400; }

/*-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-*/

@media screen and (max-width:1480px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 80px); } }

@media screen and (max-width:1100px) {
  .Product {
    overflow: unset; }
  .Product-container {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0; }
    .Product-container .flickity-prev-next-button {
      background-color: red;
      border-radius: 0;
      height: 100%;
      opacity: 0;
      width: 50%; }
    .Product-container .flickity-prev-next-button.previous {
      cursor: url(../img/icon-cursor-left.png) 16 16, auto;
      left: 0; }
    .Product-container .flickity-prev-next-button.next {
      cursor: url(../img/icon-cursor-right.png) 16 16, auto;
      right: 0; }
  .Product-images {
    margin: 0 0 40px;
    padding: 0;
    position: relative;
    transform: unset; }
  .Product-image-wrapper {
    height: 0;
    padding-bottom: 56.2%; }
    .Product-image-wrapper .back-img {
      background-size: contain;
      height: 100%;
      left: 10%;
      top: 0;
      width: 80%; }
  .Product-info {
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: static;
    transform: unset;
    width: calc(100% - 20px); } }

@media screen and (max-width:1024px) {
    .Menu-link {
      font-size: calc(12px + 4*(100vw - 480px)/544); }
    .Product-title {
      font-size: calc(32px + 6*(100vw - 480px)/544); }
      .Product-price-wrapper .Product-price {
        font-size: calc(14px + 4*(100vw - 480px)/544); }
      .Product-specifications,.Product-specifications * {
        font-size: calc(12px + 2*(100vw - 480px)/544); }
      .Product-guide-size .Product-guide-size-label,.Product-guide-size .Product-guide-size-title {
        font-size: calc(11px + 1*(100vw - 480px)/544); }
      .Product-btn-wrapper .btn-secondary {
        font-size: calc(10px + 0*(100vw - 480px)/544); }
      .Product-details .Product-details-title {
        font-size: calc(12px + 2*(100vw - 480px)/544); }
      .Product-details .Product-details-content,.Product-details .Product-details-content * {
        font-size: calc(11px + 1*(100vw - 480px)/544); }
  .btn-primary,.btn-secondary {
    font-size: calc(12px + (200vw - 960px)/544); }
  .Footer-link,.Menu-link {
    font-size: calc(14px + (200vw - 960px)/544); }
  .Home-title {
    font-size: calc(14px + (1000vw - 7680px)/256); }
  .Shop-product-link,.ShopMobile-product-info h2,.ShopMobile-product-info p {
    font-size: calc(14px + (200vw - 960px)/544); }
  .Product-title {
    font-size: calc(32px + (600vw - 2880px)/544); }
  .Product-description {
    font-size: calc(13px + (200vw - 960px)/544); }
  .Product-price {
    font-size: calc(24px + (800vw - 3840px)/544); }
  .Cart-title,.Product-select {
    font-size: calc(14px + (200vw - 960px)/544); }
  .CartItemProduct-price-wrapper p,.CartItemProduct-quantity-wrapper input,.CartItemProduct-remove-wrapper p,.CartItemProduct-title-wrapper h2 {
    font-size: calc(13px + (200vw - 960px)/544); }
  .Cart-bottom-label h3,.Cart-bottom-result p {
    font-size: calc(13px + (100vw - 480px)/544); }
  .MiniCart-empty {
    font-size: calc(12px + (200vw - 960px)/544); }
  .MiniCartItem-quantity,.MiniCartItem-title {
    font-size: calc(13px + (200vw - 960px)/544); }
  .MiniCart-bottom-subtotal-label,.MiniCart-bottom-subtotal-price,.MiniCartItem-btn-remove a {
    font-size: calc(12px + (200vw - 960px)/544); }
  .Cuidados-title {
    font-size: calc(14px + (200vw - 960px)/544); }
  .Cuidados-content * {
    font-size: calc(13px + (200vw - 960px)/544); } }

@media screen and (max-width:768px) {
  .MenuProduct .Menu-links-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100px 2px 1fr;
    grid-template-columns: 100px 2px 1fr; }
  .MenuProduct .Menu-links-products-content {
    opacity: 0;
    pointer-events: none; }
  .Menu-link {
    color: #000; }
  .Menu-link-logo svg path {
    fill: #000; }
    .firma-dupla pre,.Footer-link {
      color: #000; }
  .Home-logo svg {
    width: 300px; }
  .ShopMobile {
    padding: 80px 0; }
  .Cart-container,.Cuidados-container {
    min-height: calc(100vh - 115px);
    padding: 80px 20px; }
  .btn-primary {
    border: 2px solid #000;
    color: #000; }
  .btn-primary:hover {
    background-color: #000;
    color: #fff; }
  .container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px); }
  .Menu {
    padding: 20px 15px 0; }
  .Footer,.Menu {
    position: static; }
  .Footer {
    margin-top: 40px;
    padding: 0 15px 20px; }
  .Home-title {
    font-size: 14px; }
  .BackIframe-wrapper,.BackShop,.Shop {
    display: none; }
  .ShopMobile {
    display: block; } }

@media screen and (max-width:480px) {
    .Menu-link {
      font-size: 12px; }
  .Cart-title {
    font-size: 14px; }
  .Cart-container {
    min-height: calc(100vh - 150px); }
  .Cart-bottom-label h3,.Cart-bottom-result p,.CartItemProduct-price-wrapper p,.CartItemProduct-quantity-wrapper input,.CartItemProduct-remove-wrapper p,.CartItemProduct-title-wrapper h2 {
    font-size: 13px; }
  .MiniCart-empty {
    font-size: 12px; }
  .MiniCartItem-quantity,.MiniCartItem-title {
    font-size: 13px; }
  .MiniCart-bottom-subtotal-label,.MiniCart-bottom-subtotal-price,.MiniCartItem-btn-remove a {
    font-size: 12px; }
  .Cuidados-title {
    font-size: 14px; }
  .Cuidados-container {
    min-height: calc(100vh - 150px); }
  .Cuidados-content * {
    font-size: 13px; }
    .Product-title {
      font-size: 32px; }
      .Product-price-wrapper .Product-price {
        font-size: 14px; }
      .Product-specifications,.Product-specifications * {
        font-size: 12px; }
      .Product-guide-size .Product-guide-size-label,.Product-guide-size .Product-guide-size-title {
        font-size: 11px; }
      .Product-btn-wrapper .btn-secondary {
        font-size: 10px; }
      .Product-details .Product-details-title {
        font-size: 12px; }
      .Product-details .Product-details-content,.Product-details .Product-details-content * {
        font-size: 11px; }
  .Product-container {
    min-height: calc(100vh - 150px); }
    .Product-container .flickity-viewport {
      pointer-events: auto; }
    .Product-container .flickity-prev-next-button {
      display: none; }
  .btn-primary,.btn-secondary {
    font-size: 12px; }
  .container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 20px); }
  .Menu-link-logo svg {
    width: 130px; }
  .Footer-link {
    font-size: 14px; }
  .Footer-links-content {
    align-items: flex-start;
    flex-direction: column; }
  .Shop-product-link,.ShopMobile-product-info h2,.ShopMobile-product-info p {
    font-size: 14px; }
  .ShopMobile {
    min-height: calc(100vh - 150px); } }

@media screen and (min-width:1441px) {
  .Product-info {
    left: 68vw;
    right: unset; } }

@media (max-aspect-ratio:16/9) {
  .BackIframe-wrapper .iframe-wrapper {
    left: -100%;
    width: 300%; } }

@media (min-aspect-ratio:16/9) {
  .BackIframe-wrapper .iframe-wrapper {
    height: 300%;
    top: -100%; } }
