/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@font-face {
  font-family: "Foundry";
  src: URL("../fonts/FoundrySterling-Book.ttf") format("truetype"), URL("../fonts/FoundrySterling-Book.otf") format("opentype");
}
@font-face {
  font-family: "Foundry-medium";
  src: URL("../fonts/FoundrySterling-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Foundry-bold";
  src: URL("../fonts/FoundrySterlingOT3-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Foundry-demi";
  src: URL("../fonts/FoundrySterlingOT3-Demi.otf") format("opentype");
}
@font-face {
  font-family: "VAG Rounded BT";
  src: URL("../fonts/VAGRoundedBT.ttf") format("truetype");
}
@font-face {
  font-family: "Foundry-italic";
  src: URL("../fonts/FoundrySterlingOT3-BkItalic.otf") format("opentype");
}
section {
  width: 100%;
  max-width: 100vw;
}

.follow {
  width: 100vw;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.8;
  z-index: 999;
  pointer-events: none;
  display: none;
}
.follow img {
  width: 100%;
}

html {
  margin: 0px !important;
}

body {
  overflow-x: hidden !important;
  font-family: "Foundry";
}

main {
  min-height: 100vh;
}

iframe {
  width: 100%;
  border-right: solid 13px white !important;
  border-left: solid 13px white !important;
}

main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.fondazo {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.fondazo img {
  width: 100%;
}

#wpadminbar html {
  scroll-behavior: smooth;
  scroll-padding: 137px;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 105px;
}

a {
  text-decoration: none;
}

section {
  max-width: 100vw !important;
  overflow: hidden !important;
}

body {
  padding: 0px;
  margin: 0px;
  position: relative;
}

article {
  width: 100%;
}
article .woocommerce {
  width: 95%;
  max-width: 1330px;
  margin: 25px auto;
}

.shop_table {
  width: 100%;
}

#root {
  width: 100%;
}

.row {
  width: 100%;
}

.container, .woocommerce.ywraq-wrapper, .woocommerce-breadcrumb {
  width: 90%;
  max-width: 1330px;
  margin: 0px auto !important;
}
.container.max-1336, .woocommerce.ywraq-wrapper.max-1336, .woocommerce-breadcrumb.max-1336 {
  width: 100%;
  max-width: 1366px;
}

.elementor-container {
  width: 100% !important;
  max-width: 100% !important;
}

.elementor-widget-wrap {
  padding: 0px !important;
}

.elementor-widget {
  margin: 0px !important;
}

.elementor {
  width: 100% !important;
}

.elementor img {
  height: auto;
}

.btn.btn-white {
  background: white;
  box-shadow: none !important;
  color: #696A6C;
  border: solid 1px #696A6C;
  transition: background-color 0.3s, color 0.3s;
}
.btn.btn-white:hover {
  background-color: black;
  color: white;
}

.button {
  font-family: "Foundry" !important;
  color: white !important;
  background: hsl(19, 89%, 70%) !important;
  border: solid 1px transparent !important;
  font-weight: normal !important;
  letter-spacing: 1px !important;
  font-size: 16px !important;
  transition: background-color 0.3s, color 0.3s;
}
.button.button-wp {
  background-color: #00bb2d !important;
  display: none !important;
}
.button:hover {
  background-color: black !important;
  color: white !important;
  border: black solid 1px !important;
}

.btn {
  font-family: "VAG Rounded BT" !important;
  height: auto !important;
  display: inline-block;
  margin-bottom: 2em;
  border: solid 1px white;
  padding: 10px 40px;
  background: hsl(19, 89%, 70%);
  border-radius: 24px;
  font-size: 1.4em;
  letter-spacing: 1px;
  color: white;
  position: relative;
  box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(-60deg, hsl(19, 89%, 70%) 0%, hsl(13, 87%, 54%) 100%);
  background: -webkit-linear-gradient(-60deg, hsl(19, 89%, 70%) 0%, hsl(13, 87%, 54%) 100%);
}
.btn::after {
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  border-radius: 24px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
}
.btn:hover::after {
  opacity: 0.3;
}
.btn span {
  z-index: 3;
  position: relative;
}

.btn-full {
  width: 100%;
  border-radius: 7px;
  background-color: #efefef;
  color: #b0b0b0;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 7px;
  transition: background-color 0.4s, color 0.4s;
}
.btn-full:hover {
  background-color: #65000b;
  color: white;
}

.titulo {
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  font-size: 3em;
  font-family: "VAG Rounded BT";
}
@media (max-width: 767px) {
  .titulo {
    font-size: 2em;
  }
}

.texto {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.texto .btn {
  margin-top: 1em;
}
.texto.activo .mas {
  display: block;
}
.texto .mas {
  display: none;
}

.elementor-element {
  width: 100%;
}

.centrado {
  text-align: center;
}

#yith-ywraq-message {
  margin: 25px;
  font-size: 24px;
}

.input-text {
  width: 100%;
  border: none;
  border-bottom: solid 2px #3E3B37;
  background-color: transparent;
  padding: 0.35em 0px;
  color: #3E3B37;
  font-size: 18px;
  font-family: "Gilroy-Light", sans-serif;
  border-radius: 0px !important;
  transition: background-color 0.4s;
}
.input-text:hover {
  background-color: rgba(224, 77, 12, 0.1);
  color: #E04D0C;
}
.input-text:focus {
  border-bottom: solid 2px #E04D0C;
  outline: none !important;
  background-color: rgba(224, 77, 12, 0.2);
  color: #E04D0C;
}
.input-text:not(:-moz-placeholder-shown) + label {
  top: -1.7rem;
  font-size: 14px;
  color: #E04D0C;
}
.input-text:not(:placeholder-shown) + label {
  top: -1.7rem;
  font-size: 14px;
  color: #E04D0C;
}
@media (max-width: 767px) {
  .input-text:not(:-moz-placeholder-shown) + label {
    font-size: 14px;
  }
  .input-text:not(:placeholder-shown) + label {
    font-size: 14px;
  }
}
.input-text::-moz-placeholder {
  opacity: 0;
}
.input-text::placeholder {
  opacity: 0;
}

.yith-ywraq-mail-form-wrapper {
  color: #E04D0C;
}

.flex-input a {
  margin: 10px 0px !important;
}

.admin-bar header.header-principal {
  top: 32px;
}
.admin-bar header.header-principal.scroll {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar header.header-principal.scroll {
    top: 42px;
  }
}

@media (max-width: 782px) {
  html #wpadminbar {
    top: 0px;
    left: 0px;
    width: 100%;
  }
}

