@charset "UTF-8";
.modal-successful .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem;
  border-radius: 0.8rem; }
  @media (max-width: 1023px) {
    .modal-successful .modal-content {
      padding: 40px 14px;
      border-radius: 8px; } }

.modal-successful__descr {
  color: #6F7682;
  max-width: 34rem;
  margin: 0 auto 3rem; }
  @media (max-width: 1023px) {
    .modal-successful__descr {
      margin-bottom: 24px;
      max-width: 260px; } }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.modal-open {
  overflow: hidden; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0; }

.fade {
  transition: opacity 0.15s linear; }

.modal-narrow .modal-dialog {
  max-width: 60rem; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none; }
  @media (max-width: 575px) {
    .modal-dialog {
      padding: 0 10px; } }

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px); }

.modal-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem; }
  .modal-close .icon {
    transition: all ease 0.3s; }
  @media (min-width: 768px) {
    .modal-close {
      cursor: pointer; }
      .modal-close:hover .icon {
        opacity: 0.7;
        transform: rotate(180deg); } }

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none; } }

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none; }

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem); }

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: ""; }

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: .4rem;
  outline: 0;
  padding: 4.8rem 6.4rem; }
  @media (max-width: 1023px) {
    .modal-content {
      border-radius: 4px;
      padding: 40px 24px; } }
  @media (max-width: 575px) {
    .modal-content {
      padding: 40px 14px 24px; } }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100%;
  height: 100%;
  background-color: #000; }

.modal-backdrop.fade {
  opacity: 0; }

.modal-backdrop.show {
  opacity: 0.5; }

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0px;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }

.modal-title {
  font-weight: 500;
  margin-bottom: 3rem; }
  @media (max-width: 1023px) {
    .modal-title {
      margin-bottom: 20px; } }

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto; }

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.modal-dialog {
  margin: 1.75rem auto; }

.modal-dialog-scrollable {
  max-height: calc(100% - 3.5rem); }

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 3.5rem); }

.modal-dialog-centered {
  min-height: calc(100% - 3.5rem); }

