.product {
  margin-bottom: 24px;
}
@media (min-width: 1100px) {
  .product {
    margin-bottom: 100px;
  }
}

.product__wrapper {
  position: relative;
  display: -ms-grid;
  display: grid;
  align-items: start;

  gap: 70px;
}
@media (min-width: 768px) {
  .product__wrapper {
    gap: 54px;
  }
}
@media (min-width: 1100px) {
  .product__wrapper {
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.product__carousel {
  min-width: 100%;
}
.product__carousel img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel .owl-dots,
.brands__inner .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -25px;
  -webkit-transform: translateY(41px);
  transform: translateY(41px);

  gap: 24px;
}
.brands__inner .owl-dots {
  margin: 0;
  margin-top: 8px;
  min-height: 22px;
  transform: unset;

  gap: 16px;
}

.carousel button.owl-dot,
.brands__inner button.owl-dot {
  width: 8px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brands__inner button.owl-dot {
  background-color: var(--gray);
}
.carousel button.owl-dot.active,
.brands__inner button.owl-dot.active {
  width: 12px;
  height: 22px;
  border-radius: 10px;
  background-color: var(--black);
}
@media (min-width: 768px) {
  .carousel button.owl-dot.active,
  .brands__inner button.owl-dot.active {
    height: 25px;
  }
}

.product__info-wrapper {
  display: flex;
  flex-direction: column;

  gap: 24px;
}
@media (min-width: 1100px) {
  .product__info-wrapper {
    gap: 8px;
  }
}

.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: -16px;
  margin-left: -16px;
  padding: 24px 16px;
  width: calc(100% + 32px);
  background-color: #fff;
}
@media (min-width: 768px) {
  .product__info {
    margin: 0;
    padding: 16px 32px;
    padding-bottom: 24px;
    width: 100%;
  }
}
.product__info.product__info--part {
  padding: 16px;
  border: unset;
}
@media (min-width: 768px) {
  .product__info.product__info--part {
    padding: 24px;
  }
}

.product__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: 32px;
  color: var(--black);
  font-weight: 400;
  font-size: 34px;
  line-height: 40px;

  gap: 12px;
}
@media (min-width: 768px) {
  .product__title {
    margin-bottom: 40px;

    gap: 8px;
  }
}

.product__code {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

.product__action-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-align: start;
  align-items: center;
  align-items: flex-start;
  -ms-flex-align: center;
  -ms-flex-align: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;

  gap: 8px;
}
@media (min-width: 768px) {
  .product__action-row {
    gap: 16px;
  }
}

.product__price {
  display: flex;
  flex-direction: column;
}
.product__price .price {
  margin-bottom: 2px;
  font-size: 40px;
  line-height: 1;
}
.product__price .old-price {
  font-size: 20px;
}
@media (min-width: 768px) {
  .product__price {
    -webkit-box-align: end;
    align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    gap: 8px;
  }
  .product__price .price {
    margin-bottom: 0;
  }
}

.product__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;

  gap: 24px;
}
@media (max-width: 1380px) {
  .product__action {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .product__action {
    gap: 8px;
  }
}

.to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--black);
  border-radius: 10px;
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.to-cart[disabled="disabled"] {
  opacity: 0.6;
  cursor: auto;
}
@media (min-width: 768px) {
  .to-cart {
    width: 254px;
    height: 64px;
    border: unset;
    background-color: var(--black);
    color: #fff;

    gap: 16px;
  }
  .to-cart:hover {
    background-color: #46a62c;
  }
  .to-cart[disabled="disabled"]:hover {
    background-color: var(--black);
  }
}

