@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap");

.template-page .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.template-page .container1280 {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.template-page .container1440 {
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

.template-page body {
  max-width: 3440px;
  min-width: 320px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}

.template-page body.lock {
  overflow: hidden;
}

.template-page a,
.template-page button,
.template-page input,
.template-page textarea {
  transition: all 0.3s ease;
}

.template-page .btn {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  overflow: hidden;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  color: #000000;
}

.template-page .btn:after {
  content: "";
  position: absolute;
  top: -50px;
  left: -75px;
  width: 50px;
  height: 155px;
  background: #FFFFFF;
  opacity: 0.2;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.template-page .btn:hover {
  color: #FFFFFF;
  background: #e37f80;
  border-color: #e37f80;
}

.template-page .btn:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.template-page .btn:active {
  transform: scale(1.02);
}

.template-page .btn--colorful {
  color: #FFFFFF;
  background: #e37f80;
  border-color: #e37f80;
}

.template-page .btn--with-icon {
  padding: 15px 45px 15px 25px;
  font-family: "Playfair Display", serif;
  border-color: #f7aaaa;
}

.template-page .btn--with-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  width: 18px;
  height: 24px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.template-page .btn--buy:before {
  background-image: url("../images/icons/shopping-cart_pink.svg");
}

.template-page .btn--buy:hover:before {
  background-image: url("../images/icons/shopping-cart_white.svg");
}

.template-page .show-more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.template-page .slide-up-btn {
  position: fixed;
  z-index: 3;
  bottom: 20%;
  right: 3%;
  width: 44px;
  height: 44px;
  background: url("../images/icons/arrow-up.svg") center no-repeat rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.template-page .slide-up-btn:hover {
  transform: scale(1.15);
}

.template-page .slide-up-btn:focus {
  outline: none;
}

.template-page .lSAction>a {
  z-index: 1;
  transform: translateY(-50%);
  width: 16px;
  height: 30px;
  margin: 0;
  opacity: 1;
  background: url("../images/icons/arrow-left.svg") center/100% no-repeat;
  transition: all 0.3s ease;
}

.template-page .lSAction>.lSPrev,
.template-page .lSAction>.lSNext {
  background-position: initial;
}

.template-page .lSAction>.lSPrev {
  left: 0;
}

.template-page .lSAction>.lSPrev:hover {
  transform: translateY(-50%) scale(1.1);
}

.template-page .lSAction>.lSNext {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}

.template-page .lSAction>.lSNext:hover {
  transform: translateY(-50%) scale(-1.1, 1.1);
}

.template-page .lg-backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.template-page .lg-toolbar .lg-close {
  position: relative;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background: url("../images/icons/cross_white.svg") center/100% no-repeat;
  transition: all 0.3s ease;
}

.template-page .lg-toolbar .lg-close:after {
  display: none;
}

.template-page .lg-toolbar .lg-close:hover {
  transform: scale(1.05);
}

.template-page .lg-actions .lg-next,
.template-page .lg-actions .lg-prev {
  width: 16px;
  height: 30px;
  background: url("../images/icons/arrow-left_white.svg") center/100% no-repeat;
  transition: all 0.3s ease;
}

.template-page .lg-actions .lg-next:after,
.template-page .lg-actions .lg-next:before,
.template-page .lg-actions .lg-prev:after,
.template-page .lg-actions .lg-prev:before {
  display: none;
}

.template-page .lg-actions .lg-prev {
  left: 30px;
}

.template-page .lg-actions .lg-prev:hover {
  transform: scale(1.1);
}

.template-page .lg-actions .lg-next {
  right: 30px;
  transform: scale(-1, 1);
}

.template-page .lg-actions .lg-next:hover {
  transform: scale(-1.1, 1.1);
}

.template-page .hidden {
  display: none;
}

.template-page h1,
.template-page h2 {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.template-page h1 {
  letter-spacing: 1.8px;
}

.template-page .editable-content p:not(:last-child),
.template-page .editable-content ol:not(:last-child),
.template-page .editable-content ul:not(:last-child),
.template-page .editable-content table:not(:last-child),
.template-page .editable-content img:not(:last-child) {
  margin: 0px 0px 24px 0px;
}

.template-page .editable-content ul,
.template-page .editable-content ol {
  padding: 0px 0px 0px 20px;
}

.template-page .editable-content li:not(:last-child) {
  margin: 0px 0px 16px 0px;
}

.template-page .editable-content a {
  color: #000000;
  text-decoration: underline;
}

.template-page .editable-content a:hover {
  color: #f7aaaa;
  text-decoration: none;
}

.template-page .editable-content table {
  width: 100%;
  border: 1px solid #000000;
  border-collapse: collapse;
}

.template-page .editable-content td,
.template-page .editable-content th {
  padding: 5px;
  border: 1px solid #000000;
}

.template-page .editable-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
}

.template-page .editable-content img.type_align_01 {
  border-radius: 10px;
}

.template-page .editable-content img.type_align_02 {
  margin-top: 24px;
  margin-right: 24px;
  width: 50%;
}

.template-page .editable-content img.image_fixed_left.type_align_02 {
  float: left;
}

.template-page .editable-content img.type_align_03 {
  width: 50%;
  margin: 24px auto;
  display: block;
}

.template-page .editable-content img.type_align_04 {
  width: 50%;
}

.template-page .editable-content img.image_fixed_left.type_align_04 {
  float: right;

  margin-top: 24px;
  margin-left: 24px;
}

.template-page .editable-content div.type_align_04 {
  display: flex;
  justify-content: end;

  margin-top: 24px;
  margin-bottom: 24px;
}

.template-page .editable-content div.type_align_04 img.type_align_04 {
  margin: initial;
}

.template-page .editable-content img.type_align_05 {
  display: block;
  margin: 0 auto;
  text-align: justify;
}

.template-page .section {
  margin-bottom: 25px;
}

.template-page .section__subtitle {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}

.template-page .header {
  padding: 50px 0px;
}

.template-page .header__inner {
  position: relative;
  padding: 0 50px;
}

.template-page .header__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 0;
}

@media (max-width: 768px) {
  .template-page .header__nav {
    grid-template-columns: 1fr 0 0;
  }
}

.template-page .header__logo {
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
}

.template-page .header .logo__image {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.template-page .header .logo__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 90px;
  margin: 0 auto;
}

.template-page .header__cart-link {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 21px;
  height: 27px;
  background: url("../images/icons/shopping-cart.svg") center/100% no-repeat;
}

.template-page .header__cart-link:hover .header__cart-quantity {
  transform: scale(1.15);
}

.template-page .header__cart-quantity {
  position: absolute;
  top: -7px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  padding-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  background: #e37f80;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.template-page .header__burger-button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 4;
  display: none;
  width: 27px;
  height: 14px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  box-shadow: none;
}

.template-page .header__burger-button:before,
.template-page .header__burger-button:after,
.template-page .header__burger-button span {
  height: 2px;
  background: #000000;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.template-page .header__burger-button:before,
.template-page .header__burger-button:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.template-page .header__burger-button:before {
  top: 0;
}

.template-page .header__burger-button:after {
  bottom: 0;
  width: 70%;
}

.template-page .header__burger-button span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.template-page .header__burger-button.active:before {
  top: 5px;
  transform: rotate(45deg);
}

.template-page .header__burger-button.active:after {
  bottom: 8px;
  transform: rotate(-45deg);
  width: 100%;
}

.template-page .header__burger-button.active span {
  transform: scale(0);
}

.template-page .header__burger-button:focus {
  outline: none;
}

.template-page .header__overlay {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  transform: translateX(-200%);
  width: 100%;
  height: 100%;
  padding: 100px 0px 53px 0px;
  background: #FFFFFF;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.075);
}

.template-page .header__overlay.active {
  transform: translateX(0);
}

.template-page .header__overlay .header__logo {
  display: flex;
  justify-content: center;
}

.template-page .header__overlay .menu {
  margin: 0px 0px 80px 0px;
}

.template-page .header__overlay .menu__list {
  flex-direction: column;
}

.template-page .header__overlay .menu__item:not(:last-child) {
  margin: 0px 0px 16px 0px;
}

.template-page .header__overlay .menu__link {
  font-size: 24px;
  text-transform: uppercase;
}

.template-page .header__overlay .socials__list {
  justify-content: center;
}

.template-page .menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.template-page .menu__item:not(:last-child) {
  margin: 0px 70px 0px 0px;
}

.template-page .menu__link {
  padding: 8px 18px;
  color: #000000;
  text-decoration: none;
}

.menu__link:before,
.footer-menu__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000000;
  transition: 0.15s all ease-in-out;
}

.menu__link:hover:before,
.footer-menu__link:hover:before {
  width: 100%;
  left: 0;
}



.template-page .menu__link,
.template-page .footer-menu__link {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.template-page .logo__link {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-transform: none !important;
  text-decoration: none;
  color: #000000;
}

.template-page .logo__link:hover {
  transform: scale(1.05);
}

.template-page .logo__link h1 {
  display: inline-block;
  margin: 0;
}

.template-page .logo--short .logo__link {
  line-height: 1;
  display: inline-block;
  margin: 0 auto;
}

.template-page .logo--full .logo__link {
  font-size: 16px;
  line-height: 1;
}

.template-page .banner {
  text-align: center;
}

.template-page .banner__header {
  margin: 0px 0px 20px 0px;
}

.template-page .banner__body {
  max-width: 1380px;
  margin: 0 auto;
}

.template-page .slider-banner__list {
  list-style: none;
}

.template-page .slider-banner__item:focus {
  outline: none;
}

.template-page .slider-banner__content {
  position: relative;
  width: 100%;
  height: 664px;
  max-height: 80vh;
  padding: 0 50px;
}

.template-page .slider-banner__image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.template-page .slider-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .slider-banner__title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 5%;
  transform: translate(-50%, -50%) skew(0deg, -5deg);
  font-family: "Playfair Display", serif;
  font-size: 61px;
  text-transform: uppercase;
  letter-spacing: 14.4px;
  color: #FFFFFF;
}

.template-page .slider-banner .slick-arrow {
  z-index: 2;
}

.template-page .slider-banner .slick-prev {
  left: 0;
}

.template-page .slider-banner .slick-next {
  right: 0;
}

.template-page .categories {
  min-height: 400px;
}

.template-page .categories__title {
  position: relative;
  display: none;
  padding: 0px 0px 0px 34px;
  cursor: pointer;
}

.template-page .categories__title:before,
.template-page .categories__title:after,
.template-page .categories__title span {
  height: 1px;
  background: #000000;
  transition: all 0.3s ease;
  width: 26px;
}

.template-page .categories__title:before,
.template-page .categories__title:after {
  content: "";
  position: absolute;
  left: 0;
}

.template-page .categories__title:before {
  top: 4px;
}

.template-page .categories__title:after {
  bottom: 4px;
}

.template-page .categories__title span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.template-page .categories__title.active:before {
  top: 9px;
  transform: rotate(45deg);
}

.template-page .categories__title.active:after {
  bottom: 12px;
  transform: rotate(-45deg);
}

.template-page .categories__title.active span {
  transform: scale(0);
}

.template-page .categories__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.template-page .categories__item:not(:last-child) {
  border-right: 1px solid #EDEDED;
}

.template-page .categories__item{
  margin-bottom: 15px !important;
}

.template-page .categories__link {
  position: relative;
  padding: 2px 46px;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}

.template-page .categories__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000000;
  transition: 0.15s all ease-in-out;
}

.template-page .categories__link.active:before,
.template-page .categories__link:hover:before {
  width: 50%;
  transform: translateX(-50%);
  left: 50%;
}

.template-page .categories__album {
  display: none;
}

.template-page .about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10%;
}

.template-page .about__subtitle {
  margin: 0px 0px 34px 0px;
}

.template-page .about__content {
  margin: 0px 0px 30px 0px;
}

.template-page .about__image-wrapper {
  max-height: 85vh;
  box-shadow: -7px 12px 46px rgba(0, 1, 5, 0.15);
  border-radius: 5px;
  overflow: hidden;
}

.template-page .about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .footer {
  padding: 50px 0px;
  background: transparent;
}

.template-page .footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.template-page .footer__made-in-link {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #979797;
}

.template-page .footer__made-in-image {
  margin-left: 10px;
}

.template-page .footer-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px 30px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.template-page .footer-menu__link {
  display: inline-block;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
}

.template-page .socials__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.template-page .socials__item:not(:last-child) {
  margin: 0px 35px 0px 0px;
}

.template-page .socials__link {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.template-page .socials__link--vk {
  background-image: url("../images/icons/social-vk.svg");
}

.template-page .socials__link--facebook {
  background-image: url("../images/icons/social-facebook.svg");
}

.template-page .socials__link--instagram {
  background-image: url("../images/icons/social-instagram.svg");
}

.template-page .socials__link--youtube {
  background-image: url("../images/icons/social-youtube.svg");
}

.template-page .socials__link--twitter {
  background-image: url("../images/icons/social-twitter.svg");
}

.template-page .socials__link--linkedin {
  background-image: url("../images/icons/social-linkedin.svg");
}

.template-page .socials__link:hover {
  transform: scale(1.1);
}

.template-page .catalog__title {
  font-weight: 400;
  text-align: center;
  text-transform: none;
}

.template-page .catalog__list {
  list-style: none;
}

.template-page .product-card__image-wrapper {
  margin: 0px 0px 12px 0px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-height: 80vh;
  transition: all 0.3s ease;
}

.template-page .product-card__image {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .product-card__body {
  padding: 18px 18px 18px 18px;
}

.template-page .product-card__name {
  display: block;
  margin: 0px 0px 30px 0px;
  font-size: 18px;
  text-decoration: none;
  color: #000000;
}

.template-page .product-card__name:hover {
  text-decoration: underline;
}

.template-page .product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-page .product-card__price {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
}

.template-page .product-card:hover .product-card__image-wrapper {
  opacity: 0.7;
}

.template-page .subcategory-card {
  position: relative;
}

.template-page .subcategory-card__image-wrapper {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  width: 100%;
  max-height: 80vh;
  transition: all 0.3s ease;
}

.template-page .subcategory-card__image {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .subcategory-card__name {
  padding: 26px 56px;
  font-size: 18px;
  color: #FFFFFF;
  text-align: center;
  background: #f7aaaa;
  border-radius: 0 0 5px 5px;
}

.template-page .subcategory-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.template-page .subcategory-card:hover .subcategory-card__image-wrapper {
  opacity: 0.7;
}

.template-page .product__wrapper {
  padding: 55px;
  border: 1px solid #E8E8E8;
}

.template-page .product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.template-page .product__gallery {
  width: 100%;
  max-width: 560px;
}

.template-page .product__body {
  padding: 0 35px 0 100px;
}

.template-page .product__title {
  font-weight: 400;
  text-transform: initial;
}

.template-page .product__price {
  margin: 0px 0px 26px 0px;
}

.template-page .product__old-price {
  margin: 0px 0px 10px 0px;
  text-decoration: line-through;
  color: #D0D0D0;
}

.template-page .product__actual-price {
  font-size: 30px;
  color: #f7aaaa;
}

.template-page .product__order {
  margin: 0px 0px 40px 0px;
}

.template-page .product__options {
  display: flex;
  align-items: center;
  margin: 0px 0px 18px 0px;
}

.template-page .product__options .select {
  margin: 0px 30px 0px 0px;
}

.template-page .product__actions {
  display: flex;
}

.template-page .product__quantity {
  margin: 0px 20px 0px 0px;
}

.template-page .product__description {
  margin: 0px 0px 60px 0px;
  font-size: 14px;
}

.template-page .product__buy-btn {
  font-size: 16px;
  color: #FFFFFF;
  background: #e37f80;
}

.template-page .product__buy-btn:before {
  background-image: url("../images/icons/shopping-cart_white.svg");
}

.template-page .product-gallery__item {
  width: 100%;
  height: 434px;
}

.template-page .product-gallery__item:focus {
  outline: none;
}

.template-page .product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.template-page .product-gallery__thumb-list {
  margin: 32px -8px 0 -8px;
  padding: 0 40px;
}

.template-page .product-gallery__thumb-item {
  height: 119px;
  padding: 0 8px;
}

.template-page .product-gallery__thumb-item:focus {
  outline: none;
}

.template-page .product-gallery__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.template-page .nice-select {
  padding-right: 50px;
}

.template-page .nice-select:after {
  right: 20px;
  width: 9px;
  height: 9px;
  margin-top: -5px;
}

.template-page .checkbox {
  position: relative;
}

.template-page .checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.template-page .checkbox__input:checked+.checkbox__label span:before {
  background: url("../images/icons/check.svg") center/100% no-repeat;
}

.template-page .checkbox__label {
  padding: 0px 0px 0px 32px;
  font-size: 14px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
}

.template-page .checkbox__mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #CCCCCC;
}

.template-page .checkbox__mark:before {
  content: "";
  position: absolute;
  top: -8px;
  right: -4px;
  width: 20px;
  height: 24px;
  transition: all 0.3s ease;
}

.template-page .quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  border: solid 1px #D0D0D0;
  border-radius: 5px;
}

.template-page .quantity__input {
  width: 40px;
  margin: 0 10px;
  padding: 2px 4px 5px 4px;
  text-align: center;
  -moz-appearance: textfield;
}

.template-page .quantity__input::-webkit-outer-spin-button,
.template-page .quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.template-page .quantity__input:focus {
  outline: none;
}

.template-page .quantity__btn {
  position: relative;
  width: 13px;
  height: 13px;
}

.template-page .quantity__btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: #000000;
}

.template-page .quantity__btn--plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  background: #000000;
}

