@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

a:focus,
button:focus,
input:focus,
text:focus,
textarea:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.nav-opened {
  overflow: hidden;
}

html {
  font-size: 62.5%;
}

html,
body {
  font-family: "Jost", sans-serif;
  color: #1E1E1E;
}

a {
  text-decoration: none;
  color: inherit;
}

.image {
  overflow: hidden;
  position: relative;
}
.image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.image:after {
  content: "";
  display: block;
}

.btn {
  padding: 0.8rem;
  border-radius: 0.6rem;
  text-align: center;
  line-height: 1.7;
  height: 5rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.btn-main {
  background: #581908;
  color: #fff;
}
.btn-main:hover {
  color: #581908;
  background: #FFF;
  border-color: #581908;
}
.btn-main-w {
  background: #fff;
  color: #581908;
  border: 1px solid transparent;
}
.btn-main-w:hover {
  background: #581908;
  color: #fff;
}

.select-wrapper {
  position: relative;
  width: 14rem;
}
.select-wrapper::after {
  content: "Unidades";
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: 1.5rem;
  border-left: 1px solid #e5e5e5;
  pointer-events: none;
}
.select-wrapper select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #D1D1D1;
  border-radius: 12px;
  background-color: #F9F9F9;
  font-size: 14px;
  color: #D1D1D1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.60986 4.89999L5.66486 6.955C5.75854 7.04812 5.88527 7.10039 6.01736 7.10039C6.14946 7.10039 6.27618 7.04812 6.36986 6.955L8.36986 4.95499' stroke='%23151515' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.select-wrapper select:focus {
  outline: none;
}
.select-wrapper select option {
  color: #000;
}
.select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-title {
  font-size: 6rem;
  font-weight: 500;
  color: #361C1C;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 6.5rem;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .section-title ~ p {
    font-size: 1.6rem;
  }
}