.to-cart__first-text,
.to-cart__second-text {
  display: none;
}
@media (min-width: 768px) {
  .to-cart__first-text,
  .to-cart__second-text {
    display: block;
    color: inherit;
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .to-cart__second-text,
  .icon-checked {
    display: none;
  }
}

.icon-checked {
  display: none;
}

.to-cart.active {
  border-color: var(--success--500);
  background-color: var(--success--500);
  color: #fff;
}
.to-cart.active .icon-cart {
  display: none;
}
.to-cart.active .icon-checked {
  display: block;
}
@media (min-width: 768px) {
  .to-cart.active .to-cart__first-text,
  .to-cart.active .icon-cart {
    display: none;
  }
  .to-cart.active .to-cart__second-text,
  .to-cart.active .icon-checked {
    display: block;
  }
}

.product__content {
  display: -ms-grid;
  display: grid;
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);

  gap: 7px;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
}
.product__content {
}
@media (min-width: 768px) {
  .product__content {
    padding-top: 16px;
    padding-bottom: 16px;

    gap: 10px;
  }
}

.product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;

  gap: 12px;
}
@media (min-width: 768px) {
  .product__row {
    gap: 16px;
  }
}

.product__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
}
.product__icon img {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .product__icon {
    width: 40px;
  }
  .product__icon img {
    width: 40px;
    height: 40px;
  }
}

.state-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /*border: 1px solid var(--black);
  border-radius: 4px;*/
}
@media (min-width: 768px) {
  .state-icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
  }
}

.state-icon__text {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .state-icon__text {
    font-size: 20px;
  }
}

.product__text {
  color: var(--black);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
@media (min-width: 768px) {
  .product__text {
    font-size: 16px;
  }
}

.testemonials {
  margin-bottom: 48px;
}
@media (min-width: 1100px) {
  .testemonials {
    margin-bottom: 164px;
  }
}

.testemonials__wrapper {
  display: -ms-grid;
  display: grid;
  width: 100%;

  gap: 16px;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1100px) {
  .testemonials__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;

    gap: 20px;
  }
}

.testemonials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
  max-width: 276px;
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 5px;
  text-align: center;

  aspect-ratio: 1/1;
  gap: 8px;
}
@media (min-width: 768px) {
  .testemonials__item {
    padding: 24px;
    border-width: 3px;
    border-radius: 10px;
  }
}

.testemonials__item:nth-child(1),
.testemonials__item:nth-child(3) {
  justify-self: flex-end;
}

.testemonials__title {
  margin: 0;
  color: var(--black);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
}
@media (min-width: 768px) {
  .testemonials__title {
    font-size: 48px;
  }
}

.testemonials__text {
  margin: 0;
  color: var(--black);
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
}
@media (min-width: 768px) {
  .testemonials__text {
    font-size: 30px;
    line-height: 36px;
  }
}

.description {
  margin-bottom: 40px;
}
@media (min-width: 1100px) {
  .description {
    margin-bottom: 130px;
  }
}

.description__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  gap: 16px;
}
@media (min-width: 768px) {
  .description__wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 860px;

    gap: 40px;
  }
}

.description__title {
  margin: 0;
  color: var(--black);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}
@media (min-width: 768px) {
  .description__title {
    font-size: 40px;
  }
}

.description__text p {
  margin: 0;
  margin-bottom: 12px;
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
@media (min-width: 768px) {
  .description__text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
  }
}

.description__text p:last-child {
  margin-bottom: 0;
}

.details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .details {
    margin-bottom: 80px;
  }
}

.details__title {
  margin: 24px auto;
  padding-right: 16px;
  padding-left: 16px;
  color: var(--accent);
  text-align: center;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
}
@media (min-width: 768px) {
  .details__title {
    margin-top: 200px;
    margin-bottom: 200px;
    font-size: 128px;
  }
}

.details__wrapper {
  margin-right: -16px;
  margin-left: -16px;
  padding: 16px;
  padding-bottom: 40px;
  width: calc(100% + 32px);
  background-color: #fff;
}
@media (min-width: 768px) {
  .details__wrapper {
    margin: 0;
    padding: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
  }
}

.details__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  max-width: 1160px;

  gap: 16px;
}
@media (min-width: 768px) {
  .details__inner {
    gap: 40px;
  }
}

.details__subtitle {
  margin: 0;
  color: var(--black);
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
}
@media (min-width: 768px) {
  .details__subtitle {
    font-size: 64px;
    line-height: 1.2;
  }
}