.template-page .quantity__btn:hover {
  transform: scale(1.1);
}

.template-page .quantity__btn:focus {
  outline: none;
}

.template-page .slick-arrow {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 30px;
  font-size: 0;
  background: url("../images/icons/arrow-left.svg");
}

.template-page .slick-arrow:focus {
  outline: none;
}

.template-page .slick-prev {
  left: 8px;
  transform: translateY(-50%);
}

.template-page .slick-prev:hover {
  transform: scale(1.1) translateY(-50%);
}

.template-page .slick-next {
  right: 8px;
  transform: scale(-1, 1) translateY(-50%);
}

.template-page .slick-next:hover {
  transform: scale(-1.1, 1.1) translateY(-50%);
}

/**
 * MASONRY
 */
.template-page .macy {
  width: 100%;
}

.template-page .macy .macy__item {
  opacity: 1;
  border-radius: 6px;
  overflow: hidden;
  min-height: 96px;
  background: rgba(153, 153, 153, 0.4);
}

.template-page .macy .macy__item:hover {
  opacity: 0.94;
}

.template-page .macy .macy__item a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 96px;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}

.template-page .macy .macy__item a[data-file-type="video"]:before {
  content: '';
  position: absolute;
  z-index: 3;
  left: calc(50% - 48px / 2);
  top: calc(50% - 48px / 2);
  width: 48px;
  height: 48px;
  transform: rotate(45deg);
  background-color: #fff;
  border-radius: 3px;
}

