.shop-app {
  padding-bottom: 150px;
}
.shop-app a:not(.bs-link) {
  text-decoration: none;
}
.shop-app img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 768px) {
  .shop-app {
    padding-bottom: 80px;
  }
}
.shop-app.shop-app_no-pb {
  padding-bottom: 0;
}
.category-page__content {
  margin-top: 65px;
}
.category-page__banner {
  overflow: hidden;
  margin-bottom: 88px;
  border-radius: 25px;
}
.category-page__subcategory:not(:first-child) {
  margin-top: 96px;
}
.category-page__products {
  margin-top: 65px;
}
.category-page__subcategories .page-presentation__menu {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .category-page__content {
    margin-top: 24px;
  }
  .category-page__banner {
    margin-bottom: 32px;
    border-radius: 10px;
  }
  .category-page__subcategory:not(:first-child) {
    margin-top: 56px;
  }
  .category-page__products {
    margin-top: 24px;
  }
}
.category__name {
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  color: #404040;
  margin-bottom: 32px;
}
.category__products-count {
  color: #e77a12;
  font-size: 0.6em;
}
@media (max-width: 768px) {
  .category__name {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.products-list__item {
  grid-column: span 1;
  order: 2;
}
.products-list__item_big {
  grid-column: span 2;
  grid-row: span 2;
  order: 1;
}
.products-list_themes {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .products-list {
    gap: 20px;
  }
  .products-list__item {
    grid-column: span 2;
  }
  .products-list__item_big {
    grid-column: span 2;
    grid-row: span 1;
  }
  .products-list__item_theme {
    grid-column: span 1;
  }
}
@media (max-width: 650px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 400px) {
  .products-list__item_theme {
    grid-column: span 2;
  }
}
.product-item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.7;
  color: #404040;
  height: 100%;
  padding: 24px;
  background-color: #F8F7F7;
  border-radius: 20px;
}
.product-item__top {
  display: flex;
  align-items: center;
}
.product-item__image {
  flex-shrink: 0;
  max-width: 40px;
  max-height: 40px;
}
.product-item__name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: #404040;
  margin-left: 16px;
}
.product-item__name:hover {
  color: #828282;
}
.product-item__summary {
  font-size: 14px;
  margin-top: 16px;
}
.product-item__installs {
  margin-top: 8px;
}
.product-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.3;
  margin-top: auto;
  padding-top: 30px;
}
.product-item__prices {
  padding-right: 8px;
}
.product-item__price-block {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  color: #404040;
}
.product-item__price-block_bsclub {
  font-size: 18px;
  font-weight: 400;
  color: #828282;
}
.product-item__price-block .product-item__price-bsclub-caption {
  font-size: 13px;
  color: #e77a12;
  padding-left: 17px;
  background: url('../svg/icon.sprite.svg#crown') center / cover no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.product-item__price-block + .product-item__price-block {
  margin-top: 8px;
}
.product-item__price-caption {
  font-size: 14px;
  margin-left: 8px;
}
.product-item__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
}
.product-item__button svg {
  transform: rotate(-45deg);
}
.product-item_big .product-item__top {
  flex-direction: column;
  align-items: flex-start;
}
.product-item_big .product-item__image {
  max-width: 300px;
  max-height: 300px;
}
.product-item_big .product-item__name {
  margin-top: 32px;
  margin-left: 0;
}
.product-item_theme {
  align-items: center;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.product-item_theme .product-item__top {
  width: 100%;
  flex-direction: column;
}
.product-item_theme .product-item__image {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: initial;
  padding-bottom: 119%;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}
.product-item_theme .product-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-item_theme .product-item__name {
  margin-top: 24px;
  margin-left: 0;
}
.product-item_theme .product-item__price-block {
  justify-content: center;
}
.product-item_theme .product-item__price {
  font-weight: 500;
}
@media (max-width: 1023px) {
  .product-item {
    padding: 14px;
  }
  .product-item_big .product-item__top {
    flex-direction: row;
    align-items: center;
  }
  .product-item_big .product-item__name {
    margin-top: 0;
    margin-left: 16px;
  }
  .product-item_big .product-item__image {
    max-width: 40px;
    max-height: 40px;
  }
  .product-item_theme .product-item__image {
    border-radius: 15px;
  }
  .product-item_theme .product-item__bottom {
    padding-top: 8px;
  }
}
.product-page__top {
  display: flex;
  align-items: center;
}
.product-page__image {
  flex-shrink: 0;
  margin-right: 32px;
  box-shadow: 0px 4.5px 9px 0px rgba(0, 0, 0, 0.07), 0px 13.5px 31.5px 0px rgba(40, 40, 80, 0.1);
}
.product-page__content {
  margin-top: 64px;
}
@media (max-width: 900px) {
  .product-page__content {
    margin-top: 32px;
  }
  .product-page__image {
    display: none;
  }
}
.product__name {
  font-size: 32px;
  font-weight: 500;
}
.product__summary {
  margin-top: 8px;
}
.product__content {
  display: grid;
  grid-template-columns: 68% 32%;
  margin-top: 32px;
}
.product__images {
  padding-right: 40px;
}
.product__main {
  position: relative;
  grid-row: span 2;
}
.product__cart-wrapper {
  position: sticky;
  top: 50px;
}
.product__features {
  margin-top: 15px;
}
.product__info {
  position: relative;
  margin-top: 80px;
  padding-top: 24px;
  padding-right: 40px;
}
.product__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 40px ));
  height: 1px;
  background-color: #E0E0E0;
}
@media (max-width: 900px) {
  .product__name {
    font-size: 30px;
  }
  .product__content {
    grid-template-columns: 100%;
  }
  .product__main {
    flex-direction: column;
  }
  .product__images {
    padding-right: 0;
  }
  .product__main {
    margin-top: 48px;
  }
  .product__cart-wrapper {
    position: relative;
    top: 0;
  }
  .product__info {
    padding-top: 0;
    padding-right: 0;
  }
  .product__info::before {
    display: none;
  }
}
.product-images__video {
  display: none;
  overflow: hidden;
  border-radius: 15px;
}
.product-images__image-block {
  display: inline-block;
  overflow: hidden;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.product-images_video .product-images__video {
  display: block;
  padding-bottom: 55%;
}
.product-images_video .product-images__video img {
  top: 50%;
  height: auto;
  max-height: initial;
  transform: translateY(-50%);
}
.product-images_video .product-images__image-block {
  display: none;
}
.product-images__thumbs-wrapper {
  position: relative;
  margin-top: 24px;
  padding: 0 50px 0 5px;
}
.product-images__thumbs {
  padding-bottom: 10px;
  overflow: hidden;
}
.product-images__thumbs-list {
  display: flex;
}
.product-images__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 2px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.product-images__thumb_video {
  background-color: rgba(0, 0, 0, 0.9);
}
.product-images__thumbs-arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  transition: border 0.2s;
  transform: translateY(-50%);
}
.product-images__thumbs-arrow_disabled {
  opacity: 0;
  pointer-events: none;
}
.product-images__thumbs-arrow_prev {
  right: 100%;
  display: inline-block;
  background: svg('arrow-left', '[fill]:#777677') no-repeat 0 0;
  background-size: 12px 12px;
  background-position: center;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  width: 34px;
  height: 34px;
}
.product-images__thumbs-arrow_next {
  right: 0;
  display: inline-block;
  background: svg('arrow-right', '[fill]:#777677') no-repeat 0 0;
  background-size: 12px 12px;
  background-position: center;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
}
.product-images__thumbs-arrow:hover {
  border-color: #e77a12;
}
@media (max-width: 900px) {
  .product-images__thumbs-wrapper {
    position: relative;
    margin: 0 -15px;
    padding: 0 0 10px 0;
    overflow: hidden;
  }
  .product-images__thumbs {
    overflow: visible;
    padding: 0 15px;
    width: 90%;
  }
  .product-images__thumbs-arrows {
    display: none;
  }
}
.product-form {
  padding: 32px 24px;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
}
.product-form__sku-info {
  position: relative;
  vertical-align: middle;
  margin-left: 8px;
  z-index: 1;
}
.product-form__sku-info:hover svg {
  fill: #FF8F24;
}
.product-form__prices {
  margin-top: 20px;
}
.product-form__price-block {
  font-size: 32px;
  font-weight: 500;
}
.product-form__price-block_bsclub {
  font-size: 24px;
}
.product-form__price-block_bsclub .product-form__price {
  font-weight: 400;
}
.product-form__price-block .product-form__bsclub {
  color: #e77a12;
  margin-left: 8px;
  padding-left: 17px;
  background: url('../svg/icon.sprite.svg#crown') center / cover no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.product-form__price-block + .product-form__price-block {
  margin-top: 16px;
}
.product-form__price {
  font-weight: 500;
}
.product-form__price-caption {
  font-size: 14px;
  font-weight: 400;
  color: #828282;
  margin-left: 16px;
}
.product-form__price-caption_bsclub {
  font-size: 13px;
}
.product-form__buttons {
  margin-top: 28px;
}
.product-form__button-block .buy1click2-open-button {
  border-radius: 25px;
  font-size: 18px;
  height: 50px !important;
}
.product-form__button-block + .product-form__button-block {
  margin-top: 8px;
}
.product-form__button-block + .product-form__button-block_demo {
  text-align: center;
  margin-top: 24px;
}
.product-form__demo-link {
  display: inline-flex;
  align-items: center;
  color: #828282;
  font-weight: 600;
}
.product-form__demo-link::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  background: url('../svg/icon.sprite.svg#link') center / cover no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 600px) {
  .product-form__button-block .buy1click2-open-button {
    font-size: 16px;
    height: 44px !important;
  }
}
.toggle-skus {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.toggle-skus__toggle {
  display: inline-flex;
  justify-content: flex-start;
  width: 50px;
  height: 24px;
  margin: 0 24px;
  padding: 5px;
  background-color: #E0E0E0;
  border-radius: 15px;
}
.toggle-skus__toggle::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #404040;
}
.toggle-skus__control {
  display: none;
}
.toggle-skus__label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
.toggle-skus__name {
  font-size: 14px;
}
.toggle-skus__control:nth-of-type(1):checked ~ .toggle-skus__toggle {
  justify-content: flex-start;
}
.toggle-skus__control:nth-of-type(1):checked ~ .toggle-skus__name:nth-of-type(1) {
  font-weight: 500;
}
.toggle-skus__control:nth-of-type(1):checked ~ .toggle-skus__label:nth-of-type(2) {
  display: block;
}
.toggle-skus__control:nth-of-type(2):checked ~ .toggle-skus__toggle {
  justify-content: flex-end;
}
.toggle-skus__control:nth-of-type(2):checked ~ .toggle-skus__name:nth-of-type(2) {
  font-weight: 500;
}
.toggle-skus__control:nth-of-type(2):checked ~ .toggle-skus__label:nth-of-type(1) {
  display: block;
}
.features__name,
.features__value {
  vertical-align: top;
  padding: 9px 0;
}
.features__name a,
.features__value a {
  color: #e77a12;
  border-bottom: 1px dashed;
}
.features__name a:hover,
.features__value a:hover {
  color: #FF8F24;
  border-color: transparent;
}
.features__name {
  color: #828282;
  width: 50%;
  padding-right: 8px;
}
.features__highlighted {
  color: #e77a12;
}
@media (max-width: 900px) {
  .features {
    font-size: 14px;
  }
}
.product-tabs__tabs-wrapper {
  overflow-x: auto;
  max-width: 100%;
}
.product-tabs__tabs {
  display: inline-flex;
  gap: 24px;
}
.product-tabs__tab {
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
}
.product-tabs__tab.active {
  font-weight: 500;
  background-color: #F8F7F7;
  cursor: initial;
}
.service-page__header {
  padding: 186px 0 35px;
  background-image: url('/wa-data/public/site/themes/bs/images/services-seo-intro-background.png');
}
.service-page__header .services-intro__prices {
  max-width: initial;
}
.service-page__header .services-intro__btn {
  color: #fff;
}
.service-page__main {
  padding: 60px 0;
}
.service-page__block + .service-page__block {
  margin-top: 40px;
}
.service-page__btn-block {
  text-align: center;
  margin-top: 28px;
}
.service-page__products {
  padding-top: 64px;
}
.service-page__products:not(:last-child) {
  padding-bottom: 64px;
}
.service-page__products-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
  color: #404040;
  max-width: 1310px;
  margin: 0 auto 72px;
  padding-left: 15px;
  padding-right: 15px;
}
.container .service-page__products-title {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .service-page__products-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .service-page__header {
    padding: 100px 0 35px;
  }
}
@media screen and (max-width: 550px) {
  .service-page__header {
    background-image: url('/wa-data/public/site/themes/bs/images/services-seo-intro-background-mobile.png');
  }
}
.service-popup.mfp-content {
  max-width: 550px;
}
.service-popup__title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
  color: #404040;
}
@media (max-width: 991px) {
  .service-popup__title {
    font-size: 20px;
  }
}
.products-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1310px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.products-services__item {
  width: calc((50% - 12px));
}
.container .products-services {
  padding-left: 0;
  padding-right: 0;
}
.product-service {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #404040;
  padding: 24px 40px 58px;
  background: #ffffff url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="114" height="93" viewBox="0 0 114 93" fill="none"><ellipse cx="44.8363" cy="47.6725" rx="44.8363" ry="45.3277" fill="%23FDF2E8"/><ellipse opacity="0.5" cx="90.0621" cy="59.0051" rx="23.5777" ry="23.8361" fill="%23E0E0E0"/><ellipse opacity="0.5" cx="18.1696" cy="12.1134" rx="11.9821" ry="12.1134" fill="%23E0E0E0"/></svg>') no-repeat 16px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
}
.product-service__cms-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  height: 28px;
  margin-bottom: 24px;
}
.product-service__cms {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.product-service__cms::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-right: 5px;
  background-color: #777677;
  border-radius: 50%;
}
.product-service__cms_ss::before {
  background: url('../svg/icon.sprite.svg#cms-shop-script-logo') center / cover no-repeat;
  background-size: 28px 28px;
  width: 28px;
  height: 28px;
}
.product-service__cms_bitrix {
  font-weight: 700;
}
.product-service__cms_bitrix::before {
  background: url('../svg/icon.sprite.svg#cms-bitrix-logo') center / cover no-repeat;
  background-size: 28px 28px;
  width: 28px;
  height: 28px;
}
.product-service__cms_other::before {
  background: url('../svg/icon.sprite.svg#cms') center / cover no-repeat;
  background-size: 28px 28px;
  width: 28px;
  height: 28px;
}
.product-service .product-service__cms-tooltip {
  margin-left: 4px;
  width: 12px;
  height: 12px;
  font-weight: 400;
  background-size: 12px;
}
.product-service__main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-service__main_image {
  padding-left: 120px;
}
.product-service__image-box {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 96px;
  max-height: 96px;
}
.product-service__name {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 32px;
}
.product-service__name a {
  color: #000000;
}
.product-service__summary {
  color: #404040;
  line-height: 1.6;
  margin-bottom: 24px;
}
.product-service__summary p + p {
  margin-top: 8px;
}
.product-service__children {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.product-service__child-badge {
  display: inline;
  font-size: 11px;
  color: #ffffff;
  margin-left: 4px;
}
.product-service__child-badge > * {
  display: inline;
  padding: 2px 8px;
  border-radius: 15px;
}
.product-service__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.product-service__info {
  margin-right: 16px;
}
.product-service__price-text {
  display: inline-block;
  color: #404040;
  margin-bottom: 4px;
}
.product-service__price-text_mb {
  margin-bottom: 8px;
}
.product-service__prices {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.product-service__price,
.product-service__compare-price {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}
.product-service__compare-price {
  text-decoration: line-through;
}
.product-service__price_notice:after {
  content: " *";
  color: #e77a12;
}
.product-service__price_highlighted {
  padding: 4px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}
.product-service__term {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #777677;
  margin-top: 24px;
}
.product-service__buttons-block {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
}
.product-service__button {
  flex-grow: 1;
  max-width: 210px;
  padding: 0 24px;
}
.product-service__offer {
  color: #777677;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 16px;
}
.product-service__offer:before {
  content: "* ";
  color: #e77a12;
}
.product-service__offer a {
  color: #e77a12;
  text-decoration: underline;
}
.product-service__offer a_gray {
  color: #777677;
}
.product-service__offer a_black {
  color: #404040;
}
.product-service__offer a_not-decorated {
  text-decoration: none;
}
.product-service__offer a:hover {
  color: #FF8F24;
  text-decoration: none;
}
.product-service .info-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.product-service .info-box li {
  margin-bottom: 0;
}
.product-service .info-box p {
  line-height: 1.6;
}
@media (min-width: 1500px) {
  .product-service .product-service__cms-tooltip .tooltip-content::before {
    bottom: initial;
    left: 100%;
    border-top-color: transparent;
    border-right-color: #ffffff;
    border-left: 0;
  }
  .product-service .product-service__cms-tooltip .tooltip-content__text {
    top: -50px;
    right: initial;
    bottom: initial;
    left: 100%;
    margin-right: 0;
    margin-left: 4px;
    width: 250px;
  }
}
@media (max-width: 991px) {
  .products-services__item {
    width: 100%;
  }
  .product-service {
    padding: 24px;
  }
  .product-service__cms-list {
    gap: 16px;
    margin-bottom: 16px;
  }
  .product-service__name {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .product-service__summary {
    margin-bottom: 32px;
  }
  .product-service__summary p + p {
    margin-top: 12px;
  }
  .product-service__price {
    font-size: 24px;
  }
  .product-service__term {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .product-service {
    padding: 16px;
  }
  .product-service__cms-list {
    height: 14px;
  }
  .product-service__cms-list_count_3 .product-service__cms:first-child .tooltip-content__text {
    right: auto;
    margin-right: 0;
    transform: translateX(-50%);
  }
  .product-service__cms {
    font-size: 10px;
    line-height: 14px;
  }
  .product-service__cms::before {
    width: 14px;
    height: 14px;
    background-size: 14px;
  }
  .product-service__main_image {
    padding-left: 0;
  }
  .product-service__image-box {
    position: relative;
    max-width: 64px;
    max-height: 64px;
    margin-right: 16px;
  }
  .product-service__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-service__info {
    margin-bottom: 16px;
    margin-right: 0;
  }
  .product-service__button {
    max-width: initial;
  }
}
.checkout-page__header {
  font-size: 44px;
  text-align: center;
  margin-bottom: 60px;
}
.step__wrapper {
  padding: 64px 0;
}
.checkout-result {
  text-align: center;
}
.checkout-result__buttons {
  margin-top: 60px;
}
