

/* Start:/local/templates/premiera/style.css?1740029246119228*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Gotham';
}

@font-face {
  font-family: 'Gotham';
  src: url('/local/templates/premiera/./fonts/GothamPro-Bold.woff2') format('woff2'),
    url('/local/templates/premiera/./fonts/GothamPro-Bold.woff2') format('woff');
  font-weight: bold;

  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/local/templates/premiera/./fonts/GothamPro-Medium.woff2') format('woff2'),
    url('/local/templates/premiera/./fonts/GothamPro-Medium.woff') format('woff');
  font-weight: 500;

  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/local/templates/premiera/./fonts/GothamPro.woff2') format('woff2'),
    url('/local/templates/premiera/./fonts/GothamPro.woff') format('woff');
  font-weight: normal;

  font-display: swap;
}

body {
  background: #F5F5F7;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 110%;
}

h2 {
  color: #333;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
}

h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

input:focus-visible,
select:focus-visible {
  outline: none;
  border: 1px solid #009199;
}

ul {
  list-style: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.flex-cont {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-header {
  background: #00656B;
  padding: 8px 0;
  color: #F2F2F2;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #F2F2F2;
  transition: .3s;
}

.nav-link:last-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #DAD7D7;
}


.nav-header nav .nav-link:before {
	content: ' ';
	position: relative;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;
	margin-right: 20px;
}

.nav-header nav .nav-link:first-child:before  {
	display: none;
}

.city-choose {
  position: relative;
  display: flex;
  align-items: center;
}

.cities {
  list-style: none;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: .5s;
}

.cities:hover {
  color: #BDBDBD;
}

.active-city {
  text-align: center;
  position: relative;
}

.active-city::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-image: url('/local/templates/premiera/./img/choose-arrow.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  right: 0;
  transition: .3s;
}

.open-city::after {
  transform: rotate(-180deg);
}

.cities:hover .active-city::after {
  opacity: 0.7;
}

.dpd-arrow {
  position: absolute;
  right: 5px;
  cursor: pointer;
  transition: .5s;
}

.dpd-countries {
  background-color: white;
  position: relative;
  z-index: 2;
  top: 8px;
  left: 8px;
  color: #333;
  border-radius: 4px;
}

.dpd-countries .city {
  font-weight: 500;
  padding: 5px 15px;
}

.dpd-countries .city:first-child {
  padding-top: 10px;
}

.dpd-countries .city:last-child {
  padding-bottom: 10px;
}

.dpd-countries .city:hover {
  background: rgba(0, 101, 107, 0.12);
}

.dpd-countries .city a:active,
.dpd-countries .city a:focus,
.dpd-countries .city a:visited {
  color: #333;
}

.main-header {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
}

.catalog-dpd {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: .3s;
}

.catalog-dpd:hover {
  opacity: 0.7;
}

.dpd-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.line {
  background: #00656B;
  height: 2px;
  width: 26px;
  border-radius: 1px;
}

.center {
  width: 20px;
}

.catalog-dpd.dropdown-is-active .line:first-child:before,
.catalog-dpd.dropdown-is-active .line:first-child:after {
  content: "";
  position: absolute;
  background: #00656B;
  height: 2px;
  width: 26px;
  border-radius: 1px;
  margin-top: 8px;
}

.catalog-dpd.dropdown-is-active .line:first-child:before {
  transform: rotate(45deg);
}

.catalog-dpd.dropdown-is-active .line:first-child:after {
  transform: rotate(-45deg);
}

.catalog-dpd.dropdown-is-active .line {
  background: transparent;
}

.catalog-title {
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.search {
  display: flex;
  align-items: center;
}

.search-input {
  border-radius: 4px 0 0 4px;
  border: 1px solid #fff;
  background: #FFF;
  padding: 9px 20px;
  width: 343px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.search-input::placeholder {
  color: #828282;
}

.submit {
  position: relative;
  border-radius: 4px;
  border: none;
  background-color: #00656B;
  width: 56px;
  height: 36px;
  background-image: url('/local/templates/premiera/./img/search.svg');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -5px;
  cursor: pointer;
  transition: .3s;
}

.submit:hover {
  background-color: #00555A;
}

.whats-app {
  display: grid;
  column-gap: 8px;
  transition: .3s;
}

.whats-app:hover {
  opacity: 0.8;
}

.whats-app-icon {
  grid-area: 1 / 1 / 3 / 2;
}

.phone {
  grid-area: 1 / 2 / 2 / 2;
  color: #4F4F4F;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}

.whats-app-title {
  grid-area: 2 / 2 / 2 / 2;
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav-item {
  position: relative;
  text-align: center;
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 8px;
  transition: .3s;
}

.main-nav-icon {
  width: 24px;
  height: 24px;
}

.main-nav-item:hover {
  opacity: 0.7;
}

.shopping-cart::after {
  content: '1';
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px;
  border-radius: 4px;
  background: #00656B;
  color: #FFF;
  text-align: center;
  font-size: 8px;
  font-weight: 500;
  line-height: 6px;
  width: 12px;
  height: 12px;
}

.mobile-header {
  display: none;
}

.banners {
  padding: 40px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.main {
  position: relative;
  max-width: 896px;
  width: 100%;
}

.main__wrapper {
  position: relative;
  overflow: hidden;
  background-color: #eee;
  border-radius: 4px;
}

.main__items {
  display: flex;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.5s ease;
  will-change: transform;
}

.main__item {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  height: 540px;
  cursor: pointer;
}

.main-banner-content {
  padding: 64px 20px 64px 80px;
  max-width: 580px;
  display: grid;
  grid-template-rows: 0fr 0fr 0fr 1.2fr;
  align-items: end;
}

.new {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
  width: fit-content;
  padding: 8px 24px;
  position: relative;
  z-index: 0;
  transition: .3s;
}

.main__item:hover .new {
  background: #75E4EB;
  border: 1px solid #75E4EB;
}

.main:hover .main-banner-content .new::after {
  animation: none;
}

.main-title {
  color: #F2F2F2;
  padding: 24px 0;
}

.main-title-descr {
  color: #F2F2F2;
}

.main-banner-link {
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 4px;
  background: #FFF;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: .3s;
}

.main__item:hover .main-banner-link {
  background: #D7E3E6;
}

.link-arrow {
  transform: rotate(180deg);
}

.banner-img {
  position: absolute;
  top: 0;
  object-position: 60% 25%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main__indicators {
  position: absolute;
  bottom: 64px;
  right: 80px;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 13px;
  margin: 0;
  padding: 0;
}

.main__indicator {
  width: 8px;
  height: 8px;
  background-color: #F2F2F2;
  background-clip: padding-box;
  cursor: pointer;
  border-radius: 12px;
}

.main__indicator_active {
  position: relative;
  width: 64px;
  background: #fff;
}

.main__indicator_active::after {
  content: '';
  background: #75E4EB;
  width: 0;
  height: 8px;
  border-radius: 12px;
  display: block;
  animation: indicator 5s linear backwards infinite;
}

.main:hover .main__indicator_active::after {
  animation: none;
}

@keyframes indicator {
  from {
    width: 1%;
  }

  to {
    width: 100%;
  }
}

.transition-none {
  transition: none;
}

.side-banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-banner {
  position: relative;
  height: 260px;
  max-width: 432px;
  border-radius: 4px;
}

.small-banner-img {
  position: absolute;
  z-index: -1;
  border-radius: 4px;
}

.small-banner-content {
  padding: 32px;
}

.small-banner-new {
  font-size: 12px;
  line-height: 15px;
  padding: 8px 12px;
}

.small-banner:hover .small-banner-new {
  background: #75E4EB;
  border: 1px solid #75E4EB;
}

.small-banner-title {
  color: #F2F2F2;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  padding: 16px 0 12px;
}

.small-banner-descr {
  color: #F2F2F2;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.small-banner-link {
  position: absolute;
  bottom: 32px;
  color: #F2F2F2;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .3s;
}

.small-banner:hover .small-banner-link {
  color: #75E4EB;
}

.small-banner-link-img {
  fill: #F2F2F2;
  transition: .3s;
}

.small-banner:hover .small-banner-link-img {
  fill: #75E4EB;
}

.about {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 316px;
  color: #333;
}

.about-item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  padding-bottom: 8px;
}

.about-item-descr {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.catalog-main {
  padding: 84px 0;
}

.catalog-main-title {
  padding-bottom: 37px;
}

.carousel {
  width: 1360px;
  position: relative;
  margin: auto;
}

.carousel-cont {
  width: 1360px;
  overflow: hidden;
  margin: auto;
}

.ul {
  height: 344px;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  font-size: 0;
}

.li {
  display: inline-block;
}

.carousel-items {
  width: 268px;
  height: 344px;
  margin-right: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-item {
  position: relative;
  height: 168px;
  background: #fff;
  transition: .3s;
  overflow: hidden;
}

.carousel-item img {
  transition: .3s;
}

.carousel-item:hover img {
  transform: scale(120%);
}

.carousel-item-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.carousel-item-title {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding: 28px 28px 0;
}

.carousel-item-arrow {
  position: absolute;
  top: -85px;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

.carousel-item-arrow:focus {
  outline: none;
}

.carousel-item-arrow:hover {
  cursor: pointer;
}

.prev {
  right: 70px;
}

.next {
  right: 0;
}

.l-arrow {
  border-radius: 4px;
  background: #FFF;
  padding: 16px;
  transition: .3s;
}

.r-arrow {
  transform: rotate(180deg);
  border-radius: 4px;
  background: #FFF;
  padding: 16px;
  transition: .3s;
}

.l-arrow:hover,
.r-arrow:hover {
  background: rgba(0, 101, 107, 0.12);
}

.category-main {
  padding: 0 0 84px;
}

.category-btns {
  border-bottom: 1px solid #BDBDBD;
}

.category-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.category-btn:last-child {
  margin-left: 32px;
}

.category-main-title {
  padding-bottom: 24px;
  color: #BDBDBD;
}

.category-btn.active::after {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 4px;
  background: #00656B;
  position: absolute;
  bottom: -2.5px;
}

.category-btn.active .category-main-title {
  color: #333;
}

.category-btn:hover .category-main-title {
  color: #6c6c6c;
}

.category-btn.active:hover .category-main-title {
  color: #333;
}

.category {
  position: relative;
  padding-top: 32px;
}

.category-link-btn {
  position: absolute;
  top: -78px;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 4px;
  background: #FFF;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: .3s;
  left: 88%;
  margin-left: -225px;
}

.category-link-btn:hover {
  background: rgba(0, 101, 107, 0.12);
}

.category-link-img {
  transform: rotate(180deg);
}

.category-carousel {
  width: 1360px;
  position: relative;
  margin: auto;
}

.category-carousel-cont {
  width: 1360px;
  overflow: hidden;
  margin: auto;
}

.category-ul {
  height: 490px;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  font-size: 0;
  display: flex;
}

.category-li {
  display: inline-block;
}

.category-item {
  display: block;
  position: relative;
  width: 322px;
  height: 456px;
  margin-right: 23px;
  background: #fff;
  border-radius: 4px;
  transition: .5s;
}

.category-item:hover {
  height: 490px;
}

.category-item:hover .category-item-size {
  opacity: 1;
  height: 36px;
}

.non-size:hover {
  height: 456px;
}

.category-item-img {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
}

.category-item-info {
  padding: 16px 16px 24px;
}

.category-item-title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  height: 75px;
}

.category-item-size {
  opacity: 0;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  transition: .5s;
  height: 0;
  display: flex;
  align-items: flex-end;
}

.category-item-price-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.category-item-price__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.category-item-price {
  color: #00656B;
}

.new-price {
  color: #FF1818;
}

.category-item-price-stock {
  color: #828282;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: line-through;
}

.category-item-availability {
  flex-shrink: 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-item-btns-cont {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.category-item-add {
  position: absolute;
  left: 0;
  color: #FFF;
  font-size: 16px;

  font-weight: 500;
  line-height: 22px;
  border-radius: 4px;
  background: #00656B;
  border: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .3s;
}

.category-item-add:hover {
  opacity: 0.8;
}

.category-item-favorite {
  cursor: pointer;
  transition: .3s;
  stroke: #828282;
}

.category-item-favorite:hover {
  opacity: 0.5;
}

.added {
  fill: #00656B;
  stroke: #00656B;
}

.added:hover {
  opacity: 1;
}

.category-item-favorite-button {
  background: transparent;
  border: none;
}

.category-carousel-item-arrow {
  position: absolute;
  top: -109px;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

.category-carousel-item-arrow:focus {
  outline: none;
}

.category-carousel-item-arrow:hover {
  cursor: pointer;
}

.category-prev {
  right: 70px;
}

.category-next {
  right: 0;
}

.promotion-carousel {
  width: 1360px;
  position: relative;
  margin: auto;
}

.promotion-carousel-cont {
  width: 1360px;
  overflow: hidden;
  margin: auto;
}

.promotion-ul {
  height: 490px;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  font-size: 0;
  display: flex;
}

.promotion-li {
  display: inline-block;
}

.promotion-item {
  display: block;
  position: relative;
  width: 322px;
  height: 456px;
  margin-right: 23px;
  background: #fff;
  transition: .5s;
}

.promotion-item:hover {
  height: 490px;
}

.promotion-item:hover .promotion-item-size {
  opacity: 1;
  height: 36px;
}

.promotion-item-size {
  opacity: 0;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  transition: .5s;
  height: 0;
  display: flex;
  align-items: flex-end;
}

.promotion-item-img {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
}

.promotion-item-info {
  padding: 16px 16px 24px;
}

.promotion-item-title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  height: 75px;
}

.promotion-item-price-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.promotion-item-price {
  color: #00656B;
}

.promotion-item-availability {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promotion-item-btns-cont {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.promotion-item-add {
  position: absolute;
  left: 0;
  color: #FFF;
  font-size: 16px;

  font-weight: 500;
  line-height: 22px;
  border-radius: 4px;
  background: #00656B;
  border: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .3s;
}

.promotion-item-add:hover {
  opacity: 0.8;
}

.promotion-item-favorite {
  cursor: pointer;
  transition: .3s;
  stroke: #828282;
}

.promotion-item-favorite:hover {
  opacity: 0.5;
  fill: #00656B;
  stroke: #00656B;
}

.promotion-item-favorite-button {
  background: transparent;
  border: none;
}

.promotion-carousel-item-arrow {
  position: absolute;
  top: -109px;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

.promotion-carousel-item-arrow:focus {
  outline: none;
}

.promotion-carousel-item-arrow:hover {
  cursor: pointer;
}

.promotion-prev {
  right: 70px;
}

.promotion-next {
  right: 0;
}

.brands-main-title {
  padding-bottom: 37px;
}

.brands-carousel {
  width: 1360px;
  position: relative;
  margin: auto;
}

.brands-carousel-cont {
  width: 1360px;
  overflow: hidden;
  margin: auto;
}

.brands-ul {
  height: 87px;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  font-size: 0;
  display: flex;
}

.brands-li {
  display: inline-block;
}

.brands-carousel-item {
  position: relative;
  width: 185px;
  height: 87px;
  margin-right: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: .3s;
}

.brands-li:hover .brands-carousel-item {
  background: #FCFCFC;
}

.brands-carousel-item-arrow {
  position: absolute;
  top: -85px;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

.brands-carousel-item-arrow:focus {
  outline: none;
}

.brands-carousel-item-arrow:hover {
  cursor: pointer;
}

.brands-prev {
  right: 70px;
}

.brands-next {
  right: 0;
}

.news-main {
  padding: 84px 0;
}

.news-title-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88%;
}

.news-main-title {
  padding-bottom: 37px;
}

.news-link {
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 4px;
  background: #FFF;
  padding: 16px 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: .5s;
}

.news-link:hover {
  background: rgba(0, 101, 107, 0.12);
}

.news-link-img {
  transform: rotate(180deg);
}

.mobile {
  display: none;
}

.news-carousel {
  width: 1360px;
  position: relative;
  margin: auto;
}

.news-carousel-cont {
  width: 1360px;
  overflow: hidden;
  margin: auto;
}

.news-ul {
  height: 316px;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  font-size: 0;
}

.news-li {
  display: inline-block;
}

.news-carousel-item {
  position: relative;
  width: 440px;
  height: 316px;
  margin-right: 20px;
  display: flex;
  align-items: flex-end;
  transition: .3s;
}
.news-carousel-item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0 0 0 / 85%) 0%, rgb(151 151 151 / 85%) 100%);
}

.news-carousel-item:hover {
  background: rgba(0, 0, 0, 0.3);
}

.news-carousel-item-img {
  position: absolute;
  top: 0;
  z-index: -1;
}

.news-carousel-item-text {
  color: #F2F2F2;
  padding: 24px;
  z-index: 1;
}

.news-carousel-item-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.news-carousel-item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  padding: 8px 0 12px;
}

.news-carousel-item-descr {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.news-carousel-item-arrow {
  position: absolute;
  top: -85px;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

.news-carousel-item-arrow:focus {
  outline: none;
}

.news-carousel-item-arrow:hover {
  cursor: pointer;
}

.news-prev {
  right: 70px;
}

.news-next {
  right: 0;
}

.questions {
  background: #fff;
  border-radius: 4px;
  border: 3px solid #00656B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
}

.questions-text {
  color: #333;
  max-width: 380px;
}

.questions-descr {
  padding-top: 8px;
  font-size: 14px;

  font-weight: 400;
  line-height: 140%;
}

.questions-input {
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FCFCFC;
  color: #333;
  padding: 17px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  width: 288px;
}

.questions-input::placeholder {
  color: #828282;
}

.questions-submit {
  border: none;
  border-radius: 4px;
  background: #00656B;
  color: #FFF;
  padding: 17px 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
  transition: .5s;
}

.questions-submit:hover {
  background: #009199;
}

footer {
  background: #232323;
  padding: 56px 0 20px;
  margin-top: 84px;
}

.menu-cont {
  align-items: flex-start;
  padding-bottom: 67px;
}

.footer-menu-title {
  color: #FFF;
  padding-bottom: 16px;
}

.footer-menu-item {
  color: #BDBDBD;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  display: block;
  transition: .3s;
}

.footer-menu-item:hover {
  color: #fff;
}

.address-title {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.address-pin {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.address-title-link {
  color: #fff;
  display: block;
}

.address-arrow {
  width: 8px;
  transform: rotate(90deg);
  margin-left: 8px;
}

.address-phone {
  margin-right: 12px;
}

.social-link {
  margin-right: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4F4F4F;
  border-radius: 12px;
  padding: 7.55px;
}

.social {
  fill: #828282;
  transition: .3s;
}

.social-link:hover .social {
  fill: #75E4EB;
}

.rights {
  padding: 18px 0 0;
  border-top: 1px solid #8F8F8F;
  color: #828282;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.rights-text-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
}

.rights-text-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu {
  display: none;
  background: #fff;
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.06);
  width: 100%;
  padding: 12px 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.mobile-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.mobile-menu-link-img {
  width: 32px;
  height: 32px;
}

.mobile-search {
  display: flex;
  align-items: center;
  background: #F5F5F7;
  position: absolute;
  left: 45px;
}

.mobile-submit {
  position: absolute;
  left: 12px;
  background-color: transparent;
  background-image: url('/local/templates/premiera/./img/search-mob.svg');
  border: none;
  width: 24px;
  height: 24px;
}

.mobile-search-input {
  height: 24px;
  outline: none;
  border: none;
  background: #FCFCFC;
  border-radius: 4px;
  width: 0;
  font-size: 12px;
  transition: .5s;
}

.mobile-search-input:focus-visible {
  outline: 1px solid #009199;
}

@media screen and (max-width: 1440px) {
  .main {
    width: calc(500px + 396 * (100vw - 1000px) / 440);
  }

  .carousel,
  .category-carousel,
  .promotion-carousel,
  .brands-carousel,
  .news-carousel {
    width: 100%;
  }

  .carousel-cont {
    width: 1096px;
  }

  .category-carousel-cont,
  .promotion-carousel-cont {
    width: 1015px;
  }

  .brands-carousel-cont {
    width: 1164px;
  }

  .news-carousel-cont {
    width: 900px;
  }

  .questions-text {
    width: 240px;
    margin-right: 20px;
  }

  .menu-cont {
    gap: 32px;
  }

  .rights {
    margin: 0 40px;
  }
}

@media screen and (max-width: 1300px) {
  .questions {
    padding: 32px;
    flex-wrap: wrap;
  }

  .questions-text {
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding-bottom: 24px;
  }

  .questions-input {
    width: 34%;
  }
}

@media screen and (max-width: 1260px) {
  .brands-carousel-cont {
    width: 968px;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: calc(26px + 18 * (100vw - 360px) / 840);
  }

  h2 {
    font-size: calc(22px + 14 * (100vw - 360px) / 840);
  }

  h3 {
    font-size: calc(18px + 6 * (100vw - 360px) / 840);
  }

  h4 {
    font-size: calc(14px + 4 * (100vw - 360px) / 840);
  }

  h6 {
    font-size: calc(12px + 4 * (100vw - 360px) / 840);
  }

  .catalog-title {
    font-size: 14px;
  }

  .dpd-icon {
    gap: 5px;
  }

  .line {
    width: 22px;
  }

  .center {
    width: 16px;
  }

  .logo {
    width: 110px;
  }

  .search-input {
    width: 270px;
  }

  .whats-app {
    align-items: center;
    gap: 6px;
  }

  .whats-app-icon {
    width: 24px;
  }

  .phone {
    font-size: 12px;
  }

  .whats-app-title {
    font-size: 11px;
  }

  .main-nav {
    gap: 16px;
  }

  .banners {
    justify-content: center;
  }

  .main-banner-content {
    padding: 32px 15px 32px 50px;
    grid-template-rows: 0fr 0fr 0fr 1.45fr;
  }

  .small-banner,
  .small-banner-img {
    width: calc(350px + 82 * (100vw - 1000px) / 200);
    height: 260px;
  }

  .small-banner-img {
    object-fit: cover;
  }

  .news-title-cont {
    width: 85%;
  }
    .category-link-btn{
        left: 85%;
    }
}

@media screen and (max-width: 1175px) {
  .carousel-cont {
    width: 820px;
  }

  .menu-cont {
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 29px;
  }
}

@media screen and (max-width: 1110px) {
  .brands-carousel-cont {
    width: 772px;
  }
}

@media screen and (max-width: 1070px) {

  .category-carousel-cont,
  .promotion-carousel-cont {
    width: 670px;
  }

  .rights-text-cont {
    width: 65%;
  }
}

@media screen and (max-width: 1000px) {

  .flex-cont,
  .container {
    padding: 0 16px;
  }

  .nav-header,
  .main-header {
    display: none;
  }

  .mobile-header {
    display: block;
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #E0E0E0;
  }

  .left-icons {
    position: relative;
  }

  .left-icons,
  .right-icons {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 80px;
  }

  .mobile-dpd {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
  }

  .mobile-dpd-line {
    height: 2px;
    width: 18px;
    border-radius: 2px;
    background: #00656B;
  }

  .logo {
    height: 36px;
  }

  .about {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 12px;
  }

  .about-item {
    width: 50%;
  }

  .menu-cont {
    padding-bottom: 29px;
  }

  .rights {
    margin: 0 20px;
    padding: 12px 0 0;
  }

  .mobile-menu {
    display: flex;
  }

  footer {
    padding-bottom: 92px;
  }
}

@media screen and (max-width: 950px) {
  h2 {
    line-height: 24px;
  }

  h3 {
    line-height: 22px;
  }

  h4 {
    line-height: 20px;
  }

  h6 {
    line-height: 18px;
  }

  .carousel-item-arrow,
  .category-carousel-item-arrow,
  .promotion-carousel-item-arrow,
  .brands-carousel-item-arrow,
  .news-carousel-item-arrow {
    top: -78px;
  }

  .r-arrow,
  .l-arrow {
    padding: 13px;
  }

  .banners {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 48px;
  }

  .main {
    width: 100%;
  }

  .main-banner-content {
    padding: 32px 24px;
  }

  .small-banner,
  .small-banner-img {
    width: 100%;
    max-width: 100%;
  }

  .small-banner-content {
    padding: 20px 24px;
  }

  .small-banner-title {
    padding: 12px 0;
  }

  .small-banner-descr {
    line-height: 20px;
  }

  .small-banner-link {
    bottom: 20px;
  }

  .about-item {
    width: 100%;
  }

  .catalog-main {
    padding: 48px 0;
  }

  .category {
    padding-top: 24px;
  }

  .category-main {
    padding-bottom: 48px;
  }

  .catalog-main-title {
    padding-bottom: 24px;
  }

  .category-main-title {
    padding-bottom: 9px;
  }

  .category-link-btn {
    font-size: 12px;
    line-height: 17px;
    padding: 15.5px;
    top: -55px;
    margin-left: -150px;
    left: 80%;      
  }

  .category-link-img {
    width: 16px;
    height: 16px;
  }

  .brands-main-title {
    padding-bottom: 24px;
  }

  .news-main {
    padding: 48px 0;
  }

  .news-main-title {
    padding-bottom: 24px;
  }

  .news-carousel-cont {
    width: 100%;
    overflow-x: scroll;
  }

  .news-carousel-item-arrow {
    display: none;
  }

  .news-ul {
    width: max-content;
  }

  .news-title-cont {
    width: 100%;
  }

  .news-link {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    line-height: 17px;
  }

  .news-link-img {
    width: 16px;
    height: 16px;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: flex;
    margin-top: 20px;
  }

  .questions {
    flex-direction: column;
    align-items: normal;
  }

  .questions-input {
    width: 100%;
    margin-bottom: 8px;
  }

  .questions-submit {
    margin-top: 8px;
    width: 100%;
  }

  footer {
    margin-top: 48px;
    padding-top: 32px;
  }
}

@media screen and (max-width:900px) {
  .menu-cont {
    padding: 0 16px 29px;
  }

  .footer-logo-cont {
    width: 100%;
    text-align: center;
  }

  .rights {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rights-text-cont {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {

  .carousel-cont,
  .category-carousel-cont,
  .promotion-carousel-cont,
  .brands-carousel-cont {
    width: 100%;
    overflow-x: scroll;
  }

  .carousel-item-arrow,
  .category-carousel-item-arrow,
  .promotion-carousel-item-arrow,
  .brands-carousel-item-arrow {
    display: none;
  }

  .ul,
  .category-ul,
  .promotion-ul,
  .brands-ul {
    width: max-content;
  }

  .category-link-btn {
    margin-top: 16px;
    position: unset;
    width: 100%;
    justify-content: center;
    margin-left: 0px;
  }

  .category-desktop {
    display: none;
  }

  .category-mobile {
    display: flex;
  }

  .rights {
    font-size: 12px;
    line-height: 17px;
  }

  .rights-text-cont {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rights-text {
    width: 100%;
  }

  .rights-text-logo-img {
    height: 11px;
  }
}

@media screen and (max-width: 700px) {
  .menu-cont {
    justify-content: space-between;
  }

  .footer-contacts,
  .footer-social-media {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {

  .left-icons,
  .right-icons {
    width: 64px;
    gap: 16px;
  }

  .mobile-search {
    left: 26px;
  }

  .main__item {
    height: 448px;
  }

  .new {
    font-size: 12px;
    padding: 8px 20px;
    line-height: 12px;
  }

  .main-banner-content .new::after {
    height: 28px;
  }

  .main-title {
    padding: 20px 0;
    max-width: 320px;
  }

  .main-title-descr {
    max-width: 260px;
  }

  .main-banner-link {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    line-height: 17px;
    padding: 15.5px;
  }

  .link-arrow {
    width: 16px;
    height: 16px;
  }

  .main__indicators {
    bottom: 32px;
    right: 24px;
    gap: 8px;
  }

  .main__indicator {
    height: 4px;
    width: 4px;
  }

  .main__indicator_active {
    width: 40px;
  }

  .main__indicator_active::after {
    height: 4px;
  }

  .small-banner,
  .small-banner-img {
    height: 196px;
  }

  .small-banner-title {
    font-size: 20px;
    line-height: 110%;
  }

  .small-banner-link {
    font-size: 12px;
    line-height: 17px;
  }

  .small-banner-link-img {
    width: 16px;
    height: 16px;
  }

  .category-ul {
    height: 420px;
  }

  .category-item {
    height: 400px;
    width: 296px;
    margin-right: 12px;
  }

  .category-item-img {
    width: 296px;
  }

  .category-item:hover {
    height: 420px;
  }

  .category-item:hover .category-item-size {
    height: 30px;
  }

  .category-item:hover .category-item-price-cont {
    padding-top: 10px;
  }

  .category-item-title,
  .promotion-item-title {
    font-size: 16px;
    height: 65px;
  }

  .category-item-size {
    font-size: 14px;
  }

  .category-item-price-cont {
    padding: 16px 0 19px;
    transition: .5s;
  }

  .category-item-price {
    font-size: 18px;
    line-height: 22px;
  }

  .category-item-availability {
    font-size: 12px;
    line-height: 17px;
  }

  .check {
    width: 16px;
    height: 16px;
  }

  .category-item-add {
    font-size: 12px;
    line-height: 17px;
    padding: 12px 24px;
  }

  .category-item-cart {
    width: 16px;
    height: 16px;
  }

  .category-item-favorite {
    width: 24px;
    height: 24px;
  }

  .brands-ul {
    height: 52px;
  }

  .brands-carousel-item {
    width: 111px;
    height: 52px;
  }

  .brands-carousel-item-img {
    width: 100px;
  }

  .news-ul {
    height: 236px;
  }

  .news-carousel-item {
    margin-right: 12px;
  }

  .news-carousel-item,
  .news-carousel-item-img {
    width: 328px;
    height: 236px;
  }

  .news-carousel-item-text {
    padding: 0 24px 20px;
  }

  .news-carousel-item-date {
    font-size: 12px;
    line-height: 17px;
  }

  .news-carousel-item-title {
    font-size: 18px;
    padding: 4px 0 12px;
  }

  .news-carousel-item-descr {
    font-size: 12px;
    width: 280px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .questions {
    padding: 32px 24px 40px;
  }

  .questions-descr {
    font-size: 12px;
  }

  .menu-cont {
    justify-content: flex-start;
    gap: 24px;
  }

  .footer-menu {
    width: 151px;
  }

  .footer-menu-title {
    padding-bottom: 12px;
  }

  .footer-menu-item {
    font-size: 12px;
    line-height: 17px;
    padding-bottom: 8px;
  }

  .address-title {
    font-size: 12px;
    line-height: 17px;
  }

  .address-pin,
  .address-phone {
    width: 20px;
    height: 20px;
  }

  .mobile-menu {
    gap: 24px;
  }

  .mobile-menu-link {
    font-size: 10px;
    line-height: 7px;
  }

  .mobile-menu-link-img {
    width: 24px;
    height: 24px;
  }
}


/* CATALOG DROPDOWN */