.modal-dialog-centered::before {
  height: calc(100vh - 3.5rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content; }

.modal-xs {
  max-width: 300px; }

@media (min-width: 768px) {
  .modal-md,
  .modal-lg {
    max-width: 800px; } }

@media (min-width: 1660px) {
  .modal-lg {
    max-width: 1140px; } }

.modal-one-click__product {
  margin-bottom: 3rem;
  border-radius: .4rem;
  background-color: #fff;
  border: 1px solid #D8D8D8;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 6rem auto 13rem;
  gap: 1.6rem; }
  @media (max-width: 1023px) {
    .modal-one-click__product {
      grid-template-columns: auto 1fr;
      grid-template-areas: 'img title'  'img code' 'img price';
      gap: 0 16px;
      padding: 12px;
      border-radius: 4px;
      margin-bottom: 16px; } }
  @media (max-width: 1023px) {
    .modal-one-click__product-img {
      grid-area: img; } }
  .modal-one-click__product-img .lazy-img-wrap {
    width: 6rem;
    height: 6rem; }
    @media (max-width: 1023px) {
      .modal-one-click__product-img .lazy-img-wrap {
        width: 60px;
        height: 60px; } }
    .modal-one-click__product-img .lazy-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .modal-one-click__product-title {
    font-weight: 500;
    margin-bottom: 1.2rem; }
    @media (max-width: 1023px) {
      .modal-one-click__product-title {
        grid-area: title;
        margin-bottom: 8px; } }
  .modal-one-click__product-code {
    display: flex;
    gap: 2.4rem;
    font-weight: 400;
    color: #6F7682; }
    @media (max-width: 1023px) {
      .modal-one-click__product-code {
        grid-area: code;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 16px; } }
  .modal-one-click__product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .2rem; }
    @media (max-width: 1023px) {
      .modal-one-click__product-price {
        grid-area: price;
        flex-wrap: wrap;
        gap: 4px;
        flex-direction: row;
        align-items: baseline; } }
    .modal-one-click__product-price-old {
      color: #6F7682; }

.modal-one-click__form {
  display: flex;
  flex-direction: column; }
  .modal-one-click__form .btn {
    align-self: center; }
    @media (max-width: 575px) {
      .modal-one-click__form .btn {
        width: 100%;
        margin-top: 10px; } }

.modal-one-click__footer {
  color: #6F7682;
  margin-top: 3rem;
  align-self: center;
  max-width: 36rem;
  font-weight: 400; }
  @media (max-width: 767px) {
    .modal-one-click__footer {
      max-width: none;
      margin-top: 24px;
      line-height: 1.3; } }

.modal-one-click__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  padding-top: 75px;
  text-align: center;
  max-width: 388px;
  margin: auto; }
  .modal-one-click__success-title {
    color: #379f2f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px; }
    @media (max-width: 575px) {
      .modal-one-click__success-title {
        font-size: 16px; } }
  .modal-one-click__success-descr {
    font-size: 16px;
    margin-bottom: 34px; }
    @media (max-width: 575px) {
      .modal-one-click__success-descr {
        font-size: 12px; } }
  @media (max-width: 575px) {
    .modal-one-click__success-image {
      max-width: 70px; } }
  .modal-one-click__success-image svg {
    height: auto; }

.modal-one-click .modal-close {
  z-index: 10; }

@media (max-width: 575px) {
  .modal-mob-fullscreen.fade .modal-dialog {
    transform: none; }
  .modal-mob-fullscreen .modal-dialog {
    max-width: none;
    align-items: flex-start;
    margin: 0px;
    height: 100%; }
  .modal-mob-fullscreen .modal-content {
    border-radius: 0px;
    border: none;
    padding-top: 60px; }
  .modal-mob-fullscreen .modal-top {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    left: 0;
    right: 0;
    padding: 0px 19px;
    background: linear-gradient(180deg, #fff 54.17%, rgba(255, 255, 255, 0) 100%);
    z-index: 30; }
    .modal-mob-fullscreen .modal-top .modal-close {
      position: static;
      margin-left: auto; }
    .modal-mob-fullscreen .modal-top .modal-header {
      margin-left: auto; }
  .modal-mob-fullscreen.modal-cities .modal-top {
    background-color: #fff; }
    .modal-mob-fullscreen.modal-cities .modal-top:after {
      position: absolute;
      content: "";
      left: 20px;
      right: 20px;
      height: 1px;
      background-color: #F8F8F8;
      bottom: 0; }
  .modal-mob-fullscreen.modal-cities .modal-body {
    margin-top: 16px; } }

.modal-product-sku__item:not(:last-child) {
  margin-bottom: 5rem; }
  @media (max-width: 1023px) {
    .modal-product-sku__item:not(:last-child) {
      margin-bottom: 26px; } }

.modal-product-sku__item-title {
  margin-bottom: 2.4rem; }
  @media (max-width: 1023px) {
    .modal-product-sku__item-title {
      margin-bottom: 14px; } }

.modal-product-sku__item-desc {
  margin-bottom: 1.8rem;
  color: #6F7682; }
  @media (max-width: 1023px) {
    .modal-product-sku__item-desc {
      margin-bottom: 20px; } }

.modal-product-sku__item-grid {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap; }
  @media (max-width: 1023px) {
    .modal-product-sku__item-grid {
      gap: 20px 2px; } }

.modal-product-sku__sku {
  flex-shrink: 0;
  max-width: 6.4rem;
  color: #6F7682; }
  @media (max-width: 1023px) {
    .modal-product-sku__sku {
      max-width: 64px; } }
  .modal-product-sku__sku-mod {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 0.4rem;
    margin-bottom: .8rem; }
    @media (max-width: 1023px) {
      .modal-product-sku__sku-mod {
        width: 40px;
        height: 40px;
        margin-bottom: 6px; } }
  .modal-product-sku__sku-name {
    font-weight: 400; }

.modal-product-sku .modal-content {
  padding: 6rem 2.8rem 6rem 6rem;
  overflow: hidden; }
  @media (max-width: 1023px) {
    .modal-product-sku .modal-content {
      padding: 40px 0 40px 16px; } }

.modal-product-sku .modal-close {
  z-index: 10;
  top: 2rem;
  right: 2rem; }

.modal-product-sku__title {
  margin-bottom: 4.2rem; }

.modal-product-sku__content {
  padding-right: 1.6rem;
  overflow: auto;
  max-height: calc(100vh - 30rem); }
  .modal-product-sku__content::-webkit-scrollbar {
    width: 3px;
    /* ширина для вертикального скролла */
    height: 3px;
    /* высота для горизонтального скролла */
    border-radius: 0px;
    background-color: #D8D8D8; }
  .modal-product-sku__content::-webkit-scrollbar-thumb {
    background-color: #6F7682;
    border-radius: 10em; }
    .modal-product-sku__content::-webkit-scrollbar-thumb:hover {
      background-color: #6F7682; }

.modal-product-sku .modal-dialog {
  max-width: 100rem; }

.modal--v3 .modal-content {
  padding: 0px; }

.modal--v3 .modal-header {
  padding: 30px;
  background-color: #f2f5f9;
  display: flex;
  justify-content: center; }
  @media (max-width: 575px) {
    .modal--v3 .modal-header {
      padding: 20px; } }

.modal--v3 .modal-title {
  margin-bottom: 0px; }

.modal--v3 .modal-body {
  padding: 20px 30px; }
  @media (max-width: 575px) {
    .modal--v3 .modal-body {
      padding: 20px; } }

.modal-success {
  padding: 34px 30px;
  background-color: #FAFAFB;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center; }
  @media (max-width: 575px) {
    .modal-success {
      padding: 34px 10px; } }

.modal-project__form {
  display: flex;
  flex-direction: column; }

.modal-project .btn {
  margin-top: 1rem;
  align-self: center; }
  @media (max-width: 575px) {
    .modal-project .btn {
      margin-top: 8px;
      width: 100%; } }

.modal-project .form-desc {
  color: #6F7682;
  text-align: center;
  align-self: center;
  margin-top: 3rem; }
  @media (max-width: 575px) {
    .modal-project .form-desc {
      margin-top: 20px; } }

.modal-project .form-group--checkbox {
  margin-bottom: 2.4rem; }
  @media (max-width: 1023px) {
    .modal-project .form-group--checkbox {
      margin-bottom: 20px; } }

.modal-project .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem; }
  @media (max-width: 767px) {
    .modal-project .form-row {
      grid-template-columns: 100%;
      gap: 16px; } }

.modal-product .modal-dialog {
  max-width: 95rem; }

.modal-product__body {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: 'image info' 'image filter';
  gap: 0 3.6rem; }
  @media (max-width: 1023px) {
    .modal-product__body {
      gap: 0 16px;
      grid-template-areas: 'image info' 'filter filter'; } }

.modal-product__img {
  grid-area: image; }
  .modal-product__img .lazy-img-wrap {
    width: 26rem;
    height: 18rem; }
    @media (max-width: 575px) {
      .modal-product__img .lazy-img-wrap {
        width: 86px;
        height: 86px; } }
    .modal-product__img .lazy-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain; }

.modal-product__info {
  grid-area: info;
  margin-bottom: 2.2rem; }
  @media (max-width: 1023px) {
    .modal-product__info {
      margin-bottom: 16px; } }

.modal-product__title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 2rem; }
  @media (max-width: 1023px) {
    .modal-product__title {
      font-size: 16px;
      margin-bottom: 16px; } }

.modal-product__price {
  margin-bottom: 1.8rem; }
  @media (max-width: 1023px) {
    .modal-product__price {
      margin-bottom: 16px; } }

.modal-product__control {
  display: flex;
  align-items: center;
  gap: 2rem; }
  @media (max-width: 1023px) {
    .modal-product__control {
      gap: 16px; } }
  @media (max-width: 575px) {
    .modal-product__control {
      flex-wrap: wrap; } }

.modal-product__counter {
  max-width: 17rem; }
  @media (max-width: 1023px) {
    .modal-product__counter {
      max-width: 130px; } }

.modal-product__filter {
  overflow: hidden;
  grid-area: filter; }
  .modal-product__filter .catalog-targets {
    width: 100%;
    display: flex;
    gap: 1rem; }
    @media (max-width: 1023px) {
      .modal-product__filter .catalog-targets {
        flex-direction: column;
        gap: 10px; }
        .modal-product__filter .catalog-targets__list {
          margin-bottom: 0; } }
    .modal-product__filter .catalog-targets__subtitle {
      min-width: 10rem;
      line-height: 1; }
      @media (max-width: 1023px) {
        .modal-product__filter .catalog-targets__subtitle {
          margin-bottom: 0; } }
  @media (max-width: 575px) {
    .modal-product__filter .btn {
      display: inline-flex;
      margin-top: 12px;
      width: 100%; } }
  .modal-product__filter .product-sku__list {
    padding-left: .8rem; }
    @media (max-width: 1023px) {
      .modal-product__filter .product-sku__list {
        padding-left: 8px; } }

.modal-product__success .modal-product__title {
  margin-bottom: 0;
  margin-right: auto;
  max-width: 400px; }
  @media (max-width: 575px) {
    .modal-product__success .modal-product__title {
      width: 100%;
      max-width: none; } }

.modal-product__summary {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 3.4rem;
  border-bottom: 1px solid #D8D8D8; }
  @media (max-width: 1023px) {
    .modal-product__summary {
      margin-bottom: 24px;
      padding-bottom: 24px; } }
  @media (max-width: 575px) {
    .modal-product__summary {
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between; } }

.modal-product__count {
  color: #6F7682;
  margin-right: 1rem;
  font-weight: 400;
  white-space: nowrap;
  margin-left: auto; }
  @media (max-width: 1023px) {
    .modal-product__count {
      margin-right: 10px; } }
  @media (max-width: 575px) {
    .modal-product__count {
      margin-left: 0; } }

.modal-product__total {
  font-weight: 500;
  white-space: nowrap; }

.modal-product__desc {
  text-align: center;
  margin-bottom: 2.4rem; }
  @media (max-width: 1023px) {
    .modal-product__desc {
      margin-bottom: 20px; } }

.modal-product__footer {
  display: flex;
  gap: 2rem;
  justify-content: center; }
  @media (max-width: 1023px) {
    .modal-product__footer {
      gap: 12px; } }
  @media (max-width: 575px) {
    .modal-product__footer {
      flex-direction: column; }
      .modal-product__footer .btn {
        width: 100%; } }

.modal-calc .modal-title {
  text-align: center;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto; }

.modal-calc__desc {
  max-width: 46rem;
  margin: 0 auto 2.4rem;
  text-align: center; }
  @media (max-width: 1023px) {
    .modal-calc__desc {
      margin-bottom: 24px;
      max-width: 460px; } }
  @media (max-width: 767px) {
    .modal-calc__desc {
      max-width: none;
      padding-bottom: 24px;
      border-bottom: 1px solid #D8D8D8; } }

.modal-calc__form {
  display: flex;
  align-items: center;
  flex-direction: column; }

@media (min-width: 768px) {
  .modal-calc .form-group {
    margin-bottom: 0; } }

.modal-calc .form-group--checkbox {
  margin-bottom: 2.4rem; }
  @media (max-width: 1023px) {
    .modal-calc .form-group--checkbox {
      margin-bottom: 20px; } }

.modal-calc .form-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem; }
  @media (max-width: 1023px) {
    .modal-calc .form-row {
      gap: 16px;
      margin-bottom: 20px; } }
  @media (max-width: 767px) {
    .modal-calc .form-row {
      gap: 0;
      grid-template-columns: 100%;
      margin-bottom: 24px; } }

@media (max-width: 575px) {
  .modal-calc .btn {
    width: 100%; } }
