#onepcheckout .radio {
  display: block;
}

.shiptobilling {
  display: none;
}

#cart .dropdown-menu .btn-shopping {
    display: none;
}

.shipping-method p:not(:first-of-type) {
  margin-top: 20px;
}

a[href*="/cart/"] {
    pointer-events: none;
}

#faq {
  margin: 24px 0;
}

.faq-item {
  padding: 12px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 0px 1px #e9e9e9;
  box-shadow: 0px 0px 0px 1px #e9e9e9;
  -webkit-transition: box-shadow .2s ease, opacity .3s ease;
  -webkit-transition: opacity .3s ease, -webkit-box-shadow .2s ease;
  transition: opacity .3s ease, -webkit-box-shadow .2s ease;
  -o-transition: box-shadow .2s ease, opacity .3s ease;
  transition: box-shadow .2s ease, opacity .3s ease;
}

.faq-item:not(:last-child) {
  margin-bottom: 12px;
}

.faq-item:hover {
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .07);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .07);
}

.faq-question {
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  padding-top: 16px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.product-left-block .main-image img {
  view-transition-name: attr(data-product-id);
}

.language-modal {
  width: 100%;
  max-width: 580px;
  padding: 32px;
  text-align: center;
  margin: auto;
  border: 0;
}

.language-modal::backdrop {
  background: rgb(0 0 0 / 40%);
  backdrop-filter: blur(1rem);
}

.language-modal__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}

.language-modal__options {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-modal__option {
  flex-basis: 50%;
  background-color: #000;
  color: #fff;
  border: 0;
  border-radius: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  padding: 20px 0;
  height: unset;
  margin-top: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.language-modal__option:hover {
  background-color: #333;
}

.description-article .table-wrapper {
  overflow: auto;
  max-height: 100%;
}

.description-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.45;
}

.description-article th,
.description-article td {
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
  vertical-align: top;
  text-align: left;
}

.description-article th{
  background: #f7f7f7;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .language-modal__options {
    flex-direction: column;
  }

  .language-modal__option {
    flex-basis: auto;
    padding: 12px 0;
    font-size: 14px;
    line-height: 16px;
  }
}