.cd-dropdown-wrapper {
  position: relative;
  left: -40px;
  display: flex;
  height: 0;
  margin: 0;
}

.cd-dropdown {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #333333;
  visibility: hidden;
  transform: translateZ(0);
  transform: translateY(-100%);
  transition: transform 0.5s 0s, visibility 0s 0.5s;
}

.cd-dropdown .cd-close {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 8px;
  height: 50px;
  width: 50px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.cd-dropdown .cd-close::after,
.cd-dropdown .cd-close::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  height: 20px;
  width: 1.2px;
  background-color: #828282;
}

.cd-dropdown .cd-close::after {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-dropdown .cd-close::before {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-dropdown.dropdown-is-active {
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.5s 0s, visibility 0s 0s;
}

.cd-dropdown-content,
.cd-dropdown-content ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  transition: transform 0.3s;
  padding-top: 76px;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
  display: block;
  text-overflow: ellipsis;
  border-color: transparent;
  border-style: solid;
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding: 12px 70px 12px 22px;
}

.mobile-active::-webkit-scrollbar,
.cd-dropdown-content ul::-webkit-scrollbar,
.cd-dropdown-content::-webkit-scrollbar {
  width: 4px;
}

.mobile-active::-webkit-scrollbar-thumb,
.cd-dropdown-content ul::-webkit-scrollbar-thumb,
.cd-dropdown-content::-webkit-scrollbar-thumb {
  background: #00656b;
}

.cd-dropdown-content li:first-of-type>a,
.cd-dropdown-content ul li:first-of-type>a {
  border-top-width: 0;
}

.cd-dropdown-content li:last-of-type>a,
.cd-dropdown-content ul li:last-of-type>a {
  border-bottom-width: 1px;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
  transform: translateZ(0);
  transition: opacity 0.3s, transform 0.3s;
}

.cd-dropdown-content.is-hidden,
.cd-dropdown-content ul.is-hidden {
  transform: translateX(100%);
}

.cd-dropdown-content.is-hidden>li>a,
.cd-dropdown-content.is-hidden>.cd-divider .cd-dropdown-content ul.is-hidden>li>a,
.cd-dropdown-content ul.is-hidden>.cd-divider {
  opacity: 0;
}

.cd-dropdown-content .see-all a {
  display: inline-block;
  color: #00656B;
  padding-right: 20px;
}

.cd-dropdown-content .see-all a:hover {
  color: #00abb6;
}

.cd-dropdown-content .see-all a::before,
.cd-dropdown-content .see-all a::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  height: 1px;
  width: 5px;
  right: 5px;
  transform-origin: 4.8px 50%;
  background-color: #00656B;
}