header.header-principal {
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.43);
  background-color: #FFFFFF;
  transition: background-color 0.4s, top 0.4s, left 0.4s, width 0.4s;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 1;
  z-index: 999;
  padding: 0px 0px 10px 0px;
  /*
       * But let's hide the middle one.
       */
  /*
       * Ohyeah and the last one should go the other direction
       */
}
header.header-principal .preHeader {
  width: 100%;
  margin-bottom: 10px;
}
header.header-principal .preHeader .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1059px) {
  header.header-principal .preHeader {
    font-size: 12px;
  }
}
header.header-principal .preHeader .acindar, header.header-principal .preHeader .custom-logo {
  max-height: 17px;
  width: auto;
  max-width: 90%;
  height: auto;
}
@media (max-width: 767px) {
  header.header-principal .preHeader .acindar, header.header-principal .preHeader .custom-logo {
    max-height: 15px;
  }
}
header.header-principal .preHeader .acindar {
  margin-left: 12%;
}
header.header-principal .preHeader .custom-logo-link {
  margin-right: 10%;
}
header.header-principal .preHeader .custom-logo-link {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header.header-principal .preHeader .mitad {
  padding: 12px 0px;
}
header.header-principal .preHeader .mitad:first-child {
  background-color: #E04D0C;
  display: flex;
  position: relative;
  align-items: center;
}
header.header-principal .preHeader .mitad:first-child::after {
  background-image: url("../imgs/bg-preheader.png");
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -25px;
  content: "";
}
header.header-principal .preHeader .mitad:nth-child(2) {
  background-color: #3E3C38;
  display: flex;
  align-items: center;
}
header.header-principal.scroll {
  background-color: white;
  top: 0px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.17);
  width: 100%;
  left: 0px;
}
header.header-principal .logo, header.header-principal .custom-logo-link {
  order: 1;
  display: flex;
}
header.header-principal .logo img, header.header-principal .custom-logo-link img {
  width: auto !important;
  height: 62px;
}
@media (max-width: 1059px) {
  header.header-principal .logo img, header.header-principal .custom-logo-link img {
    height: 50px;
  }
}
header.header-principal nav {
  order: 2;
  margin-left: 13px;
}
@media (max-width: 1059px) {
  header.header-principal nav {
    display: block;
    position: absolute;
    top: 100%;
    right: -100vw;
    flex-direction: column;
    background-color: white;
    border: solid 2px white;
    box-shadow: -2px 3px 5px 0px rgba(0, 0, 0, 0.31);
    -webkit-box-shadow: -2px 3px 5px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: -2px 3px 5px 0px rgba(0, 0, 0, 0.31);
    transition: right 0.4s;
  }
  header.header-principal nav .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
  }
  header.header-principal nav.activo {
    right: 1em;
  }
}
header.header-principal .mi-presupuesto {
  margin-left: auto;
  order: 3;
  color: #E04D0C;
  border: solid 1px #E04D0C;
  padding: 7px 14px;
  margin-right: 15px;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}
