.breadcrumb {
  padding-left: 0px;
  padding-bottom: 8px;
  padding-top: 28px;
}

.swiper-container {
  width: 100%;
  max-width: 940px;
}
.swiper-container.product-main-slider {
  height: 80vh;
}
.swiper-containerproduct-thumb-slider {
  height: 20vh;
}
.swiper-containerproduct-thumb-slider .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}
.swiper-containerproduct-thumb-slider
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide-thumb-active img {
  transform: scale(0.97);
}

section.content {
  display: grid;
  grid-template:
    "a b c" auto
    "a d c" 1fr / 2fr 2fr 1fr;
  gap: 0px 14px;
  align-items: start;
}

.content aside {
  box-shadow: 0px 5px 8px #00000035;
  padding: 17px;
  border-radius: 12px;
  grid-area: c;
  border: solid 1px #eaeaea;
}

.content aside .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0px 16px;
  margin: 0 7px;
}

.mark {
  color: var(--grd);
  height: 21px;
  font-size: 14px;
  padding: 0 10px 0px 8px;
  border-radius: 100px;
  background-color: var(--gr);
  user-select: none;
  pointer-events: none;
}

.mark span {
  display: inline-block;
  transform: translateY(-2px);
}

.mark.black {
  background-color: #151515;
  color: var(--gr);
}

.mark.black img {
  filter: brightness(2.35);
}

.wmedal {
  filter: drop-shadow(0px 3px 3px #00000068);
  user-select: none;
  pointer-events: none;
}

.content aside .rate {
  border-bottom: solid 1px #eaeaea;
  border-top: solid 1px #eaeaea;
  padding: 16px 7px;
}

.content aside .count {
  padding: 24px 7px 12px;
  font-size: 14px;
}

.content aside .count p {
  margin: 0;
}

.content aside .tag {
  padding: 7px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.content aside .price {
  margin-top: 25px;
  position: relative;
  margin-bottom: 2px;
  padding: 0 11px 0 7px;
}

.content aside .price .label {
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  margin: 0px;
  margin-bottom: 7px;
}

.content aside .price h3,
.sticky .price h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}
.content aside .price h1,
.sticky .price h1 {
  font-size: 28px;
  margin: 0;
}

.content aside .price .discount,
.sticky .price .discount {
  position: absolute;
  right: 11px;
  bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.content aside .price .offer,
.sticky .price .offer {
  color: var(--grd);
  background-color: var(--gr);
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  border-radius: 20px;
  padding: 1px 10px;
  margin-bottom: 3px;
}

.content aside .price .old,
.sticky .price .old {
  font-size: 12px;
  text-decoration: line-through;
  margin-right: 4px;
}

.sticky {
  position: fixed;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 18px;
  background-color: white;
  border: solid 1px #eaeaea;
  box-shadow: 0 6px 8px #00000022;
  padding: 11px 16px 15px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 300ms, transform 300ms;
}

.content aside > a button,
.content aside button,
.content aside > .button,
.sticky .purchase {
  width: 100%;
  height: 40px;
  font-weight: 900;
  font-size: 15px;
  border-radius: 8px;
  margin-top: 12px;
}

.content aside button.purchase,
.content aside button.variation_purchase,
.sticky .purchase {
  background-color: var(--gr);
  color: white;
}

.sticky .purchase {
  width: 100%;
  box-shadow: 0px 6px 12px #00000046;
}

.sticky.visible {
  opacity: 1;
  transform: translateY(0px);
}

.sticky .price {
  display: flex;
  flex-direction: row;
  margin-right: 6px;
  position: relative;
  align-items: center;
  justify-content: flex-end;
}

.sticky .price h1 {
  font-size: 18px;
}

.sticky .price .discount {
  flex-direction: row-reverse;
  display: inline-flex;
  gap: 8px;
  position: initial;
  margin-left: 8px;
}

.sticky .price .discount .old {
  margin-bottom: 3px;
}

.content aside button.cart {
  background-color: #eaeaea;
  color: #747474;
  display: inline-block;
  height: auto;
  text-align: center;
  padding: 10px 0 9px;
  text-decoration: none;
}

section.content .images {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 12px;
  grid-area: a;
  overflow: hidden;
}

section.content .images .row,
section.content .images .row .product-main-slider {
  width: 100%;
}

section.content .images img {
  user-select: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 150ms;
}

section.content .images > img {
  width: 100%;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  overflow: hidden;
}

section.content .images .top img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: -6px;
}

section.content .images .bottom {
  display: flex;
  flex-direction: row;
  gap: 6px;
  justify-content: flex-start;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  margin-bottom: -6px;
}
section.content .images .bottom {
  flex: 1;
}

section.content .images .bottom > div > div > div {
  aspect-ratio: 1 / 1;
}

section.content .title {
  padding: 0 14px;
  grid-area: b;
  position: relative;
  margin-bottom: 42px;
}

section.content .text {
  padding: 0 14px;
  grid-area: d;
}

section.content .title h1 {
  font-size: 24px;
  font-family: "Syne", sans-serif;
  margin: 0;
  font-weight: 600;
  padding-right: 32px;
}
section.content .text {
  position: relative;
  padding-left: 36px;
  padding-right: 12px;
}

section.content .like {
  position: absolute;
  right: 0;
  top: 12px;
}

section.content .title .location {
  display: flex;
  gap: 12px;
  font-weight: lighter;
  font-size: 14px;
  margin: 8px 0 0px;
}

section.content .title .location img {
  user-select: none;
  pointer-events: none;
}

section.content .text h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 8px;
}