.details__table tr {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .details__table tr {
    padding: 0;
  }
  .details__table th,
  .details__table td {
    padding: 32px 40px;
  }
  .details__table th {
    padding-left: 0;
    width: 35%;
  }
  .details__table td {
    padding-right: 0;
    width: 65%;
  }
}

.details__table tr {
  border-top: 1px solid #e8e8e8;
}
.details__table tr:last-child {
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 768px) {
  .details__table tr {
    border: unset;
  }
  .details__table th,
  .details__table td {
    border-top: 1px solid #e8e8e8;
  }
  .details__table th {
    border-right: 1px solid #e8e8e8;
  }
  .details__table tr:last-child th,
  .details__table tr:last-child td {
    border-bottom: 1px solid #e8e8e8;
  }
}

.details__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  gap: 2px;
}
@media (min-width: 768px) {
  .details__table tr {
    display: table-row;
  }
}

@media (max-width: 767px) {
  .details__table tr {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

    gap: 4px 8px;
  }
}

.details__table th {
  margin: 0;
  color: var(--black);
  vertical-align: baseline;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .details__table th {
    font-size: 25px;
    line-height: 30px;
  }
}

.table__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.table__inner h3 {
  margin: 0;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .table__inner {
    gap: 10px;
  }
  .table__inner h3 {
    font-size: 24px;
  }
}

.table__text-content {
  color: var(--black);
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
}
@media (min-width: 768px) {
  .table__text-content {
    font-size: 18px;
    line-height: 30px;
  }
}

.table__text-content:empty {
  display: none;
}

.accordion {
  overflow: hidden;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .accordion {
    margin-bottom: 200px;
  }
}

.accordion__wrapper {
  margin-right: -16px;
  margin-left: -16px;
  width: calc(100% + 32px);
  border-radius: 5px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .accordion__wrapper {
    margin: 0;
    width: 100%;
    border-radius: 10px;
  }
}

.accordion__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px;
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;

  gap: 16px;
}
.accordion__title span {
  color: var(--black);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}
.accordion__title svg {
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .accordion__title {
    padding: 50px 64px;
  }
  .accordion__title span {
    font-size: 40px;
  }
  .accordion__title svg {
    width: 28px;
    height: 28px;
  }
}

.accordion__title.active svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion__content {
  padding: 16px;
  padding-top: 0;
}
.accordion__content p {
  margin: 0;
  margin-bottom: 18px;
  color: var(--black);
  font-size: 12px;
  line-height: 18px;
}
.accordion__content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 40px 64px;
  }
  .accordion__content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 30px;
  }
}

.product__vat {
  margin: 0;
  margin-top: 8px;
  padding: 0;
  color: #505780;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 768px) {
  .product__vat {
    margin-top: 0;
  }
}

/* Cat in bag */

.cat-in-bag {
  position: absolute;
  top: -28px;
  right: -8px;
  left: -8px;
  z-index: 10;
}
@media (min-width: 768px) {
  .cat-in-bag {
    width: max-content;
  }
}
@media (min-width: 1100px) {
  .cat-in-bag {
    /* top: 120px; */
    top: -44px;
  }
}

.cat-in-bag__trigger {
  z-index: 2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cat-in-bag__trigger img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1100px) {
  .cat-in-bag__trigger {
    width: 160px;
    height: 160px;
    transition: 0.3s;
  }
  .cat-in-bag__trigger:hover {
    transform: scale(1.05);
  }
}

.cat-in-bag__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: all;
}

