@charset "UTF-8";
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}
@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes glow-yellow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(247, 235, 63, 0.5);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 35px rgba(247, 235, 63, 0.8);
    filter: brightness(1.15);
  }
}
@keyframes glow-black {
  0%, 100% {
    box-shadow: 0 0 20px rgba(247, 235, 63, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(247, 235, 63, 0.5);
  }
}
@keyframes glow-red {
  0%, 100% {
    box-shadow: 0 0 20px rgba(229, 36, 33, 0.5);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 35px rgba(229, 36, 33, 0.8);
    filter: brightness(1.15);
  }
}
@keyframes bug-run {
  0% {
    right: -30px;
    transform: translateY(-50%) scaleX(1);
  }
  48% {
    transform: translateY(-50%) scaleX(1);
  }
  50% {
    transform: translateY(-50%) scaleX(-1);
  }
  100% {
    right: 100%;
    transform: translateY(-50%) scaleX(-1);
  }
}
@keyframes bug-shake {
  0%, 100% {
    transform: translateY(-50%) rotate(-5deg);
  }
  50% {
    transform: translateY(-50%) rotate(5deg);
  }
}
@keyframes bug-move {
  0%, 100% {
    right: 20px;
  }
  50% {
    right: 40px;
  }
}
@keyframes bug-escape {
  0% {
    right: 15px;
    opacity: 1;
    transform: translateY(-50%) rotate(0deg);
  }
  70% {
    opacity: 1;
  }
  100% {
    right: -50px;
    opacity: 0;
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes cross-appear {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.3) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
}
@keyframes bug-panic {
  0% {
    left: 30px;
    opacity: 1;
    transform: translateY(-50%) rotate(0deg);
  }
  10%, 20%, 30%, 40% {
    transform: translateY(-50%) rotate(-5deg);
  }
  15%, 25%, 35%, 45% {
    transform: translateY(-50%) rotate(5deg);
  }
  50% {
    left: 15px;
    opacity: 0.9;
    transform: translateY(-50%) rotate(0deg);
  }
  70% {
    left: 0px;
    opacity: 0.5;
    transform: translateY(-60%) rotate(-15deg) scale(0.8);
  }
  100% {
    left: -150px;
    opacity: 0;
    transform: translateY(-80%) rotate(-45deg) scale(0.5);
  }
}
.intec-template-layout-content {
  /*background: url('/images/bg_strikes_middle.svg'), linear-gradient(180deg, #F7EB3F 0%, #F7F4D6 24.04%, #F7EB3F 40.87%, #F7F4D6 100%) !important;
  background-size: 100% auto, 100% auto !important;
  background-repeat: repeat-y, no-repeat !important;*/
}

html, body {
  min-height: 100%;
  margin: 0;
}

h1 {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
  font-size: 42px !important;
  vertical-align: middle;
  color: #151515;
}

.intec-template {
  background: url("/images/bg_strikes_middle.svg") repeat-y, linear-gradient(180deg, #F7EB3F 0%, #F7F4D6 24.04%, #F7EB3F 40.87%, #F7F4D6 100%); /* один градиент */
  background-size: 100% auto, cover; /* svg по ширине, градиент на всю высоту страницы */
  background-repeat: repeat-y, no-repeat; /* svg повторяется, градиент один */
  background-attachment: scroll;
  height: auto;
  background-position: 0 412px, 0 0; /* первое значение для SVG (отступ), второе для градиента (без отступа) */
}

.intec-template::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-size: 100% auto, 100px; /* растягиваем на всю ширину */
  background: linear-gradient(180deg, #E52421 0%, rgba(229, 36, 33, 0) 240px), url("/images/top_bg_inner.svg") repeat-y, no-repeat;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: 0;
  height: 410px !important;
  opacity: 0.7;
}

.intec-template-layout-content {
  background: transparent !important;
}

.button {
  display: inline-flex;
  /*padding: 18px 40px;*/
  padding: 25px 60px;
  font-size: 18px;
  font-weight: 500;
  border: none !important;
  text-decoration: none;
  /*border-radius: 25px;*/
  border-radius: 500px;
  align-items: center;
  align-content: center;
  transition: all 0.3s ease;
}
.button svg {
  margin-left: 25px;
}
.button.black {
  background: #151515;
  color: #F7EB3F;
}
.button.black:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(21, 21, 21, 0.5);
}
.button.red {
  background: #E52421;
  color: #F7EB3F;
}
.button.red:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(21, 21, 21, 0.5);
}
.button.yellow {
  background: #F7EB3F;
  color: #E52421;
  transition: all 0.3s ease;
  position: relative;
}
.button.yellow::before, .button.yellow::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 500px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.button.yellow::before {
  border: 2px solid #F7EB3F;
}
.button.yellow::after {
  border: 2px solid rgba(247, 235, 63, 0.5);
}
.button.yellow:hover {
  box-shadow: 0 0 25px rgba(247, 235, 63, 0.5);
}
.button.yellow:hover::before {
  opacity: 1;
  animation: pulse 1.5s infinite;
}
.button.yellow:hover::after {
  opacity: 1;
  animation: pulse 1.5s infinite 0.75s;
}
.button.yellow.bug {
  overflow: hidden;
}
.button.yellow.bug::after {
  content: "🦟";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.button.yellow.bug:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 30px rgba(247, 235, 63, 0.5);
}
.button.yellow.bug:hover::after {
  opacity: 1;
  animation: bug-panic 1.5s ease-out forwards;
}
.button.transparent {
  background: transparent;
  color: #F7EB3F;
  border: 1px solid #F7EB3F !important;
  position: relative;
  transition: all 0.3s ease;
}
.button.transparent::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid #F7EB3F;
  border-radius: 500px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.button.transparent:hover {
  box-shadow: 0 0 20px rgba(247, 235, 63, 0.5);
}
.button.transparent:hover::before {
  opacity: 1;
  animation: pulse 1.5s infinite;
}

.button:hover {
  text-decoration: none;
}

.c-header.c-header-template-1 .widget-view.widget-view-desktop .widget-logotype svg {
  max-height: 165px !important;
}
.c-header.c-header-template-1 .widget-view.widget-view-desktop .widget-menu .ns-bitrix.c-menu.c-menu-horizontal-1 .menu-item .menu-item-text .menu-item-text-wrapper:after {
  background: #F7EB3F !important;
}
.c-header.c-header-template-1.widget-transparent .widget-view.widget-view-desktop .widget-menu .ns-bitrix.c-menu.c-menu-horizontal-1 .menu-item .menu-item-text .menu-item-text-wrapper:after {
  background: #F7EB3F !important;
}

.c-slider-template-1 .widget-item-text {
  max-width: 665px !important;
}

.c-slider-template-1 .bugs-icons-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.c-slider-template-1 .bugs-icons-wrapper img {
  width: 120px;
}
.c-slider-template-1 .bugs-icons-wrapper img.big {
  width: 45px;
}

@media (max-width: 1300px) {
  .c-slider.c-slider-template-1 .widget-item-content-body {
    height: 750px !important;
  }
}
@media (max-width: 1300px) {
  .c-slider.c-slider-template-1 .widget-item-text {
    text-align: center;
    align-self: baseline !important;
    padding-top: 0%;
    max-width: 100%;
  }
}

@media (max-width: 1300px) {
  .c-slider-template-1 .widget-item-text.intec-grid-item.intec-grid-item-a-center img {
    /*display: none;*/
  }
  .ns-intec-universe.c-system-video-tag.c-system-video-tag-default .system-video-tag-content {
    top: 70% !important;
    left: 45% !important;
  }
  .system-video-tag-content video {
    max-height: 40% !important;
  }
}
.reptiloid-banner {
  width: 100%;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.reptiloid-top {
  display: flex;
  flex-wrap: wrap;
  background-color: #d72626;
  color: #fff;
  padding: 20px;
  padding-bottom: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 170px;
}
@media (max-width: 768px) {
  .reptiloid-top {
    min-height: auto;
    padding: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .reptiloid-top {
    padding: 10px;
  }
}

.reptiloid-top-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .reptiloid-top-inner {
    flex-direction: column;
  }
}

.reptiloid-top-inner,
.reptiloid-bottom-inner {
  margin: 0 auto;
  width: 1080px;
  text-align: left;
  position: relative;
}
@media (max-width: 768px) {
  .reptiloid-top-inner,
  .reptiloid-bottom-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .reptiloid-top-inner,
  .reptiloid-bottom-inner {
    padding: 0 10px;
  }
}

.reptiloid-left {
  flex: 0 0 auto;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .reptiloid-left {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.reptiloid-logo {
  max-height: 285px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: -32px;
  left: 0;
}
@media (max-width: 768px) {
  .reptiloid-logo {
    position: static;
    max-height: 80px;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 480px) {
  .reptiloid-logo {
    max-height: 60px;
  }
}

.reptiloid-right {
  margin-left: 515px;
  width: 610px;
}
@media (max-width: 768px) {
  .reptiloid-right {
    margin-left: 0;
    width: 100%;
  }
}
.reptiloid-right h2 {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .reptiloid-right h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
}
@media (max-width: 480px) {
  .reptiloid-right h2 {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }
}

.reptiloid-bottom {
  background-color: #000;
  border-top: 5px solid #FFD700;
  text-align: center;
  padding: 15px;
}
@media (max-width: 768px) {
  .reptiloid-bottom {
    border-top: none;
    /* border-left: 5px solid #FFD700;*/
  }
}

.reptiloid-title {
  color: #FFD700;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  letter-spacing: 12px;
  padding-left: 27px;
}
@media (max-width: 768px) {
  .reptiloid-title {
    letter-spacing: 4px;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .reptiloid-title {
    letter-spacing: 2px;
    font-size: clamp(1rem, 5vw, 1.5rem);
  }
}

.intec-content-wrapper.custom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.intec-content-wrapper.custom > * {
  flex: 0 1 calc(50% - 10px);
}
@media (max-width: 768px) {
  .intec-content-wrapper.custom > * {
    flex: 0 1 100%;
  }
}

.c-catalog-element-product-1.custom .catalog-element-main-content {
  padding: 0 !important;
  margin: 0 !important;
}
.c-catalog-element-product-1.custom .catalog-element-name {
  font-size: 42px !important;
  color: #151515 !important;
  font-weight: 900;
}
.c-catalog-element-product-1.custom .catalog-element-short-desc {
  background-color: #151515;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  display: inline-block;
  padding: 3px 7px;
}
.c-catalog-element-product-1.custom .catalog-element-preview-text {
  font-size: 18px;
  max-width: 68%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*-webkit-line-clamp: 9;
  -webkit-box-orient: vertical;*/
  max-height: 315px;
  transition: max-height 0.3s ease, overflow 0.3s ease;
  position: relative;
  z-index: 5;
  /*padding: 5px;
  margin-left: -5px;*/
}
.c-catalog-element-product-1.custom .catalog-element-preview-text:hover {
  /*max-width: 68% !important;*/
  max-height: none;
  overflow: visible;
  /*background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}
.c-catalog-element-product-1.custom .catalog-element-preview-text--constrain {
  max-width: 45% !important;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}
.c-catalog-element-product-1.custom .catalog-element-main {
  padding: 70px !important;
  height: 668px !important;
  border-radius: 25px;
  border: 1px solid rgba(229, 36, 33, 0.2509803922);
  background: linear-gradient(180deg, rgba(247, 235, 63, 0) 0%, rgba(229, 36, 33, 0.25) 100%);
  position: relative;
  backdrop-filter: blur(24px);
}
.c-catalog-element-product-1.custom .catalog-element-main.gradient-reversed {
  background: linear-gradient(0deg, rgba(247, 235, 63, 0) 0%, rgba(229, 36, 33, 0.25) 100%);
}
.c-catalog-element-product-1.custom .catalog-element-buttons .where2buy,
.c-catalog-element-product-1.custom .catalog-element-buttons .item-detail-link {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 500px;
  font-size: 16px;
  font-weight: 500;
  border: none !important;
  margin-right: 10px;
  text-decoration: none;
}
.c-catalog-element-product-1.custom .catalog-element-buttons .where2buy {
  background: #D80B08;
  color: #F7EB3F;
}
.c-catalog-element-product-1.custom .catalog-element-buttons .item-detail-link {
  background: #151515;
  color: #fff;
}

.c-catalog-element.c-catalog-element-product-1.custom {
  border: 0 !important;
}
.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-main {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: -1;
  line-height: 0;
  max-width: 58%;
}
.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blik {
  position: relative;
  z-index: 1;
}
.blik::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .blik::before {
    display: none;
  }
}

.c-faq-template-4.custom .widget-title.custom {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #151515;
}
.c-faq-template-4.custom .widget-button.custom {
  border-radius: 50px;
  background: #E52421;
  border: none;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 20px;
}
.c-faq-template-4.custom .widget-item-name.custom {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 69.12px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #151515;
  padding: 10px 50px;
}
.c-faq-template-4.custom .widget-item-name-icon {
  top: 7px !important;
}
.c-faq-template-4.custom .widget-header-custom-description {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 114%;
  letter-spacing: 0;
  color: #000 !important;
}
.c-faq-template-4.custom .widget-item-content.custom {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000;
  padding: 0 50px 6px;
}
.c-faq-template-4.custom .widget-item.custom {
  border-radius: 10px;
  border: 1px solid #F7EB3F;
  margin-bottom: 20px;
}
.c-faq-template-4.custom .widget-item.custom .faq-icon-plus {
  display: block;
}
.c-faq-template-4.custom .widget-item.custom .faq-icon-minus {
  display: none;
}
.c-faq-template-4.custom .widget-item.custom[data-expanded=true] .faq-icon-plus {
  display: none;
}
.c-faq-template-4.custom .widget-item.custom[data-expanded=true] .faq-icon-minus {
  display: block;
}

.c-reviews-template-11.custom .widget-title.custom {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 36px !important;
  line-height: 100%;
  letter-spacing: 0;
  color: #E52421;
}
.c-reviews-template-11.custom .owl-stage.intec-grid {
  gap: 20px;
}
.c-reviews-template-11.custom .owl-item.custom {
  border-radius: 25px;
}
.c-reviews-template-11.custom .intec-ui-control-navigation.custom .intec-ui-part-button-left,
.c-reviews-template-11.custom .intec-ui-control-navigation.custom .intec-ui-part-button-right {
  border-radius: 50% !important;
  background: #151515 !important;
}

.widget.c-news.c-news-element-use .widget-header,
.widget.c-news.c-news-element-brand .widget-header,
.widget.c-news.c-news-template-2 .widget-header {
  overflow: unset !important;
}

@keyframes soft-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 215, 0, 0.5);
  }
}
.widget-slider-button {
  background: #E52421;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.widget-slider-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.widget-slider-button svg path {
  fill: #F7EB3F !important;
  transition: fill 0.3s ease;
}
.widget-slider-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.widget-slider-button:hover {
  background: linear-gradient(135deg, #ff3b38, #e52421);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.widget-slider-button:hover::before {
  opacity: 1;
  animation: soft-glow 2s ease-in-out infinite;
}
.widget-slider-button:hover svg path {
  fill: #fff !important;
}
.widget-slider-button:active {
  transform: scale(0.92);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.widget-slider-button.widget-slider-button-left svg {
  transform: rotate(180deg);
}
.widget-slider-button.widget-slider-button-left:hover svg {
  transform: rotate(180deg);
}
.widget-slider-button.widget-slider-button-left:active svg {
  transform: rotate(180deg);
}

.c-header.c-header-template-1 .widget-view.widget-view-desktop .widget-view-desktop-7 .widget-menu .ns-bitrix.c-menu.c-menu-horizontal-1 .menu-item.menu-item-active .menu-item-text-wrapper {
  color: #fff !important;
}

.intec-cl-text {
  color: #151515 !important;
}

.where2buy-wrapper .where2buy-bg {
  min-width: 450px;
}
.where2buy-wrapper .where2buy-wrapper-blocks {
  display: flex;
  gap: 20px;
}
.where2buy-wrapper .where2buy-wrapper-blocks > *:first-child {
  flex-shrink: 0;
}
.where2buy-wrapper .where2buy-wrapper-blocks > *:last-child {
  flex: 1;
}
.where2buy-wrapper h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #151515;
}
.where2buy-wrapper .news-list-items {
  gap: 20px;
  border-radius: 15px;
}
.where2buy-wrapper .news-list-items > .intec-grid-item-3 {
  -ms-flex: 0 0 calc(33.33333% - 20.33px) !important;
  flex: 0 0 calc(33.33333% - 20.33px) !important;
  max-width: calc(33.33333% - 20.33px) !important;
}
.where2buy-wrapper .news-list-items .news-list-item {
  background: rgba(255, 255, 255, 0.5019607843) !important;
  border-radius: 15px;
  overflow: hidden;
}
.where2buy-wrapper .news-list-items .news-list-item:hover {
  background: #FFFFFF !important;
}
.where2buy-wrapper .news-list-items .news-list-item .news-list-item-wrapper {
  background: none !important;
}

.c-header.c-header-template-1 .widget-view.widget-view-desktop .widget-menu .ns-bitrix.c-menu.c-menu-horizontal-1 .menu-wrapper-4 {
  max-width: 1000px !important;
  margin-left: auto;
}

.ns-bitrix.c-menu.c-menu-horizontal-1[data-uppercase=true] .menu-item .menu-item-text {
  text-transform: unset;
}

.widget-authorization-wrap {
  display: none;
}

.widget-view-fixed-1 .widget-menu-popup {
  display: none !important;
}

@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-main {
    padding: 40px !important;
    height: auto !important;
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .c-catalog-element-product-1.custom .catalog-element-main {
    padding: 20px !important;
    min-height: 400px;
  }
}
.c-catalog-element-product-1.custom .catalog-element-name {
  font-size: 42px !important;
  color: #151515 !important;
  font-weight: 900 !important;
  max-width: 85% !important;
}
@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-name {
    font-size: 32px !important;
  }
}
@media (max-width: 480px) {
  .c-catalog-element-product-1.custom .catalog-element-name {
    font-size: 24px !important;
  }
}
@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-short-desc {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .c-catalog-element-product-1.custom .catalog-element-short-desc {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-preview-text {
    max-width: 100% !important;
    font-size: 16px;
    max-height: none;
    -webkit-line-clamp: unset;
  }
}
@media (max-width: 480px) {
  .c-catalog-element-product-1.custom .catalog-element-preview-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-preview-text--constrain {
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .c-catalog-element-product-1.custom .catalog-element-buttons .where2buy,
  .c-catalog-element-product-1.custom .catalog-element-buttons .item-detail-link {
    width: 100%;
    text-align: center;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .c-catalog-element-product-1.custom .catalog-element-buttons .where2buy,
  .c-catalog-element-product-1.custom .catalog-element-buttons .item-detail-link {
    padding: 15px 30px;
    font-size: 14px;
  }
}

.ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-name {
  font-size: 42px !important;
  color: #151515 !important;
  font-weight: 900 !important;
  max-width: 85% !important;
}
@media (max-width: 768px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-name {
    font-size: 32px !important;
  }
}
@media (max-width: 480px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-name {
    font-size: 24px !important;
  }
}
@media (max-width: 768px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap {
    max-width: 100%;
    position: static;
    margin-top: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap::before {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap::before {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap img {
    max-width: 80%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .ns-bitrix.c-catalog-element.c-catalog-element-product-1.custom .catalog-element-picture-wrap img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .intec-content-wrapper.custom {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .intec-content-wrapper.custom {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .intec-content-wrapper.custom > * {
    flex: 0 1 100%;
  }
}

@media (max-width: 768px) {
  .widget.c-brands.c-brands-template-4 .widget-all-button {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .widget-slider-navigation {
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
    gap: 15px;
    margin-top: 20px;
    padding-right: 30px !important;
  }
}
@media (max-width: 480px) {
  .widget-slider-navigation {
    gap: 10px;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-header {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-items {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .widget.c-news.c-news-template-2 .widget-items {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item-text {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .widget.c-news.c-news-template-2 .widget-item-text {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item-name {
    font-size: 20px !important;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .widget.c-news.c-news-template-2 .widget-item-name {
    font-size: 18px !important;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .widget.c-news.c-news-template-2 .widget-item-description br {
    display: none;
  }
}
@media (max-width: 480px) {
  .widget.c-news.c-news-template-2 .widget-item-description {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item-date-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item-date-day {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .widget.c-news.c-news-template-2 .widget-item-date-day {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .widget.c-news.c-news-template-2 .widget-item-date-month-year {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .widget.c-news.c-news-template-2 .widget-item-date-month-year {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .c-slider-template-1 .bugs-icons-wrapper {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .widget.c-brands.c-brands-template-4 .widget-slider-navigation {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .widget.c-faq.c-faq-template-4.custom .widget-item-name-icon {
    top: 50% !important;
    transform: translateY(-50%);
    right: 0 !important;
  }
}

@media (max-width: 768px) {
  .widget.c-faq.c-faq-template-4.custom .widget-item[data-expanded=true] .widget-item-name-icon {
    transform: translateY(-50%) rotate(180deg);
  }
}

.widget.c-widget.c-widget-contacts-1 {
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .widget.c-widget.c-widget-contacts-1 .widget-feedback-button {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .c-footer.c-footer-template-1 .widget-view .widget-view-5 .widget-part .widget-logotype {
    text-align: center;
  }
  .c-footer.c-footer-template-1 .widget-view .widget-view-5 .widget-panel .widget-copyright {
    text-align: center !important;
  }
  .c-footer.c-footer-template-1 .widget-view .widget-view-5 .widget-part.widget-part-right .widget-part-item .text-button {
    text-align: center !important;
  }
  .intec-template::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .where2buy-wrapper .where2buy-wrapper-blocks {
    flex-direction: column;
    gap: 30px;
  }
  .where2buy-wrapper .where2buy-bg {
    min-width: 100%;
    max-width: 100% !important;
    height: auto;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .where2buy-wrapper .where2buy-bg {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper h3 {
    font-size: 24px !important;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper h3 {
    font-size: 20px !important;
    margin-bottom: 15px;
  }
}
@media (max-width: 1024px) {
  .where2buy-wrapper .news-list-items {
    gap: 15px;
  }
  .where2buy-wrapper .news-list-items > .intec-grid-item-3 {
    -ms-flex: 0 0 calc(50% - 7.5px) !important;
    flex: 0 0 calc(50% - 7.5px) !important;
    max-width: calc(50% - 7.5px) !important;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper .news-list-items {
    gap: 15px;
  }
  .where2buy-wrapper .news-list-items > .intec-grid-item-3 {
    -ms-flex: 0 0 calc(50% - 7.5px) !important;
    flex: 0 0 calc(50% - 7.5px) !important;
    max-width: calc(50% - 7.5px) !important;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .news-list-items {
    gap: 10px;
  }
  .where2buy-wrapper .news-list-items > .intec-grid-item-3 {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper .news-list-items .news-list-item {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .news-list-items .news-list-item {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper .news-list-items .news-list-item .news-list-item-picture-wrap {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .news-list-items .news-list-item .news-list-item-picture-wrap {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper .news-list-items .news-list-item .news-list-item-hover-text {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .news-list-items .news-list-item .news-list-item-hover-text {
    font-size: 13px;
    padding: 8px;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper .system-pagenavigation-items {
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .system-pagenavigation-items {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .system-pagenavigation-items .system-pagenavigation-item-wrapper {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .where2buy-wrapper .intec-content-wrapper h3 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1024px) {
  .where2buy-wrapper .intec-content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .where2buy-wrapper .intec-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .where2buy-wrapper .intec-content-wrapper {
    padding: 0;
    margin: 0 -10px;
  }
}

.c-header-template-1 .widget-view-desktop-7 .widget-contacts-wrap {
  display: none !important;
}

/*    кастомная модалка    */
.custom-faq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.custom-faq-modal .intec-ui-modal-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 25px 60px 60px;
  min-width: 320px;
}
.custom-faq-modal .intec-ui-modal-content {
  position: relative;
  background: #fff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.custom-faq-modal .intec-ui-modal-header {
  padding: 25px 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-faq-modal .intec-ui-modal-header h3 {
  height: auto;
  margin-top: 20px;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  color: #1b1e25;
  word-break: break-word;
}
.custom-faq-modal .intec-ui-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  background: url("/local/templates/matilda_s1/resources/417e68d399fa648ce8fa998634bd0348.png");
}
.custom-faq-modal .intec-ui-modal-close:hover {
  color: #333;
}
.custom-faq-modal .intec-ui-modal-body {
  padding: 25px 60px 60px;
}
@media (max-width: 768px) {
  .custom-faq-modal .intec-ui-modal-wrapper {
    padding: 10px;
  }
  .custom-faq-modal .intec-ui-modal-content {
    max-height: 95vh;
  }
  .custom-faq-modal .intec-ui-modal-header {
    padding: 15px 20px;
  }
  .custom-faq-modal .intec-ui-modal-header h3 {
    font-size: 18px;
  }
  .custom-faq-modal .intec-ui-modal-body {
    padding: 20px;
  }
}

body.modal-open {
  overflow: hidden;
}

.custom-faq-modal .intec-ui-modal-body form div {
  margin-bottom: 20px;
}
.custom-faq-modal .intec-ui-modal-body form div label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #404040;
}
.custom-faq-modal .intec-ui-modal-body form div input[type=text],
.custom-faq-modal .intec-ui-modal-body form div input[type=tel],
.custom-faq-modal .intec-ui-modal-body form div input[type=email] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  font-size: 14px;
}
.custom-faq-modal .intec-ui-modal-body form div input[type=text]:focus,
.custom-faq-modal .intec-ui-modal-body form div input[type=tel]:focus,
.custom-faq-modal .intec-ui-modal-body form div input[type=email]:focus {
  outline: none;
  border-color: #E52421;
}
.custom-faq-modal .intec-ui-modal-body form div.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
}
.custom-faq-modal .intec-ui-modal-body form div.checkbox-wrapper input[type=checkbox] {
  margin-top: 2px;
  margin-right: 8px;
  flex-shrink: 0;
}
.custom-faq-modal .intec-ui-modal-body form div.checkbox-wrapper label {
  margin: 0;
}
.custom-faq-modal .intec-ui-modal-body form button[type=submit] {
  width: 100%;
  padding: 12px 16px;
}

/*# sourceMappingURL=custom.css.map */
