:root {
  --header-height: 56px;
}

#single-product .col-12{
        padding: 0;
    }

.body-margin {
  margin-top: 56px;
  margin-top: var(--header-height);
}

/* 詳細度を上げるため。また、わかりやすくするために@layerを使用 */

.comp--header {
  --inline-space: 24px;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  background: #fff;
  z-index: 11;
  padding-left: 24px;
  padding-left: var(--inline-space);
  padding-right: 24px;
  padding-right: var(--inline-space);
}

.comp--header .comp--header-inner {
    display: grid;
    align-items: center;
    justify-content: space-between;
    max-width: 1110px;

    margin: 0 auto;
    grid-template-areas:
      "logo utils"
      "nav nav";
    grid-template-rows: 56px auto;
    grid-template-rows: var(--header-height) auto;
  }

.comp--header img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    vertical-align: top;
  }

.comp--header .header--logo {
    grid-area: logo;
    display: block;
    height: 18px;
  }

.comp--header .header--utils {
    grid-area: utils;
    display: flex;
    height: 24px;
  }

.comp--header .header--currency-switch {
    display: block;
    height: 24px;
  }

.comp--header .header--user {
    display: block;
    height: 24px;
    margin-left: 16px;
  }

/* navが表示状態のとき、不要な要素を隠す*/

.comp--header:has(.header--nav-toggler[aria-expanded="true"]) .header--logo,
    .comp--header:has(.header--nav-toggler[aria-expanded="true"]) .header--currency-switch,
    .comp--header:has(.header--nav-toggler[aria-expanded="true"]) .header--user {
      opacity: 0;
      pointer-events: none;
    }

.comp--header .header--nav-toggler {
    display: block;
    height: 24px;
    padding: 0;
    aspect-ratio: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background: #fff no-repeat center;
    margin-left: 16px;

    background-image: url("/img/header/ico-open.svg");
  }

.comp--header .header--nav-toggler[aria-expanded="true"] {
      background-image: url("/img/header/ico-close.svg");
    }

.comp--header .header--nav {
    grid-area: nav;
    text-box-trim: both;
    text-box-edge: cap;
    max-height: calc(100dvh - 56px);
    max-height: calc(100dvh - var(--header-height));
    overscroll-behavior-y: contain;
    overflow-y: auto;
    max-width: 1110px;
    margin: 0 auto;

    /* @media screen and (max-width: 767px) {
      &:has(.show) {
        height: calc(100dvh - var(--header-height));
      }
    } */
  }

.comp--header .header--nav-inner {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    /* padding: 0 var(--inline-space); */
  }

.comp--header .header--nav-inner .nav-item,
    .comp--header .header--nav-inner .nav-summary {
      display: flex;
      place-items: center;
      gap: 12px;
      height: 48px;
      width: 100%;
      color: #aa9346 !important;
      font-family: "Libre Baskerville", serif;
      font-weight: 700;
      font-size: 16px;
    }

.comp--header .header--nav-inner .nav-item .icon, .comp--header .header--nav-inner .nav-summary .icon {
        flex-shrink: 0;
        /* margin-right: 0;
        margin-left: auto; */
        height: 16px;
      }

/* &:hover {
        color: #000 !important;
      } */

.comp--header .header--nav-inner .nav-summary:after {
        content: "";
        display: block;
        width: 8px;
        height: 6px;
        -webkit-mask: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L0.535899 -6.52533e-07L7.4641 -4.68497e-08L4 6Z' fill='%23AA9346'/%3E%3C/svg%3E%0A") no-repeat center;
                mask: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L0.535899 -6.52533e-07L7.4641 -4.68497e-08L4 6Z' fill='%23AA9346'/%3E%3C/svg%3E%0A") no-repeat center;
        background: currentColor;
      }

.comp--header .header--nav-inner summary::-webkit-details-marker {
      display: none;
    }

.comp--header .header--nav-inner .nav-child-wrapper[open] .nav-summary {
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        cursor: pointer;
      }

.comp--header .header--nav-inner .nav-child-wrapper[open] .nav-summary:after {
          transform: rotate(180deg);
        }

.comp--header .header--nav-inner .nav-child {
      display: flex;
      flex-direction: column;
    }

.comp--header .header--nav-inner .nav-child .nav-item {
        /* display: flex;
        align-items: center; */
        padding-left: 16px;
        font-size: 14px;
        height: 40px;
      }

.comp--header .header--form {
    position: relative;
    box-shadow: none !important;
    height: 48px;
    margin: 16px 0 32px;
    box-sizing: border-box;
  }

.comp--header .header--form .form-icon {
      display: grid;
      place-items: center;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 48px;
    }