section.content .text ul {
  padding-left: 28px;
  font-size: 14px;
  margin: 0 0 24px;
}
section.content .text h3 {
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 8px;
}

section.content .text p {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 16px;
}

section.details {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 14px;
  border-top: solid 1px #eaeaea;
  margin-top: 35px;
  margin-bottom: 72px;
}

section.details .location {
  padding-left: 32px;
  margin-top: 46px;
}
section.details .location .top {
  display: flex;
  gap: 46px;
  margin-bottom: 32px;
}

section.details .location span {
  font-size: 14px;
  font-weight: 700;
}
section.details .location p {
  margin: 0;
  font-size: 14px;
}

section.details .location .image {
  border-radius: 12px;
  overflow: hidden;
}

section.details .location .image .acf-map {
  width: 100%;
  height: 400px;
  margin: 0;
}
section.details .location .image img {
  width: 100%;
  margin-bottom: -6px;
}

section .accordion > div:first-child .top {
  border-top: none;
}
section .accordion .top {
  height: 60px;
  display: flex;
  padding: 24px;
  border-bottom: solid 1px #eaeaea;
  border-top: solid 1px #eaeaea;
  align-items: center;
  box-sizing: border-box;
  justify-content: space-between;
  background-color: white;
  font-weight: 600;
  cursor: pointer;
}

section .accordion .top:hover {
  background-color: #f8f8f8;
}

section .accordion .top button {
  width: 36px;
  height: 36px;
  padding: 0;
}

section .accordion .top button img {
  transform: rotate(90deg);
  width: 8px;
  transition: transform 300ms;
}

section .accordion {
  background-color: #f8f8f8;
}

section .accordion > div {
  display: grid;
  grid-template-rows: 60px 0fr;
  transition: grid-template-rows 300ms;
  margin-bottom: -1px;
}

section .accordion > div.open {
  display: grid;
  grid-template-rows: 60px 1fr;
}

section .accordion > div > * {
  overflow: hidden;
}

section .accordion > div.open img {
  transform: rotate(-90deg);
}

section .accordion .content > * {
  padding: 20px 24px 22px;
  font-size: 12px;
  margin: 0;
}

section.bonus .row {
  margin-top: 115px;
}
.rating-stars {
  float: left;
  height: 46px;
  padding: 0 10px;
}
.rating-stars:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.rating-stars:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}
.rating-stars:not(:checked) > label:before {
  content: "★ ";
}
.rating-stars > input:checked ~ label {
  color: #01dc8c;
}
.rating-stars:not(:checked) > label:hover,
.rating-stars:not(:checked) > label:hover ~ label {
  color: #01dc8c;
}
.rating-stars > input:checked + label:hover,
.rating-stars > input:checked + label:hover ~ label,
.rating-stars > input:checked ~ label:hover,
.rating-stars > input:checked ~ label:hover ~ label,
.rating-stars > label:hover ~ input:checked ~ label {
  color: #01dc8c;
}
.input-comment::after {
  content: "";
  display: block;
  clear: both;
}
.input-comment label {
  display: block;
}
.input-comment textarea {
  width: 100%;
  height: 54px;
  border: solid 1px #a3a3a3;
  background-color: white;
  border-radius: 8px;
  font-size: 20px;
  padding: 17px 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
  max-height: 108px;
  height: 108px;
  min-height: 108px;
  resize: none;
  margin-bottom: 48px;
}

