.utility__block {
  background-color: var(--color-blue-2);
}
.tabs-panel__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .tabs-panel__tabs {
    display: none;
  }
}
.tabs-panel__tab {
  padding: 14px 18px;
  background-color: var(--color-gray-1);
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
  font-weight: var(--font-weight-medium);
  transition: var(--transition);
}
.tabs-panel__tab._active {
  background-color: var(--color-blue-2);
  color: var(--color-white-2);
}
@media (hover: hover) {
  .tabs-panel__tab:hover {
    color: var(--color-white-2);
    background-color: var(--color-blue-3);
    transition: var(--transition);
  }
}
.tabs-panel__item {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.tabs-panel__item._active {
  display: flex;
}
@media screen and (max-width: 900px) {
  .tabs-panel__item {
    display: flex;
    border: var(--border-blue-5);
    padding: 8px;
    margin-bottom: 16px;
    gap: 0;
    transition: border var(--transition);
  }
  .tabs-panel__item._active {
    border: var(--border-black);
    transition: border var(--transition);
  }
  .tabs-panel__item._active .tabs-panel__item-head-icon {
    transform: rotate(270deg);
  }
}
.tabs-panel__item-content-container {
  height: auto;
}
@media screen and (max-width: 900px) {
  .tabs-panel__item-content-container {
    height: 0;
    overflow: hidden;
    transition: height var(--transition);
  }
}
.tabs-panel__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .tabs-panel__item-content {
    padding: 16px 8px;
    margin-top: 8px;
    gap: 32px;
    border-top: var(--border-blue-5);
  }
}
.tabs-panel__item-image {
  width: 100%;
  border: var(--border-blue-5);
}
.tabs-panel__item-cards {
  display: flex;
  border: var(--border-blue-5);
  border-right: none;
}
@media screen and (max-width: 900px) {
  .tabs-panel__item-cards {
    flex-direction: column;
    gap: 24px;
    border: none;
  }
}
.tabs-panel__item-card {
  padding: 32px;
  border-right: var(--border-blue-5);
  flex: 1 1 0;
}
@media screen and (max-width: 900px) {
  .tabs-panel__item-card {
    padding: 0;
    border: none;
  }
}
.tabs-panel__item-head {
  display: none;
}
@media screen and (max-width: 900px) {
  .tabs-panel__item-head {
    display: block;
    padding: 16px 8px;
  }
}
.tabs-panel__item-head-title {
  margin-bottom: 12px;
}
.tabs-panel__item-head-icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  border: var(--border-blue-3-bold);
  transform: rotate(90deg);
  transition: transform var(--transition);
}
.table__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 900px) {
  .table__container {
    overflow-x: scroll;
    margin: 16px -24px;
  }
}
.table__container::-webkit-scrollbar {
  display: none;
}
.table__content {
  width: 100%;
  background-color: var(--color-gray-1);
}
@media screen and (max-width: 900px) {
  .table__content {
    min-width: 900px;
    margin: 0 24px;
  }
}
.table__head {
  padding: 24px 32px;
  text-align: left;
  transition: var(--transition);
}
@media screen and (max-width: 900px) {
  .table__head {
    padding: 8px;
  }
}
.table__cell {
  padding: 24px 32px;
  transition: var(--transition);
}
@media screen and (max-width: 900px) {
  .table__cell {
    padding: 8px;
  }
}
.table__cell._blue {
  background-color: #e1ecfa;
}
.table__scroll-thumb {
  height: 100%;
  width: 50px;
  background: var(--color-gray-2);
  border-radius: 4px;
  position: absolute;
  left: 0;
}
.table__scrollbar {
  height: 8px;
  background: #edeff6;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .table__scrollbar {
    display: none;
  }
}
@media (hover: hover) {
  .table__row:hover .table__head {
    background-color: var(--color-blue-5);
    transition: var(--transition);
  }
  .table__row:hover .table__cell {
    background-color: var(--color-blue-5);
    transition: var(--transition);
  }
}
.video__container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video__iframe {
  border: 0;
}
.other-products__slider-wrapper {
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  .other-products__slider-wrapper {
    flex-wrap: wrap;
  }
}
.other-products__title-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media screen and (max-width: 900px) {
  .other-products__title-container {
    margin-bottom: 40px;
  }
}
.other-products__slide {
  padding: 32px;
  background-color: var(--color-blue-2);
  border: var(--border-blue-6);
  color: var(--color-white-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  transition: all var(--transition);
}
@media screen and (max-width: 900px) {
  .other-products__slide {
    margin-bottom: 16px;
    padding: 24px 16px;
  }
}
@media (hover: hover) {
  .other-products__slide:hover {
    background-color: var(--color-white);
    color: var(--color-blue-2);
    border: var(--border-blue-5);
    transition: all var(--transition);
  }
}
.other-products__slide-content {
  margin-bottom: 28px;
}
@media screen and (max-width: 900px) {
  .other-products__slide-content {
    margin-bottom: 20px;
  }
}
.other-products__slide-title {
  margin-bottom: 16px;
}
.other-products__slide-text {
  margin: 0;
}
.other-products__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .other-products__arrows {
    display: none;
  }
}