.comp--header .header--form .form-icon .form-icon-img {
        width: 24px;
      }

.comp--header .header--form .form-input {
      border: none;
      font-size: 16px;
      padding: 0 8px;
      padding-left: 48px;
      width: 100%;
      height: 100%;
      border: 1px solid #cfcfcf;
      border-radius: 8px;
      color: #aa9346;
    }

.comp--header .header--form .form-input::-moz-placeholder {
        color: #aa9346;
      }

.comp--header .header--form .form-input::placeholder {
        color: #aa9346;
      }

.comp--footer {
  padding: 40px 24px;
  background: #aa9346;
  color: #fff;
  clear: both;
}

@media (min-width: 992px) {

.comp--footer .comp--footer-inner {
      display: flex;
      justify-content: space-between;
      max-width: 1110px;
      margin: 0 auto;
      align-items: flex-end;
  }
    }

.comp--footer img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    vertical-align: top;
  }

.comp--footer .footer-logo {
    height: 24px;
    width: -moz-fit-content;
    width: fit-content;
  }

.comp--footer .footer-sns {
    display: flex;
    margin: 16px 0 0;
    padding: 0;
    gap: 16px;
    list-style: none;
  }

.comp--footer .footer-sns .sns-item {
      position: relative;
      display: block;
      width: 32px;
      aspect-ratio: 1;
    }

.comp--footer .footer-sns .sns-item:hover .sns-icon {
          opacity: 0.6;
        }

.comp--footer .footer-sns .sns-item:has(.sns-popover):hover .sns-popover {
            display: block;
          }

.comp--footer .footer-sns .sns-popover {
      display: block;
      display: none;
      position: absolute;
      top: 10px;
      left: -30px;
      width: 200px;
      aspect-ratio: 1;
      transform: translate(0, -100%);
      padding: 0 0 6px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }

.comp--footer .footer-link {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    font-size: 12px;
    leading-box-trim: both;
    text-box-edge: cap;
    line-height: 1;
  }

@media (min-width: 992px) {

.comp--footer .footer-link {
      margin-top: 0;
  }
    }

.comp--footer .footer-link a {
      color: inherit;
    }

.comp--footer .footer-link a:hover {
        text-decoration: underline !important;
      }

.comp--footer .footer-copyright {
    leading-box-trim: both;
    text-box-edge: cap;
    line-height: 1;

    font-size: 12px;
    color: inherit;
    margin-top: 24px;
  }

@media (min-width: 992px) {

.comp--footer .footer-copyright {
      text-align: right;
  }
    }

.product-image {
  max-width: none;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.product-image.slick-dotted.slick-slider {
    margin-bottom: 0;
  }

.product-image .slide-item {
    /* #single-productに設定されたmax-widthからpadding分引いた数値 */
    //max-width: 886px !important;
    width: auto!important;
    height: 176px;
  }

@media (min-width: 992px) {

.product-image .slide-item {
      height: 500px;
  }
    }

.product-image .slick-slide {
    padding: 0;
    opacity: 0.3;
    transition: all 0.3s ease;
  }

.product-image .image-item {
    padding: 0 4px;

  }

.product-image .slick-slide.slick-active {
    opacity: 1;
  }

.product-image .slick-slide:hover {
    margin: 0;
  }

.product-image .slick-list {
    padding: 0;
  }

.product-image .slick-dots {
    position: static;
    display: flex !important;
    margin-top: 16px;
    height: 8px;
    gap: 12px;
    overflow: hidden;
    justify-content: center;
  }

.product-image .slick-dots li {
    display: inline-grid;
    list-style: none;
    font-size: 0;
  }

.product-image .slick-dots li,
  .product-image .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
  }

.product-image .slick-dots li button:before {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #cfcfcf;
    content: '';
    opacity: 1;
  }

.product-image .slick-dots li.slick-active button:before {
    background: #aa9346;
  }

/*
 * Single Product Page
 */

#single-product {
  padding: 0 24px;
  box-sizing: border-box;
  margin-top: 0;
}

@media (min-width: 992px) {

#single-product {
    max-width: 1158px;
}
  }

#single-product .row {
    margin-right: -24px;
    margin-left: -24px;
  }

#single-product .col-12 {
    padding: 0 24px;
  }

#single-product .product-contents {
    border: none;
    margin: 24px 0 0;
    padding: 0;
    float: none;
  }

#single-product .product-tag {
    display: flex;
  }

#single-product h1.product-title {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    margin: 6px 0 0;
    color: #aa9346;
  }

@media (min-width: 992px) {

#single-product h1.product-title {
      font-size: 28px;
  }
    }