.order-mobile {
  height: 24px;
  background-color: #f8f8f8;
  border: solid 1px #eaeaea;
  border-radius: 4px;
  padding: 0 7px;
  place-self: flex-end;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.variations_form {
  padding-top: 20px;
}

.variations_form table {
  width: 100%;
}

.variations_form table.variations th {
  text-align: left;
}

.variations_form table.variations select {
  width: 100%;
  border-radius: 5px;
  border: solid 1px #a3a3a3;
  margin-bottom: 5px;
}

.woocommerce-variation-price {
  font-size: 28px;
  font-weight: bold;
}

.woocommerce-variation-price:before {
  content: "Final:";
  display: block;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 7px;
  padding: 10px 11px 0 7px;
  border-top: 1px solid #a3a3a3;
}

a.reset_variations {
  color: #f85569;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

a.reset_variations img {
  margin-right: 5px;
}

@media screen and (max-width: 900px) {
  section.content {
    grid-template:
      "b b" auto
      "a c" auto
      "d d" auto / 3fr 2fr;
    gap: 0px 14px;
    align-items: start;
  }

  section.content .text {
    padding: 0;
    margin-top: 24px;
  }
}

@media screen and (max-width: 600px) {
  section.content {
    grid-template: "b" auto "a" auto "c" auto "d" auto / 1fr;
  }

  .breadcrumb {
    display: flex;
    margin-top: 12px;
    padding: 0;
  }

  section.content .title {
    margin-bottom: 15px;
    padding: 0;
    width: 100%;
  }
  section.content .title h1 {
    font-size: 16px;
    padding-right: 54px;
  }
  section.content .title .like {
    top: 2px;
    padding: 6px;
  }
  section.content .title .like img {
    height: 16px;
  }
  section.content .title .location img {
    height: 12px;
    margin-top: 4px;
  }
  section.content .title .location {
    font-size: 10px;
    gap: 8px;
    margin-top: 11px;
  }

  section.content .images {
    flex-direction: row;
    width: 100%;
    gap: 24px;
    position: relative;
  }
  section.content .images .row {
    display: flex;
    flex-wrap: nowrap;
  }
  section.content .images img {
    aspect-ratio: 1 / 1;
    width: calc(100vw - 48px);
  }

  section.content .images .bottom {
    gap: 24px;
  }

  section.content .images .indicators {
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  section.content .images .indicators > .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #d9d9d9;
    border-radius: 10px;
    opacity: 1;
    margin: 0;
  }

  section.content
    .images
    .indicators
    > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--gr);
    transform: scale(1.4);
  }

  section.content aside {
    margin-top: 12px;
    padding: 10px 16px 17px;
  }

  section.content aside .top {
    margin: 0;
    justify-content: flex-start;
    gap: 15px;
    padding-bottom: 12px;
  }
  section.content aside .rate {
    padding: 10px 0 4px;
  }
  section.content aside .rate p {
    display: inline;
    margin-left: 2px;
    font-weight: 300;
  }
  section.content aside .rate p:last-child {
    float: right;
    margin: 0;
  }
  section.content aside .rate div {
    flex: 1;
  }
  section.content aside .count {
    padding-right: 64px;
    padding-left: 0;
    padding-bottom: 0;
    font-weight: 300;
    padding-top: 11px;
  }
  section.content aside .tag {
    padding-left: 0px;
    gap: 24px;
  }
  section.content aside .price {
    margin-top: 6px;
    padding: 0px;
  }

  section.content aside .price h1 {
    display: inline;
    margin-right: 6px;
  }

  section.content aside .price .discount {
    flex-direction: row-reverse;
    display: inline-flex;
    gap: 8px;
    position: initial;
  }

  section.content aside .price .discount .old {
    margin-bottom: 3px;
  }

  section.content aside .cart {
    margin-top: 8px;
  }

  section.content .text {
    padding-left: 0px;
    margin-top: 36px;
  }

  section.details {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    left: -24px;
    width: 100vw;
    margin-bottom: 51px;
  }
  section.details .location {
    padding: 0 24px;
    margin-top: 14px;
  }
  section.details .location .top {
    margin-bottom: 14px;
  }

  section.details .location p {
    font-size: 11px;
  }

  .cards.reduced {
    margin-bottom: 50px;
  }

  section.bonus .row {
    margin-top: 32px;
  }

  .acf-map {
    max-height: 60vmin;
  }
}

.custom_field_date, .custom_field_time {
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  margin: 0px;
  margin-bottom: 7px;
  display: block;
}

.custom_field_input_date {
  width: 100%;
  height: 35px;
  border: solid 2px #eaeaea;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: white;
  padding: 0 5px;
  font-size: 14px;
  text-align: left;
  color: #8e8e8e;
  position: relative;
}

.custom_field_input_time {
  width: 100% !important;
  height: 35px !important;
  padding: 0 5px !important;
  font-size: 14px !important;
}
.custom_field_input.type_error {
  border-color: #cf2e2e;
}
.custom_field_input.type_success {
  border-color: #00d084;
}
.custom_field_input.type_warning {
  border-color: #fcb900;
}

.feedback_message {
  display: block;
  font-size: 12px;
  height: 17px;
  margin-top: -17px;
}
.feedback_message.type_error {
  color: #cf2e2e;
}
.feedback_message.type_success {
  color: #00d084;
}
.feedback_message.type_warning {
  color: #fcb900;
}