header.header-principal .mi-presupuesto:hover {
  background-color: #E04D0C;
  color: white;
}
header.header-principal .busqueda {
  order: 4;
}
@media (max-width: 1059px) {
  header.header-principal .busqueda {
    display: none;
    position: fixed;
    width: calc(100% - 50px);
    height: 100%;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0px;
    left: 0px;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
  }
  header.header-principal .busqueda.activo {
    display: flex;
  }
}
header.header-principal .busqueda .aws-search-field {
  max-width: 190px;
  background-color: #EFEFEF;
  border-right: solid 0px transparent;
  border-left: 2px #3E3C38 solid;
  border-bottom: 2px #3E3C38 solid;
  border-top: 2px #3E3C38 solid;
  padding-left: 1.5em;
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1125px) {
  header.header-principal .busqueda .aws-search-field {
    max-width: 120px;
  }
}
@media (max-width: 1059px) {
  header.header-principal .busqueda .aws-search-field {
    max-width: 100%;
  }
}
header.header-principal .busqueda .aws-search-field::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  color: #3E3C38;
}
header.header-principal .busqueda .aws-search-field::placeholder {
  font-family: "Poppins", sans-serif;
  color: #3E3C38;
}
header.header-principal .busqueda .aws-search-field:focus {
  background-color: #EFEFEF;
}
header.header-principal .busqueda .aws-search-btn.aws-form-btn {
  border-right: 2px #3E3C38 solid;
  border-bottom: 2px #3E3C38 solid;
  border-top: 2px #3E3C38 solid;
  border-left: solid 0px transparent;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
}
header.header-principal .busqueda .aws-search-btn_icon svg {
  fill: #3E3C38 !important;
}
header.header-principal .carrito {
  order: 4;
  background-color: #3E3C38;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
@media (max-width: 1059px) {
  header.header-principal .carrito {
    position: fixed;
    bottom: 15px;
    right: 25px;
    border: solid 2px white;
  }
}
header.header-principal .carrito img {
  width: 70%;
  height: auto;
}
header.header-principal .carrito .header-cart-count {
  background-color: #3E3C38;
  width: 20px;
  height: 20px;
  border: solid 2px white;
  color: white;
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
}
header.header-principal #menuToggle {
  order: 4;
  margin-left: auto;
  margin-right: 15px;
}
@media (min-width: 1060px) {
  header.header-principal #menuToggle {
    display: none;
  }
}
header.header-principal #menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #3E3C38;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 24px -2px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header.header-principal #menuToggle span:last-child {
  margin-bottom: 0px;
}
header.header-principal #menuToggle span:first-child {
  transform-origin: 0% 0%;
}
header.header-principal #menuToggle span:nth-last-child(2) {
  transform-origin: 50% 100%;
}
header.header-principal #menuToggle.activo span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #3E3C38;
}
header.header-principal #menuToggle.activo span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header.header-principal #menuToggle.activo span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
header.header-principal .container {
  width: 90%;
  max-width: 1330px;
}
header.header-principal .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
header.header-principal .menu {
  display: flex;
  padding-left: 0px;
  padding-right: 30px;
  gap: 2.35em;
  margin: auto;
}
header.header-principal .menu li {
  list-style-type: none;
}
@media (max-width: 767px) {
  header.header-principal .menu li {
    padding: 0px 12px;
  }
}
header.header-principal .menu li a {
  font-size: 16px;
  color: #3E3C38;
  position: relative;
  text-decoration: none;
  font-family: "Foundry-medium";
}
@media (max-width: 767px) {
  header.header-principal .menu li a {
    padding: 0px 8px;
  }
}
header.header-principal .menu li a::before {
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0px;
  content: "";
  background-color: #3E3C38;
  opacity: 0;
  transition: width 0.3s, opacity 0.3s;
}
header.header-principal .menu li a:hover::before {
  width: 100%;
  opacity: 1;
}
header.header-principal .token {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
}
@media (max-width: 1060px) {
  header.header-principal .token {
    order: 2 !important;
    margin-left: auto;
  }
}
header.header-principal .token img {
  transition: filter 0.4s;
  height: 75px;
  margin-top: 9px;
  margin-left: 20px;
}
header.header-principal .token img:hover {
  filter: brightness(1.1);
}
@media (max-width: 1059px) {
  header.header-principal .token img {
    height: 60px;
    margin-left: 0px;
    margin-top: 7px;
  }
}
@media (max-width: 500px) {
  header.header-principal .token img {
    height: 40px;
  }
}