#single-product .product-box {
    display: flex;
    gap: 24px;
    margin-top: 3px;
  }

#single-product .product-box .price {
      display: flex;
      flex-wrap: wrap;
      font-size: 32px;
      line-height: 120%;
      letter-spacing: 0.03em;
    }

#single-product .product-box .price .price-inner {
        display: flex;
        align-items: flex-end;
      }

#single-product .product-box .price .price-inner:first-child {
          margin-right: 0.25em;
        }

#single-product .product-box .price .symbol {
        font-size: 24px;
        line-height: 1.4;
      }

#single-product .product-box .currency-control {
      height: 32px;
      align-self: center;
      border: 1px solid #cfcfcf;
      border-radius: 4px;
      padding: 0 5px;
      background: #fff;
      color: #000;
    }

#single-product .product-box .price-note {
      display: block;
      width: 100%;
      font-size: 16px;
      font-weight: normal;
      line-height: 120%;
      font-weight: 300;
      margin-top: 3px;
      /* font-style: italic; */
    }

#single-product .product-from {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 21px;
  }

@media (min-width: 992px) {

#single-product .product-from {
      flex-direction: row;
      justify-content: space-between;
  }
    }

#single-product .product-option {
    display: grid;
    grid-gap: 24px;
    gap: 24px;
    margin: 0;
  }

@media (min-width: 992px) {

#single-product .product-option {
      justify-content: start;
      gap: 32px;
      grid-auto-flow: column;
  }
    }

#single-product .product-option .custom-select {
      border: 1px solid #cfcfcf;
      border-radius: 4px;
      max-width: 100%;
      width: 100%;
    }

@media (min-width: 992px) {

#single-product .product-option .custom-select {
        width: 327px;
        height: 40px;
    }
      }

#single-product .quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
  }

#single-product .quantity .quantity-box {
      display: flex;
      gap: 3px;
    }

#single-product .quantity .quantity-button {
      display: grid;
      place-items: center;
      border-radius: 4px;
      padding: 0;
      width: 32px;
      height: 32px;
      font-size: 16px;
      background: #dce2e7;
    }

#single-product .quantity .input-text {
      width: 32px;
      height: 32px;
      border: 1px solid #cfcfcf;
      border-radius: 4px;
      font-size: 12px;
      padding: 0;
    }

@media (min-width: 992px) {

#single-product .product-button {
      width: 327px;
      height: 40px;
  }
    }

#single-product .single_add_to_cart_button {
    display: grid;
    place-items: center;
    background: #aa9346;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    height: 100%;
  }

@media (min-width: 992px) {

#single-product .single_add_to_cart_button {
      padding: 0;
  }
    }

#single-product .question {
    display: flex;
    justify-content: space-between;
    border: 1px solid #cfcfcf;
    border-inline: none;
    margin: 32px 0;
    padding: 16px 0;
  }

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

#single-product .question {
      gap: 24px;
      justify-content: start;
  }
    }

#single-product .question .question-text {
      font-size: 16px;
      white-space: nowrap;
      color: #141414;
    }

#single-product .question .question-buttons {
      display: flex;
      gap: 12px;
      height: 40px;
    }

#single-product #accept.banners {
    display: grid;
    grid-gap: 32px;
    gap: 32px;
    margin: 0 auto;
    padding: 0 24px;
    max-width: 450px;
    box-sizing: content-box;
  }

#single-product #accept.banners img {
      width: 100%;
    }

#single-product .product-descriptions {
    position: relative;
    background: #f9f6ef;
    margin: 46px auto 0;
    padding: 48px 24px 0;
    width: 100%;
  }

#single-product .product-descriptions:before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      margin: 0 calc(50% - 50vw);
      width: 100vw;
      background: #f9f6ef;
      z-index: -1;
    }

#single-product .product-descriptions:after {
      content: "";
      display: block;
      height: 1px;
      width: 100%;
      background: #cfcfcf;
      margin-top: 16px;

      /* だいぶhackyだけど。。 */
    }

:has(.treatment.hide) #single-product .product-descriptions:after {
        margin-top: 0;
      }

#single-product .product-descriptions .hide {
      display: none;
    }

#single-product .product-descriptions h2.p2 {
      position: relative;
      display: flex;
      align-items: center;
      margin: 0 !important;
      padding: 16px 24px 16px 0;
      border-top: 1px solid #cfcfcf;
      font-size: 16px;
      line-height: 130%;
      cursor: pointer;
      color: #aa9346;
    }

#single-product .product-descriptions h2.p2:hover {
        color: #000;
      }