.cat-in-bag__content {
  z-index: 1;
  display: flex;
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  flex-shrink: 1;
  justify-content: center;
  margin-left: -50px;
  padding: 4px 16px;
  padding-left: 62px;
  height: 100px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
}
@media (min-width: 1100px) {
  .cat-in-bag__content {
    margin-left: -80px;
    padding: 8px 16px;
    padding-left: 96px;
    height: 160px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}

.cat-in-bag__title {
  margin: 0;
  margin-bottom: 4px;
  color: #00061a;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}
@media (min-width: 1100px) {
  .cat-in-bag__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

.cat-in-bag__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  padding-left: 16px;
  list-style-type: disc;

  gap: 2px;
}
.cat-in-bag__list li {
  color: #00061a;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
}
@media (min-width: 1100px) {
  .cat-in-bag__list li {
    font-size: 16px;
  }
}

.cat-in-bag__remove {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media (min-width: 1100px) {
  .cat-in-bag__remove {
    transition: 0.3s;
  }
  .cat-in-bag__remove:hover {
    opacity: 0.4;
  }
}

/* // Cat in bag */
@media (min-width: 1099px) and (max-width: 1480px) {
  .product .product__info .to-cart {
    width: 110px;
  }
  .product .product__info .to-cart .to-cart__first-text,
  .product .product__info .to-cart .to-cart__second-text {
    display: none;
  }
}

.product-parts-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #e7ebf2;
  border-radius: 8px;

  gap: 8px;
}
.product-parts-info.product-parts-info_first {
  margin-top: 15px;
}
@media (min-width: 1100px) {
  .product-parts-info {
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 32px;

    gap: 32px;
  }
  .product-parts-info.product-parts-info_first {
    margin-bottom: 12px;
  }
}

.product-parts-info__col {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.product-parts-info__key {
  color: #6876a8;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.product-parts-info__value {
  color: #00061a;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
.product-buy_more_one{
  background: var(--warning--50);
  border-radius: 8px;
  border: 1px solid var(--warning--300);
  padding: 11px 16px;
  color:var(--warning--600);
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  margin-bottom:12px;
}
.product-buy_more_one a{
  color:var(--warning--600);
  text-decoration:none;
}
.product-buy_more_one a:hover,.product-buy_more_one a:focus{
    text-decoration:underline;
}
.product-parts-price {
  display: grid;
  align-items: center;

  grid-template-columns: minmax(0, auto) 112px;
  gap: 16px;
}
@media (min-width: 1100px) {
  .product-parts-price {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;

    gap: 24px;
  }
}

.product-parts-price__item--quantity {
  position: relative;
}
.product-parts-price__item--quantity::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 1px;
  height: 16px;
  background-color: #e7ebf2;
  content: "";
  transform: translateY(-50%);
}
@media (min-width: 1100px) {
  .product-parts-price__item--quantity::before {
    left: -16px;
  }
}

.noactive.product__info .product-parts-price__value {
  color: #505780;
}

.product-parts-price__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.product-parts-price__item .price {
  font-size: 32px;
  line-height: 40px;
}

.product-parts-price__actions {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-end;

  gap: 16px;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
}
@media (min-width: 1100px) {
  .product-parts-price__actions {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
  }
}
/* visually-hidden */
.product-parts-price__actions input {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  outline: 0;
  outline-offset: 0;
  border: 0;
  white-space: nowrap;

  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
}
.product-parts-price__actions .add-to-favorites {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.product-parts-price__actions .add-to-favorites svg {
  width: 20px;
  height: 20px;
}
.product-parts-price__actions .to-cart {
  padding-right: 16px;
  padding-left: 16px;
  width: 100% !important;
  height: 48px !important;
}
@media (max-width: 1100px) {
  .product-parts-price__actions .to-cart__first-text {
    display: none !important;
  }
  .product-parts-price__actions .to-cart__second-text {
    display: none !important;
  }

  .product-parts-price__actions .to-cart {
    min-width: 48px;
    height: 48px;
  }
}

.product-parts-price__actions .to-cart svg {
  flex-shrink: 0;
}

.product-parts-price__key {
  color: #7a8cb7;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.product-parts-price__value {
  color: #039855;
  font-weight: 400;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
}

/* Small select */
.i-select-wrapper {
  position: relative;
}
.select-small .select2-container--default .select2-selection--single {
  --select-height: 16px;
}
.select-small .select2-container--default .select2-selection--single {
  padding: 0 !important;
  border: unset !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}
.select-small
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 20px !important;
  color: #7a8cb7 !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 18px !important;
}
.select-small .select2-results__option {
  font-size: 14px !important;
  line-height: 1.2 !important;
  transition: 0.2s;
}
.select-small .select2-results__option {
  padding: 8px 12px !important;
}
.select-small .select2-container {
  min-width: unset;
  width: 100% !important;
}
.select-small .select2-dropdown {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-width: 140px !important;
}
.select-small .select2-container--open .select2-dropdown {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.select-small
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  right: 0 !important;

  --select-arrow-size: 16px;
}
/* // Small select */

/* Hint */
.hint-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b7c4d9;
  transition: 0.2s;
}
.hint-toggler:hover {
  color: #2e90fa;
}
/* // Hint */

/* Partials table */
.parts-info__table-wrapper {
  display: none;
}
@media (min-width: 1100px) {
  .parts-info__table-wrapper {
    display: block;
    overflow-y: auto;
    min-height: 257px;
    max-height: 492px;
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    background-color: #fff;
  }
}

.parts-info__table-title {
  margin: 0;
  margin-right: -16px;
  margin-left: -16px;
  padding: 8px 24px;
  border-bottom: 1px solid #e7ebf2;
  background-color: #fff;
  color: #00061a;
  text-align: left;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1100px) {
  .parts-info__table-title {
    margin-right: 0;
    margin-left: 0;
    padding-top: 8px;
    padding-right: 24px;
    padding-left: 24px;
    border-bottom: unset;
    background-color: transparent;
  }
}

.parts-info__head-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 4px;
}
.parts-info__table {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border-top: 1px solid #f4f6fa;
}

.parts-info__table thead td {
  padding: 12px;
  border: none;
  border-bottom: 1px solid #e7ebf2;
  background-color: #fff;
  color: #7a8cb7;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
.parts-info__table thead td {
  position: sticky;
  top: 0;
  z-index: 3;
}
.parts-info__table tbody tr:nth-child(even) td {
  background-color: #fff;
}
.parts-info__table tbody tr:nth-child(odd) td {
  background-color: #f4f6fa;
}
.parts-info__table tbody td {
  border-bottom: 1px solid #e7ebf2 !important;
}
.parts-info__table tbody tr td:first-child {
  padding: 4px;
}
.parts-info__table tbody tr.not-avaliable .parts-info__price {
  color: #505780;
}

.parts-info__table tbody td {
  padding: 12px;
  border: none;
  color: #6876a8;
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.parts-info__notes {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.parts-info__key {
  color: #6876a8;
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.parts-info__value {
  color: #00061a;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.parts-info__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 16px;
}
.parts-info__price {
  min-width: 74px;
  color: #039855;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}
.parts-info__actions form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.parts-info__add-to-cart,
.mobile-part__add-to-cart {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  outline: none;
  border: none;
  border-radius: 8px;
  background-color: #00061a;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.parts-info__add-to-cart.active {
  background-color: var(--success--500);
}
.parts-info__add-to-cart[disabled="true"]:hover {
  background-color: #e4ecf7;
  color: #505780;
}
.parts-info__add-to-cart .icon-checked {
  display: none;
}
.parts-info__add-to-cart.active .icon-cart {
  display: none;
}
.parts-info__add-to-cart.active .icon-checked {
  display: block;
}
.parts-info__add-to-cart:hover,
.mobile-part__add-to-cart:hover {
  opacity: 0.8;
}
.parts-info__add-to-cart.disabled,
.mobile-part__add-to-cart.disabled {
  background-color: rgba(231, 235, 242, 1);
  opacity: 0.8;
  cursor: not-allowed;
  pointer-events: none;

  user-select: none;
}

/* // Partials table */

/* Partials list mobile */
.parts-info__col {
  display: flex;
  flex-direction: column;

  gap: 16px;
}
@media (min-width: 1100px) {
  .parts-info__col {
    display: none;
  }
}

.parts-info__col-inner {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.parts-info__col .select2-container--default .select2-selection--single {
  border: 1px solid #e7ebf2 !important;
}
.parts-info__col
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 24px;
}

.parts-info__products {
  margin-right: -16px;
  margin-left: -16px;
  padding: 8px 16px;
  background-color: #fff;
}

.mobile-part {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7ebf2;

  gap: 8px;
}
.mobile-part:last-child {
  border-bottom: unset;
}

.mobile-part__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 8px;
}
.mobile-part__head-part {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 8px;
}
.mobile-part__head-part form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-part__head .mobile-part__head-part:last-child {
  justify-content: flex-end;

  gap: 16px;
}

.mobile-part__code {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  color: #6876a8;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.mobile-part__price {
  color: #039855;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}

.mobile-part__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}
.mobile-part__title {
  color: #6876a8;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.mobile-part__text {
  color: #00061a;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
/* // Partials list mobile */

.part-preview {
  display: flex;
}
.part-preview__link {
  position: relative;
  display: flex;
  cursor: pointer;
  transition: 0.2s;
}
.part-preview__link:hover {
  opacity: 0.6;
}
.part-preview__image {
  display: block;
  overflow: hidden;
  max-width: 68px;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (min-width: 1100px) {
  .part-preview__image {
    max-width: 90px;
    border-radius: 0;
  }
}
.part-preview__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #fff;
  pointer-events: none;
}
@media (min-width: 1100px) {
  .part-preview__icon {
    width: 32px;
    height: 32px;
  }
}
.part-preview__icon svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
@media (min-width: 1100px) {
  .part-preview__icon svg {
    width: 20px;
    height: 20px;
  }
}
.characteristics__table {
  width: 100%;
}

.characteristics__table thead td {
  color: var(--gray--500);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
.characteristics__table thead td {
  padding-top: 0;
}
.characteristics__table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray--100);
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.characteristics__table tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: unset;
}
.characteristics_title {
  display: none;
}
@media (max-width: 768px) {
  .characteristics__table {
    display: block;
    width: 100%;
  }
  .characteristics__table thead {
    display: none;
  }
  .characteristics__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray--100);
  }

  .characteristics__table td {
    display: block;
    padding: 0;
    width: 100%;
    border-bottom: none;
    font-size: 16px;
    line-height: 24px;
  }
  .characteristics__table td:first-child {
    margin-bottom: 8px;
  }
  .characteristics_title {
    display: block;
    color: var(--gray--500);
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
  }
}

.characteristics__button-row {
  display: none;
}
@media (max-width: 767px) {
  .characteristics__table .characteristics__button-row {
    display: flex;
    margin-top: 0;
    padding: 0;
    border-bottom: unset;
  }
  .characteristics__table .characteristics__button-row td {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  /*.characteristics__table tbody tr,
  .characteristics__table tbody tr td {
    display: none;
  }*/
  .characteristics__table tbody tr:first-child {
    display: flex;
    border-bottom: unset;
  }
  .characteristics__table tbody td:first-child {
    display: block;
    margin: 0;
  }
  /* Active table */
  .characteristics__table.active tbody tr {
    display: flex;
  }
  .characteristics__table tbody tr:first-child {
    border-bottom: 1px solid var(--gray--100);
  }
  .characteristics__table.active tbody tr td {
    display: block;
  }
  .characteristics__table.active tbody tr td:first-child {
    margin-bottom: 8px;
  }
  .characteristics__table.active .characteristics__button-row {
    margin-top: 8px;
    margin-bottom: 0;
  }
}

.product-parts-chars-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 16px;
  width: 100%;
  height: 28px;
  outline: none;
  border: 1px solid #5c6799;
  border-radius: 4px;
  color: #5c6799;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.product-parts-chars-toggler__active-text {
  display: none;
}
.characteristics__table.active
  .product-parts-chars-toggler
  .product-parts-chars-toggler__text {
  display: none;
}
.characteristics__table.active
  .product-parts-chars-toggler
  .product-parts-chars-toggler__active-text {
  display: block;
}