.woocommerce-products-header {
  width: 100%;
  background-color: #3E3C38;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 1em 0px;
  min-height: 80px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}
.woocommerce-products-header h1 {
  font-size: 24px;
}

.woocommerce-breadcrumb {
  order: 2;
  font-size: 24px !important;
  margin: 25px auto !important;
}
.woocommerce-breadcrumb a {
  text-decoration: underline;
}
.woocommerce-breadcrumb a:hover {
  color: #E04D0C;
}

.product-category {
  margin-bottom: 0px !important;
}

.container {
  order: 3;
}

footer {
  background-color: #3E3C38;
}
footer nav .menu {
  display: flex;
  padding: 0px;
  gap: 1em;
}
footer nav .menu li {
  list-style-type: none;
}
footer nav .menu li a {
  color: white;
}
footer .custom-logo-link {
  margin-left: 2px;
}
footer .custom-logo-link img {
  width: auto;
  max-height: 45px;
}
footer .custom-logo {
  max-height: 50px;
  margin: auto;
}
footer .sociales {
  justify-content: flex-start;
}
footer .sociales a {
  width: 30px;
  height: 30px;
}
footer .row {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  padding: 1rem 0px;
}
@media (max-width: 767px) {
  footer .row {
    display: none;
  }
}
footer #main-menu {
  display: flex;
  gap: 1.3em;
}
footer #main-menu li {
  list-style-type: none;
}
footer #main-menu li a {
  font-size: 16px;
  color: white;
  position: relative;
}
footer #main-menu li a::before {
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0px;
  content: "";
  background-color: white;
  opacity: 0;
  transition: width 0.3s, opacity 0.3s;
}
footer #main-menu li a:hover::before {
  width: 100%;
  opacity: 1;
}
footer .volver {
  text-align: right;
}
footer .volver a {
  font-size: 16px;
  color: white;
  position: relative;
}
footer .volver a::before {
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0px;
  content: "";
  background-color: white;
  opacity: 0;
  transition: width 0.3s, opacity 0.3s;
}
footer .volver a:hover::before {
  width: 100%;
  opacity: 1;
}
footer .by {
  background: rgb(240, 83, 35);
  background: linear-gradient(90deg, rgb(240, 83, 35) 0%, rgb(247, 149, 107) 100%);
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 1rem 0px;
}
footer .by .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  footer .by .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
}
footer .by .acindar {
  text-align: left;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  footer .by .acindar {
    text-align: center;
    justify-content: center;
  }
}
footer .by .logofooter {
  text-align: right;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  footer .by .logofooter {
    text-align: center;
  }
}
footer .by span {
  margin: auto;
  order: 3;
}
footer .by img {
  max-height: 20px;
  width: auto;
}
footer .by a {
  color: white;
}

@keyframes fondo {
  0% {
    background-position: 100% 100%;
  }
  30% {
    background-position: 100% 100%;
  }
  90% {
    background-position: -100% 100%;
  }
  100% {
    background-position: -100% 100%;
  }
}
.megaTxt {
  color: white;
  padding-top: 10vh;
  width: 100%;
}
.megaTxt .grande {
  font-size: 4.5em;
  line-height: 1em;
  margin-bottom: 0.3em;
  position: relative;
  max-inline-size: 14ch;
  font-family: "VAG Rounded BT";
  color: white;
  font-size: 4.5em;
}
.megaTxt .peque {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 1em;
  font-family: "Foundry-demi";
}

.admin-bar #principal {
  min-height: calc(100vh - 32px - 105px);
}
@media (max-width: 767px) {
  .admin-bar #principal {
    min-height: 320px;
  }
}