.template-page .macy .macy__item a[data-file-type="video"]:after {
  content: '';
  position: absolute;
  z-index: 4;
  left: calc(50% - 48px / 2);
  top: calc(50% - 48px / 2);
  width: 48px;
  height: 48px;
  background-image: url(../images/icons/play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 20px;
}

.template-page .macy .macy__item img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.template-page .macy .macy__item .macy__item-name {
  display: block;
  opacity: 1;
  width: calc(100% - 5px - 5px);
  height: auto;
  border-radius: 6px;
  position: absolute;
  z-index: 2;
  left: 5px;
  bottom: 5px;
  margin: 0;
  padding: 10px 15px;
  background: rgba(240, 240, 240, 0.2);
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.template-page .macy .macy__item:hover .macy__item-name {
  opacity: 1;
  bottom: 5px;
}

/*
 * BASKET
 */
.template-page .basket__legend,
.template-page .basket-card {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 50px;
  align-items: center;
}

.template-page .basket__wrapper {
  padding: 55px 55px 80px 55px;
  border: 1px solid #E8E8E8;
  border-bottom: initial;
}

.template-page .basket__title {
  display: none;
  text-transform: uppercase;
  text-align: center;
}

.template-page .basket__legend {
  padding: 0px 15% 14px 0px;
  border-bottom: 1px solid #E8E8E8;
}

.template-page .basket__capture:not(:first-child) {
  text-align: center;
}

.template-page .basket__list {
  margin: 0px 0px 50px 0px;
  list-style: none;
}

.template-page .basket__item {
  border-bottom: 1px solid #E8E8E8;
}

.template-page .basket__total {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.template-page .basket__total-label {
  margin: 0px 16px 0px 0px;
}

.template-page .basket__price {
  font-size: 24px;
}

.template-page .basket__form {
  padding: 40px 55px 55px 55px;
  background: #f2f2f2;
}

.template-page .basket-card {
  position: relative;
  padding: 20px 15% 20px 0px;
}

.template-page .basket-card>div:not(:first-child) {
  text-align: center;
}

.template-page .basket-card__product-summary {
  display: flex;
  align-items: center;
}

.template-page .basket-card__image-wrapper {
  width: 100%;
  max-width: 126px;
  height: 100px;
  margin: 0px 30px 0px 0px;
}

.template-page .basket-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .basket-card__name {
  margin: 0px 0px 9px 0px;
  font-size: 18px;
}

.template-page .basket-card__select-value {
  color: #979797;
}

.template-page .basket-card__check-value {
  margin: 3px 0px 0px 0px;
  color: #979797;
}

.template-page .basket-card__price {
  font-size: 18px;
}

.template-page .basket-card__quantity {
  max-width: 110px;
  margin: 0 auto;
}

.template-page .basket-card .quantity__input {
  font-size: 18px;
}

.template-page .basket-card__amount {
  font-size: 18px;
}

.template-page .basket-card__label {
  display: none;
}

.template-page .basket-card__delete-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("../images/icons/cross.svg") center/100% no-repeat;
}

.template-page .basket-card__delete-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.template-page .basket-form__title {
  margin: 0px 0px 38px 0px;
  font-size: 18px;
  font-weight: 700;
}

.template-page .basket-form__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.template-page .basket-form__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px 20px;
}

.template-page .basket-form__item {
  display: flex;
  flex-direction: column;
}

.template-page .basket-form__label {
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 0px 7px;
}

.template-page .basket-form__input,
.template-page .basket-form__textarea {
  padding: 20px 28px;
  color: #000000;
  border: 1px solid #E8E8E8;
  background: #FFFFFF;
}

.template-page .basket-form__input::placeholder,
.template-page .basket-form__textarea::placeholder {
  color: #979797;
}

.template-page .basket-form__input:focus,
.template-page .basket-form__textarea:focus {
  border-color: #7C7C7C;
  outline: none;
}

.template-page .basket-form__right {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}

.template-page .basket-form__textarea {
  height: 144px;
  resize: none;
}

.template-page .basket-form__actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

/*
 * BLOG
 */
.template-page .blog__header {
  margin: 0px 0px 60px 0px;
}

.template-page .blog__title {
  text-align: center;
}

.template-page .blog__list {
  list-style: none;
}

.template-page .blog-card {
  position: relative;
  text-align: center;
  opacity: 1;
  overflow: hidden;
}

.template-page .blog-card.blog-card-hide {
  opacity: 0.6;
}

.template-page .blog-card__image-wrapper {
  margin: 0px 0px 10px 0px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.template-page .blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .blog-card__body {
  padding: 20px;
}

.template-page .blog-card__date {
  display: block;
  margin: 0px 0px 20px 0px;
  font-size: 14px;
  color: #979797;
}

.template-page .blog-card__capture {
  font-size: 18px;
}

.template-page .blog-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.template-page .blog-card:hover .blog-card__image-wrapper {
  opacity: 0.7;
}

.template-page .blog-card:hover .blog-card__capture {
  text-decoration: underline;
}

.template-page .pager {
  padding: 80px 0;
}

.template-page .pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.template-page .pager__item:not(:last-child),
.template-page li:not(:last-child) {
  margin: 0px 24px 0px 0px;
}

.template-page .pager__link,
.template-page a {
  display: block;
  text-decoration: none;
  color: #979797;
}

.template-page .pager__link:hover {
  color: #000000;
  text-decoration: underline;
  opacity: 1;
}

.template-page .pager__link--to-begin,
.template-page .pager__link--to-end {
  width: 20px;
  height: 6px;
  background: url("../images/icons/arrow-long.svg") center/100% no-repeat;
  opacity: 0.3;
}

.template-page .pager__link--to-end {
  transform: scale(-1, 1);
}

.template-page .pager__link--to-page.current,
.template-page .active a {
  font-weight: 700;
  color: #000000;
}

.template-page .disabled {
  opacity: 0.2;
}

/*
 * ARTICLE PAGE
 */
.template-page .article {
  margin: 0px 0px 80px 0px;
}

.template-page .article__image-wrapper {
  width: 100%;
  height: 443px;
  max-height: 50vh;
  margin: 0px 0px 60px 0px;
}

.template-page .article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-page .article__body {
  max-width: 757px;
  margin: 0 auto;
  display: grid;
}

.template-page .article__title {
  max-width: 576px;
  margin: 0 auto 30px auto;
  font-weight: 400;
  text-align: center;
  text-transform: initial;
}

.template-page .article__date {
  display: block;
  margin: 0px 0px 60px 0px;
  font-size: 14px;
  text-align: center;
  color: #979797;
}

.template-page .article__content {
  margin: 0px 0px 80px 0px;
}

/*
 * CONTACTS
 */
.template-page .contacts__wrapper {
  padding: 55px;
  border: 1px solid #E8E8E8;
  width: 100%;

}

.template-page .contacts__name {
  margin: 0px 0px 28px 0px;
  font-size: 18px;
  font-weight: 700;
}

.template-page .contacts__link {
  display: block;
  text-decoration: none;
  color: #979797;
}

.template-page .contacts__link:not(:last-child) {
  margin: 0px 0px 16px 0px;
}

.template-page .contacts__link:hover {
  text-decoration: underline;
}

.template-page .contacts__map iframe {
  width: 100%;
  height: 552px;
  max-height: 60vh;
}

.menu__content .menu__item:not(:last-child) {
  border-right: 1px solid #EDEDED;
  margin: 0px;
}

.template-page .macy .macy__item a.dn {
  display: none;
}

.template-page .macy .macy__item .macy__item-name {
  display: flex;
  align-items: center;
}

.template-page .macy .macy__item .macy__item-icon {
  margin-left: auto;
}

.template-page .macy .macy__item .macy__item-icon img {
  width: 30px;
}

.blog-card__image.noimage {
  background: #999999;
}

.about__body-footer h2 {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.about__body-footer h3 {
  margin: 0px 0px 16px 0px;
  font-size: 18px;
  font-weight: 500;
}

.about__body-footer p {
  margin: 0px 0px 30px 0px;
}

.about__body-footer a {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  overflow: hidden;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  color: #000000;
}

.about__body-footer a:hover {
  color: #FFFFFF;
  background: #e37f80;
  border-color: #e37f80;
}

.about__body-footer a {
  color: #FFFFFF;
  background: #e37f80;
  border-color: #e37f80;
}

.about__body-footer a {
  transition: all 0.3s ease;
}

.template-page .banner .slick-arrow {
  border: none;
}

.slider-banner__list {
  display: none;
}

.slider-banner__list.slick-initialized {
  display: block;
}

.template-page .categories.categories--menu {
  min-height: max-content;
}

/*
 * MEDIA QUERIES
 */
@media screen and (max-width: 1280px) {
  .template-page .header__logo {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .template-page .menu__list {
    width: 100%;
  }

  .template-page .menu__item:not(:last-child) {
    margin: 0px 0% 0px 0px;
  }

  .template-page .footer__inner {
    grid-template-columns: 1fr 2fr 2fr 1fr;
    padding: 0;
  }

  .template-page .footer__inner .logo__link span {
    text-transform: none !important;
  }

  .template-page .footer .socials__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }

  .template-page .footer .socials__item:not(:last-child) {
    margin: 0;
  }

  .template-page .slider-banner__content {
    height: 550px;
  }

  .template-page .product__wrapper {
    padding: 50px 50px 50px 30px;
  }

  .template-page .product__inner {
    grid-template-columns: 1fr 2fr;
  }

  .template-page .product__gallery {
    max-width: 400px;
  }

  .template-page .product__body {
    padding: 0 0px 0 35px;
  }

  .template-page .product-gallery__item {
    height: 330px;
  }

  .template-page .product-gallery__thumb-list {
    margin: 20px -8px 0 -8px;
  }

  .template-page .product-gallery__thumb-item {
    height: 80px;
  }

  .template-page .basket__legend,
  .template-page .basket-card {
    grid-gap: 10px;
  }

  .template-page .basket__wrapper,
  .template-page .basket__form {
    padding: 30px;
  }

  .template-page .basket__list {
    margin: 0px 0px 30px 0px;
  }

  .template-page .basket__legend {
    padding: 0px 55px 14px 0px;
  }

  .template-page .basket-card {
    padding: 16px 55px 16px 0px;
  }

  .template-page .basket-card__image-wrapper {
    max-width: 100px;
    height: 80px;
    margin: 0px 16px 0px 0px;
  }

  .template-page .basket-card__name {
    font-size: 16px;
  }

  .template-page .basket-card__select-value,
  .template-page .basket-card__check-value {
    font-size: 14px;
  }

  .template-page .contacts__wrapper {
    padding: 30px;
  }
}

@media screen and (max-width: 992px) {
  .template-page .menu__link {
    padding: 4px 12px;
  }

  .template-page .footer {
    padding: 20px 0px 40px 0px;
  }

  .template-page .slider-banner__content {
    height: 460px;
  }

  .template-page .about__inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .template-page .container1280 {
    padding: 0;
  }

  .template-page .product__wrapper {
    padding: 0;
    border: initial;
  }

  .template-page .product__inner {
    display: block;
  }

  .template-page .product__gallery {
    max-width: 100%;
    margin: 0px 0px 60px 0px;
  }

  .template-page .product__body {
    padding: 0;
  }

  .template-page .product__title {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }

  .template-page .product__price,
  .template-page .product__options,
  .template-page .product__actions {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .template-page .product__old-price {
    margin: 0px 40px 0px 0px;
  }

  .template-page .product__actions {
    flex-direction: column;
  }

  .template-page .product__quantity {
    margin: 0px 0px 18px 0px;
  }

  .template-page .product-gallery__item {
    height: 600px;
    max-height: 50vh;
  }

  .template-page .product-gallery__thumb-list {
    max-width: 660px;
    margin: 30px auto 0 auto;
  }

  .template-page .product-gallery__thumb-item {
    height: 130px;
  }

  .template-page .catalog__title {
    font-weight: 700;
    text-transform: uppercase;
  }

  .template-page .basket-form__body {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .template-page .btn {
    padding: 12px 30px;
  }

  .template-page .btn--with-icon {
    padding: 12px 46px 12px 30px;
  }

  .template-page .btn--with-icon:before {
    width: 14px;
  }

  .template-page .header {
    padding: 30px 0;
  }

  .template-page .header__burger-button {
    display: block;
    z-index: 7;
  }

  .template-page .header__logo {
    z-index: 5;
  }

  .template-page .header__cart-link {
    right: 15px;
    z-index: 3;
  }

  .template-page .header__nav .menu__list {
    display: none;
  }

  .template-page .header .menu__list {
    padding: 0 50px;
  }

  .template-page .header .menu__link {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .template-page .header__overlay {
    display: flex;
    padding: 0;
    z-index: 6;
  }

  .template-page .footer {
    padding: 20px 0;
  }

  .template-page .footer__made-in-link {
    order: 3;
  }

  .template-page .footer__inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .template-page .footer__menu {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .template-page .footer__made-in-link {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .template-page .footer .socials__list {
    display: flex;
    justify-content: flex-start;
    padding: 0;
  }

  .template-page .footer .socials__item:not(:last-child) {
    margin: 0px 10px 0px 0px;
  }

  .template-page .slider-banner__content {
    height: 380px;
    padding: 0;
  }

  .template-page .slider-banner__title {
    font-size: 44px;
    letter-spacing: normal;
  }

  .template-page .banner__header {
    margin: 0px 0px 40px 0px;
  }

  .template-page .banner .lSAction {
    display: none !important;
  }

  .template-page .categories__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .template-page .categories__title {
    display: inline-block;
  }

  .template-page .categories__content {
    display: none;
  }

  .template-page .categories__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .template-page .categories__item:not(:last-child) {
    border-right: initial;
  }

  .template-page .categories__link {
    padding: 0;
    font-weight: 700;
  }

  .template-page .show-more {
    margin-top: 30px;
  }

  .template-page .slide-up-btn {
    bottom: 10%;
  }

  .template-page .about__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .template-page .about__title,
  .template-page .about__subtitle {
    text-align: center;
  }

  .template-page .about__subtitle {
    margin: 0px 0px 16px 0px;
  }

  .template-page .product-card__image-wrapper {
    margin: 0;
  }

  .template-page .product-card__body {
    padding: 10px;
  }

  .template-page .product-card__name {
    margin: 0px 0px 10px 0px;
    font-size: 16px;
  }

  .template-page .subcategory-card__name {
    padding: 12px 40px;
    font-size: 16px;
  }

  .template-page .basket__title {
    display: block;
  }

  .template-page .basket__legend {
    display: none;
  }

  .template-page .basket__wrapper {
    padding: 0 0 40px 0;
    border: none;
  }

  .template-page .basket__total {
    justify-content: center;
  }

  .template-page .basket__form {
    padding: 40px 10px;
  }

  .template-page .basket-card {
    padding: 40px 0;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 10px;
  }

  .template-page .basket-card__product-summary {
    grid-column: 1 / 4;
  }

  .template-page .basket-card__label {
    display: inline;
  }

  .template-page .basket-card__price {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .template-page .basket-card__quantity {
    grid-column: 1 / 2;
  }

  .template-page .basket-card__amount {
    grid-column: 3 / 4;
  }

  .template-page .basket-card__delete-btn {
    top: 20px;
    transform: initial;
  }

  .template-page .basket-card__delete-btn:hover {
    transform: scale(1.1);
  }

  .template-page .basket-card__quantity {
    margin: 0;
  }

  .template-page .basket-card__image-wrapper {
    margin: 0px 30px 0px 0px;
    max-width: 209px;
    height: 165px;
  }

  .template-page .basket-form__title {
    text-align: center;
  }

  .template-page .basket-form__left {
    grid-template-columns: 1fr;
  }

  .template-page .basket-form__actions {
    justify-content: center;
  }

  .template-page .contacts {
    text-align: center;
    margin: 0;
  }

  .template-page .contacts__wrapper {
    padding: 30px 10px;
    background: transparent;
  }

  .template-page .contacts__link {
    color: #000000;
  }
}

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

  .template-page .container,
  .template-page .container1440 {
    padding: 0 10px;
  }

  .template-page h1,
  .template-page h2 {
    margin-bottom: 20px;
  }

  .template-page .section {
    margin-bottom: 20px;
  }

  .template-page .header {
    padding: 20px 0;
  }

  .template-page .header__overlay {
    padding: 80px 0px 20px 0px;
  }

  .template-page .header__overlay .menu {
    margin: 0px 0px 50px 0px;
    overflow: scroll;
  }

  .template-page .header__overlay .menu__link {
    font-size: 24px;
  }

  .template-page .header__overlay .menu__item:not(:last-child) {
    margin: 0px 0px 16px 0px;
  }

  .template-page .header__cart-link {
    right: 10px;
    width: 22px;
    height: 28px;
  }

  .template-page .header__cart-quantity {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .template-page .logo--short .logo__link {
    font-size: 40px;
  }

  .template-page .socials__item:not(:last-child) {
    margin: 0px 16px 0px 0px;
  }

  .template-page .socials__link {
    width: 24px;
    height: 24px;
  }

  .template-page .product-gallery__thumb-list {
    margin: 20px auto 0 auto;
    padding: 0 20px;
  }

  .template-page .product-gallery__thumb-item {
    height: 80px;
    padding: 0 4px;
  }

  .template-page .slick-prev {
    left: 0;
  }

  .template-page .slick-next {
    right: 0;
  }

  .template-page .basket-card {
    padding: 60px 0 40px 0;
  }

  .template-page .basket-card__image-wrapper {
    margin: 0px 23px 0px 0px;
    max-width: 104px;
    height: 83px;
  }

  .template-page .basket-card__name {
    margin: 0px 0px 7px 0px;
    font-size: 15px;
  }

  .template-page .basket-card__select-value,
  .template-page .basket-card__check-value {
    font-size: 13px;
  }

  .template-page .basket-card__price,
  .template-page .basket-card__amount {
    font-size: 12px;
  }

  .template-page .blog__header {
    margin: 0px 0px 30px 0px;
  }

  .template-page .blog-card__body {
    padding: 0px 10px 10px 10px;
  }

  .template-page .blog-card__capture {
    font-size: 16px;
  }

  .template-page .pager {
    padding: 20px 0 40px 0;
  }

  .template-page .pager__item:not(:last-child) {
    margin: 0px 10px 0px 0px;
  }

  .template-page .article {
    margin-bottom: 40px;
  }

  .template-page .article__image-wrapper {
    margin: 0px 0px 30px 0px;
  }

  .template-page .article__date {
    display: none;
  }

  .template-page .article__content {
    margin: 0px 0px 60px 0px;
  }

  .template-page .contacts {
    margin: 0;
  }
}

@media screen and (max-width: 425px) {
  .template-page .slide-up-btn {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .template-page .section:not(:last-child) {
    margin-bottom: 20px;
  }

  .template-page .footer__inner {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    text-align: center;
  }

  .template-page .footer__menu {
    margin: 0 auto;
  }

  .template-page .footer__made-in-link {
    justify-content: center;
  }

  .template-page .footer .socials__list {
    justify-content: center;
  }

  .template-page .slider-banner__title {
    font-size: 32px;
  }

  .template-page .product__options {
    flex-direction: column;
  }

  .template-page .product__options .select {
    margin: 0px 0px 20px 0px;
  }

  .template-page .product__description {
    margin: 0px 0px 30px 0px;
  }

  .template-page .footer__logo,
  .template-page .footer__menu,
  .template-page .footer__socials {
    display: none;
  }
}