.cd-dropdown-content .see-all a:hover::before,
.cd-dropdown-content .see-all a:hover::after {
  background-color: #00abb6;
}


.cd-dropdown-content .see-all a::before {
  transform: rotate(50deg);
}

.cd-dropdown-content .see-all a::after {
  transform: rotate(-50deg);
}

@keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: visible;
  }
}

.has-children>a,
.go-back a {
  position: relative;
}

.has-children>a::before,
.go-back a::before {
  transform: rotate(50deg);
}

.has-children>a::after,
.go-back a::after {
  transform: rotate(-50deg);
}

.has-children>a {
  padding-right: 40px;
}

.cd-dropdown.dropdown-is-active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 76px;
  background-color: #fff;
  top: 0;
}

.cd-dropdown-content .go-back a {
  padding-left: 40px;
}

.cd-dropdown-content .go-back a::before,
.cd-dropdown-content .go-back a::after {
  left: 20px;
  transform-origin: 1px 50%;
}

.cd-dropdown>.h2 {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  z-index: 99;
}

@media (min-width: 992px) {
  .cd-dropdown-content>li>a {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cd-dropdown .cd-close {
    top: 5px;
  }

  .cd-dropdown-content,
  .cd-dropdown-content ul {
    padding-top: 60px;
  }

  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    font-size: 1.8rem;
  }

  .h2 {
    display: none;
  }

  .cd-dropdown.dropdown-is-active::after {
    content: none;
  }

  .cd-dropdown {
    top: 112px;
  }

  .cd-dropdown-content {
    height: calc(100vh - 113px);
  }

  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    padding: 4px 0;
  }

  .cd-dropdown-content ul .see-all a {
    padding: 0 15px 0 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>ul {
    margin-top: 10px;
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all a {
    margin-top: 5px;
  }

  .cd-dropdown-trigger.dropdown-is-active::before,
  .cd-dropdown-trigger.dropdown-is-active::after {
    width: 14px;
  }

  .cd-dropdown-trigger.dropdown-is-active::before {
    transform: translateX(5px) rotate(-45deg);
  }

  .cd-dropdown-trigger.dropdown-is-active::after {
    transform: rotate(45deg);
  }

  .cd-dropdown {
    position: absolute;
    top: 100%;
    height: auto;
    width: 300px;
    transform: translateX(0);
    background-color: #ffffff;
    color: #111433;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
  }

  .cd-dropdown .cd-close {
    display: none;
  }

  .cd-dropdown.dropdown-is-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
  }

  .cd-dropdown-content,
  .cd-dropdown-content ul {
    padding-top: 0;
    overflow: visible;
  }

  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    display: flex;
    align-items: center;
    color: #333;
    border-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  .cd-dropdown-content.is-hidden>li>a,
  .cd-dropdown-content ul.is-hidden>li>a {
    opacity: 1;
  }

  .cd-dropdown-content {
    position: static;
    height: calc(100vh - 114px);
    width: 348px;
    overflow-y: auto;
    padding: 24px 0;
  }

  .cd-dropdown-content>li:last-of-type a {
    border-bottom: none;
  }

  .no-touch .cd-dropdown-content>li:not(.has-children) a:hover {
    color: #3f8654;
  }

  .cd-dropdown-content .cd-secondary-dropdown {
    transform: translateX(0);
    left: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  }

  .cd-secondary-dropdown::-webkit-scrollbar {
    width: 3px;
  }

  .cd-secondary-dropdown::-webkit-scrollbar-thumb {
    background: #00656b;
  }

  .cd-dropdown-content .cd-secondary-dropdown::after {
    clear: both;
    content: "";
    display: table;
  }

  .cd-dropdown-content .cd-secondary-dropdown.is-hidden {
    transform: translateX(0);
  }

  .cd-dropdown-content .cd-secondary-dropdown.fade-in {
    animation: cd-fade-in 0.2s;
  }

  .cd-dropdown-content .cd-secondary-dropdown.fade-out {
    animation: cd-fade-out 0.2s;
  }

  .cd-dropdown-content .cd-secondary-dropdown>.go-back {
    display: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown>.see-all {
    position: absolute;
    bottom: 20px;
    height: 45px;
    text-align: center;
  }

  .cd-dropdown-content .cd-secondary-dropdown>.see-all a {
    margin: 0;
    height: 100%;
    line-height: 45px;
    background: #ebebeb;
    pointer-events: auto;
    transition: color 0.2s, background-color 0.2s;
  }

  .no-touch .cd-dropdown-content .cd-secondary-dropdown>.see-all a:hover {
    color: #ffffff;
    background-color: #111433;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li {
    width: 33.3%;
    float: left;
  }

  .cd-dropdown-content .cd-secondary-dropdown {
    width: 760px;
    padding-bottom: 65px;
    overflow-y: auto;
    padding: 8px 12px;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>a {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>a::after,
  .cd-dropdown-content .cd-secondary-dropdown>li>a::before {
    display: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li {
    padding: 8px;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li:nth-of-type(2n) {
    border-right-width: 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>ul {
    transform: translate(0);
    position: relative;
    height: auto;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>ul>.go-back {
    display: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown a {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    min-height: 20px;
    height: auto;
    margin: 4px 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown a:hover {
    color: #828282;
  }

  .no-touch .cd-dropdown-content .cd-secondary-dropdown a:hover {
    color: #3f8654;
  }

  .cd-dropdown-content .cd-secondary-dropdown ul {
    overflow: hidden;
    height: auto;
  }

  .cd-dropdown-content .cd-secondary-dropdown .go-back a {
    padding-left: 20px;
    color: transparent;
  }

  .no-touch .cd-dropdown-content .cd-secondary-dropdown .go-back a:hover {
    color: transparent;
  }

  .cd-dropdown-content .cd-secondary-dropdown .go-back a::before,
  .cd-dropdown-content .cd-secondary-dropdown .go-back a::after {
    left: 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all a {
    display: inline-block;
    position: relative;
    margin-top: 12px;
    color: #00656B;
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all a:hover {
    color: #00abb6;
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all a::before,
  .cd-dropdown-content .cd-secondary-dropdown .see-all a::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    height: 1.2px;
    width: 7px;
    right: 0px;
    transform-origin: 6.8px 50%;
    background-color: #00656B;
  }

  .cd-dropdown-content .see-all a:hover::before,
  .cd-dropdown-content .see-all a:hover::after {
    background-color: #00abb6;
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all a::before {
    transform: rotate(50deg);
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all a::after {
    transform: rotate(-50deg);
  }

  .cd-dropdown-content>li>a {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cd-dropdown-content>li>a.is-active {
    color: #00656B;
    background-color: #f2f2f2;
  }

  .cd-dropdown-content>.has-children>ul {
    visibility: hidden;
  }

  .cd-dropdown-content>.has-children>ul.is-active {
    visibility: visible;
  }

  .cd-dropdown-content>.has-children>.cd-secondary-dropdown.is-active>li>ul {
    visibility: visible;
  }
}

@media (min-width: 991px) and (max-width: 1120px) {
  .cd-dropdown-content .cd-secondary-dropdown {
    width: 677px;
  }

  .cd-dropdown-content .cd-secondary-dropdown a {
    height: auto;
    margin: 0;
  }
}

@media screen and (max-width: 992px) {

  .h2.hidden {
    display: none;
  }

  .has-children>a::before,
  .has-children>a::after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 1.9px;
    width: 8px;
    background: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .has-children>a::before,
  .has-children>a::after {
    background: #333;
  }

  .has-children>a::before,
  .has-children>a::after {
    right: 70px;
    transform-origin: 8px 50%;
  }

  .cd-dropdown-content>.has-children>a.is-active {
    color: #00656B;
    background-color: #f2f2f2;
  }

  .cd-dropdown-content>.has-children>a.is-active::before,
  .cd-dropdown-content>.has-children>a.is-active::after {
    background: #00656B;
  }

  .cd-secondary-dropdown.is-hidden {
    display: none;
  }

  .cd-secondary-dropdown li>a {
    opacity: 1;
  }

  .cd-secondary-dropdown {
    position: absolute !important;
  }

  .cd-secondary-dropdown ul {
    padding-top: 0;
  }

  .cd-dropdown-content ul {
    position: relative;
  }

  .cd-dropdown-content {
    position: relative;
  }

  .cd-dropdown-content>ul {
    position: relative;
    padding-top: 0;
  }

  ul.cd-secondary-dropdown>li {
    position: relative;
    top: initial;
    overflow: hidden;
    height: fit-content;
    margin-bottom: 45px;
  }

  ul.cd-secondary-dropdown>li.has-children {
    margin-bottom: 30px;
  }

  ul.cd-secondary-dropdown>li.has-children:last-child {
    margin-bottom: 0;
  }

  ul.cd-secondary-dropdown>li>ul>li {
    position: relative;
    display: block;
    height: fit-content;
  }

  .cd-secondary-dropdown>li>ul>li>a {
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
  }

  .cd-secondary-dropdown>li>ul>li.see-all {
    margin-top: 3px;
  }

  .cd-secondary-dropdown>li>a {
    font-size: 14px;
  }

  .cd-dropdown-content .go-back a {
    padding-left: 0;
  }

  .cd-secondary-dropdown>.go-back {
    position: absolute;
    z-index: 99999;
    top: 13px;
    left: 22px;
  }

  .cd-secondary-dropdown .go-back a {
    position: fixed;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #828282;
  }

  .cd-secondary-dropdown .go-back a::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(/local/templates/premiera/./img/arrow-left-grey.svg);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transform: inherit;
  }

  .cd-dropdown-content.move-out>li>a,
  .cd-dropdown-content.move-out>.cd-divider,
  .cd-dropdown-content ul.move-out>li>a,
  .cd-dropdown-content ul.move-out>.cd-divider {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 360px) {
  .open-filters {
    padding: 8px 6px 8px 26px;
    font-size: 14px;
  }

  .open-filters::after {
    top: 11px;
    left: 6px;
    width: 18px;
    height: 18px;
  }
}


/* CLEARANCE FORM  */

.back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #333;
  padding: 24px 0;
}

.form-title {
  padding-bottom: 32px;
}

.form-cont {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.product-registration {
  background: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  width: 75%;
}

.form-step {
  color: #333;
  padding-bottom: 20px;
}

.form-tabs {
  overflow: hidden;
}

.form-tab-btn,
.tab-form-btn {
  background-color: #fff;
  float: left;
  border-radius: 4px;
  border: 1px solid #828282;
  outline: none;
  cursor: pointer;
  padding: 12px 14px;
  transition: 0.3s;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-right: 12px;
}

.form-tab-btn:hover,
.tab-form-btn:hover {
  background-color: #828282;
  color: #fff;
}

.form-tab-btn.active,
.tab-form-btn.active {
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
}

.form-tab,
.tab-form {
  padding: 24px 0 32px;
}

.form-tab-title {
  color: #333;
}

.input-label {
  color: #828282;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 16px 0 8px;
  display: block;
}

.form-container {
  max-width: 446px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-input {
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FCFCFC;
  padding: 16px 20px;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  max-width: 446px;
  resize: none;
}

.choose-on-map {
  border-radius: 4px;
  border: 1px solid #00656B;
  background: #FFF;
  padding: 12px 20px;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  flex-shrink: 0;
  transition: .3s;
  cursor: pointer;
}

.choose-on-map:hover {
  background: rgba(0, 101, 107, 0.12);
}

textarea.form-input {
  height: 100px;
}

textarea:focus-visible {
  outline: none;
}

.payment-contacts {
  padding-top: 32px;
}

.terms {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.terms-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 24px 12px 20px;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 14px;
  max-width: 316px;
  border-radius: 4px;
  transition: .3s;
}

.terms-block:hover {
  background: rgba(0, 101, 107, 0.12);
}

.checkbox-cont {
  padding-top: 24px;
  max-width: 446px;
}

.checkbox-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-input+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #828282;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.checkbox-input+label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #00656B;
  border-radius: 2px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 8px;
}

.checkbox-input:checked+label::before {
  border-color: #00656B;
  background-color: #00656B;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3e%3cpath d='M9.76764 0.258252C9.45824 -0.0861925 8.95582 -0.0859754 8.64601 0.258252L3.59787 5.87088L1.35419 3.37643C1.04438 3.03198 0.542174 3.03198 0.23236 3.37643C-0.0774534 3.72087 -0.0774534 4.27921 0.23236 4.62365L3.03684 7.74161C3.19165 7.91373 3.39464 8 3.59765 8C3.80067 8 4.00386 7.91394 4.15867 7.74161L9.76764 1.50546C10.0775 1.16125 10.0775 0.602675 9.76764 0.258252Z' fill='white'/%3e%3c/svg%3e");
}

.checkbox-input:not(:disabled):not(:checked)+label:hover::before {
  background: rgba(0, 101, 107, 0.12);
}

.checkbox-input:not(:disabled):active+label::before {
  background-color: #00656B;
  border-color: #00656B;
}

.checkbox-input:focus:not(:checked)+label::before {
  border-color: #00656B;
}

.payment {
  padding-top: 32px;
  max-width: 446px;
}

.payment-text {
  color: #4F4F4F;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.payment-count {
  padding-right: 5px;
}

.payment-price,
.payment-discount-price {
  margin-left: auto;
  margin-right: 0;
}

.payment-total {
  color: #4F4F4F;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.payment-total-title {
  display: flex;
  padding: 16px 0 24px;
  border-top: 1px solid #E0E0E0;
}

.payment-total-title .payment-price {
  color: #00656B;
}

.payment-submit {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: #828282;
  cursor: pointer;
  transition: .5s;
  margin-bottom: 16px;
}

.payment-submit:hover {
  background: #009199;
}

.payment-descr {
  color: #4F4F4F;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
}

.modal {
  opacity: 0;
  visibility: hidden;
  display: flex;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(41, 41, 41, 0.6);
}

.modal-content {
  /* position: relative;
  background-color: #fff;
  margin: auto;
  width: 80%;
  height: 70vh;
  text-align: right;
  display: none;
  padding: 24px; */
}

.modal-title {
  text-align: center;
  padding-bottom: 24px;
}

.modal-map {
  height: 88%;
  width: 100%;
  margin: 0 auto;
}

.close {
  position: absolute;
  color: #000;
  font-size: 36px;
  width: 52px;
  height: 52px;
  background: transparent;
  transition: .5s;
  top: 0;
  right: 0;
  border: none;
}

.close:hover {
  cursor: pointer;
}

.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.modal--visible {
  display: block;
}

@media screen and (max-width: 850px) {
  .form-cont {
    flex-wrap: wrap;
  }

  .product-registration,
  .terms,
  .terms-block {
    width: 100%;
    max-width: 100%;
  }

  .modal-content {
    width: 95%;
  }
}

@media screen and (max-width: 700px) {
  .modal-content {
    padding: 16px;
  }
}

@media screen and (max-width: 550px) {
  .clearance {
    padding: 0;
  }

  .back {
    padding: 24px 16px;
  }

  .form-title {
    padding: 0 16px 24px;
  }

  .product-registration {
    padding: 24px 12px;
  }

  .form-tab-btn,
  .tab-form-btn {
    font-size: 14px;
    padding: 10px 8px;
    margin-right: 10px;
    line-height: 18px;
  }

  .choose-on-map {
    padding: 12px 10px;
    font-size: 12px;
    line-height: 28px;
  }

  .input-label {
    font-size: 12px;
  }

  .form-input {
    font-size: 10px;
  }
}



/* NEWS */

.news-block {
  padding-top: 25px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
}

.top-nav-link {
  color: #828282;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.top-nav-link:last-child {
  color: #333;
}

.top-nav-img {
  width: 10px;
}

.news-block-title {
  padding-bottom: 32px;
}

.news-block-cont {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  row-gap: 24px;
  column-gap: 20px;
  padding-bottom: 48px;
}

.news-block-cont .news-carousel-item {
  margin: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 84px;
}

.pagination-prev {
  cursor: pointer;
  transform: rotate(180deg);
}

.pagination-next {
  cursor: pointer;
}

.pagination-button {
  width: 32px;
  border: none;
  border-radius: 2px;
  background: transparent;
  padding: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  transition: .3s;
  text-align: center;
}

.pagination-button:hover {
  background: rgba(0, 101, 107, 0.12);
}

.pagination-dots {
  width: 24px;
  text-align: center;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.current-page {
  width: 32px;
  background: #00656B;
  color: #fff;
}

.current-page:hover {
  background: #00656B;
}

@media screen and (max-width: 550px) {
  .top-nav {
    padding-bottom: 12px;
  }

  .news-block-title {
    padding-bottom: 24px;
  }

  .news-block-cont {
    row-gap: 16px;
  }
}



/* COMPARISON */

.comparison {
  padding-top: 25px;
}

.comparison-cont {
  display: flex;
  justify-content: space-between;
  padding: 32px 0 24px;
  gap: 32px;
}

.comparison-title {
  background: #fff;
  width: 197px;
  padding: 25px 16px;
  flex-shrink: 0;
}

.comparison-title-main {
  padding: 16px;
  width: 197px;
  flex-shrink: 0;
}

.comparison-item {
  max-width: 548px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 4px;
  background-color: #fff;
  padding: 20px 24px 24px;
  gap: 12px;
}

.comparison-item-img {
  padding: 9px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
}

.comparison-item-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.comparison-item-can {
  transition: .3s;
  cursor: pointer;
}

.comparison-item-can:hover {
  opacity: 0.7;
}

.characteristics-item {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
}

.characteristics-item:last-child {
  padding-bottom: 84px;
}

.characteristics-text {
  max-width: 548px;
  width: 41%;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1110px) {

  .comparison-cont,
  .characteristics-item {
    gap: 16px;
  }

  .comparison-title-main {
    padding: 16px 8px;
    width: 170px;
  }

  .comparison-title {
    padding: 25px 8px;
    width: 170px;
  }
}

@media screen and (max-width: 950px) {

  .comparison-cont,
  .characteristics-item {
    /* flex-wrap: wrap; */
  }

  .comparison-title {
    width: 100%;
    padding: 16px;
  }

  .comparison-item,
  .characteristics-text {
    width: 48%;
  }

  .comparison-item {
    flex-direction: column;
    padding: 16px 16px 24px;
  }

  .characteristics-item:last-child {
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 550px) {
  .comparison-cont {
    column-gap: 8px;
    padding-top: 24px;
  }

  .characteristics-item {
    column-gap: 8px;
  }

  .comparison-item {
    position: relative;
    padding: 8px 8px 16px;
  }

  .comparison-item-title {
    display: block;
  }

  .comparison-item-can {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .comparison-item .category-item-price-cont {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }

  .comparison-item .category-item-add {
    padding: 8px;
  }
}


/* FAVOURITES */

.favs-block {
  padding-top: 32px;
}

.favs-cont {
  padding: 32px 0 84px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.favs-cont .category-item {
  margin: 0;
}


@media screen and (max-width: 1440px) {
  .favs-cont {
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 950px) {

  .favs-cont,
  .discounts-cont,
  .video-cont {
    padding: 24px 0 48px;
  }
}

@media screen and (max-width: 550px) {
  .favs-cont {
    padding-top: 24px;
  }
}



/* DISCOUNTS */

.discounts {
  padding-top: 24px;
}

.discounts-cont {
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 24px;
  padding: 32px 0 84px;
}

.discounts-link {
  position: relative;
  width: 663px;
  height: 399px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 32px;
  background-image: linear-gradient(0deg, #000 0%, rgba(0, 49, 52, 0.00) 37.62%);
  transition: .5s;
}

.discounts-link:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.discounts-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.discounts-redprice {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  border-radius: 4px;
  background: #FF1818;
  padding: 8px 12px;
  width: fit-content;
}

.discounts-title {
  color: #fff;
}


@media screen and (max-width: 1440px) {
  .discounts-cont {
    justify-content: center;
  }
}

@media screen and (max-width: 850px) {
  .discounts-cont {
    row-gap: 16px;
    padding-bottom: 48px;
  }

  .discounts-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



/* INSTALLATION INSTRUCTIONS */

.installation_instructions {
  padding-top: 24px;
}

.video-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 24px;
  padding: 32px 0 84px;
}

.video-item {
  padding: 45px 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
  max-width: 663px;
  height: 399px;
  border-radius: 4px;
  background-image: linear-gradient(0deg, #000 0%, rgba(0, 49, 52, 0.00) 37.62%);
  transition: .3s;
  cursor: pointer;
}

.video-item:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 4px;
}

.video-title {
  position: absolute;
  color: #fff;
  bottom: 45px;
  left: 32px;
  right: 32px;
}

@media screen and (max-width: 950px) {
  .video-item {
    width: 100%;
    max-width: 100%;
  }
}




/* CATALOG  */

.catalog {
  padding-top: 24px;
}

.catalog__header {
  display: flex;
  justify-content: space-between;
}

.catalog__sorting-inner {
  display: flex;
  align-items: center;
  grid-gap: 0 16px;
}

.open-filters {
  display: none;
  position: relative;
  align-items: center;
  height: 40px;
  padding: 8px 16px 8px 40px;
  border-radius: 2px;
  background: #00656B;
  color: #FFF;
}

.open-filters::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: url('/local/templates/premiera/./img/open-filters.svg');
  background-repeat: no-repeat;
  background-size: 100%;
}

.catalog__sorting-title {
  color: #828282;
}

.catalog__sorting-select {
  position: relative;
}

.catalog__sorting-select>select {
  width: 240px;
  height: 40px;
  padding: 8px 36px 8px 16px;
  border-radius: 2px;
  border: 0.5px solid #BDBDBD;
  background: #FFFFFF;
  color: #333;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.catalog__sorting-select>select:focus-visible {
  border: 1px solid #00656B;
}

.catalog__sorting-select>img {
  position: absolute;
  top: 16px;
  right: 16px;
}

.catalog__filter {
  margin: 32px 0;
}

.catalog__filter_control {
  display: none;
}

.catalog__filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.slider-item__title {
  color: #828282;
  font-size: 14px;
}

.slider-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-item {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

.slider-item input {
  width: 80px;
  border-radius: 4px;
  border: 0.5px solid #BDBDBD;
  background: #FFF;
  font-size: 14px;
  color: #333;
  padding: 12px 0;
  text-align: center;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.catalog__filter-title {
  color: #333;
  font-weight: 500;
}

.catalog__filter-arrow {
  width: 20px;
  height: 20px;
  background: url('/local/templates/premiera/./img/arrow-bottom.svg');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  cursor: pointer;
  transition: .3s ease-out;
}

.catalog__filter-inner {
  margin: 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: .3s ease-out;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}

.slider-track {
  width: 100%;
  height: 1.5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #4F4F4F;
}

.slider-control {
  position: relative;
  margin-top: 24px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  background-color: #00656B;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 50%;
}

.range-input2::-webkit-slider-thumb::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100px;
  height: 1.5px;
  display: block;
  background: #fff;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #00656B;
  pointer-events: auto;
}

input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
}

input[type="range"]::-ms-thumb {
  appearance: none;
  height: 12px;
  width: 12px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #00656B;
  pointer-events: auto;
}

input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 3px solid #00656B;
}

.values {
  background-color: #00656B;
  width: 32%;
  position: relative;
  margin: auto;
  padding: 10px 0;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  color: #ffffff;
}

.values:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-top: 15px solid #00656B;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  margin: auto;
  bottom: -14px;
  left: 0;
  right: 0;
}

.checkbox-items {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
}

.checkbox-item input {
  width: 0;
  height: 0;
  opacity: 0;
  background-color: transparent;
}

.checkbox-item label::after,
.checkbox-item label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -26px;
  width: 16px;
  height: 16px;
  border: 1px solid #BDBDBD;
  background-color: #F5F5F7;
  border-radius: 2px;
  z-index: 99;
  cursor: pointer;
}

.checkbox-item input:checked + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -26px;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  background-color: #333;
  border-radius: 2px;
  z-index: 99;
  opacity: 1;
}

.checkbox-item input:checked + label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -26px;
  width: 16px;
  height: 16px;
  background: url('/local/templates/premiera/./img/check-mark.svg');
  border: 1px solid #333;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 2px;
  z-index: 999;
}

.checkbox-item label {
  margin: 0 0 0 28px;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.checkbox-item label span {
  color: #828282;
  font-size: 12px;
  margin: 0 0 0 8px;
}

.filter__see-full {
  margin-top: 8px;
  display: inline-block;
  width: max-content;
  position: relative;
  font-size: 14px;
  color: #828282;
  cursor: pointer;
  transition: .3s;
}

.filter__see-full:hover {
  color: #333;
}

.filter__see-full::after {
  position: absolute;
  right: -20px;
  top: 2px;
  content: "";
  background: url('/local/templates/premiera/./img/arrow-bottom-grey.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  width: 12px;
  height: 12px;
  transition: .3s;
}

.filter__see-full.active::after {
  transform: rotate(-180deg);
}

.more-items-panel {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.catalog__content {
  display: flex;
  margin: 32px 0;
  grid-gap: 48px;
  flex: 1 100%;
}

.catalog__content .category-item {
  margin-right: 0;
  width: auto;
}

.catalog__sitebar {
  max-width: 300px;
  flex: 1 100%;
}

.catalog__sitebar .h2,
.catalog__sitebar .close-filter {
  display: none;
}

.catalog__sitebar .h2 {
  position: absolute;
  top: 24px;
  left: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  z-index: 99;
}

.close-filter {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 8px;
  height: 50px;
  width: 50px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.close-filter::after,
.close-filter::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  height: 20px;
  width: 1.2px;
  background-color: #828282;
}

.close-filter::after {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.close-filter::before {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.sitebar__category-header {
  display: flex;
  align-items: flex-end;
  grid-gap: 8px;
}

.sitebar__category-title {
  color: #333;
  font-weight: 500;
}

.sitebar__category-count-products {
  color: #828282;
  font-size: 12px;
}

.sitebar__category-content {
  margin-top: 16px;
}

.sitebar__category-content a {
  display: block;
  font-size: 14px;
  line-height: 180%;
  color: #333;
  transition: .3s;
}

.sitebar__category-content a:hover {
  color: #828282;
}

.catalog__products {
  width: 100%;
}

.catalog__products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}

.badge-container {
  position: absolute;
  top: 12px;
  left: 12px;
  width: CALC(100% - 24px);
}

.badge {
  width: max-content;
  border-radius: 4px;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 12px;
}

.badge-new {
  color: white;
  background: #009199;
}

.badge-promo {
  position: absolute;
  right: 0;
  color: white;
  background: #FF1818;
}

.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}

.pagination-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: .3s;
}

.pagination-list__item.active {
  color: white;
  background-color: #00656B;
}

.pagination-list__item.active:hover {
  background-color: #00656B;
}

.pagination-list__item:hover {
  background-color: rgba(0, 101, 107, 0.12);
}

.pagination-arrow {
  cursor: pointer;
  margin-top: 3px;
}

.catalog-bottom-description {
  margin-top: 48px;
  font-size: 14px;
  line-height: 140%;
}

.catalog-bottom-description h2 {
  padding-bottom: 24px;
}

.catalog .questions {
  margin-top: 68px;
}


@media screen and (max-width: 1350px) {
  .catalog__products-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-item-img {
    width: 100%;
  }

  .catalog__products-list .category-item-title {
    font-size: 16px;
  }

  .catalog__sorting-title {
    font-size: 12px;
  }

  .catalog__sorting-select>select {
    width: 160px;
  }

  .catalog__content .category-item {
    height: max-content;
  }
}

@media (min-width: 850px) and (max-width: 960px) {
  .catalog__products-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .catalog__content {
    grid-gap: 24px;
  }
}

@media screen and (max-width: 850px) {
  .category-item-price-stock {
    font-size: 12px;
  }

  .catalog__sitebar {
    display: none;
    max-width: 100%;
  }

  .catalog__sorting {
    flex-direction: row;
  }

  .open-filters {
    display: flex;
    flex-direction: row;
  }

  .catalog__sorting-inner {
    flex-direction: column;
    align-items: flex-end;
    grid-gap: 8px 0;
  }

  .catalog__sorting {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .catalog__header {
    flex-direction: column;
    grid-gap: 8px 0;
  }

  .pagination {
    /*display: none;*/
  }

  .catalog__content .category-item {
    width: 100%;
  }

  .catalog__products.mobile-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .catalog__products.mobile-slider .catalog__products-list {
    display: flex;
  }

  .mobile-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #FFF;
    width: 100%;
    padding: 76px 16px 0 16px;
    height: 100vh;
    overflow-y: auto;
  }

  .catalog__sitebar .h2,
  .catalog__sitebar .close-filter {
    display: block;
  }

  .catalog__filter_control {
    display: block;
  }

  .catalog__filter_control>button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    width: 100%;
    height: 48px;
    text-align: center;
    border-radius: 2px;
    background-color: #00656B;
    font-size: 12px;
    color: white;
    border: none;
  }

  .catalog__filter_control .apply {
    margin-top: 12px;
  }

  .catalog__filter_control .reset-the-filter {
    color: #828282;
    background-color: transparent;
  }
}

@media screen and (max-width: 550px) {
  .catalog__products-list {
    grid-template-columns: 1fr;
  }

  .catalog__products-list .category-item {
    height: 100%;
  }

  .catalog__products-list .category-item:hover {
    height: 100%;
  }

  .catalog-bottom-description h2 {
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 360px) {
  .catalog__sorting-select>select {
    width: 150px;
  }
}


/* ABOUT COMPANY */

.about_company {
  padding-top: 24px;
}

.about_company_h3 {
  padding-bottom: 32px;
}

.section_about_company {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section_about_company_btn {
  width: 316px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: #fff;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  transition: .3s;
}

.section_about_company_btn:hover {
  background: rgba(0, 101, 107, 0.12);
}

.brands_careers_cooperation_main_info_general {
  padding-bottom: 84px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.main_info_company_general {
  max-width: 1012px;
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 4px;
}

.desc_of_company {
  padding-bottom: 32px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.about_company_img {
  width: 100%;
  margin-bottom: 32px;
}

.advantages {
  padding-bottom: 32px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.choice_guarantee {
  max-width: 664px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 32px;
  gap: 16px;
}

.reliability_geography_general {
  display: flex;
  justify-content: flex-end;
}

.reliability_geography {
  max-width: 664px;
  display: flex;
  justify-content: space-between;
  gap: 16px;

}

.advantage {
  width: 33%;
  display: flex;
  justify-content: space-between;
}

.desc_of_advantage {
  width: 100%;
}

.advantage_span {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  padding-bottom: 8px;
}

.experience_text {
  padding-bottom: 32px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.we_offer_block {
  padding-bottom: 32px;
}

.we_offer_h3 {
  padding-bottom: 16px;
}

.offer-ul {
  list-style: disc;
  padding-left: 16px;
}

.offer {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.how_to_cooperate_h3 {
  padding-bottom: 16px;
}

.how_to_cooperate_li {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.how_to_cooperate_ul {
  padding-bottom: 16px;
}

.certificates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.certificate {
  width: 110px;
}

.about_company_modal {
  opacity: 0;
	visibility: hidden;
  display: flex;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(41, 41, 41, 0.7);
}

.about_company_modal_content {
  background-color: transparent;
  margin: auto;
  display: none;
  position: relative;
  width: 35%;
}

.about_company_modal_content img {
  width: 100%;
}

.about_company_modal_close {
  color: #000;
  font-size: 36px;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-left: auto;
  transition: .5s;
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: -20px;
}

.about_company_modal_close:hover {
  color: #333;
}

.modal-overlay--visible {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease-in-out;
}

.modal--visible {
	display: block;
}


@media screen and (max-width: 1200px) {
  p {
    font-size: calc(12px + 4 * (100vw - 360px) / 840);
  }

  .advantage_span {
    font-size: calc(14px + 4 * (100vw - 360px) / 840);
  }

  .offer {
    font-size: calc(12px + 4 * (100vw - 360px) / 840);
  }

  .how_to_cooperate_li {
    font-size: calc(12px + 4 * (100vw - 360px) / 840);
  }

}

@media screen and (max-width: 1110px) {
  .brands_careers_cooperation {
    max-width: 100%;
  }

  .choice_guarantee,
  .reliability_geography {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .advantage,
  .desc_of_advantage {
    width: 100%;
    gap: 16px;
  }

  .reliability_geography_general {
    max-width: 100%;
  }
}

@media screen and (max-width: 950px) {
  .brands_careers_cooperation_main_info_general {
    flex-direction: column;
    padding-bottom: 48px;
  }

  .section_about_company_btn {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .advantages {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 700px) {
  .about_company_modal_content {
    width: 70%;
  }
}

@media screen and (max-width: 550px) {
  .certificates {
    justify-content: center;
  }
}

/* TERMS OF SALE */

.terms_of_sale_ordering {
  padding-top: 24px;
}

.terms_of_sale_and_conditions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.terms_of_sale_ordering_section {
  max-width: 1012px;
  width: 100%;
  padding: 32px 24px;
  margin-bottom: 48px;
  border-radius: 4px;
  background-color: #fff;
}

.terms_of_sale_ordering_h3 {
  padding-bottom: 32px;
}

.info_about_order_p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 18px;
}

.info_about_order_p:last-child {
  padding-bottom: 0;
}

.ways_to_make_order_text {
  padding-bottom: 20px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.ways_to_make_order_link {
  color: #333;
  transition: .3s;
}

.ways_to_make_order_link:hover {
  color: #828282;
}

.required_info_h6 {
  padding-bottom: 12px;
}

.conditions_of_order {
  padding: 0 0 20px 16px;
}

.condition_of_order {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.custom_made_section {
  max-width: 1012px;
  padding: 32px 24px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 48px;
}

.custom_made_h3 {
  padding-bottom: 32px;
}

.custom_made_text {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 16px;
}

.custom_made_text:last-child {
  padding-bottom: 0;
}

.ways_to_pay {
  padding-bottom: 84px;
}

.ways_to_pay_h3 {
  padding-bottom: 20px;
}

.way_to_pay {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  gap: 12px;
}

.way_to_pay:last-child {
  padding-bottom: 0;
}

.way_to_pay {
  max-width: 384px;
}

@media screen and (max-width: 1110px) {
  .terms_of_sale_and_conditions {
    gap: 16px;
  }

  .way_to_pay svg {
    padding-bottom: 10px;
  }

}

@media screen and (max-width: 850px) {
  .terms_of_sale_ordering_h3 {
    padding-bottom: 24px;
  }

  .terms_of_sale_ordering_section {
    margin-bottom: 24px;
  }

  .terms_of_sale_and_conditions {
    flex-direction: column;
    padding-bottom: 24px;
    gap: 24px;
  }

  .custom_made_section {
    margin-bottom: 0;
  }

  .ways_to_pay {
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 550px) {

  .ways_to_make_order_text,
  .condition_of_order,
  .info_about_order_p,
  .custom_made_text {
    font-size: 12px;
  }

  .terms_of_sale_ordering_section,
  .custom_made_section {
    padding: 24px 16px;
  }
}


/* DELIVERY CONDITIONS */

.delivery_conditions {
  padding-top: 24px;
}

.conditions_of_delivery_cont {
  display: flex;
  gap: 32px;
  padding-bottom: 84px;
}

.conditions_of_delivery_h3 {
  padding-bottom: 32px;
}

.ways_to_deliver {
  max-width: 1012px;
  width: 100%;
  padding: 32px 24px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 32px;
}

.ways_to_deliver_h6 {
  margin-bottom: 12px;
}

.ways_to_deliver_conditions {
  padding-left: 16px;
}

.condition_of_delivery {
  color: #333;
  list-style-type: disc;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.extended_info {
  width: 1012px;
  padding: 24px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  overflow-x: auto;
}

.extended_info_cont {
  width: 964px;
}

.info_about_delivery_general {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 20px;
  margin-bottom: 20px;
}

.info_about_delivery_general:last-child {
  margin-bottom: 0;
}

.info_about_delivery_general h6 {
  color: #00656B;
}

.info_about_delivery_general p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.info_about_delivery_general .info_about_delivery_first_column {
  font-weight: 500;
}

.info_about_delivery_first_column {
  width: 165px;
  flex-shrink: 0;
}

.info_about_delivery_second_column {
  width: 414px;
  flex-shrink: 0;
}

.info_about_delivery_third_column {
  width: 180px;
  flex-shrink: 0;
}

.info_about_delivery_fourth_column {
  width: 157px;
  flex-shrink: 0;
}

@media screen and (max-width: 1440px) {
  .extended_info {
    width: calc(574px + 438 * (100vw - 1000px) / 440);
  }
}

@media screen and (max-width: 1110px) {
  .conditions_of_delivery_cont {
    gap: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .extended_info {
    width: calc(470px + 153 * (100vw - 850px) / 150);
  }
}

@media screen and (max-width: 850px) {
  .conditions_of_delivery_h3 {
    padding-bottom: 24px;
  }

  .conditions_of_delivery_cont {
    padding-bottom: 48px;
    flex-direction: column;
  }

  .ways_to_deliver {
    margin-bottom: 24px;
  }

  .info_about_delivery {
    width: 100%;
  }

  .extended_info {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {

  .condition_of_delivery,
  .info_about_delivery_general p {
    font-size: 12px;
  }

  .ways_to_deliver,
  .extended_info {
    padding: 16px;
  }
}


/* EXCHANGE POLICY */


.exchange_refund_policy {
  padding-top: 24px;
}

.exchange_refund_policy_h3 {
  padding-bottom: 32px;
}

.exchange_refund_policy_and_conditions {
  padding-bottom: 84px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.exchange_refund_policy_and_conditions_section {
  max-width: 1012px;
  padding: 32px 24px;
  border-radius: 4px;
  background: #FFF;
}

.info_about_exchange_refund_policy_text {
  color: #000;
  font-size: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  padding-bottom: 20px;
}

.premiera_website_link {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: underline;
}

.refund_span {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}


.condition_item {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  list-style-type: disc;
}

.condition_list {
  padding-left: 16px;
}

@media screen and (max-width: 1110px) {
  .exchange_refund_policy_and_conditions {
    gap: 16px;
  }
}

@media screen and (max-width: 850px) {
  .exchange_refund_policy_h3 {
    padding-bottom: 24px;
  }

  .exchange_refund_policy_and_conditions {
    flex-direction: column;
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 550px) {
  .exchange_refund_policy_and_conditions_section {
    padding: 24px 16px;
  }

  .info_about_exchange_refund_policy_text,
  .condition_item {
    font-size: 12px;
  }
}

/* OUR SALONS */

.our_salons {
  padding-top: 24px;
}

.our_salons_h3 {
  padding-bottom: 32px;
}


.tabs {
  width: 878px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.tab {
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  padding: 12px 20px;
  cursor: pointer;
}

.current_tab {
  border-radius: 4px;
  border: 1px solid #00656B;
  background: rgba(0, 101, 107, 0.12);
}

.info_about_locations {
  display: none;
}

.info_about_location {
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  background: #FFF;
  padding: 32px;
  margin-bottom: 24px;
}

.info_about_location:last-child {
  margin-bottom: 0;
}

.name_of_salon_h4 {
  color: #333;
  padding-bottom: 16px;
}

.info_about_salon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
}

.info_about_salon:last-child {
  margin-bottom: 0;
}

.info_about_salon_h6 {
  color: #333;
  max-width: 368px;
}

.info_about_salon_link {
  color: #333;
}

@media screen and (max-width: 950px) {
  .our_salons_h3 {
    padding-bottom: 24px;
  }

  .tabs {
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .info_about_location {
    max-width: 100%;
    flex-direction: column;
  }

  .info_about_location article {
    margin-bottom: 24px;
  }

  .google_map {
    max-width: 100%;
  }
}

/* CART OF PRODUCTS */

.card_of_products {
  padding-top: 24px;
}

.cart_of_products_h3 {
  padding-bottom: 32px;
}

.cart_and_checkout_general {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.cart_of_product {
  max-width: 881px;
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  background: #FFF;
  padding: 20px 20px 24px 20px;
  margin-bottom: 12px;
}

.cart_of_custom:last-child {
  margin-bottom: 0;
}

.img_and_desc_of_products_in_cart {
  max-width: 526px;
  display: flex;
  gap: 20px;
}

.small_product_img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
}

.discount_and_counter {
  flex-shrink: 0;
}

.desc_of_product_in_cart {
  max-width: 418px;
}

.desc_of_product_h6 {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 8px;
}

.desc_of_product_p {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 8px;
}

.price_of_product {
  color: #00656B;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.new_price {
  color: #FF1818;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.old_price {
  color: #828282;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: line-through;
}

.price_for_one {
  color: #101010;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.discount_main {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 24px;
}

.discount {
  width: 55px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #FF1818;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;

}

.counter_and_general_price {
  display: flex;
  align-items: center;
  gap: 16px;

}

.counter {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.minus,
.plus {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: #F2F2F2;
  border-radius: 4px;
  transition: .3s;
}

.delete_btn {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 4px;
  background: #F2F2F2;
  cursor: pointer;
  border: none;
  transition: .3s;
}

.minus:hover,
.plus:hover,
.delete_btn:hover {
  background: rgba(0, 101, 107, 0.12);
}

.number_of_products {
  width: 44px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  color: #333;
  background: #FFF;
  display: flex;
  align-items: center;
  text-align: center;
}

.total_price_of_products {
  color: #00656B;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  flex-shrink: 0;
}

.side-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout {
  max-width: 316px;
  padding: 24px;
  border-radius: 4px;
  background: #FFF;
}

.weight_of_order {
  display: flex;
  justify-content: space-between;
}

.weight_of_order span {
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.quantity_of_products {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.quantity_of_products span {
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.products_worth {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.products_worth span {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.products_worth h6 {
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.price_with_discount {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.price_with_discount span {
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.total_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.total_price h6 {
  color: #333;
}

.total_price h4 {
  color: #00656B;
}

.checkout_btn {
  width: 268px;
  padding: 12px 24px;
  border-radius: 4px;
  background: #00656B;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  border: none;
  transition: .3s;
  cursor: pointer;
}

.checkout_btn:hover {
  background: #009199;
}

@media screen and (max-width: 1110px) {
  .cart_and_checkout_general {
    gap: 16px;
  }
}

@media screen and (max-width: 950px) {
  .cart_of_products_h3 {
    padding-bottom: 24px;
  }

  .cart_and_checkout_general {
    flex-direction: column;
  }

  .cart_of_product {
    display: flex;
    flex-direction: column;
  }

  .cart_of_products_general {
    width: 100%;
  }

  .img_and_desc_of_products_in_cart {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .small_product_img {
    width: 50%;
    height: 50%;
    margin: 0 auto;
  }

  .side-cont {
    width: 100%;
  }

  .side-cont .terms,
  .side-cont .terms-block {
    width: 100%;
    max-width: 100%;
  }

  .checkout {
    max-width: 100%;
    width: 100%;
  }

  .checkout_btn {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .cart_of_product {
    position: relative;
  }

  .discount_main {
    padding: 0;
  }

  .discount {
    width: 51px;
    padding: 8px 12px;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    border-radius: 2px;
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .small_product_img {
    width: 100%;
    height: auto;
    border: none;
  }

  .price_of_product {
    position: absolute;
    right: 16px;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 18px;
    font-weight: 600;
  }

  .new_price {
    order: 2;
    font-size: 18px;
    font-weight: 600;
  }

  .old_price {
    order: 1;
  }

  .price_for_one {
    color: #00656B;
    order: 3;
    padding-right: 5px;
  }

  .total_price_of_products {
    display: none;
  }
}


/* PRODUCT CARD */

.product_card {
  padding-top: 32px;
}

.prodcut_and_price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 64px;
  gap: 32px;
}

.product {
  width: 100%;
}

.general_info_about_product {
  padding: 32px 24px;
  border-radius: 4px;
  background: #FFF;
  margin-bottom: 24px;
  width: 100%;
}

.new_and_discount {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
}

.card-new {
  width: 89px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #009199;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

.card-discount {
  width: 55px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #FF1818;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

.product_name {
  padding-bottom: 28px;
}

.product_and_characteristics {
  max-width: 908px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.product_carousel_items {
  position: relative;
  display: flex;
  max-width: 408px;
}

.product_slider_item {
  display: none;
}

.slider-img {
  width: 90%;
  max-width: 328px;
  max-height: 328px;
  vertical-align: middle;
}

.product_slider {
  width: 100%;
}

.product_next {
  display: flex;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.product_next:hover {
  opacity: 0.8;
}

.row {
  width: 25%;
  position: relative;
  padding-right: 15px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  width: 100%;
}

.product_carousel_item {
  border-radius: 4px;
  margin: 0 2px 12px;
  max-width: 64px;
  max-height: 64px;
  cursor: pointer;
  vertical-align: middle;
  object-fit: contain;
}

.product_carousel_item.active,
.product_carousel_item:hover {
  border: solid 1px #00656B;
}


.characteristics {
  max-width: 500px;
}

.characteristics_h4 {
  padding-bottom: 16px;
}

.characteristic {
  display: flex;
  align-items: flex-start;
  padding-bottom: 8px;
  gap: 4px;
}

.characteristic:last-child {
  padding-bottom: 0;
}

.characteristics_p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.desc_usage_safety_panel_title {
  color: #00656B;
  background: #FFF;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  display: none;
  transition: .3s;
}

.desc_usage_safety_panel_title_arrow {
  transition: .5s;
}

.desc_usage_safety {
  background: #FFF;
  border: 4px;
  padding: 32px 24px;
  border-radius: 4px;
}

.desc_usage_safety_item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  color: #333;
}

.desc_usage_safety_item:last-child {
  padding-bottom: 0;
}

.desc_usage_safety_item-title {
  width: 218px;
}

.desc_usage_safety_item_text {
  width: 67%;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.total {
  width: 316px;
  padding: 24px;
  border-radius: 4px;
  background-color: #FFF;
}

.articul {
  color: #828282;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 12px;
}

.available {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
}

.custom_is_avaliable {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.priceforone_and_counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.current_price_for_one_text {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.current_price_for_one_h6 {
  color: #FF1818;
}

.old_price_for_one {
  color: #828282;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: line-through;
}

.sum_span {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.add_to_cart_btn {
  width: 100%;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  background: #00656B;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
  transition: .3s;
}

.add_to_cart_btn:hover {
  background: #009199;
}

.add_to_fav_and_compare {
  display: flex;
  justify-content: space-between;
}

.add_to_fav,
.compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
}

.add_to_fav_icon {
  stroke: #00656B;
  transition: .3s;
}

.add_to_fav:hover .add_to_fav_icon {
  opacity: 0.5;
  fill: #00656B;
  stroke: #00656B;
}

.add_to_fav_span,
.compare_span {
  color: #4F4F4F;
  font-size: 12px;
  font-weight: 400;
  line-height: 137.5%;
}

.compare_icon {
  fill: #00656B;
  transition: .3s;
  cursor: pointer;
}

.compare:hover .compare_icon {
  opacity: 0.5;
  fill: #00656B;
}

.download_btn {
  border: none;
  border-radius: 4px;
  background: #333;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  transition: .3s;
}

.download_btn:hover {
  background-color: #828282;
}

.product_main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 64px;
}

.product_carousel_title {
  padding: 10px 0 32px;
}

.product_carousel_arrow {
  position: absolute;
  top: 0;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

.seo_text {
  padding-bottom: 68px;
}

.seo_text_h3 {
  color: #000;
  padding-bottom: 24px;
}

.seo_text_p {
  max-width: 1012px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

@media screen and (max-width: 1200px) {
  .prodcut_and_price {
    gap: 16px;
  }

  .product_and_characteristics {
    flex-direction: column;
    gap: 24px;
  }

  .characteristics {
    max-width: 100%;
  }

  .characteristic {
    gap: 12px;
  }

  .characteristics_h6 {
    width: 92px;
    flex-shrink: 0;
  }

  .total_price_h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 950px) {
  .prodcut_and_price {
    flex-direction: column;
    padding-bottom: 48px;
  }

  .desc_usage_safety_panel_title {
    display: flex;
  }

  .desc_usage_safety {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: .3s ease-out;
  }

  .desc_usage_safety_item {
    flex-direction: column;
    gap: 12px;
  }

  .hide {
    display: none;
  }

  .desc_usage_safety_item_text {
    width: 100%;
  }

  .total {
    width: 100%;
  }

  .product_main {
    gap: 48px;
    padding-bottom: 48px;
  }

  .seo_text {
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 850px) {
  .product_carousel_arrow {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .general_info_about_product {
    padding: 16px 16px 26px;
  }

  .row {
    order: 2;
  }

  .characteristics_p {
    font-size: 12px;
  }

  .characteristics_h6 {
    width: 75px;
  }

  .card-new,
  .card-discount {
    padding: 4px 12px;
    font-size: 12px;
  }

  .add_to_cart_btn {
    font-size: 12px;
    padding: 12px;
  }

  .add_to_cart_btn svg {
    width: 16px;
    height: 16px;
  }

  .download_btn {
    font-size: 12px;
    padding: 14px;
  }

  .download_btn img {
    width: 20px;
    height: 20px;
  }

  .seo_text_p {
    font-size: 12px;
  }
}


/* ARTICLE */


.three_d_panels {
  padding-top: 24px;
}

.unique_3d_panels_h3 {
  padding-bottom: 32px;
}

.panels_articles_and_products_general {
  display: flex;
  align-items: flex-start;
  gap: 32px;
	flex-direction: column;
}

.panels_articles_general {
  padding: 32px 24px;
  border-radius: 4px;
  background: #FFF;
}

.panel_article {
  padding-bottom: 32px;
}

.panel_article:last-child {
  padding-bottom: 0;
}

.panel_article_img {
  width: 100%;
  margin-bottom: 32px;
  height: auto;
}
.panel_article h3{
  padding-bottom: 15px;
  padding-top: 25px
}
.panel_article ul{
  list-style: disc;
  padding-left: 16px;
}
.panel_article ul li{
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.panel_article p{color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
padding: 15px}
.panel_desc_p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.why_so_unique_h3 {
  padding-bottom: 32px;
}

.plaster_panel {
  width: 322px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 4px;
}

.plaster_panel:last-child {
  margin-bottom: 0;
}

.plaster_panel_img {
  width: 100%;
  border: 1px solid #BDBDBD;
}

.name_price_availability {
  padding: 16px 16px 24px;
}

.plaster_panel_h4 {
  color: #333;
  height: 75px;
  padding-bottom: 12px;
}

.price_availability {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 12px;
}

.price_h3 {
  color: #00656B;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
}

.availabile {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.add_to_cart_fav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add_to_fav_btn {
  width: 166px;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  background: #00656B;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .3s;
}

.add_to_fav_btn:hover {
  background: #009199;
}

@media(max-width: 1200px) {
  .panels_articles_and_products_general {
    gap: 16px;
  }

  .plaster_panel {
    width: 250px;
  }
}

@media(max-width: 950px) {
  .unique_3d_panels_h3 {
    padding-bottom: 24px;
  }

  .panels_articles_and_products_general {
    gap: 16px;
    flex-direction: column;
  }

  .plaster_panels {
    width: 100%;
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    gap: 24px;
  }

  .plaster_panel {
    margin: 0;
    width: 300px;
    flex-shrink: 0;
  }
}

@media(max-width: 700px) {
  .panels_articles_general {
    padding: 24px 16px;
  }

  .panel_desc_p {
    font-size: 12px;
  }
}



/* BRANDS */

.brands {
  padding-top: 24px;
}

.brands_h3 {
  padding-bottom: 32px;
}

.about_compnay_career_cooperation_and_about_brands_general {
  display: flex;
  gap: 32px;
  padding-bottom: 150px;
}

.about_company_career_cooperation_general {
  width: 316px;
  flex-shrink: 0;
}

.about_compnay_career_cooperation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about_company_btn {
  width: 100%;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 4px;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  transition: .3s;
}

.about_company_btn:hover {
  background: rgba(0, 101, 107, 0.12);
}

.info_about_brands_general {
  width: 100%;
  padding: 32px 24px;
  border-radius: 4px;
  background: #FFF;
}

.brands_assortment {
  padding-bottom: 32px;
}

.tabs_about_brands {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.tabs_about_brands_aside {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tab_about_brand {
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  transition: .3s;
}

.tab_about_brand:hover {
  border: 1px solid #00656B;
  background: rgba(0, 101, 107, 0.12);
}

.current_brand_tab {
  border: 1px solid #00656B;
  background: rgba(0, 101, 107, 0.12);
}

.brands_assortment_tab {
  display: none;
}

.desc_about_europlast {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding-bottom: 32px;
}

.info_about_brands .about_company_img {
  margin: 0;
}

.brands_carousel {
  position: relative;
  padding-bottom: 84px;
}

.brands_carousel_arrow {
  position: absolute;
  top: -78px;
  background: transparent;
  border: none;
  display: block;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .about_compnay_career_cooperation_and_about_brands_general {
    gap: 16px;
  }

  .about_company_career_cooperation_general {
    width: 250px;
  }
}

@media screen and (max-width: 1000px) {
  .brands_h3 {
    padding-bottom: 24px;
  }

  .about_compnay_career_cooperation_and_about_brands_general {
    flex-direction: column;
    padding-bottom: 120px;
  }

  .about_company_career_cooperation_general {
    width: 100%;
  }

  .brands_carousel {
    padding-bottom: 48px;
  }
}

@media screen and (max-width: 950px) {
  .brands_carousel_arrow {
    top: -54px;
  }
}

@media screen and (max-width: 850px) {
  .about_compnay_career_cooperation_and_about_brands_general {
    padding-bottom: 48px;
  }

  .brands_carousel_arrow {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .about_company_btn {
    font-size: 12px;
  }

  .about_company_btn svg {
    width: 5px;
  }

  .info_about_brands_general {
    padding: 24px 16px;
  }

  .tab_about_brand {
    padding: 8px 12px;
    font-size: 12px;
    text-align: left;
  }

  .desc_about_europlast {
    font-size: 12px;
  }
}


/* 3D MODELS */

.three_d_models {
  padding-top: 24px;
}

.three_d_models_h3 {
  padding-bottom: 32px;
}

.tabs_and_next_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  position: relative;
}

.tabs_and_next_btn::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -1px;
  display: block;
  height: 50px;
  width: 130px;
  background: linear-gradient(270deg, #F5F5F7 59.79%, rgba(245, 245, 247, 0.00) 100%);
  z-index: 1;
}

/*.tabs_and_next_btn::before {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  display: block;
  height: 50px;
  width: 50px;
  background: linear-gradient(90deg, #F5F5F7 59.79%, rgba(245, 245, 247, 0.00) 100%);
  z-index: 1;
}*/
/*.three_d_models .tabs_slide_cont {
  padding-left: 20px;
}*/
.three_d_models .prev_btn:hover {
  background: rgba(255, 255, 255, .8);
}

.tabs_slide_cont {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tabs_slide_cont::-webkit-scrollbar {
  display: none;
}

.next_btn,
.prev_btn {
  position: absolute;
  right: 0;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: none;
  background: #FFF;
  cursor: pointer;
  transition: .3s;
}
.next_btn{
  right: 0;
}
.prev_btn {
  left: 0;
  transform: rotate(180deg);
}

.next_btn:hover,
.prev_btn:hover {
  background: rgba(0, 101, 107, 0.12);
}

.three_d_models_tabs {
  width: max-content;
  padding: 0 80px 0 20px;
  display: flex;
  gap: 12px;
  transition: all ease 1s;
}

.three_d_models_tab {
  padding: 12px 20px;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  cursor: pointer;
  transition: .3s;
}

.three_d_models_tab:hover {
  border: 1px solid #00656B;
  background: rgba(0, 101, 107, 0.12);
}

.three_d_models_tab_active {
  border: 1px solid #00656B;
  background: rgba(0, 101, 107, 0.12);
}

.tabs2_cont {
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 32px;
}

.tabs2 {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid #BDBDBD;
}

.tab2 {
  flex-shrink: 0;
  color: #828282;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  position: relative;
}
.tab2:hover {
  cursor: pointer;
}

.tab2_active {
  color: #00656B;
}

.tab2_active::after {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 4px;
  background: #00656B;
  position: absolute;
  bottom: -12.5px;
}

.tab2_content {
  display: none;
}

.btns_and_characteristics_general {
  padding-bottom: 84px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.btns_general {
  width: 384px;
  padding: 24px 0;
  border-radius: 4px;
  background: #FFF;
  flex-shrink: 0;
}

.characteristic_filters_menu,
.exterior_angle_cont_mobile {
  position: absolute;
  top: 0;
  right: -220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0;
  overflow: hidden;
  max-width: 220px;
  background: #fff;
}

.characteristic_filters_menu {
  z-index: 2;
}

.characteristic_filters_menu_inner {
  padding: 24px;
}

.btns_and_characteristics_general .back,
.btns_and_characteristics_general .go_back {
  display: none;
}

.go_back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #333;
  padding: 24px 0;
}

.characteristic_filters_link {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: .3s;
}

.characteristic_filters_link:hover {
  color: #009199;
}

.characteristic_filters_menu_btns {
  display: none;
  padding: 12px 16px;
  background: #fff;
  flex-direction: column;
  align-items: center;
}

.characteristic_filters_menu_submit {
  width: 100%;
  border-radius: 4px;
  border: none;
  background: #00656B;
  padding: 16px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}

.characteristic_filters_menu_reset {
  color: #828282;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
  background: none;
  border: none;
}

.check_characteristic_btn {
  position: relative;
  width: 100%;
/*  padding: 12px 40px;*/
  color: #333;
  background: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  text-align: left;
}
.check_characteristic_btn .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
}

.exterior_angle_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.exterior_angle_download{
  display: flex;
  align-items: center;
}
.exterior_angle_download .selected_download{
  padding: 12px 24px;
  border-radius: 4px;
  background: #00656B;
  color: var(--white, #FFF);
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Gotham";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  border: none;
}
.exterior_angle_download .selected_download:hover{
  cursor: pointer;
}
.exterior_angle_download .select_all{
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.exterior_angle_download .select_all label:hover, .exterior_angle_download .select_all input:hover{
  cursor: pointer;
}
.exterior_angle_download .select_all label{
  font-size: 14px;
  margin-left: 12px;
}
.exterior_angle_download .select_all input{
  accent-color: #00656B;
  width: 16px;
  height: 16px;
}
@media (max-width: 576px) {
  .exterior_angle_download {
    flex-direction: column;
    grid-gap: 10px;
    padding-top: 72px;
    padding-right: 16px;
  }
  .exterior_angle_download .selected_download {
    font-size: 12px;
    padding: 7px 15px;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .exterior_angle_download .select_all input {
    width: 14px;
    height: 14px;
  }
  .exterior_angle_download .select_all label{
    font-size: 12px;
    margin-left: 10px;
  }
}
.check_characteristic_btn svg {
  fill: #333;
  transition: .3s;
}

.check_characteristic_btn:hover {
  color: #00656B;
  background: #F2F2F2;
}

.check_characteristic_btn:hover svg {
  fill: #00656B;
}

.exterior_angle_cont_mobile {
  z-index: 1;
  max-width: 944px;
  left: 410px;
  top: -24px;
  background: transparent;
}

.check_characteristic_btn:first-child .exterior_angle_cont_mobile:nth-child(3) {
  width: 994px;
}

.check_characteristic_btn:nth-child(2) .exterior_angle_cont_mobile {
  top: -70px;
}

.check_characteristic_btn:nth-child(3) .exterior_angle_cont_mobile {
  top: -116px;
}

.check_characteristic_btn:nth-child(4) .exterior_angle_cont_mobile {
  top: -162px;
}

.check_characteristic_btn:nth-child(5) .exterior_angle_cont_mobile {
  top: -208px;
}

.check_characteristic_btn:nth-child(6) .exterior_angle_cont_mobile {
  top: -254px;
}

.check_characteristic_btn:nth-child(7) .exterior_angle_cont_mobile {
  top: -300px;
}

.check_characteristic_btn:nth-child(8) .exterior_angle_cont_mobile {
  top: -346px;
}

.check_characteristic_btn:nth-child(9) .exterior_angle_cont_mobile {
  top: -392px;
}

.check_characteristic_btn:nth-child(10) .exterior_angle_cont_mobile {
  top: -438px;
}

.check_characteristic_btn:nth-child(11) .exterior_angle_cont_mobile {
  top: -484px;
}

.check_characteristic_btn:nth-child(12) .exterior_angle_cont_mobile {
  top: -530px;
}

.exterior_angle_h3 {
  padding-bottom: 24px;
}

.exterior_angle_general {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.exterior_angle_btn {
  width: 124px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  color: #00656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
  cursor: pointer;
}

.exterior_angle_btn:hover {
  border: 1px solid #00656B;
  background: rgba(0, 101, 107, 0.12);
}
.exterior_angle_btn input {
  accent-color: #00656B;
  width: 16px;
  height: 16px;
  display: none;
}

@media screen and (max-width: 1440px) {
  .exterior_angle_cont_mobile {
    max-width: calc(510px + 414 * (100vw - 850px) / 590);
  }
}

@media screen and (max-width: 1200px) {
  .btns_general {
    padding: 16px 0;
    width: 300px;
  }

  .check_characteristic_btn {
    padding: 12px 24px;
  }

  .exterior_angle_cont_mobile {
    left: 316px;
  }
}

@media screen and (max-width: 850px) {

  .tabs_slide_cont {
    overflow-x: auto;
  }

  .three_d_models_h3,
  .tabs_and_next_btn {
    padding-bottom: 24px;
  }

  .tabs_and_next_btn::before,
  .tabs_and_next_btn::after {
    width: 40px;
  }

  .three_d_models_tabs {
    padding: 0 30px;
    width: fit-content;
  }

  .next_btn,
  .prev_btn {
    display: none;
  }


  .btns_and_characteristics_general {
    padding-bottom: 48px;
    flex-direction: column;
  }

  .btns_general {
    width: 100%;
  }

  .exterior_angle_h3 {
    padding: 72px 16px 24px;
  }

  .exterior_angle_general {
    padding: 0 16px;
  }

  .check_characteristic_btn:hover {
    color: #333;
    background: #fff;
  }
  
  .check_characteristic_btn:hover svg {
    fill: #333;
  }

  .exterior_angle_cont_mobile {
    justify-content: start;
  }

  .characteristic_filters_menu,
  .exterior_angle_cont_mobile {
    background: #F5F5F7;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    z-index: 4;
    max-width: 100%;
    transition: .5s;
  }

  .check_characteristic_btn:first-child .exterior_angle_cont_mobile:nth-child(3) {
    width: 0;
  }

  .check_characteristic_btn:nth-child(2) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(3) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(4) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(5) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(6) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(7) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(8) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(9) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(10) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(11) .exterior_angle_cont_mobile,
  .check_characteristic_btn:nth-child(12) .exterior_angle_cont_mobile {
    top: 0;
  }

  .exterior_angle_btn {
    width: 100px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .characteristic_filters_menu_inner {
    padding: 0 12px;
    margin-top: 72px;
  }

  .btns_and_characteristics_general .back,
  .btns_and_characteristics_general .go_back {
    position: fixed;
    top: 24px;
    left: 16px;
    z-index: 5;
    padding: 0;
    cursor: pointer;
  }

  .characteristic_filters_link {
    font-size: 12px;
    line-height: 25px;
    padding: 0 0 8px 12px;
  }

  .characteristic_filters_menu_btns {
    display: flex;
  }

  .tabs2_cont {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 700px) {
  .three_d_models_tab {
    padding: 8px 12px;
    font-size: 14px;
  }

  .next_btn {
    width: 37px;
    height: 37px;
  }

  .tab2 {
    font-size: 14px;
  }
	.city-title {
		height: 20px;
	}
	.dpd-countries .city {
		text-align: left;
	}
	.dpd-countries {
		box-shadow: 0 15px 15px rgba(0,0,0,.1);
	}
}

@media screen and (max-width: 550px) {
  .characteristic_filters_menu .back,
  .characteristic_filters_menu .go_back {
    padding: 24px 0;
  }
}




#wrapper {
  position: relative;
  width: 100vw;
}
#wrapper > div {
  position: relative;
  white-space: nowrap;
}
#wrapper img {
  display: inline-block;
  height: 50px;
}


@media screen and (max-width: 768px) 
{
.grecaptcha-badge 
{
bottom: 126px!important;display:none!important;
}

}


/* End */


/* Start:/local/templates/premiera/js/formcheck/style.css?1708911328558*/

/* Стили для формы */

.rline {
	position: relative;
	display: block;
}

.form_style .btnsubmit {
}
.form_style input.rf_error {
  border-color: #d8512d;
}
.form_style .rfield_error {
  display: block;
  padding: 0px 10px;
  background-color: #d8512d;
  color: #fff;
  font-size: 12px;
  z-index: 1;
  position: absolute;
  top: 0px;
  right: 0px;
  visibility: hidden;
}
.form_style .rcheck .rfield_error {
  top: 0px;
  left: 22px;
  right: auto;
}
.form_style .btnsubmit.disabled,
.form_style .btnsubmit.disabled:hover {
	cursor: default;
}

/* End */


/* Start:/local/templates/premiera/js/fancybox_4/fancybox.css?172717535715598*/
.carousel{position:relative;box-sizing:border-box}.carousel *,.carousel *:before,.carousel *:after{box-sizing:inherit}.carousel.is-draggable{cursor:move;cursor:grab}.carousel.is-dragging{cursor:move;cursor:grabbing}.carousel__viewport{position:relative;overflow:hidden;max-width:100%;max-height:100%}.carousel__track{display:flex}.carousel__slide{flex:0 0 auto;width:var(--carousel-slide-width, 60%);max-width:100%;padding:1rem;position:relative;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}.has-dots{margin-bottom:calc(0.5rem + 22px)}.carousel__dots{margin:0 auto;padding:0;position:absolute;top:calc(100% + 0.5rem);left:0;right:0;display:flex;justify-content:center;list-style:none;user-select:none}.carousel__dots .carousel__dot{margin:0;padding:0;display:block;position:relative;width:22px;height:22px;cursor:pointer}.carousel__dots .carousel__dot:after{content:"";width:8px;height:8px;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);background-color:currentColor;opacity:.25;transition:opacity .15s ease-in-out}.carousel__dots .carousel__dot.is-selected:after{opacity:1}.carousel__button{width:var(--carousel-button-width, 48px);height:var(--carousel-button-height, 48px);padding:0;border:0;display:flex;justify-content:center;align-items:center;pointer-events:all;cursor:pointer;color:var(--carousel-button-color, currentColor);background:var(--carousel-button-bg, transparent);border-radius:var(--carousel-button-border-radius, 50%);box-shadow:var(--carousel-button-shadow, none);transition:opacity .15s ease}.carousel__button.is-prev,.carousel__button.is-next{position:absolute;top:50%;transform:translateY(-50%)}.carousel__button.is-prev{left:10px}.carousel__button.is-next{right:10px}.carousel__button[disabled]{cursor:default;opacity:.3}.carousel__button svg{width:var(--carousel-button-svg-width, 50%);height:var(--carousel-button-svg-height, 50%);fill:none;stroke:currentColor;stroke-width:var(--carousel-button-svg-stroke-width, 1.5);stroke-linejoin:bevel;stroke-linecap:round;filter:var(--carousel-button-svg-filter, none);pointer-events:none}html.with-fancybox{scroll-behavior:auto}body.compensate-for-scrollbar{overflow:hidden !important;touch-action:none}.fancybox__container{position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;margin:0;padding:env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);box-sizing:border-box;display:flex;flex-direction:column;color:var(--fancybox-color, #fff);-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden;z-index:1050;outline:none;transform-origin:top left;--carousel-button-width: 48px;--carousel-button-height: 48px;--carousel-button-svg-width: 24px;--carousel-button-svg-height: 24px;--carousel-button-svg-stroke-width: 2.5;--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container :focus{outline:none}body:not(.is-using-mouse) .fancybox__container :focus{box-shadow:0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))}@media all and (min-width: 1024px){.fancybox__container{--carousel-button-width:48px;--carousel-button-height:48px;--carousel-button-svg-width:27px;--carousel-button-svg-height:27px}}.fancybox__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background:var(--fancybox-bg, rgba(24, 24, 27, 0.92))}.fancybox__carousel{position:relative;flex:1 1 auto;min-height:0;height:100%;z-index:10}.fancybox__carousel.has-dots{margin-bottom:calc(0.5rem + 22px)}.fancybox__viewport{position:relative;width:100%;height:100%;overflow:visible;cursor:default}.fancybox__track{display:flex;height:100%}.fancybox__slide{flex:0 0 auto;width:100%;max-width:100%;margin:0;padding:48px 8px 8px 8px;position:relative;overscroll-behavior:contain;display:flex;flex-direction:column;outline:0;overflow:auto;--carousel-button-width: 36px;--carousel-button-height: 36px;--carousel-button-svg-width: 22px;--carousel-button-svg-height: 22px}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}@media all and (min-width: 1024px){.fancybox__slide{padding:64px 100px}}.fancybox__content{margin:0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);padding:36px;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);position:relative;align-self:center;display:flex;flex-direction:column;z-index:20}.fancybox__content :focus:not(.carousel__button.is-close){outline:thin dotted;box-shadow:none}.fancybox__caption{align-self:center;max-width:100%;margin:0;padding:1rem 0 0 0;line-height:1.375;color:var(--fancybox-color, currentColor);visibility:visible;cursor:auto;flex-shrink:0;overflow-wrap:anywhere}.is-loading .fancybox__caption{visibility:hidden}.fancybox__container>.carousel__dots{top:100%;color:var(--fancybox-color, #fff)}.fancybox__nav .carousel__button{z-index:40}.fancybox__nav .carousel__button.is-next{right:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-next{right:40px}}.fancybox__nav .carousel__button.is-prev{left:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-prev{left:40px}}.carousel__button.is-close{position:absolute;top:8px;right:8px;top:calc(env(safe-area-inset-top, 0px) + 8px);right:calc(env(safe-area-inset-right, 0px) + 8px);z-index:40}@media all and (min-width: 1024px){.carousel__button.is-close{right:40px}}.fancybox__content>.carousel__button.is-close{position:absolute;top:-40px;right:0;color:var(--fancybox-color, #fff)}.fancybox__no-click,.fancybox__no-click button{pointer-events:none}.fancybox__spinner{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:50px;height:50px;color:var(--fancybox-color, currentColor)}.fancybox__slide .fancybox__spinner{cursor:pointer;z-index:1053}.fancybox__spinner svg{animation:fancybox-rotate 2s linear infinite;transform-origin:center center;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:100%;height:100%}.fancybox__spinner svg circle{fill:none;stroke-width:2.75;stroke-miterlimit:10;stroke-dasharray:1,200;stroke-dashoffset:0;animation:fancybox-dash 1.5s ease-in-out infinite;stroke-linecap:round;stroke:currentColor}@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}@keyframes fancybox-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.fancybox__backdrop,.fancybox__caption,.fancybox__nav,.carousel__dots,.carousel__button.is-close{opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close{animation:.15s ease backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .carousel__button.is-close{animation:.15s ease both fancybox-fadeOut}.fancybox-fadeIn{animation:.15s ease both fancybox-fadeIn}.fancybox-fadeOut{animation:.1s ease both fancybox-fadeOut}.fancybox-zoomInUp{animation:.2s ease both fancybox-zoomInUp}.fancybox-zoomOutDown{animation:.15s ease both fancybox-zoomOutDown}.fancybox-throwOutUp{animation:.15s ease both fancybox-throwOutUp}.fancybox-throwOutDown{animation:.15s ease both fancybox-throwOutDown}@keyframes fancybox-fadeIn{from{opacity:0}to{opacity:1}}@keyframes fancybox-fadeOut{to{opacity:0}}@keyframes fancybox-zoomInUp{from{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes fancybox-zoomOutDown{to{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}}@keyframes fancybox-throwOutUp{to{transform:translate3d(0, -30%, 0);opacity:0}}@keyframes fancybox-throwOutDown{to{transform:translate3d(0, 30%, 0);opacity:0}}.fancybox__carousel .carousel__slide{scrollbar-width:thin;scrollbar-color:#ccc rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar{width:8px;height:8px}.fancybox__carousel .carousel__slide::-webkit-scrollbar-track{background-color:rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:2px;box-shadow:inset 0 0 4px rgba(0,0,0,.2)}.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content{cursor:move;cursor:grabbing}.fancybox__carousel .fancybox__slide .fancybox__content{cursor:auto}.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content{cursor:zoom-in}.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content{cursor:zoom-out}.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__image{transform-origin:0 0;user-select:none;transition:none}.has-image .fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px}.is-closing .has-image .fancybox__content{overflow:visible}.has-image[data-image-fit=contain]{overflow:visible;touch-action:none}.has-image[data-image-fit=contain] .fancybox__content{flex-direction:row;flex-wrap:wrap}.has-image[data-image-fit=contain] .fancybox__image{max-width:100%;max-height:100%;object-fit:contain}.has-image[data-image-fit=contain-w]{overflow-x:hidden;overflow-y:auto}.has-image[data-image-fit=contain-w] .fancybox__content{min-height:auto}.has-image[data-image-fit=contain-w] .fancybox__image{max-width:100%;height:auto}.has-image[data-image-fit=cover]{overflow:visible;touch-action:none}.has-image[data-image-fit=cover] .fancybox__content{width:100%;height:100%}.has-image[data-image-fit=cover] .fancybox__image{width:100%;height:100%;object-fit:cover}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content{width:100%;height:80%}.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.fancybox__carousel .fancybox__slide.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.fancybox__thumbs{flex:0 0 auto;position:relative;padding:0px 3px;opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__thumbs{opacity:0}.fancybox__thumbs .carousel__slide{flex:0 0 auto;width:var(--fancybox-thumbs-width, 96px);margin:0;padding:8px 3px;box-sizing:content-box;display:flex;align-items:center;justify-content:center;overflow:visible;cursor:pointer}.fancybox__thumbs .carousel__slide .fancybox__thumb::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-width:5px;border-style:solid;border-color:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));opacity:0;transition:opacity .15s ease;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after{opacity:.92}.fancybox__thumbs .carousel__slide>*{pointer-events:none;user-select:none}.fancybox__thumb{position:relative;width:100%;padding-top:calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));background-size:cover;background-position:center center;background-color:rgba(255,255,255,.1);background-repeat:no-repeat;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__toolbar{position:absolute;top:0;right:0;left:0;z-index:20;background:linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);padding:0;touch-action:none;display:flex;justify-content:space-between;--carousel-button-svg-width: 20px;--carousel-button-svg-height: 20px;opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))}@media all and (min-width: 1024px){.fancybox__toolbar{padding:8px}}.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__toolbar{opacity:0}.fancybox__toolbar__items{display:flex}.fancybox__toolbar__items--left{margin-right:auto}.fancybox__toolbar__items--center{position:absolute;left:50%;transform:translateX(-50%)}.fancybox__toolbar__items--right{margin-left:auto}@media(max-width: 640px){.fancybox__toolbar__items--center:not(:last-child){display:none}}.fancybox__counter{min-width:72px;padding:0 10px;line-height:var(--carousel-button-height, 48px);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased}.fancybox__progress{background:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));height:3px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:30;user-select:none}.fancybox__container:fullscreen::backdrop{opacity:0}.fancybox__button--fullscreen g:nth-child(2){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2){display:block}.fancybox__button--slideshow g:nth-child(2){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2){display:block}
/* End */


/* Start:/local/templates/premiera/custom.css?171274640616077*/
header {
	position: relative;
}
/* 
.cd-dropdown-wrapper {
	overflow: hidden;
} */

.im_wrapper {
	position: absolute;
	display: flex;
	flex-direction: column;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

footer {
	margin-top: auto;
}

.brands-carousel-item img {
    max-width: 100% !important;
}


.newsdetvl .main_info_company_general {
    max-width: 100% !important;
}



.favor.active {
    stroke: #00656b !important;
}



.category-item {
	height: auto;
}

.category-item:hover {
	height: auto;
}

.kolbasket {
	position: absolute;
	top: 0;
	right: 50%;
	margin-right: -25px;
	padding: 3px;
	border-radius: 4px;
	background: #00656B;
	color: #FFF;
	text-align: center;
	font-size: 8px;
	font-weight: 500;
	line-height: 6px;
	width: 12px;
	height: 12px;
}

#favkol {
	position: absolute;
	top: 0;
	right: 50%;
	margin-right: -25px;
}

#favkol span {
	position: absolute;
	top: 0;
	right: 50%;
	padding: 3px;
	border-radius: 4px;
	background: #00656B;
	color: #FFF;
	text-align: center;
	font-size: 8px;
	font-weight: 500;
	line-height: 6px;
	width: 12px;
	height: 12px;
}

.shopping-cart::after {
	display: none;
}

.category-item__picture {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 240px;
}

.category-item__picture img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.check_characteristic_btn:hover {
		color: inherit;
		background: inherit;
}

.check_characteristic_btn .btn:hover {
		color: #00656B;
		background: #F2F2F2;
}

.catalog__filter-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.catalog__filter-title .fa {
	width: 20px;
	height: 20px;
	background: url(/local/templates/premiera/./img/arrow-bottom.svg);
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(180deg);
	cursor: pointer;
	transition: .3s ease-out;
}

.catalog__filter-title .fa.fa-angle-down {
	transform: rotate(0deg);
}

.bx-filter-block {
	margin: 16px 0;
}

.checkout-success {
	position: relative;
	display: block;
	margin: 30px 0;
}

.checkout-success p {
	position: relative;
	display: block;
	color: #333;
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 10px;
}

.checkout-success__title {
	color: #333;
	font-size: 16px;
	font-weight: 700;
	line-height: 120%;
	padding-bottom: 8px;
}

.address_map {
	position: relative;
	display: block;
	width: 100%;
	height: 400px;	
}

.favs-cont {
	justify-content: flex-start;
}

.search-page input[name=q] {
	border-radius: 4px 0 0 4px;
	border: 1px solid #fff;
	background: #FFF;
	padding: 9px 20px;
	width: 343px;
	color: #333;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

.search-page input[type=submit] {
	position: relative;
	border-radius: 4px;
	border: none;
	background-color: #00656B;
	width: 56px;
	height: 36px;
	margin-left: -5px;
	cursor: pointer;
	transition: .3s;
	color: #fff;
}

.search__item {
	position: relative;
	display: flex;
	margin-bottom: 15px;
	align-items: center;
}

.search__item__picture {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 100px;
	height: 100px;
}

.search__item__picture img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.search__item__title {
	position: relative;
	display: block;
	margin-left: 15px;
	font-size: 16px;
	color: #333;
}

.notfound {
	position: relative;
	display: flex;
	padding: 100px 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.notfound h1 {
	font-size: 100px;
	line-height: 100%;
	color: #00656B
}

.notfound a {
	position: relative;
	display: block;
	margin-top: 30px;
	color: #333;
}

.tabs2 {
	display: none;
}

.tabs2_active {
	display: flex;
}

.tab2_content {
	display: none;
}

.tab2_content_active {
	display: block;
}

.check_characteristic_btn {
	
}

.check_characteristic_btn_active {
	color: #00656B;
	background: #F2F2F2;
}

.characteristic_filters_menu {
	width: 100%;
}

.characteristic_filters_menu.closed {
	display: none;
}

.characteristic_filters_menu.opened {
	display: flex;
}

.exterior_angle_cont_mobile.closed {
	display: none;
}

.check_characteristic_btn:first-child .exterior_angle_cont_mobile:nth-child(3) {
	width: 944px;
}

.characteristic_filters_menu, .exterior_angle_cont_mobile {
	width: 944px;
}

.mobile-search-input {
	width: 350px;
	max-width: 350px;
	padding: 20px 32px 20px 42px;
	border: 1px solid #BDBDBD;
}

.closed .mobile-search_form {
	display: none;
}

.mobile-submit {
	display: none;
}

.closed .mobile-submit {
	display: block;
}

.mobile-submit__btn {
	position: absolute;
	left: 12px;
	top: 9px;
	background-color: transparent;
	background-image: url(/local/templates/premiera/./img/search-mob.svg);
	border: none;
	width: 24px;
	height: 24px;
}

.search-page {
	position: relative;
	display: block;
	padding-bottom: 50px;
}

.exterior_angle_btn.download_all {
	background: rgb(0, 101, 107);
	color: rgb(255, 255, 255);
}

.exterior_angle_btn.download_all img {
	display: none;
}

.exterior_angle_btn.download_all input {
	display: block;
}

/* .comparison-item-img {
	width: 75px;
	height: auto;
}
*/
.comparison-item {
	position: relative;
	width: 500px;
	flex: none;
}

.compare_count {
	position: absolute;
	display: block;
	top: 0;
	right: 50%;
	margin-right: -25px;
}

.compare_count__number {
	position: absolute;
	top: 0;
	right: 0;
	padding: 3px;
	border-radius: 4px;
	background: #00656B;
	color: #FFF;
	text-align: center;
	font-size: 8px;
	font-weight: 500;
	line-height: 6px;
	width: 12px;
	height: 12px;
}

.compare {
	width: 50%;
	justify-content: flex-end;
}

.bx_sort_container {
	display: none;
}

.table_compare {
	margin-top: 32px;
	margin-bottom: 80px;
	overflow: hidden;
	overflow-x: auto;
}

.bx_filtren_container {
	display: none;
}

.data-table {
	position: relative;
	display: grid;
	gap: 32px;
}

.city a {
		color: #333;
}

.news-ul {
	display: flex;
}

.table__row {
	/* position: relative;
	display: flex;
	gap: 32px; */
}

.table__row__cell {
	/* position: relative;
	display: flex;
	width: 548px;
	padding: 16px;
	width: 197px;
	flex-shrink: 0;
	background-color: #fff; */
	/* width: 100%; */
}

.table__row__cell__label {
	/* width: 197px;
	flex: none; */
}

.comparison-cont {
	padding: 0px;
	position: relative;
}

.compare__item__picture {
	position: relative;
	display: flex;
	width: 85px;
	height: 85px;
	flex: none;
}

.compare__item__picture img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	border: 1px solid #BDBDBD;
	border-radius: 4px;
	padding: 9px;
}

.compare__item__block__name {
	font-size: 18px;
	font-weight: 500;
	line-height: 25px;
	color: #333;
	padding-right: 30px;
}

.compare__item__block {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-between;
	height: auto;
	min-height: 100%;
}

.compare_del {
	position: absolute;
	display: block;
	top: 20px;
	right: 24px;
	width: 20px;
}

.compare_del img {
	width: 20px;
	height: auto;
}

.comparison-item__value {
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.compare__item__block_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
}

.main_info_company p{
	padding-bottom: 32px;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
}

.cd-dropdown_mobile {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #333333;
	visibility: hidden;
	transform: translateZ(0);
	transform: translateY(-100%);
	transition: transform 0.5s 0s, visibility 0s 0.5s;
	flex-direction: column;
	align-items: flex-start;
}

.cd-dropdown_mobile .cd-close {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 8px;
	height: 50px;
	width: 50px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: transparent;
}

.cd-dropdown_mobile .cd-close::after,
.cd-dropdown_mobile .cd-close::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	transform: translateX(-50%) translateY(-50%);
	height: 20px;
	width: 1.2px;
	background-color: #828282;
}

.cd-dropdown_mobile .cd-close::after {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-dropdown_mobile .cd-close::before {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-dropdown_mobile.dropdown-is-active {
	visibility: visible;
	transform: translateY(0);
	transition: transform 0.5s 0s, visibility 0s 0s;
}

.cd-dropdown_mobile>.h2 {
	position: absolute;
	top: 24px;
	left: 24px;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	z-index: 99;
}

.drop_menu_mobile {
	position: relative;
	display: block;
}

.cd-dropdown_mobile__city {
	position: relative;
	display: block;
	margin-top: 70px;
	padding: 0 24px 0;
}

.drop_menu_mobile {
	position: relative;
	display: block;
	margin-top: 10px;
	padding: 0 24px 0;
}

.drop_menu_mobile__item {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 10px;
	color: #333;
	font-weight: 500;
}

.close-3d {
	position: absolute;
	display: none;
	z-index: 1;
	right: 0;
	top: 8px;
	height: 50px;
	width: 50px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: transparent;
}

.close-3d::after, .close-3d::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	transform: translateX(-50%) translateY(-50%);
	height: 20px;
	width: 1.2px;
	background-color: #828282;
}

.close-3d::after {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.close-3d::before {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.rights-text a {
	color: #828282;
}

.main-banner-content {
	height: 100%;
}

.cd-dropdown-wrapper {
	z-index: 102;
}

.card_compare {
	padding: 0 5px;
	width: 36px;
	height: 36px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-item-favorite {
	width: 30px;
}

.card_compare .compare_icon {
	/* transform: scale(1.3); */
}

.card_compare .compare_icon path {
	fill: #828282;
}

.card_compare_y .compare_icon path {
	fill: #00656B;
}

.comparison .notetext {
	position: relative;
	display: block;
	padding: 30px 0;
}

.comparison-cont {
	justify-content: flex-start;
}

iframe.modal-map {
	height: 100%;
}

.modal_footer {
	position: absolute;
	display: block;
	right: 180px;
	bottom: 80px; 
}

.modal_footer__confirm {
	position: absolute;
	left: 0;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	border-radius: 4px;
	background: #00656B;
	border: none;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.close.modal_footer__confirm {
	width: auto;
	height: auto;
	right: auto;
}

.modal_footer__confirm.closed {
	display: none;
}

.info_about_location article {
	width: 350px;
	margin-right: 30px;
	flex: none;
}

.advantage {
	/* width: 50%; */
	align-items: flex-start;
}

.advantage img {
	width: 60px;
	flex: none;
	margin-right: 15px;
}

.category-item-title {
	height: 95px;
}

.panels_articles_and_products_general {
	padding-top: 32px;
}

.questions {
	margin-bottom: 84px;
}

.exterior_angle_btn {
	width: auto;
	min-width: 124px;
}

.exterior_angle_btn img {
	margin-left: 10px;
}

.cd-dropdown {
	height: 0px;
}

.cd-dropdown.dropdown-is-active {
	height: auto;
}

.news-carousel-item-img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.sitebar__category-content a.over_6 {
	display: none;
}

.sitebar__category-content a.over_6.opened {
	display: block;
}

.sitebar__category-content__more {
	
}

.choice_guarantee {
	max-width: 100%;
	width: 100%;
}

.reliability_geography {
	max-width: 100%;
	width: 100%;
}

.small-banner-img {
 width: 100%;
}

.modal {
	position: fixed;
	display: none;
	align-items: center;
	justify-content: center;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}

.modal.show {
	display: flex;
	opacity: 1;
	visibility: visible;
}

.modal-dialog {
	position: relative;
	display: block;
	padding: 30px;
	background-color: #fff;
	border-radius: 10px;
	width: 450px;
}

.modal-content {
	position: relative;
	display: block;
}

.modal_block {
	display: block;
}

.modal_block__info {
	position: relative;
	display: block;
}

.modal_block__info__title {
	position: relative;
	display: block;
	color: #333;
	font-size: 22px;
	font-weight: 600;
	line-height: 140%;
}

.modal_block__info__name {
	position: relative;
	display: block;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
}

.modal_form {
	position: relative;
	display: block;
	margin-top: 30px;
}

.modal_form input[type=text],
.modal_form input[type=tel] {
	position: relative;
	display: block;
	border-radius: 4px;
	border: 1px solid #BDBDBD;
	background: #FCFCFC;
	padding: 16px 20px;
	color: #333;
	font-size: 14px;
	line-height: 20px;
	width: 100%;
	resize: none;
	margin-bottom: 15px;
}

.form_preloader {
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
}

.form_preloader img {
	width: 30px;
	height: 30px;
}

.form_preloader.active {
	display: flex;
	padding: 10px 0;
}

.butt {
	position: relative;
	display: flex;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	border-radius: 4px;
	background: #00656B;
	border: none;
	padding: 12px 24px;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: .3s;
}

.form_agree {
	position: relative;
	display: block;
	color: #333;
	font-size: 12px;
	font-weight: 400;
	line-height: 140%;
	margin-top: 15px;
}

.form_agree a {
	color: #00656B;
}

.modal_close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	border: none;
	background: none;
}

.modal_close img {
	width: 20px;
	height: 20px;
}

.modal p {
	line-height: 140%;
}

.card_of_products {
	padding-bottom: 50px;
}

footer a:hover {
	color: #fff;
}

.rights-text-logo:hover img {
	filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7495%) hue-rotate(67deg) brightness(105%) contrast(103%);
}

.main__item__dark {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	z-index: -1;
}

.cart_of_product {
	position: relative;
}

.entry__remove {
	position: absolute;
	display: block;
	top: 10px;
	right: 10px;
	color: #00656B;
}

@media screen and (max-width: 1110px) {
	.comparison-title {
		padding: 25px 8px;
		width: 100px;
	}
	.comparison-item {
		
	}
	.data-table {
		gap: 16px;
	}
}



@media (min-width: 992px) {
	.cd-dropdown_mobile .cd-close {
		top: 5px;
	}
	.cd-dropdown_mobile {
		top: 112px;
		position: absolute;
		top: 100%;
		height: auto;
		width: 300px;
		transform: translateX(0);
		background-color: #ffffff;
		color: #111433;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
	}
	
	.cd-dropdown_mobile .cd-close {
		display: none;
	}
	
	.cd-dropdown_mobile.dropdown-is-active {
		opacity: 1;
		transform: translateY(0);
		transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
	}
}

@media screen and (max-width: 950px) {
	.info_about_location article {
		width: 100%;
		margin-right: 0px;
	}
}

@media screen and (max-width: 850px) {
	.characteristic_filters_menu, .exterior_angle_cont_mobile {
		height: calc(100vh - 59px);
	}
	.close-3d {
		display: block;
	}
}

@media (max-width: 550px) {
	.comparison-title {
		padding: 16px 8px;
	}
	.mobile-search-input {
		width: 250px;
	}
	.comparison-item {
		width: 170px;
	}
	.compare__item__block {
		min-height: auto;
	}
	.compare__item__block__name {
		font-size: 16px;
		line-height: 20px;
		padding-right: 0px;
	}
	.comparison-item__value {
		justify-content: center;
	}
	.category-ul {
			height: 470px;
	}
}

@media screen and (max-width: 480px) {
	.news-carousel-item {
		width: 290px;
		height: 236px;
	}
	
	.news-carousel-item-descr {
		width: auto;
	}
	.mobile-menu {
		gap: 20px;
	}
}


/* End */


/* Start:/local/templates/premiera/components/bitrix/catalog.compare.list/only_number/style.css?17077998051265*/
.bx_catalog-compare-list{
    font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size:12px;
    z-index:998;
    overflow:hidden;
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
            box-sizing:border-box;
    width:270px;
    max-height:100%;
    padding:10px 8px 0;
    white-space:normal;
    color:#404040;
    border:1px solid #b7b7b7;
    border-radius:3px;
    background:#fff;
    box-shadow:0 2px 5px 0 rgba(0,0,0,.18);
	margin-bottom: 10px;
}
.bx_catalog-compare-list.fix{
	position:fixed;
}
.bx_catalog-compare-list.top{
    top:5px;
}
.bx_catalog-compare-list.right{
    right:5px;
}
.bx_catalog-compare-list.bottom{
    bottom:5px;
}
.bx_catalog-compare-list.left{
    left:5px;
}
.bx_catalog-compare-list .bx_catalog_compare_form {  }
.bx_catalog-compare-list:hover .bx_catalog_compare_form {  }
.bx_catalog-compare-list a{
    font-size:11px;
    color:#327ab7;
}
.bx_catalog-compare-list a:hover{
    text-decoration:none;
}
.bx_catalog_compare_count p{
    margin:0 0 10px 0;
}
.bx_catalog_compare_count p.compare-redirect{
	text-align: center;
	font-weight: bold;
}
.bx_catalog-compare-list .compare-items td{
    font-size:12px;
    font-weight:bold;
    padding-bottom:10px;
	vertical-align: top;
}
/* End */


/* Start:/local/templates/premiera/components/bitrix/sale.basket.basket.line/shopping-cart/style.css?17055263014804*/
.bx-basket { }

.bx-basket-block {
	margin: auto;
	position: relative;
	padding-bottom: 5px;
	padding-left: 20px;
	white-space: nowrap;
	font-size: 12px;
}

.bx-basket-block > .fa {
	position: absolute;
	top: 3px;
	left: 0;
	width: 12px;
	color: #97a1ab;
}

.bx-basket-block a { margin-right: 10px; }

/*FIXED BASKET*/

@media (min-width: 768px) {
	.bx-basket-fixed {
		position: fixed;
		z-index: 100;
		overflow: hidden;
		padding-top: 10px;
		width: 200px;
		border: 1px solid #f0f0f0;
		border-radius: 1px;
		background: #fff;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
	}

	.bx-basket-fixed.top { top: 10px }

	.bx-basket-fixed.right { right: 10px }

	.bx-basket-fixed.bottom { bottom: 10px }

	.bx-basket-fixed.left { left: 10px }

	.bx-basket-fixed.bx-max-height { top: 10px; bottom: 10px; }

	.block-store-catalog-list .bx-basket-fixed.bottom { bottom: 70px }
}

@media (min-width: 768px) and (width <= 992px) {
	.block-store-catalog-list .bx-basket-fixed.bottom { bottom: 90px }
}

@media (max-width: 767px) {
	.bx-basket-fixed {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 100;
		overflow: hidden;
		padding-top: 10px;
		border: 1px solid #f0f0f0;
		border-radius: 1px;
		background: #fff;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
	}

	.bx-basket-item-list { display: none; }

	.block-wrapper .bx-basket-fixed {
		padding-top: 0;
	}

	.block-wrapper .bx-basket-fixed .bx-hdr-profile {
		display: flex;
		justify-content: space-between;
	}

	.block-wrapper .bx-basket-fixed .bx-hdr-profile .bx-basket-block {
		padding-bottom: 0;
	}

	/*.bx-basket-fixed */
}

.bx-basket-item-list {
	position: relative;
	overflow: hidden;
	padding-bottom: 20px;
	border-top: 1px solid #f7f7f7;
}

.bx-opener .bx-basket-item-list { padding-bottom: 75px; }

.bx-max-height .bx-basket-item-list {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}

.bx-closed .bx-basket-item-list {
	overflow: hidden;
	height: 20px;
}

.bx-basket-item-list-action {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 120;
	padding: 3px 0;
	height: 20px;
	background: #f7f7f7;
	color: #4f4f4f;
	vertical-align: middle;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
	cursor: pointer;
}

.bx-basket-item-list-button-container {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	padding: 10px 0;
	border-top: 1px solid #f7f7f7;
	background: #fff;
	text-align: center;
}

.bx-basket-item-list-container {
	overflow-y: auto;
	max-height: 100%
}

.bx-basket-item-list-item {
	position: relative;
	margin-bottom: 15px;
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	border-bottom: 1px solid #f7f7f7;
}

.bx-basket-item-list-container .bx-basket-item-list-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.bx-basket-item-list-item-status {
	margin: 0 10px 20px;
	padding: 3px;
	border-radius: 3px;
	background: #ebebeb;
	text-align: center;
	white-space: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 16px;
}

.bx-basket-item-list-item-img {
	position: relative;
	padding-bottom: 5px;
	text-align: center;
}

.bx-basket-item-list-item-img img {
	max-width: 90px;
	height: auto;
	border: 1px solid #e6e6e6;
}

.bx-basket-item-list-item-name { padding-bottom: 5px; }

.bx-basket-item-list-item-name a {
	font-size: 13px;
	line-height: 16px;
}

.bx-basket-item-list-item-remove {
	position: absolute;
	top: -7px;
	right: 10px;
	width: 20px;
	height: 20px;
	opacity: .5;
	cursor: pointer;
	transition: 250ms linear all;
}

.bx-basket-item-list-item-remove:after,
.bx-basket-item-list-item-remove:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 10px;
	height: 2px;
	border-radius: 1px;
	background-color: #333;
	content: '';
	transform: translate(-50%, -50%);
}

.bx-basket-item-list-item-remove:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-o-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.bx-basket-item-list-item-remove:before {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	-moz-transform: translate(-50%, -50%) rotate(135deg);
	-ms-transform: translate(-50%, -50%) rotate(135deg);
	-o-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}

.bx-basket-item-list-item-remove:hover { opacity: .7; }

.bx-basket-item-list-item-price-block {
	padding-bottom: 5px;
	font-size: 12px;
}

.bx-basket-item-list-item-price {
	display: inline-block;
	margin-right: 5px;
}

.bx-basket-item-list-item-price-old {
	display: inline-block;
	margin-right: 5px;
	color: #b0b0b0;
	text-decoration: line-through
}

.bx_cart_login_top .bx-hdr-profile { line-height: 1.44em; }

/* End */


/* Start:/local/templates/premiera/template_styles.css?1739765364870*/
.category-item-price-cont_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
}

.product .characteristics {
	min-width: 40%;
}

.discounts {
	position: relative;
	display: block;
}

.plaster_panels {
	position: relative;
	display: flex;
	margin-top: 30px;
	gap: 30px;
	flex-wrap: wrap;
}

.plaster_panel {
	margin-bottom: 0;
	width: calc(25% - 24px);
}

.plaster_panel .category-item {
	width: 100%;
}

.category-item-price-cont {
	flex-wrap: wrap;
}

.attention {
	position: relative;
	display: block;
	padding: 10px 30px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	background-color: #00656B;
}

@media (max-width: 1360px) {
	.plaster_panel {
		width: calc(33% - 30px);
	}
}

@media (max-width: 800px) {
	.plaster_panel {
		width: calc(50% - 15px);
	}
}

@media (max-width: 480px) {
	.plaster_panel {
		width: 100%;
	}
}
/* End */
/* /local/templates/premiera/style.css?1740029246119228 */
/* /local/templates/premiera/js/formcheck/style.css?1708911328558 */
/* /local/templates/premiera/js/fancybox_4/fancybox.css?172717535715598 */
/* /local/templates/premiera/custom.css?171274640616077 */
/* /local/templates/premiera/components/bitrix/catalog.compare.list/only_number/style.css?17077998051265 */
/* /local/templates/premiera/components/bitrix/sale.basket.basket.line/shopping-cart/style.css?17055263014804 */
/* /local/templates/premiera/template_styles.css?1739765364870 */