#principal {
  min-height: calc(100vh - 105px);
  padding: 0;
  display: flex;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  #principal {
    min-height: 320px;
  }
}
#principal .fondo {
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 1;
  display: block;
  background-image: url("../imgs/principal.jpg");
  background-size: cover;
  background-position: center center;
  background-size: cover;
  width: 110%;
  height: 110%;
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
#principal .filtro {
  width: 100%;
  background-image: url("../imgs/filtro.png");
  background-size: 100% 100%;
  background-position: center center;
  mix-blend-mode: lighten;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  opacity: 0.6;
}
#principal .container {
  margin-top: auto;
  margin-bottom: auto;
  z-index: 3;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  #principal {
    min-height: 600px;
  }
  .megaTxt .grande {
    font-size: 2em;
  }
  .megaTxt .peque {
    font-size: 1.2em;
  }
  .megaTxt .btn {
    font-size: 0.8em;
  }
}
.cuatro {
  display: flex;
  flex-wrap: wrap;
}
.cuatro .owl-stage {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: black;
}
.cuatro .owl-item {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-left: -1px;
  padding-left: 1px;
}
.cuatro .u {
  width: 100% !important;
  background-size: cover;
  background-position: center center;
  overflow-anchor: none;
  overflow: hidden;
}
.cuatro .u .shadow {
  padding: 2em 4em;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: white;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s;
}
.cuatro .u .shadow:hover {
  background-color: rgba(224, 77, 12, 0.6);
}
.cuatro .u .tit {
  font-size: 3em;
  margin-top: auto;
  font-family: "VAG Rounded BT";
  max-inline-size: 8ch;
}
.cuatro .u .resumen {
  height: auto;
  width: 100%;
  margin-top: 0.7em;
  margin-bottom: 0.7em;
  font-weight: 300;
  transition: height 0.4s;
  float: left;
}
.cuatro .u .resumen.activo {
  height: 0px;
  overflow: hidden;
}
.cuatro .u .resumen.activo.mostrar {
  height: calc(var(--altura) + 1em);
}
.cuatro .u .vermas {
  color: white;
  font-family: "Foundry-italic";
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.cuatro .u .vermas i {
  opacity: 0;
  font-size: 1.2em;
  margin-right: -0.9em;
  transition: margin-right 0.4s, opacity 0.4s;
}
.cuatro .u .vermas:hover i {
  opacity: 1;
  margin-right: 0.3em;
}

@media (max-width: 767px) {
  .owl-item.active .shadow {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .owl-item.active .resumen.activo {
    height: calc(var(--altura) + 1em);
  }
}
#form-metalferr .wpforms-submit-container {
  width: 90%;
  max-width: 1330px;
  margin: 0px auto;
  text-align: right;
  font-family: "VAG Rounded BT" !important;
}
#form-metalferr .wpforms-field-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  max-width: 1330px;
  margin: 0px auto;
  grid-column-gap: 3em;
}
#form-metalferr .wpforms-field-container .wpforms-field-textarea {
  grid-area: 4/2/6/3;
  padding: 0px;
  display: grid;
}
#form-metalferr .wpforms-field-container .wpforms-field-textarea .wpforms-field-medium {
  height: 86%;
}
#form-metalferr .wpforms-field-container .wpforms-field-select label {
  top: -1.7rem !important;
}
#form-metalferr .wpforms-field-container .casilast {
  grid-area: 4/1/5/2;
  padding: 0px;
}
#form-metalferr .wpforms-field-container .last {
  grid-area: 5/1/6/2;
  padding: 0px;
  padding-top: 0.5em;
}
#form-metalferr .wpforms-submit {
  height: auto !important;
  display: inline-block;
  margin-bottom: 2em;
  border: solid 1px white;
  padding: 10px 40px;
  background: hsl(19, 89%, 70%);
  border-radius: 24px;
  font-size: 1.3em;
  letter-spacing: 1px;
  color: white;
  font-family: "VAG Rounded BT" !important;
  text-transform: uppercase;
  position: relative;
  box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(-60deg, hsl(19, 89%, 70%) 0%, hsl(13, 87%, 54%) 100%);
  background: -webkit-linear-gradient(-60deg, hsl(19, 89%, 70%) 0%, hsl(13, 87%, 54%) 100%);
}
#form-metalferr .wpforms-submit::after {
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  border-radius: 24px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
}
#form-metalferr .wpforms-submit:hover::after {
  opacity: 0.3;
}
#form-metalferr .wpforms-submit span {
  z-index: 3;
  position: relative;
}

