

/* Start:/local/templates/main/components/bitrix/catalog.section/products/style.css?17780624691588*/
.products__container {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
}
.products__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.products__title-text {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
}
.products__title-link {
  font-weight: 500;
  font-size: 18px;
  color: #0364ED;
  text-decoration: none;
}
.products__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(10px, 2vw, 40px);
  justify-content: space-between;
  margin-bottom: 30px;
}
.products__items.list {
  grid-template-columns: repeat(1, 1fr);
}
.products-lazy {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(13, 77, 163, 0.2);
  color: #484F55;
  margin-bottom: 30px;
}

.empty-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.empty-section__icon {
  margin-bottom: 24px;
}
.empty-section__icon svg {
  opacity: 0.7;
}
.empty-section__title {
  font-size: 24px;
  font-weight: 600;
  color: #0364ED;
  margin-bottom: 16px;
}
.empty-section__text {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 32px;
}
.empty-section__button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0364ED;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.empty-section__button:hover {
  background-color: #0253d1;
}

@media (max-width: 578px) {
  .products__items {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
/* End */


/* Start:/local/templates/main/components/bitrix/catalog.item/main/style.css?17840215006535*/
.product-item-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.btn.popup-button-close {
  background: #F3F6FA;
  color: #484F55;
}

.popup-window.popup-window-with-titlebar {
  padding: 15px 20px;
  border-radius: 8px;
}

.popup-window .popup-window-titlebar {
  text-align: center;
}

.popup-window .popup-window-titlebar-text {
  color: inherit;
  padding: 0;
  font-size: clamp(18px, 3vw, 22px);
}

.popup-window-content {
  max-width: 464px;
  font-size: clamp(16px, 3vw, 18px);
  margin: 0;
  padding: 0;
}

.popup-window-content p {
  margin: 0;
}

.popup-window-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.popup-window-buttons:has(> *:only-child) {
  justify-content: center;
}

.product-item {
  background: #FFFFFF;
  padding-bottom: 3px;
  transition: all 0.3s ease-out;
  height: 100%;
  font-size: clamp(12px, 3vw, 16px);
}

.product-item__img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: scale-down;
}

.product-item__inner {
  min-height: clamp(130px, 15vw, 260px);
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item__price-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.product-item__price-current {
  font-size: 18px;
}

.product-item__price-old {
  font-size: 14px;
  color: #484F55;
  text-decoration: line-through;
}

.product-item__tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-item__tag {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: clamp(14px, 3vw, 16px);
  padding: 5px 8px;
  border-radius: 8px;
}

.product-item__tag--rec {
  background: #E6ECF5;
  color: #0364ED;
}

.product-item__tag--hit {
  color: #fff;
  background: #0364ED;
}

.product-item__tag--new {
  background: linear-gradient(227.23deg, #BD0B02 3.6%, #F70A09 100%);
  color: #fff;
}

.product-item__title {
  font-size: clamp(12px, 3vw, 21px);
  font-weight: 700;
  margin-bottom: 16px;
}

.product-item__title a {
  text-decoration: none;
  color: inherit;
}

.product-item:hover {
  box-shadow: 0px 0px 8px rgba(13, 77, 163, 0.2);
}

.product-item__compare {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: 500;
  font-size: 18px;
  background: #F3F6FA;
  border-radius: 8px;
  transition: all 0.3s ease-out;
}

.product-item__compare:has(.product-item__input:checked) {
  opacity: 1;
  background: #0364ED;
  color: #fff;
}

.product-item__compare:has(.product-item__input:checked) svg path {
  stroke: #fff;
}

.product-item__btns {
  margin-top: auto;
}

.product-item .catalog__list-item {
  margin-bottom: clamp(10px, 4vw, 20px);
}

.product-item__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 16px;
}

.product-item__list-item {
  display: flex;
  justify-content: space-between;
}

.product-item__list-dots {
  flex: 1;
  border-bottom: 1px dashed #000000;
  margin: 0 4px 3px;
}

.product-item__item {
  display: flex;
  gap: clamp(8px, 3vw, 16px);
  padding: 10px;
  background: white;
  font-size: clamp(12px, 3vw, 16px);
}

.product-item__item-btns {
  display: flex;
  gap: clamp(8px, 3vw, 16px);
  justify-content: flex-end;
}

.product-item__item-btn {
  cursor: pointer;
  display: inline-block;
  color: #0F7EDA;
  padding: clamp(5px, 2vw, 8px) clamp(9px, 2vw, 14px);
  border: 1px solid #0F7EDA;
  filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.07));
  border-radius: clamp(6px, 3vw, 10px);
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
}