#single-product .product-descriptions h2.p2:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 16px;
        height: 2px;
        transform: translateY(-50%);
        background: currentColor;
      }

#single-product .product-descriptions h2.p2:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 16px;
        height: 2px;
        transform: translateY(-50%) rotate(90deg);
        background: currentColor;
      }

#single-product .product-descriptions :not(.desc-close) .p2:after {
          display: none;
        }

#single-product .product-descriptions .clearfix {
      height: 24px;
    }

#single-product .product-descriptions img{
      max-width: 100%;
    }

#single-product .treatment {
    margin: 0;
  }

#single-product .sku-links {
    position: relative;
    margin: 0 0;
    padding: 32px 24px 48px;
    border: none;
    background: #f9f6ef;
    font-size: 12px;
  }

#single-product .sku-links:before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      margin: 0 calc(50% - 50vw);
      width: 100vw;
      background: #f9f6ef;
      z-index: -1;
    }

#single-product .sku-links b {
      font-weight: normal;
    }

#single-product .sku-links .tagged_as {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 15px;
    }

#single-product .sku-links .tagged_as a {
        display: grid;
        place-items: center;
        line-height: 0.9;
        color: #000;
        height: 20px;
        padding: 0 10px;
        background: rgba(170, 147, 70, 0.3);
        border-radius: 40px;
        font-size: 12px;
      }

#single-product .sku-links .tagged_as a:hover {
          background: #aa9346;
          color: #fff;
        }

#featured-post.featured-container {
    margin: 48px auto;
    padding: 0 24px;
    width: 100%;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

#featured-post.featured-container .featured-title {
      margin: 0 auto 24px;
      padding: 0;
      font-size: 16px;
      color: #aa9346;
    }

@media (min-width: 992px) {

#featured-post.featured-container .featured-title {
        font-size: 24px;
        max-width: 1110px;
    }
      }

#featured-post.featured-container .regular.slider {
      display: grid;
      grid-auto-flow: column;
      grid-gap: 8px;
      gap: 8px;

      /* .cardのpadding-bottomの相殺 */
      margin: 0 -24px -10px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
    }

#featured-post.featured-container .regular.slider:before,
      #featured-post.featured-container .regular.slider:after {
        content: "";
        width: 16px;
        height: 10px;
      }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider:before,
      #featured-post.featured-container .regular.slider:after {
          width: calc(50vw - 563px);
      }
        }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider.draggable {
          cursor: grab;
          -ms-overflow-style: none;
          scrollbar-width: none;
      }
          #featured-post.featured-container .regular.slider.draggable:-webkit-scrollbar {
            display: none;
          }
        }

#featured-post.featured-container .regular.slider .card {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 2;
        grid-gap: 10px;
        gap: 10px;

        border: none;

        width: 160px;
        height: 220px;
        margin: 0 4px;
        border-radius: 8px;

        overflow: hidden;
        background: #ffffff;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
      }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card {
          width: 264px;
          height: 309px;
      }
        }

#featured-post.featured-container .regular.slider .card .card-body {
          display: contents;
        }

#featured-post.featured-container .regular.slider .card .card-image{
          aspect-ratio: 160 / 90;
          overflow: hidden;
        }

#featured-post.featured-container .regular.slider .card .card-image img{
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
          }

#featured-post.featured-container .regular.slider .card .card-title {
          margin: 10px 10px 0;
          font-size: 12px;
          line-height: 120%;
          overflow: hidden;
          display: -webkit-box;
          text-overflow: ellipsis;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 3;
          max-height: 4.5em;
          -webkit-hyphens: auto;
                  hyphens: auto;
        }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card .card-title {
            margin: 15px 15px 0;
            width: calc(100% - 30px);
            font-size: 16px;
        }
          }

#featured-post.featured-container .regular.slider .card .card-title:before {
            display: block;
            content: "";
            margin-top: -0.25em;
          }

#featured-post.featured-container .regular.slider .card .card-text {
          display: grid;
          height: 100%;
          align-content: space-between;
          grid-gap: 30px;
          gap: 30px;
          float: none;
          padding: 0 10px 10px;
        }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card .card-text {
            gap: 40px;
        }
          }

#featured-post.featured-container .regular.slider .card .card-text .pricing {
            display: flex;
            flex-wrap: wrap;
            order: -1;
            font-size: 16px;
            line-height: 120%;
            letter-spacing: 0.03em;
            color: #141414;
            margin-top: -0.1em;
            margin-bottom: -0.2em;
          }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card .card-text .pricing {
              font-size: 24px;
          }
            }

#featured-post.featured-container .regular.slider .card .card-text .pricing .pricing-inner {
              display: flex;
              align-items: flex-end;
            }