#form-metalferr .container {
  max-width: 935px;
}
#form-metalferr .row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 70px 0px;
}
#form-metalferr .campo,
#form-metalferr .wpforms-field {
  position: relative;
  margin-bottom: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  padding: 0px !important;
}
#form-metalferr .campo:last-child,
#form-metalferr .wpforms-field:last-child {
  margin-bottom: 1.4rem;
}
#form-metalferr .campo:focus-within label,
#form-metalferr .campo .fill label,
#form-metalferr .wpforms-field:focus-within label,
#form-metalferr .wpforms-field .fill label {
  top: -1.7rem;
  font-size: 16px;
}
@media (max-width: 767px) {
  #form-metalferr .campo:focus-within label,
  #form-metalferr .campo .fill label,
  #form-metalferr .wpforms-field:focus-within label,
  #form-metalferr .wpforms-field .fill label {
    font-size: 14px;
  }
}
#form-metalferr .campo .mailcheck-error,
#form-metalferr .wpforms-field .mailcheck-error {
  display: none !important;
}
#form-metalferr .campo .wpforms-error,
#form-metalferr .wpforms-field .wpforms-error {
  background-color: #d03536;
}
#form-metalferr .campo em.wpforms-error,
#form-metalferr .wpforms-field em.wpforms-error {
  background-color: #d03536;
  color: white;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#form-metalferr .campo em.wpforms-error + label,
#form-metalferr .wpforms-field em.wpforms-error + label {
  top: -1.7rem;
  font-size: 16px;
}
@media (max-width: 767px) {
  #form-metalferr .campo em.wpforms-error + label,
  #form-metalferr .wpforms-field em.wpforms-error + label {
    font-size: 14px;
  }
}
#form-metalferr .campo label,
#form-metalferr .wpforms-field label {
  position: absolute;
  top: 10px;
  left: 0px;
  pointer-events: none;
  margin: 0px !important;
  padding: 0px !important;
  font-size: 18px;
  color: #3E3B37;
  font-weight: 300;
  transition: top 0.4s, font-size 0.4s;
}
@media (max-width: 767px) {
  #form-metalferr .campo label,
  #form-metalferr .wpforms-field label {
    font-size: 16px;
  }
}
#form-metalferr .campo textarea,
#form-metalferr .wpforms-field textarea {
  resize: vertical;
}
#form-metalferr .campo input,
#form-metalferr .campo textarea,
#form-metalferr .wpforms-field input,
#form-metalferr .wpforms-field textarea {
  width: 100%;
  border: none;
  border-bottom: solid 2px #3E3B37;
  background-color: transparent;
  padding: 0.35em 0px;
  color: #3E3B37;
  font-size: 18px;
  font-family: "Gilroy-Light", sans-serif;
  border-radius: 0px !important;
  transition: background-color 0.4s;
}
#form-metalferr .campo input:hover,
#form-metalferr .campo textarea:hover,
#form-metalferr .wpforms-field input:hover,
#form-metalferr .wpforms-field textarea:hover {
  background-color: rgba(224, 77, 12, 0.1);
  color: #E04D0C;
}
#form-metalferr .campo input:focus,
#form-metalferr .campo textarea:focus,
#form-metalferr .wpforms-field input:focus,
#form-metalferr .wpforms-field textarea:focus {
  border-bottom: solid 2px #E04D0C;
  outline: none !important;
  background-color: rgba(224, 77, 12, 0.2);
  color: #E04D0C;
}
#form-metalferr .campo input:not(:-moz-placeholder-shown) + label, #form-metalferr .campo textarea:not(:-moz-placeholder-shown) + label, #form-metalferr .wpforms-field input:not(:-moz-placeholder-shown) + label, #form-metalferr .wpforms-field textarea:not(:-moz-placeholder-shown) + label {
  top: -1.7rem;
  font-size: 14px;
  color: #E04D0C;
}
#form-metalferr .campo input:not(:placeholder-shown) + label,
#form-metalferr .campo textarea:not(:placeholder-shown) + label,
#form-metalferr .wpforms-field input:not(:placeholder-shown) + label,
#form-metalferr .wpforms-field textarea:not(:placeholder-shown) + label {
  top: -1.7rem;
  font-size: 14px;
  color: #E04D0C;
}
@media (max-width: 767px) {
  #form-metalferr .campo input:not(:-moz-placeholder-shown) + label, #form-metalferr .campo textarea:not(:-moz-placeholder-shown) + label, #form-metalferr .wpforms-field input:not(:-moz-placeholder-shown) + label, #form-metalferr .wpforms-field textarea:not(:-moz-placeholder-shown) + label {
    font-size: 14px;
  }
  #form-metalferr .campo input:not(:placeholder-shown) + label,
  #form-metalferr .campo textarea:not(:placeholder-shown) + label,
  #form-metalferr .wpforms-field input:not(:placeholder-shown) + label,
  #form-metalferr .wpforms-field textarea:not(:placeholder-shown) + label {
    font-size: 14px;
  }
}
#form-metalferr .campo input::-moz-placeholder, #form-metalferr .campo textarea::-moz-placeholder, #form-metalferr .wpforms-field input::-moz-placeholder, #form-metalferr .wpforms-field textarea::-moz-placeholder {
  opacity: 0;
}
#form-metalferr .campo input::placeholder,
#form-metalferr .campo textarea::placeholder,
#form-metalferr .wpforms-field input::placeholder,
#form-metalferr .wpforms-field textarea::placeholder {
  opacity: 0;
}
#form-metalferr .boton {
  margin-left: auto;
  background-color: #efefef;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  font-size: 20px;
  border-radius: 7px;
  font-family: "VAG Rounded BT" !important;
  padding: 7px 30px;
  transition: background-color 0.3s, color 0.3s;
}
#form-metalferr .boton:hover {
  background-color: #65000b;
  color: white;
  cursor: pointer;
}
@media (max-width: 767px) {
  #form-metalferr .boton {
    font-size: 16px;
  }
}
#form-metalferr .registro {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  gap: 2em;
  font-size: 16px;
}
#form-metalferr .registro .boton {
  margin: 0px auto;
  background-color: #65000b;
  color: white;
  font-size: 14px;
}
#form-metalferr .registro .boton:hover {
  background-color: #510006;
}
#form-metalferr .registro .wp {
  box-shadow: 0px 12px 15px -3px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  color: white;
  background: rgb(0, 180, 93);
  background: rgb(0, 180, 93);
  background: linear-gradient(90deg, rgb(0, 180, 93) 0%, rgb(0, 245, 114) 100%);
  font-size: 18px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-transform: uppercase;
}
#form-metalferr .registro .wp i {
  margin: auto 10px;
  font-size: 26px;
}
#form-metalferr .registro strong {
  font-size: 18px;
  font-weight: 900;
  padding-bottom: 11px;
  display: inline-block;
}