.product-item__item-btn--buy {
  background-color: #0F7EDA;
}

.product-item__item-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-item__item-btn svg {
  width: clamp(12px, 3vw, 18px);
  height: clamp(12px, 3vw, 18px);
}

.product-item:not(.list) {
  display: flex;
  flex-direction: column;
}

.product-item:not(.list) .product-item__price-container {
  margin-bottom: 15px;
}

.product-item:not(.list) .product-item__buy {
  display: none;
  position: absolute;
  right: 0;
  top: -100%;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background: #F70A09;
  border-radius: 8px;
  margin-left: auto;
  transition: all 0.3s ease-out;
}

.product-item:not(.list) .product-item__buy svg path {
  stroke: #FFFFFF;
}

.product-item:not(.list) .product-item__compare {
  width: 34px;
  height: 34px;
}

.product-item:not(.list) .product-item__compare input {
  display: none;
}

.product-item:not(.list) .product-item__compare svg {
  display: block;
  width: 17px;
  height: 15px;
}

.product-item:not(.list) .product-item__percent {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3DAA3B;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  padding: 5px 8px;
}

@media (max-width: 992px) {
  .product-item {
    padding: 20px;
  }

  .product-item.list {
    flex-wrap: wrap;
  }

  .product-item.list .product-item__description {
    width: 49%;
    flex-grow: 1;
  }

  .product-item.list .product-item__inner {
    width: 49%;
    margin-left: auto;
    margin-right: auto;
  }

  .product-item.list .product-item__title {
    min-height: unset;
  }

  .product-item.list .product-item__compare {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 10px;
    margin-left: auto;
  }

  .product-item.list .product-item__info {
    margin-left: auto;
  }

  .product-item.list .product-item__price-container {
    justify-content: flex-end;
  }

  .product-item__price-current {
    font-size: 20px;
  }

  .product-item:not(.list) .product-item__buy {
    opacity: 1;
    width: 40px;
    height: 40px;
  }

  .product-item__buy svg {
    width: 24px;
  }
}