.breadcrumbs {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.breadcrumbs .list {
  display: flex;
}
.breadcrumbs .list .item > a {
  font-size: 1.2rem;
  color: #A9A;
}
.breadcrumbs .list .item.-current > a {
  color: #151515;
}
.breadcrumbs .list .item > span {
  margin: 0 0.8rem;
}

.payment {
  margin-bottom: 10rem;
}
.payment .flex {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .payment .flex {
    flex-direction: row;
  }
}
.payment .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.2rem;
}
.payment .head .title-wrapper .title {
  font-size: 2.2rem;
  font-weight: 600;
}
.payment .head .title-wrapper .subtitle {
  font-size: 1.2rem;
  color: #A9A9A9;
}
.payment .head .steps {
  font-size: 1.2rem;
  color: #A9A9A9;
}
.payment .btn-payment {
  background: #0075FF;
  border-color: #015BC6;
  border-width: 2px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  letter-spacing: 0.02em;
  padding-left: 4.4rem;
  padding-right: 4.4rem;
}
.payment .btn-payment:hover {
  background: #015BC6;
  border-color: #015BC6;
}
.payment .payment-infos {
  margin-left: 0%;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .payment .payment-infos {
    margin-left: 0%;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;
    margin-right: auto;
  }
}
@media (min-width: ) {
  .payment .payment-infos {
    margin-left: 0%;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;
    margin-right: unset;
    margin-left: auto;
  }
}
.payment .payment-infos input[type=checkbox], .payment .payment-infos input[type=radio] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.payment .payment-infos .field label {
  display: block;
  font-size: 1.2rem;
  color: #151515;
  font-weight: 600;
}
.payment .payment-infos .field .input {
  width: 100%;
  padding: 0 1.1rem;
  margin-bottom: 3.2rem;
  border: 1px solid #D1D1D1;
  background-color: #F9F9F9;
  border-radius: 1.2rem;
  font-size: 1.2rem;
  height: 4.2rem;
}
.payment .payment-infos .checkbox {
  position: relative;
  padding: 1.6rem 0.9rem;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
  background-color: #F9F9F9;
  border-radius: 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  color: #151515;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.payment .payment-infos .checkbox .check {
  display: inline-block;
  min-width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #D1D1D1;
  border-radius: 0.3rem;
  background-color: transparent;
}
.payment .payment-infos .checkbox .radio {
  position: relative;
  display: inline-block;
  min-width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #D1D1D1;
  border-radius: 50%;
  background-color: transparent;
  background-color: #FFF;
  margin-right: 1.6rem;
}
.payment .payment-infos .checkbox .radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #FFF;
  display: none;
}
.payment .payment-infos .checkbox input:checked + .check, .payment .payment-infos .checkbox input:checked + .radio {
  background-color: #6A983C;
}
.payment .payment-infos .checkbox input:checked + .check::before, .payment .payment-infos .checkbox input:checked + .radio::before {
  display: block;
}
.payment .payment-infos .step:not(:last-of-type) {
  margin-bottom: 6.4rem;
}
.payment .payment-infos .step.step-1 .form-infos {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .payment .payment-infos .step.step-1 .form-infos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.7rem;
  }
}
.payment .payment-infos .step.step-1 .form-infos .checkbox {
  width: 100%;
}
.payment .payment-infos .step.step-2 .checkbox {
  width: 100%;
  margin-bottom: 1.6rem;
}
.payment .payment-infos .step.step-2 .checkbox .text {
  display: flex;
  width: 100%;
  font-weight: 600;
}
.payment .payment-infos .step.step-2 .checkbox .text .name {
  min-width: auto;
}
.payment .payment-infos .step.step-2 .checkbox .text .price {
  margin-left: auto;
}
.payment .payment-infos .step.step-2 .checkbox .text .price .value {
  color: #6A983C;
}
.payment .payment-infos .step.step-2 .checkbox .text .logo {
  margin-left: auto;
}
.payment .payment-infos .step.step-2 .checkbox .text .logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .payment .payment-infos .step.step-2 .checkbox .text .name {
    min-width: 5rem;
  }
  .payment .payment-infos .step.step-2 .checkbox .text .price {
    margin-left: 11rem;
  }
  .payment .payment-infos .step.step-2 .checkbox .text .logo {
    margin-left: auto;
  }
}
.payment .payment-infos .step.step-3 input[type=radio] {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.payment .payment-infos .step.step-3 .accordion-item {
  padding: 1em;
  position: relative;
  border: 1px solid #D1D1D1;
  border-radius: 1.2rem;
}
.payment .payment-infos .step.step-3 .accordion-item .radio {
  position: relative;
  display: inline-block;
  min-width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #D1D1D1;
  border-radius: 50%;
  background-color: transparent;
  background-color: #FFF;
  margin-right: 1.6rem;
}
.payment .payment-infos .step.step-3 .accordion-item .radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #FFF;
  display: none;
}
.payment .payment-infos .step.step-3 .accordion-item .accordion-header::after {
  content: "";
  background-color: #F9F9F9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.payment .payment-infos .step.step-3 .accordion-item .accordion-header .flags {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.payment .payment-infos .step.step-3 .accordion-item .accordion-header .flags img {
  min-width: 3.2rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.payment .payment-infos .step.step-3 .accordion-item:not(:last-child) {
  margin-bottom: 1em;
}
.payment .payment-infos .step.step-3 .accordion-header {
  font-size: 1.2rem;
  color: #151515;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}
.payment .payment-infos .step.step-3 .accordion-content {
  display: grid;
  grid-template-areas: "number number number number" "name name date cvc";
  gap: 3.2rem 1.6rem;
}
.payment .payment-infos .step.step-3 .accordion-content .field input {
  margin-bottom: 0;
}
.payment .payment-infos .step.step-3 .accordion-content .field:first-child {
  grid-area: number;
}
.payment .payment-infos .step.step-3 .accordion-content .field:nth-child(2) {
  grid-area: name;
}
.payment .payment-infos .step.step-3 .accordion-content .field:nth-child(3) {
  grid-area: date;
}
.payment .payment-infos .step.step-3 .accordion-content .field:nth-child(4) {
  grid-area: cvc;
}
.payment .payment-infos .step.step-3 input[type=radio] ~ .accordion-header .arrow {
  display: inline-block;
  transition: 1s;
}
.payment .payment-infos .step.step-3 input[type=radio]:checked ~ .accordion-header .arrow {
  transform: rotate(90deg);
}
.payment .payment-infos .step.step-3 input[type=radio] ~ .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.payment .payment-infos .step.step-3 input[type=radio]:checked ~ .accordion-content {
  max-height: 100vh;
  margin-top: 2rem;
  transition: 0.5s;
}
.payment .payment-infos .step.step-3 input[type=radio]:checked ~ .accordion-header::after {
  background-color: #FFF;
}
.payment .payment-infos .step.step-3 input[type=radio]:checked ~ .accordion-header .radio {
  background-color: #6A983C;
}
.payment .payment-infos .step.step-3 input[type=radio]:checked ~ .accordion-header .radio::before {
  display: block;
}
.payment .payment-infos .step.step-4 .field .input {
  padding: 1.1rem;
  height: 12rem;
}
.payment .payment-infos .step.step-5 .field {
  margin-bottom: 1.6rem;
}
.payment .payment-infos .stamp {
  margin-top: 3.2rem;
  max-width: 21.2rem;
}
.payment .payment-infos .stamp img {
  width: 3.2rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.payment .payment-infos .stamp p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #151515;
}
.payment .payment-infos .stamp p + p {
  margin-top: 1.2rem;
  font-weight: 400;
  color: #A9A9A9;
}
.payment .order-summary {
  margin-left: 0%;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 6.4rem;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .payment .order-summary {
    margin-left: 0%;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
    margin-bottom: 0;
  }
}
.payment .order-summary .summary {
  border: 1px solid #D1D1D1;
  border-radius: 1.2rem;
  padding: 2.7rem 3.1rem;
}
.payment .order-summary .product {
  margin-bottom: 2.5rem;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .payment .order-summary .product {
    gap: 0;
    flex-direction: row;
  }
}
.payment .order-summary .product .top {
  display: flex;
  align-items: center;
}
.payment .order-summary .product .top .product-image {
  width: 10rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.payment .order-summary .product .top .product-info {
  margin-left: 1.6rem;
}
.payment .order-summary .product .top .product-info .name .title {
  font-size: 1.5rem;
  font-weight: 500;
}
.payment .order-summary .product .top .product-info .attributes {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .payment .order-summary .product .top .product-info .attributes {
    gap: 1rem;
  }
}
.payment .order-summary .product .top .product-info .attributes .attribute {
  font-size: 1.2rem;
  font-weight: 400;
  color: #A9A9A9;
}
.payment .order-summary .product .top .product-info .attributes .attribute span:last-child {
  color: #151515;
}
.payment .order-summary .product .bottom {
  display: flex;
  margin-top: 1.6rem;
  flex-direction: column;
}
.payment .order-summary .product .bottom .btn-remove {
  background-color: transparent;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  color: #A9A9A9;
  cursor: pointer;
}
.payment .order-summary .product .bottom .btn-remove svg {
  margin-right: 0.5rem;
}
.payment .order-summary .product .bottom .price {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.payment .order-summary .product .bottom .price .old-price {
  color: #A9A9A9;
  text-decoration: line-through;
  margin-right: 1rem;
}
.payment .order-summary .product .bottom .price .sale-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0075FF;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .payment .order-summary .product .bottom {
    flex-direction: row;
  }
  .payment .order-summary .product .bottom .price {
    margin-left: 5.8rem;
    margin-bottom: unset;
  }
  .payment .order-summary .product .bottom .quantity {
    margin-left: auto;
  }
}
.payment .order-summary .summary-subtotal {
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #151515;
}
.payment .order-summary .summary-subtotal p {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.payment .order-summary .summary-subtotal p.coupon .price {
  color: #6A983C;
}
.payment .order-summary .summary-coupon {
  margin-top: 4.3rem;
}
.payment .order-summary .summary-coupon .field {
  width: 100%;
  padding: 0 1.1rem;
  border: 1px solid #D1D1D1;
  background-color: #F9F9F9;
  border-radius: 1.2rem;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}
.payment .order-summary .summary-coupon .field input {
  border: 0;
  background-color: transparent;
  height: 4.2rem;
}
.payment .order-summary .summary-coupon .field button {
  border: 0;
  background-color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.payment .order-summary .summary-coupon .field button:hover {
  text-decoration: underline;
}
.payment .order-summary .summary-total {
  margin-top: 4.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #151515;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .payment .order-summary .summary-total {
    flex-direction: row;
    justify-content: space-between;
  }
}
.payment .order-summary .summary-total p.total {
  display: flex;
  flex-direction: column;
}
.payment .order-summary .summary-total p.total .shipping-date {
  font-weight: 400;
  font-size: 1.2rem;
  color: #0075FF;
}
.payment .order-summary .summary-total p.total-price {
  color: #0075FF;
  font-size: 2.6rem;
  font-weight: 600;
  text-decoration: none;
}