#banner {
  padding: 10vh 0px;
  background-image: url("../img/parallax/1.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}
#banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-image: url("../imgs/filtro.png");
  background-size: cover;
  background-position: center top;
  top: 0px;
  left: 0px;
}
#banner .f {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
#banner .t {
  font-size: 40px;
  margin: 1em auto;
  color: white;
  padding: 0px 1em;
  font-family: "VAG Rounded BT" !important;
}
#banner .btn {
  margin: 1em auto;
}

#contacto {
  padding: 4em 0px;
}
#contacto .titulo {
  padding-top: 0px;
  padding-bottom: 1em;
  color: #3E3B37;
}

.slabs {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.slabs .slab {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 1em;
  place-content: center;
}
@media (max-width: 767px) {
  .slabs .slab {
    grid-template-columns: 20px 1fr;
  }
}
.slabs .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slabs .icon img {
  width: 100%;
}
.slabs b, .slabs strong {
  font-family: "Foundry-bold";
  font-weight: normal;
}
.slabs a {
  color: #E04D0C;
}
.slabs a:hover {
  color: white;
}
.slabs .tit {
  font-family: "Foundry";
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #3E3B37;
  padding: 15px 25px;
  text-align: center;
  font-size: 22px;
}
@media (max-width: 767px) {
  .slabs .tit {
    font-size: 16px;
  }
}

.woocommerce-loop-category-text {
  text-align: center;
}

.woocommerce-products-header {
  position: relative;
  min-height: 20vh;
  display: flex;
  flex-direction: column;
}
.woocommerce-products-header:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-image: url("../imgs/filtro.png");
  background-size: cover;
  background-position: center top;
  top: 0px;
  left: 0px;
}
.woocommerce-products-header .woocommerce-products-header__title.page-title {
  position: relative;
  z-index: 3;
  font-family: "VAG Rounded BT";
  font-size: 2em;
  margin: 0px;
}
@media (max-width: 767px) {
  .woocommerce-products-header .woocommerce-products-header__title.page-title {
    font-size: 1em;
  }
}
.woocommerce-products-header .term-description {
  z-index: 3;
}
.woocommerce-products-header .term-description p {
  margin: 0px;
  padding: 0px;
}
.woocommerce-products-header .fondo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 220px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .woocommerce ul.products li.product a img {
    height: 150px !important;
  }
}