@media (max-width: 768px) {
  .product-item.list {
    gap: 20px;
  }

  .product-item.list .product-item__description {
    width: 60%;
  }

  .product-item__compare {
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .product-item {
    padding: 10px;
  }

  .product-item__buy svg {
    width: 24px;
  }

  .product-item:not(.list) .product-item__buy {
    width: 40px;
    height: 40px;
  }

  .popup-window-buttons .btn {
    width: 100%;
  }
}
/* End */


/* Start:/local/templates/main/components/bitrix/form.result.new/callback/style.css?17774697062466*/
.callback-form__title {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  margin-top: 0;
}
.callback-form__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.callback-form__item form {
  width: 100%;
  color: #1C2126;
}
.callback-form__field {
  width: 100%;
}
.callback-form__field .callback-form-input {
  width: 100%;
  padding: clamp(10px, 3vw, 15px);
  border: 1px solid #ddd;
  background: #FFFFFF;
  border-radius: 8px;
  font-size: clamp(13px, 3vw, 16px);
  color: #484F55;
}
.callback-form__field .callback-form-input:focus {
  border-color: #007bff;
  outline: none;
}
.callback-form__file {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}
.callback-form__file-input {
  display: none;
}
.callback-form__file-btn {
  padding: clamp(10px, 3vw, 15px);
  border: 1px solid #0F7EDA;
  font-weight: 700;
  background: #FFFFFF;
  border-radius: 8px;
  font-size: clamp(13px, 3vw, 16px);
  color: #0F7EDA;
  white-space: nowrap;
}
.callback-form__file-text {
  font-size: clamp(13px, 3vw, 16px);
  color: #777;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.callback-form-textarea {
  resize: none;
  width: 100%;
  min-height: clamp(60px, 10vw, 202px);
  height: auto;
}
.callback-form__submit {
  max-width: 226px;
  width: 100%;
}
.callback-form__call {
  display: none;
}
.callback-form__agreement p,
.callback-form__agreement span {
  color: #484F55;
  border-color: #484F55;
}
.callback-form__agreement .feedback-checkbox {
  cursor: pointer;
  flex: 1 0 auto;
}
.callback-form__btn.btn {
  width: 100%;
  padding: 14px;
  outline: 2px solid #FFFFFF;
  background: #0F7EDA;
  border-radius: 8px;
  font-size: clamp(14px, 3vw, 18px);
  color: #FFFFFF;
}
.callback-form__spam {
  display: none;
}

@media (max-width: 768px) {
  .callback-form__button-row {
    display: flex;
    gap: 10px;
  }
  .callback-form__call {
    display: block;
  }
  .callback-form__call a {
    display: flex;
    width: 100%;
    padding: 14px;
    background: transparent;
    outline: 2px solid #FFFFFF;
    border: none;
    background: #729ad1;
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
  }
}
@media (max-width: 480px) {
  .custom-form-container {
    padding: 20px;
    margin: 10px;
  }
  .form-title {
    font-size: 20px;
  }
}
/* End */


/* Start:/local/templates/main/components/bitrix/main.userconsent.request/consent/style.css?1782137185874*/
label.consent {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.consent::before {
  display: none;
}

.consent__checkbox {
  flex: 0 0 auto;
  display: block;
  position: relative;
  width: clamp(16px, 3vw, 24px);
  height: clamp(16px, 3vw, 24px);
  left: 0;
  top: 0;
  background: #FFFFFF;
  border-radius: clamp(1px, 1vw, 4px);
  border: 2px solid transparent;
}

.consent .consent__input:checked + .consent__checkbox::before {
  content: "";
  position: absolute;
  background: url("/local/templates/main/components/bitrix/main.userconsent.request/consent/./images/checkmark.svg") no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 5;
  top: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
}

.consent__announce {
  cursor: pointer;
  color: #FFFFFF;
  font-size: clamp(10px, 2vw, 14px);
  line-height: 1.2;
  margin: 0;
}

.consent__announce span {
  text-decoration: underline;
}
/* End */


/* Start:/local/templates/main/components/bitrix/main.userconsent.request/consent/user_consent.css?17774697064688*/
.main-user-consent-request a {
  cursor: pointer;
}

.main-user-consent-request input[type=checkbox] {
  margin: 5px 10px 0 0;
}

.main-user-consent-request-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 9000;
}

.main-user-consent-request-popup-cont {
  min-height: 290px;
  /* loader magic */
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  padding: 20px;
  min-width: 320px;
  background: #fff;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
}

.main-user-consent-request-popup-header {
  margin: 0 0 30px 0;
  font: normal 18px "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: #000;
  text-align: left;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 260px;
}

.main-user-consent-request-popup-textarea-block {
  margin: 0 0 20px 0;
}

.main-user-consent-request-popup-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-user-consent-request-popup-button {
  display: inline-block;
  height: 39px;
  margin: 0 10px 5px 0;
  padding: 0 18px;
  border: none;
  border-radius: 2px;
  font: normal 12px/39px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #535c69;
  outline: none;
  vertical-align: middle;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
  cursor: pointer;
}

.main-user-consent-request-popup-button-acc {
  background: #bbed21;
}

.main-user-consent-request-popup-button-acc:hover {
  background: #d2f95f;
}

.main-user-consent-request-popup-button-rej {
  -webkit-box-shadow: inset 0 0 0 1px #a1a6ac;
  box-shadow: inset 0 0 0 1px #a1a6ac;
  background: none;
}

.main-user-consent-request-popup-button-rej:hover {
  background: #cfd4d8;
}

.main-user-consent-request-popup-text {
  padding: 5px 10px;
  width: 100%;
  height: 130px;
  border: 1px solid #999;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-appearance: none;
  color: black;
}

/** LOADER **/
.main-user-consent-request-loader {
  position: relative;
  height: 100px;
  width: 100px;
  margin: 0 auto;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.main-user-consent-request-path {
  stroke: #80868e;
  stroke-dasharray: 100, 200;
}

.main-user-consent-request-loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.main-user-consent-request-circular {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: inherit;
  width: inherit;
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.main-user-consent-request-path {
  stroke: #ccc;
  stroke-dasharray: 60, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@media (min-width: 992px) {
  .main-user-consent-request-popup-cont {
    min-height: 400px;
    min-width: 640px;
  }

  .main-user-consent-request-popup-header {
    max-width: 590px;
  }

  .main-user-consent-request-popup-text {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .main-user-consent-request-popup-cont {
    width: 65%;
  }

  .main-user-consent-request-popup-header {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .main-user-consent-request-announce {
    font-size: 10px;
  }

  .main-user-consent-request-popup-header {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .main-user-consent-request-popup-text {
    font-size: 10px;
  }

  .main-user-consent-request-popup-text {
    height: 330px;
  }
}
/* End */
/* /local/templates/main/components/bitrix/catalog.section/products/style.css?17780624691588 */
/* /local/templates/main/components/bitrix/catalog.item/main/style.css?17840215006535 */
/* /local/templates/main/components/bitrix/form.result.new/callback/style.css?17774697062466 */
/* /local/templates/main/components/bitrix/main.userconsent.request/consent/style.css?1782137185874 */
/* /local/templates/main/components/bitrix/main.userconsent.request/consent/user_consent.css?17774697064688 */
