.catalog-price {
  color: red;
}
.section__tab {
  display: none;
}
#price > .table-responsive table {
  width: 100%;
  border-collapse: collapse;
}
#price > .table-responsive th {
  text-align: left;
  background-color: transparent;
}
#price > .table-responsive th:last-child {
  text-align: right;
}
#price > .table-responsive td:nth-child(2) {
  text-align: right;
}
#price > .table-responsive table > :not(caption) > * > * {
  min-width: 150px;
  padding: 12px;
  border-right-width: 0;
  border-left-width: 0;
  border-color: var(--color-gray);
}

#price > .table-responsive table > tbody > * > * {
  border-top: 1px solid;
  border-color: var(--color-gray);
}

#price > .table-responsive table > tbody > *:last-child > * {
  border-bottom: 1px solid;
  border-color: var(--color-gray);
}

#price > .table-responsive table > tbody > * > * {
  color: #736f73;
}

#price > .table-responsive table > tbody > tr.heading > * {
  color: var(--color-black);
  background-color: #ebebeb;
}

#price > .table-responsive table > tbody > tr.heading > *,
#price > .table-responsive table > tbody > tr.heading + * > * {
  border-top-width: 0;
}

.bg-white {
  background-color: var(--color-white);
}
.solution-wrap {
  display: flex;
  gap: 20px;
}

.section-nav {
  margin-bottom: 80px;
}
.section-nav__products {
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  color: var(--color-gray-dark);
  flex-wrap: wrap;
  padding: 40px;
  gap: 20px;
}
.section-nav__product {
  text-align: center;
  border-radius: 5px;
  height: 45px;
  border: 1px solid var(--color-gray-dark);
  padding: 10px 17px;
}
.section-nav__product:hover {
  text-align: center;
  border-radius: 5px;
  min-height: 45px;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  cursor: pointer;
}
.section-nav__product_active {
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  color: var(--color-gray-dark);
}
.section-nav__product_active:hover {
  color: var(--color-gray-dark);
  border: 1px solid var(--color-yellow);
}
.section-product {
  padding: 40px;
  font-size: 17px;
  flex: 1 1 895px;
}
.section-product__card {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  flex-direction: row;
  padding-bottom: 50px;
  justify-content: space-between;
  border-bottom: 2px solid var(--color-gray);
}
.section-product__img {
  text-align: center;
  flex: 1 0 25%;
  padding-right: 1em;
}
.section-product__img img {
  width: 200px;
  height: auto;
  text-align: center;
}

.section-product__about {
  display: flex;
  flex: 1 2 75%;
  flex-direction: column;
  gap: 20px;
}
.about__title {
  font-size: 24px;
  font-weight: 700;
}
.about__cost-section {
  width: 100%;
  padding-top: 1em;
}
.about__cost-section .action {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-0.5em - 10px);
  width: 100%;
}
.about__cost-section .action .action__item {
  flex-basis: 100%;
  padding: 0.5em;
}
.about__cost-section .action .action__item .action-btn {
  display: block;
  width: 100%;
}
.about__cost-section span {
  font-size: 34px;
  font-weight: 500;
  margin-right: 20px;
}
.action a {
  text-decoration: none;
  color: var(--color-red);
}
.action-btn {
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  width: fit-content;

  border-radius: 5px;
  min-height: 45px;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 10px 17px;
}

.about-card__title {
  margin-top: 70px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
}

.section-menu {
  flex: 0 1 285px;
  font-size: 17px;
  font-weight: 400;
}

.section-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list__item {
  display: flex;
  width: 100%;
  min-height: 44px;
  padding: 0 16.5px;
  cursor: pointer;
}

.list__item:hover {
  background-color: var(--color-yellow);
  display: flex;
  width: 100%;
  min-height: 44px;
  padding: 0 16.5px;
}
.list__item_main {
  position: relative;
}
.list__item_main:hover .list__func-items {
  display: block;
}
.list__item_func {
}
.list__func-items {
  position: absolute;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 0;
  left: -100%;
  width: 285px;
  display: none;
}
.list__item_active {
  background-color: var(--color-yellow);
}
.list__item a {
  text-decoration: none;
  color: #454240;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;

  padding: 10px 0;
  border-bottom: 1px solid #d7d7d7;
}
.list__item a:hover {
  color: #454240;
}
.detail.google_play > img {
  width: 170px;
}

@media (max-width: 992px) {
  .section-product__card {
    align-items: center;
  }
  .section-product__img img {
    width: 180px;
    height: 180px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-product__card {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
  }
  .section-product__img img {
    width: 180px;
    height: 180px;
    align-self: baseline;
  }
  .section-product__about {
    display: flex;
    flex: 1 1 auto;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.page .section-product .equipment-list__items {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.page .section-product .equipment-list__item {
}

@media (min-width: 1200px) {
  .about__cost-section .action .action__item {
    flex-basis: 33.333333333%;
  }
}