#featured-post.featured-container .regular.slider .card .card-text .pricing .pricing-inner:first-child {
                margin-right: 0.15em;
              }

#featured-post.featured-container .regular.slider .card .card-text .pricing .symbol {
              font-size: 12px;
            }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card .card-text .pricing .symbol {
                font-size: 16px;
            }
              }

#featured-post.featured-container .regular.slider .card .card-text .location {
            display: flex;
            gap: 4px;
            font-size: 12px;
            line-height: 120%;
            letter-spacing: 0.03em;
            color: #737373 !important;
            padding: 0;
            background: none;
          }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card .card-text .location {
              font-size: 16px;
          }
            }

#featured-post.featured-container .regular.slider .card .card-text .location:before {
              display: block;
              content: "";
              width: 8.08px;
              flex-shrink: 0;
              height: 100%;
              background: url("/img/product/icon-pin.svg") no-repeat center bottom;
              background-size: auto 12px;
            }

@media (min-width: 992px) {

#featured-post.featured-container .regular.slider .card .card-text .location:before {
                width: 10.05px;
                background-size: auto 15.8px;
            }
              }

#languageSwitch {
  color: #aa9346;
}

#languageSwitch .modal-dialog {
    /* display: grid; */
    justify-content: center;
  }

#languageSwitch .modal-content {
    position: relative;
    display: grid;
    grid-gap: 24px;
    gap: 24px;
    border-radius: 8px;
    padding: 32px 16px;
    max-width: 1000px;
  }

#languageSwitch .modal-header {
    text-transform: none;
    font-size: 20px;
    padding: 0;
    border: none;
    font-family: "Libre Baskerville", serif;
  }

#languageSwitch .modal-header .modal-title {
      margin: -0.3em 0 -0.3em;
    }

#languageSwitch .modal-header .close {
      position: absolute;
      top: 0;
      right: 0;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.29289 4.2928C4.68342 3.90228 5.31658 3.90228 5.70711 4.2928L19.7071 18.2928C20.0976 18.6833 20.0976 19.3165 19.7071 19.707C19.3166 20.0975 18.6834 20.0975 18.2929 19.707L4.29289 5.70701C3.90237 5.31649 3.90237 4.68332 4.29289 4.2928Z' fill='%23AA9346'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.707 4.29289C20.0975 4.68342 20.0975 5.31658 19.707 5.70711L5.70696 19.7071C5.31643 20.0976 4.68327 20.0976 4.29274 19.7071C3.90222 19.3166 3.90222 18.6834 4.29274 18.2929L18.2927 4.29289C18.6833 3.90237 19.3164 3.90237 19.707 4.29289Z' fill='%23AA9346'/%3E%3C/svg%3E") no-repeat center;
              mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.29289 4.2928C4.68342 3.90228 5.31658 3.90228 5.70711 4.2928L19.7071 18.2928C20.0976 18.6833 20.0976 19.3165 19.7071 19.707C19.3166 20.0975 18.6834 20.0975 18.2929 19.707L4.29289 5.70701C3.90237 5.31649 3.90237 4.68332 4.29289 4.2928Z' fill='%23AA9346'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.707 4.29289C20.0975 4.68342 20.0975 5.31658 19.707 5.70711L5.70696 19.7071C5.31643 20.0976 4.68327 20.0976 4.29274 19.7071C3.90222 19.3166 3.90222 18.6834 4.29274 18.2929L18.2927 4.29289C18.6833 3.90237 19.3164 3.90237 19.707 4.29289Z' fill='%23AA9346'/%3E%3C/svg%3E") no-repeat center;
      background: #aa9346;
      width: 56px;
      height: 92px;
      text-indent: -9999em;
      overflow: hidden;
      margin: 0;
      padding: 0;
      opacity: 1;
    }

#languageSwitch .modal-body {
    padding: 0;
  }

#languageSwitch .modal-body .row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 16px;
      gap: 16px;
    }

@media (min-width: 992px) {

#languageSwitch .modal-body .row {
        grid-template-columns: repeat(5, 1fr);
    }
      }

@media (min-width: 1200px) {

#languageSwitch .modal-body .row {
        grid-template-columns: repeat(6, 1fr);
    }
      }

#languageSwitch .modal-body .row > div {
        max-width: none;
        margin: 0 !important;
        font-size: 14px;
        padding: 0 !important;
      }

#languageSwitch .modal-body .row > div a {
          display: flex;
          align-items: center;
          border-radius: 4px;
          padding: 12px 8px;
          height: 100%;
        }

#languageSwitch .modal-body .row > div a .ml-2 {
            margin: 0 !important;
          }