.products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin: 0px !important;
  gap: 16px;
}
@media (max-width: 930px) {
  .products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .products {
    grid-template-columns: 1fr 1fr;
  }
}
.products .cats {
  grid-column: 1/-1;
  display: none;
  gap: 10px;
  flex-wrap: wrap;
}
.products .cats .elem {
  background-color: gray;
  color: white;
  border-radius: 5px;
  padding: 4px 10px;
  width: auto;
}
.products .cats .elem:hover {
  background-color: hsl(19, 89%, 70%) !important;
}
.products.doble {
  grid-template-columns: 1fr;
  gap: 1em;
}
.products.doble.triple {
  grid-template-columns: 1fr 1fr 1fr !important;
}
.products.doble .product {
  border: solid 1px #3e3b37;
  padding: 10px 20px !important;
  margin: 0px !important;
  width: calc(100% - 40px) !important;
}
.products.doble .listado-simple {
  display: grid;
  grid-template-columns: 1fr auto;
  transition: background-color 0.3s;
  gap: 0.5em;
  justify-content: center;
  align-content: center;
}
.products.doble .listado-simple:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.products.doble .listado-simple::before {
  display: none !important;
}
.products.doble .button {
  width: auto;
  display: flex !important;
  margin-top: 0px !important;
  align-items: center;
  justify-content: center;
  font-size: 12px !important;
}
.products::before {
  display: none !important;
}
.products::after {
  display: none !important;
}
.products li {
  width: 100% !important;
  display: flex;
  overflow: hidden;
  position: relative;
  flex-direction: column;
}
.products li::before {
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: rgba(0, 0, 0, 0.6);
  content: "\f06e";
  font-size: 40px;
  color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding-top: 25px;
  transition: opacity 0.3s, padding-top 0.3s;
  pointer-events: none !important;
}
.products li:hover::before {
  opacity: 1;
  padding-top: 0px;
}
.products li a {
  width: 100%;
  display: inline-block;
}
.products .product-category {
  background-color: #d3d3d3;
}
.products .woocommerce-loop-category-text {
  color: #3e3c38 !important;
  margin-bottom: 24px;
  padding: 0px 0.7em;
  text-wrap: balance;
  font-size: 12px;
  line-height: 24px;
  font-family: "Foundry-italic";
}
@media (max-width: 767px) {
  .products .woocommerce-loop-category-text {
    margin-bottom: 12px;
  }
}
.products .woocommerce-loop-category__title {
  font-family: "Foundry-bold";
  text-transform: uppercase;
  font-size: 18px !important;
  font-style: normal !important;
}
@media (max-width: 1180px) {
  .products .woocommerce-loop-category__title {
    font-size: 14px !important;
  }
}
.products .listado-simple img {
  display: none !important;
}
.products .controlarCantidad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.yith_ywraq_add_item_browse_message a,
.woocommerce .add-request-quote-button.button,
.woocommerce .add-request-quote-button-addons.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button {
  width: auto !important;
  height: auto !important;
  display: inline-block;
  border: solid 1px white;
  padding: 5px 20px;
  background: hsl(19, 89%, 70%) !important;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px !important;
  color: white;
  position: relative;
  box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, 0.15);
  margin: auto;
}

.yith_ywraq_add_item_browse_message {
  text-align: center;
}

.search .products .cats {
  display: flex !important;
}

.super-tit {
  font-size: 24px;
  color: #3e3c38 !important;
  font-family: "Foundry-bold";
}
@media (max-width: 767px) {
  .super-tit {
    font-size: 18px;
    margin: 0px 0px 25px 0px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
.woocommerce .products ul, .woocommerce ul.products {
  margin-bottom: 35px !important;
}

.woocommerce-pagination {
  margin-bottom: 25px;
}

#nosotros {
  color: #3E3B37 !important;
  padding: 40px 0px;
}
#nosotros p {
  font-size: 16px;
  font-family: "Foundry-italic";
}
@media (max-width: 767px) {
  #nosotros p {
    font-size: 14px;
  }
}
#nosotros .btn {
  display: none;
}

#presupuesto {
  padding: 40px 0px 0px 0px !important;
  color: #3E3B37;
}
#presupuesto h1 {
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  margin-bottom: 0px;
  font-size: 3em;
  font-family: "VAG Rounded BT";
  color: #3E3B37;
}
@media (max-width: 767px) {
  #presupuesto h1 {
    font-size: 2em;
  }
}
#presupuesto p {
  color: #3E3B37;
  font-family: "Foundry-bold";
  font-size: 1.5em;
  margin-top: 0px;
}
@media (max-width: 767px) {
  #presupuesto p {
    font-size: 0.9em;
  }
}

.follow-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 0px;
  width: 100px;
  height: 50px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #00bb2d;
  z-index: 9999;
  font-size: 30px;
  color: white;
  box-shadow: 10px 10px 21px -6px rgba(0, 0, 0, 0.18);
}
@media (max-width: 767px) {
  .follow-whatsapp {
    right: -50px;
  }
}
.follow-whatsapp:hover {
  background-color: #4aca68;
}/*# sourceMappingURL=estilos.css.map */