

/* Start:/local/templates/main/scss/styles.css?178583935158423*/
@font-face {
  font-family: "Montserrat";
  src: url("/local/templates/main/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/local/templates/main/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/local/templates/main/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/local/templates/main/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

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

body {
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
  min-width: 360px;
}

.body-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.content {
  flex-grow: 1;
  overflow: hidden;
}

.wrapper {
  max-width: 1820px;
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 479px) {
  .wrapper {
    padding: 0 20px;
  }
}

p, li {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

p {
  margin: 0 0 20px 0;
}

a {
  font-family: inherit;
  font-size: inherit;
  color: #0071E3;
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: #0071E3;
}
a:hover {
  text-decoration-color: transparent;
}

ul {
  margin: 0 0 20px 0;
  padding-left: 18px;
  list-style: square;
}
ul li::marker {
  color: #1D58BA;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1 {
  font-size: 40px;
  line-height: 1.2;
  color: #000000;
  font-weight: 600;
  margin: 0 0 60px 0;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  h1 {
    font-size: 30px;
    margin-bottom: 45px;
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

h2 {
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 40px 0;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.red {
  color: #C00C15;
}

.overlay {
  display: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s;
}
.overlay.active {
  opacity: 1;
}

.popup {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 11;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-radius: 8px;
  transition: all 0.3s;
}
.popup.active {
  opacity: 1;
}
.popup .close {
  position: absolute;
  top: -60px;
  right: 0;
  background: #1D58BA;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.popup .close svg {
  stroke: #FFFFFF;
}

input {
  display: block;
  width: 100%;
}
input[type=text], input[type=password] {
  display: block;
  height: 50px;
  border: 1px solid #0071E3;
  border-radius: 5px;
  outline: none;
  padding: 0 15px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000000;
  transition: all 0.3s;
}
@media (max-width: 479px) {
  input[type=text], input[type=password] {
    font-size: 12px;
    height: 45px;
  }
}
input[type=text]::placeholder, input[type=password]::placeholder {
  color: #000000;
}
input[type=text]:focus, input[type=password]:focus {
  background: #F5F5F7;
  border-color: #1D58BA;
}
input[type=text].error, input[type=password].error {
  border-color: red;
}
input[type=password]:not(:focus):not(:placeholder-shown) {
  color: #0071E3;
  font-size: 36px;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 14px;
  line-height: 20px;
}
input[type=checkbox] + label:before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #0071E3;
  background: #FFFFFF;
}
input[type=checkbox] + label:after {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  background: transparent;
  border-radius: 1px;
  transition: all 0.3s;
}
input[type=checkbox]:checked + label:after {
  background: #0071E3;
}
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  position: relative;
  height: 50px;
  border: 1px solid #0071E3;
  border-radius: 5px;
  outline: none;
  padding: 0 20px 0 15px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #000000;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
input[type=radio] + label:hover {
  background: #F5F5F7;
  border-color: #1D58BA;
}
input[type=radio] + label:after {
  flex-shrink: 0;
  content: "";
  transition: all 0.3s;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #0071E3;
}
input[type=radio] + label:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  background: #FFFFFF;
  opacity: 0;
  transition: all 0.3s;
}
input[type=radio]:checked + label:before {
  opacity: 1;
}
input[type=radio]:checked + label:after {
  background: #0071E3;
}

textarea {
  display: block;
  height: 100px;
  width: 100%;
  border: 1px solid #0071E3;
  border-radius: 5px;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000000;
  transition: all 0.3s;
  resize: none;
}
@media (max-width: 479px) {
  textarea {
    font-size: 12px;
  }
}
textarea::placeholder {
  color: #000000;
}
textarea:focus {
  background: #F5F5F7;
  border-color: #1D58BA;
}
textarea.error {
  border-color: red;
}

.button,
input[type=submit] {
  min-width: 140px;
  width: auto;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #0071E3;
  border-radius: 20px;
  background: #0071E3;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.button.red-button,
input[type=submit].red-button {
  background: #C00C15;
  color: #FFFFFF;
  border-color: #C00C15;
}
.button.red-button:hover, .button.red-button.active,
input[type=submit].red-button:hover,
input[type=submit].red-button.active {
  background: transparent;
  color: #000000;
}
.button.transparent-button,
input[type=submit].transparent-button {
  background: transparent;
  color: #000000;
}
.button.transparent-button:hover,
input[type=submit].transparent-button:hover {
  background: #0071E3;
  color: #FFFFFF;
}
.button:hover,
input[type=submit]:hover {
  background: transparent;
  color: #000000;
}

.quantity {
  border-radius: 5px;
  background: #F5F5F5;
  display: flex;
  width: 140px;
  height: 40px;
}
@media (max-width: 1023px) {
  .quantity {
    width: 102px;
  }
}
@media (max-width: 767px) {
  .quantity {
    width: 93px;
  }
}
@media (max-width: 479px) {
  .quantity {
    width: 72px;
    height: 30px;
  }
}
.quantity span {
  width: 33.3333%;
  position: relative;
  cursor: pointer;
}
.quantity span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #868686;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 479px) {
  .quantity span:before {
    width: 7px;
    height: 1px;
  }
}
.quantity span.plus:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #868686;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 479px) {
  .quantity span.plus:after {
    width: 1px;
    height: 7px;
  }
}
.quantity input {
  display: block;
  width: 33.3333%;
  border: none;
  text-align: center;
  background: transparent;
  outline: none;
  font-size: 14px;
  line-height: 40px;
  font-weight: 600;
}
@media (max-width: 479px) {
  .quantity input {
    font-size: 10px;
    line-height: 30px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 40px;
}
header .header-inner {
  position: relative;
  background: linear-gradient(90deg, #1D58BA 0%, #0071E3 64%);
  padding: 7px 0;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.2);
  z-index: 4;
}
@media (max-width: 1819px) {
  header .header-inner {
    padding: 11px 0;
  }
}
header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  header .header-wrapper {
    flex-wrap: wrap;
  }
}
header .header-wrapper > .left {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  header .header-wrapper > .left {
    width: 100%;
    justify-content: space-between;
  }
}
header .header-wrapper > .right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1819px) {
  header .header-wrapper > .right {
    gap: 30px;
  }
}
@media (max-width: 1279px) {
  header .header-wrapper > .right {
    flex-wrap: wrap;
    width: 240px;
    justify-content: space-between;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  header .header-wrapper > .right {
    width: 100%;
    flex-wrap: nowrap;
    gap: 40px;
  }
}
@media (max-width: 460px) {
  header .header-wrapper > .right {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 1819px) {
  header .header-wrapper .logo {
    width: 172px;
  }
}
@media (max-width: 1279px) {
  header .header-wrapper .logo {
    width: 213px;
  }
}
@media (max-width: 767px) {
  header .header-wrapper .logo {
    width: 195px;
  }
}
header .header-wrapper .logo img {
  width: 100%;
  height: auto;
}
header .header-wrapper .menu-wrapper {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1279px) {
  header .header-wrapper .menu-wrapper {
    align-self: flex-start;
  }
}
@media (max-width: 767px) {
  header .header-wrapper .menu-wrapper {
    width: 197px;
  }
}
@media (max-width: 460px) {
  header .header-wrapper .menu-wrapper {
    width: 145px;
    flex-shrink: 0;
    gap: 10px;
  }
}
header .header-wrapper .menu-wrapper .catalog-menu-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #C00C15;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 1279px) {
  header .header-wrapper .menu-wrapper .catalog-menu-button {
    padding: 15px 17px;
  }
}
@media (min-width: 768px) {
  header .header-wrapper .menu-wrapper .catalog-menu-button.active .burger {
    margin-bottom: 4px;
  }
}
header .header-wrapper .menu-wrapper .catalog-menu-button.active .burger > span.line-1 {
  transform: rotate(45deg);
  top: 50%;
  left: 0;
}
@media (max-width: 767px) {
  header .header-wrapper .menu-wrapper .catalog-menu-button.active .burger > span.line-1 {
    left: 2px;
  }
}
header .header-wrapper .menu-wrapper .catalog-menu-button.active .burger > span.line-2 {
  opacity: 0;
}
header .header-wrapper .menu-wrapper .catalog-menu-button.active .burger > span.line-3 {
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  width: 12px;
}
@media (max-width: 767px) {
  header .header-wrapper .menu-wrapper .catalog-menu-button.active .burger > span.line-3 {
    left: 2px;
  }
}
header .header-wrapper .menu-wrapper .catalog-menu-button .burger {
  position: relative;
  height: 12px;
  width: 15px;
  transition: all 0.5s;
}
header .header-wrapper .menu-wrapper .catalog-menu-button .burger > span {
  position: absolute;
  left: 0;
  background: #FFFFFF;
  height: 2px;
  transition: all 0.5s;
}
header .header-wrapper .menu-wrapper .catalog-menu-button .burger > span.line-1 {
  width: 12px;
  top: 0;
}
header .header-wrapper .menu-wrapper .catalog-menu-button .burger > span.line-2 {
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
}
header .header-wrapper .menu-wrapper .catalog-menu-button .burger > span.line-3 {
  width: 10px;
  bottom: 0;
}
header .header-wrapper .menu-wrapper .catalog-menu-button .button-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1819px) {
  header .header-wrapper .menu-wrapper .catalog-menu-button .button-title {
    font-size: 18px;
  }
}
@media (max-width: 1279px) {
  header .header-wrapper .menu-wrapper .catalog-menu-button .button-title {
    display: none;
  }
}
header .header-wrapper .menu-wrapper .company-menu-mobile {
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  align-items: center;
}
@media (min-width: 1820px) {
  header .header-wrapper .menu-wrapper .company-menu-mobile {
    display: none;
  }
}
@media (max-width: 460px) {
  header .header-wrapper .menu-wrapper .company-menu-mobile {
    font-size: 14px;
  }
}
header .header-wrapper .menu-wrapper .company-menu-mobile svg {
  display: block;
}
@media (max-width: 1819px) {
  header .header-wrapper .menu-wrapper .company-menu-desktop {
    display: none;
  }
}
header .header-wrapper .phone {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .header-wrapper .phone svg {
  stroke: #FFFFFF;
}
header .header-wrapper .phone a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 22px;
  text-decoration: none;
}
@media (max-width: 1279px) {
  header .header-wrapper .phone a {
    display: none;
  }
}
header .header-wrapper .search {
  display: flex;
  cursor: pointer;
}
header .header-wrapper .search svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  header .header-wrapper .ananas-button {
    order: -1;
  }
}
@media (max-width: 767px) {
  header .header-wrapper .ananas-button {
    order: 2;
    flex-grow: 1;
  }
}
header .header-wrapper .ananas-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 58px;
  border-radius: 10px;
  background: linear-gradient(90deg, #F5020C 0%, #C10002 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  gap: 15px;
}
@media (max-width: 1819px) {
  header .header-wrapper .ananas-button a {
    font-size: 18px;
    width: 247px;
  }
}
@media (max-width: 1279px) {
  header .header-wrapper .ananas-button a {
    width: 240px;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  header .header-wrapper .ananas-button a {
    margin-left: auto;
    width: 197px;
    height: 53px;
    font-size: 16px;
  }
}
@media (max-width: 460px) {
  header .header-wrapper .ananas-button a {
    width: 145px;
    font-size: 15px;
  }
}
header .header-wrapper .ananas-button a .left {
  flex-shrink: 0;
  padding-right: 15px;
  border-right: 1px solid #FFFFFF;
}
@media (max-width: 460px) {
  header .header-wrapper .ananas-button a .left {
    display: none;
  }
}
header .header-wrapper .ananas-button a .center {
  width: 130px;
}
@media (max-width: 1819px) {
  header .header-wrapper .ananas-button a .center {
    width: 117px;
  }
}
@media (max-width: 767px) {
  header .header-wrapper .ananas-button a .center {
    width: 101px;
  }
}
header .header-wrapper .ananas-button a .right {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  header .header-wrapper .ananas-button a .right {
    display: none;
  }
}
header .header-wrapper .lang-changer {
  display: flex;
  gap: 11px;
}
header .header-wrapper .lang-changer .delimiter {
  width: 2px;
  height: auto;
  background: #fff;
}
header .header-wrapper .lang-changer a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 460px) {
  header .header-wrapper .lang-changer a {
    font-size: 14px;
  }
}
header .header-wrapper .lang-changer a.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}
header .header-popup-wrapper {
  display: none;
  position: absolute;
  width: 100%;
  height: 560px;
  top: 100%;
  z-index: 3;
  background: #FFFFFF;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1140px) {
  header .header-popup-wrapper {
    height: auto;
  }
}
header .header-popup-wrapper.active {
  display: block;
}
header .header-popup-wrapper[data-popup=search] {
  height: 210px;
}
@media (max-width: 1279px) {
  header .header-popup-wrapper[data-popup=search] {
    height: 190px;
  }
}
@media (max-width: 767px) {
  header .header-popup-wrapper[data-popup=catalog] .catalog-popup-wrapper .wrapper {
    padding: 0;
  }
}
header .header-popup-wrapper[data-popup=catalog] .catalog-popup-outer {
  display: flex;
}
header .header-popup-wrapper[data-popup=catalog] .catalog-popup-outer .header-catalog-menu-outer {
  flex-grow: 1;
}
header .header-popup-wrapper[data-popup=catalog] .catalog-popup-outer .best-offer-outer {
  flex-shrink: 0;
  width: 27%;
  position: relative;
}
@media (max-width: 1550px) {
  header .header-popup-wrapper[data-popup=catalog] .catalog-popup-outer .best-offer-outer {
    display: none;
  }
}
header .header-popup-wrapper[data-popup=about] {
  height: 220px;
}
@media (max-width: 1279px) {
  header .header-popup-wrapper[data-popup=about] {
    height: 310px;
  }
}
header .header-popup-wrapper[data-popup=about] .about-popup-wrapper {
  position: relative;
  margin-top: 40px;
}
@media (max-width: 1279px) {
  header .header-popup-wrapper[data-popup=about] .about-popup-wrapper {
    border-bottom: 1px solid #000;
    padding-bottom: 25px;
    padding-top: 25px;
    margin-top: 25px;
  }
}
header .header-popup-wrapper[data-popup=about] .about-popup-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 31px;
}
@media (min-width: 1280px) {
  header .header-popup-wrapper[data-popup=about] .about-popup-phone {
    display: none;
  }
}
header .header-popup-wrapper[data-popup=about] .about-popup-phone svg {
  stroke: #0071E3;
}
header .header-popup-wrapper[data-popup=about] .about-popup-phone a {
  font-size: 18px;
  font-weight: 600;
  color: #0071E3;
  text-decoration: none;
}
header .header-popup-wrapper .header-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0071E3;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .header-popup-close {
    width: 30px;
    height: 30px;
  }
}
header .header-popup-wrapper .header-popup-close svg {
  stroke: #FFFFFF;
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .header-popup-close svg {
    width: 8px;
    height: 8px;
  }
}
header .header-popup-wrapper .header-popup-close:hover {
  background: #C00C15;
}
header .header-popup-wrapper .company-popup-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 55px 0 0 145px;
}
@media (max-width: 1550px) {
  header .header-popup-wrapper .company-popup-wrapper {
    padding-left: 0;
    gap: 40px;
  }
}
header .header-popup-wrapper .company-popup-wrapper .company-popup-left {
  flex-shrink: 0;
}
header .header-popup-wrapper .company-popup-wrapper .company-popup-left .mobile-phone {
  display: none;
  padding-left: 40%;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
}
header .header-popup-wrapper .company-popup-wrapper .company-popup-left .mobile-phone a {
  font-weight: 600;
  font-size: 18px;
  line-height: 16px;
  text-decoration: none;
  color: #0071E3;
}
header .header-popup-wrapper .company-popup-wrapper .company-popup-left .mobile-phone svg {
  stroke: #0071E3;
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .company-popup-wrapper .company-popup-left .mobile-phone {
    display: flex;
  }
}
@media (max-width: 767px) {
  header .header-popup-wrapper .company-popup-wrapper .company-popup-left .mobile-phone {
    padding-left: 100px;
  }
}
@media (max-width: 479px) {
  header .header-popup-wrapper .company-popup-wrapper .company-popup-left .mobile-phone {
    padding-left: 40px;
  }
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .company-popup-wrapper .company-popup-left {
    flex-grow: 1;
  }
}
header .header-popup-wrapper .company-popup-wrapper .company-popup-right {
  max-width: 845px;
  font-size: 14px;
  line-height: 25px;
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .company-popup-wrapper .company-popup-right {
    display: none;
  }
}
header .header-popup-wrapper .company-popup-wrapper .header-popup-close {
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .company-popup-wrapper .header-popup-close {
    position: absolute;
    top: 25px;
    right: 30px;
  }
}
@media (max-width: 479px) {
  header .header-popup-wrapper .company-popup-wrapper .header-popup-close {
    top: 20px;
    right: 20px;
  }
}
header .header-popup-wrapper .search-popup-wrapper {
  margin-top: 33px;
  position: relative;
}
@media (max-width: 1140px) {
  header .header-popup-wrapper .search-popup-wrapper {
    margin-top: 25px;
  }
}

/*
header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 40px;

  .header-inner {
    position: relative;
    background: colors.$blue-gradient;
    padding: 15px 0;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.2);
    z-index: 4;
  }

  .header-wrapper {
    display: flex;
    justify-content: space-between;

    .header-left {
      display: flex;
      align-items: center;
      gap: 35px;
      @media (max-width: 767px) {
        gap: 20px;
      }

      .catalog-menu-button {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px;
        background: colors.$red;
        border-radius: 5px;
        cursor: pointer;
        @media (max-width: 767px) {
          padding: 14px 13px;
        }

        &.active {
          .burger {
            @media (min-width: 768px) {
              margin-bottom: 4px;
            }

            >span {
              &.line-1 {
                transform: rotate(45deg);
                top: 50%;
                left: 0;
                @media (max-width: 767px) {
                  left: 2px;
                }
              }

              &.line-2 {
                opacity: 0;
              }

              &.line-3 {
                transform: rotate(-45deg);
                top: 50%;
                left: 0;
                width: 12px;
                @media (max-width: 767px) {
                  left: 2px;
                }
              }
            }
          }
        }

        .burger {
          position: relative;
          height: 12px;
          width: 15px;
          transition: all .5s;

          >span {
            position: absolute;
            left: 0;
            background: colors.$white;
            height: 2px;
            transition: all .5s;

            &.line-1 {
              width: 12px;
              top: 0;
            }

            &.line-2 {
              width: 15px;
              top: 50%;
              transform: translateY(-50%);
            }

            &.line-3 {
              width: 10px;
              bottom: 0;
            }
          }
        }

        .button-title {
          color: colors.$white;
          font-weight: 600;
          font-size: 14px;
          @media (max-width: 767px) {
            display: none;
          }
        }
      }

      .pages-menu-button {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;

        &.active {
          .triangle {
            transform: rotateZ(180deg);
          }
        }

        .button-title {
          color: colors.$white;
          font-weight: 600;
          font-size: 14px;
          @media (max-width: 479px) {
            display: none;
          }
        }

        .triangle {
          transition: all .3s;

          @media (max-width: 479px) {
            display: none;
          }

          svg {
            display: block;
          }
        }

        .mobile-icon {
          display: none;
          width: 22px;
          height: 22px;

          @media (max-width: 479px) {
            display: block;
          }
        }

        svg {
          fill: colors.$white;
          stroke: colors.$white;
        }
      }

      .phone {
        display: flex;
        gap: 10px;
        align-items: center;
        @media (max-width: 1279px) {
          display: none;
        }

        svg {
          stroke: colors.$white;
        }

        a {
          color: colors.$white;
          font-weight: 600;
          font-size: 18px;
          line-height: 16px;
          text-decoration: none;
        }
      }
    }

    .header-right {
      display: flex;
      align-items: center;

      .search {
        margin-right: 30px;
        display: flex;
        cursor: pointer;
        @media (max-width: 767px) {
          margin-right: 22px;
        }
        @media (max-width: 479px) {
          margin-right: 20px;
        }

        svg {
          fill: colors.$white;
          stroke: colors.$white;
          transition: all .3s;
        }

        &:hover svg {
          fill: colors.$red;
          stroke: colors.$red;
        }
      }

      .favorite,
      .cart {
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        text-decoration: none;

        span {
          flex-shrink: 0;
          width: 19px;
          height: 19px;
          display: flex;
          justify-content: center;
          align-items: center;
          background: colors.$red;
          color: colors.$white;
          border-radius: 50%;
          font-size: 10px;
          line-height: 10px;
          letter-spacing: -0.05em;
          font-family: 'Roboto', sans-serif;
        }

        svg {
          fill: colors.$white;
          stroke: colors.$white;
          transition: all .3s;
        }

        &:hover svg {
          fill: colors.$red;
          stroke: colors.$red;
        }
      }

      .favorite {
        margin-right: 22px;
        @media (max-width: 767px) {
          margin-right: 20px;
        }
        @media (max-width: 479px) {
          margin-right: 20px;
        }
      }

      .cart {
        margin-right: 37px;
        @media (max-width: 1279px) {
          margin-right: 20px;
        }
        @media (max-width: 479px) {
          margin-right: 20px;
        }
      }

      .personal {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 10px 25px;
        background: colors.$white;
        color: colors.$black;
        border-radius: 5px;
        border: 1px solid transparent;
        transition: all .3s;
        cursor: pointer;
        text-decoration: none;
        @media (max-width: 767px) {
          padding: 9px 12px;
        }

        svg {
          fill: colors.$black;
          stroke: colors.$black;
          transition: all .3s;
        }

        span {
          font-weight: 600;
          font-size: 14px;
          @media (max-width: 767px) {
            display: none;
          }
        }

        &:hover {
          border-color: colors.$white;
          color: colors.$white;
          background: transparent;

          svg {
            fill: colors.$white;
            stroke: colors.$white;
          }
        }
      }
    }
  }

  .header-popup-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    height: 560px;
    top: 100%;
    z-index: 3;
    background: colors.$white;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, .15);
    @media (max-width: 1140px) {
      height: auto;
    }

    &.active {
      display: block;
    }

    &[data-popup="catalog"] {

      .catalog-popup-wrapper .wrapper {
        @media (max-width: 767px) {
          padding: 0;
        }
      }

      .catalog-popup-outer {
        display: flex;

        .header-catalog-menu-outer {
          flex-grow: 1;
        }

        .best-offer-outer {
          flex-shrink: 0;
          width: 27%;
          position: relative;
          @media (max-width: 1550px) {
            display: none;
          }
        }
      }
    }

    .header-popup-close {
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: colors.$blue;
      cursor: pointer;
      transition: all .3s;
      @media (max-width: 1140px) {
        width: 30px;
        height: 30px;
      }

      svg {
        stroke: colors.$white;
        @media (max-width: 1140px) {
          width: 8px;
          height: 8px;
        }
      }

      &:hover {
        background: colors.$red;
      }
    }

    .company-popup-wrapper {
      display: flex;
      justify-content: space-between;
      padding: 55px 0 0 145px;
      @media (max-width: 1550px) {
        padding-left: 0;
        gap: 40px;
      }

      .company-popup-left {
        flex-shrink: 0;

        .mobile-phone {
          display: none;
          padding-left: 40%;
          gap: 10px;
          align-items: center;
          margin-top: 30px;
          margin-bottom: 40px;

          a {
            font-weight: 600;
            font-size: 18px;
            line-height: 16px;
            text-decoration: none;
            color: colors.$blue-second;
          }

          svg {
            stroke: colors.$blue-second;
          }

          @media (max-width: 1140px) {
            display: flex;
          }
          @media (max-width: 767px) {
            padding-left: 100px;
          }
          @media (max-width: 479px) {
            padding-left: 40px;
          }
        }
        @media (max-width: 1140px) {
          flex-grow: 1;
        }
      }

      .company-popup-right {
        max-width: 845px;
        font-size: 14px;
        line-height: 25px;
        @media (max-width: 1140px) {
          display: none;
        }
      }

      .header-popup-close {
        flex-shrink: 0;
        position: relative;
        @media (max-width: 1140px) {
          position: absolute;
          top: 25px;
          right: 30px;
        }
        @media (max-width: 479px) {
          top: 20px;
          right: 20px;
        }
      }
    }

    .search-popup-wrapper {
      margin-top: 55px;
      position: relative;
      @media (max-width: 1140px) {
        margin-top: 25px;
      }
    }
  }
}*/
footer {
  background: #0071E3 url("/local/templates/main/images/footer_owl_new.svg") no-repeat right center;
  margin-top: 90px;
}
footer .footer-wrapper {
  padding: 45px 0 165px 0;
  display: flex;
  gap: 180px;
}
@media (max-width: 1819px) {
  footer .footer-wrapper {
    gap: 105px;
    padding: 45px 0 140px 0;
  }
}
@media (max-width: 1279px) {
  footer .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 45px 0;
  }
}
@media (max-width: 1279px) {
  footer .footer-wrapper .left {
    width: 100%;
  }
}
footer .footer-wrapper .left .top-left-block {
  margin-bottom: 30px;
}
footer .footer-wrapper .left .bottom-left-block {
  display: flex;
  gap: 80px;
}
@media (max-width: 1819px) {
  footer .footer-wrapper .left .bottom-left-block {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  footer .footer-wrapper .left .bottom-left-block {
    flex-wrap: wrap;
    gap: 11px;
  }
}
footer .footer-wrapper .left .bottom-left-block .copy {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  footer .footer-wrapper .left .bottom-left-block .copy {
    width: 100%;
  }
}
footer .footer-wrapper .right {
  display: flex;
  gap: 30px;
}
@media (max-width: 1819px) {
  footer .footer-wrapper .right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 1279px) {
  footer .footer-wrapper .right {
    width: 100%;
  }
}
footer .footer-wrapper .right .yt-button a {
  background: #fff;
  display: flex;
  align-items: center;
  height: 50px;
  gap: 14px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #D20808;
  text-decoration: none;
}
@media (max-width: 767px) {
  footer .footer-wrapper .right .yt-button a {
    font-size: 14px;
    height: 40px;
  }
}
footer .footer-wrapper .right .yt-button a:after {
  width: 28px;
  height: 20px;
  content: "";
  background: url("/local/templates/main/images/yt-icon.svg") no-repeat center;
}
footer .footer-wrapper .right .ananas-button a {
  display: block;
  background: linear-gradient(90deg, #F7020C 0%, #BF0101 100%);
  border-radius: 10px;
  padding: 2px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  height: 50px;
}
@media (max-width: 767px) {
  footer .footer-wrapper .right .ananas-button a {
    font-size: 14px;
    width: 275px;
    height: 40px;
  }
}
footer .footer-wrapper .right .ananas-button a .first-layer {
  background: linear-gradient(90deg, #FFE2D6 0%, #F20604 100%);
  border-radius: 10px;
  height: 100%;
  padding: 1px;
}
footer .footer-wrapper .right .ananas-button a .first-layer .second-layer {
  background: linear-gradient(90deg, #F7020C 0%, #BF0101 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 100%;
  padding: 0 15px;
}
footer .footer-wrapper .right .ananas-button a .first-layer .second-layer:after {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  width: 31px;
  height: 23px;
  background: url("/local/templates/main/images/footer-button-arrow.svg") no-repeat right center;
}

.cookie-popup-block {
  position: fixed;
  left: 0;
  bottom: 30px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
.cookie-popup-block .cookie-popup {
  width: 820px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  pointer-events: all;
  background: #fff;
  padding: 0 25px;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1803921569);
}
@media (max-width: 1440px) {
  .cookie-popup-block .cookie-popup {
    width: 674px;
    height: 91px;
  }
}
@media (max-width: 1023px) {
  .cookie-popup-block .cookie-popup {
    width: 100%;
    padding: 15px 25px;
    height: auto;
    gap: 20px;
  }
}
.cookie-popup-block .cookie-popup .cookie-accept {
  flex-shrink: 0;
  width: 64px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  outline: none;
  background: #D20808;
  cursor: pointer;
  border: 1px solid #D20808;
  transition: all 0.3s;
}
.cookie-popup-block .cookie-popup .cookie-accept:hover {
  background: white;
  color: #D20808;
}

a.ananas-fixed-button {
  position: fixed;
  right: 0;
  bottom: 100px;
  display: block;
  background: linear-gradient(90deg, #F7020C 0%, #BF0101 100%);
  border-radius: 50%;
  padding: 2px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  width: 115px;
  height: 115px;
  z-index: 3;
}
@media (max-width: 1440px) {
  a.ananas-fixed-button {
    width: 100px;
    height: 100px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  a.ananas-fixed-button {
    width: 80px;
    height: 80px;
    font-size: 9px;
  }
}
a.ananas-fixed-button .first-layer {
  display: block;
  background: linear-gradient(90deg, #FFE2D6 0%, #F20604 100%);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  padding: 1px;
}
a.ananas-fixed-button .first-layer .second-layer {
  background: linear-gradient(90deg, #F7020C 0%, #BF0101 100%);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1440px) {
  a.ananas-fixed-button .first-layer .second-layer svg {
    width: 28px;
    height: 29px;
  }
}
@media (max-width: 767px) {
  a.ananas-fixed-button .first-layer .second-layer svg {
    width: 18px;
    height: 19px;
  }
}

button.to-top {
  position: fixed;
  bottom: 40px;
  right: 100px;
  background: #D20808;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  outline: none;
  border: none;
  z-index: 3;
  cursor: pointer;
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
}
@media (max-width: 1550px) {
  button.to-top {
    right: 50px;
  }
}
@media (max-width: 1279px) {
  button.to-top {
    right: 30px;
  }
}
button.to-top.visible {
  opacity: 1;
  pointer-events: all;
}

/*
footer {
  background: #0071E3 url('/local/templates/main/images/footer_owl_new.svg') no-repeat right center;
  margin-top: 90px;
  @media (max-width: 1279px) {
    margin-top: 60px;
  }
  @media (max-width: 767px) {
    background-size: 95%;
    background-position: 0 15px;
    margin-top: 50px;
  }
  @media (max-width: 479px) {
    margin-top: 35px;
  }

  .footer-wrapper {
    padding: 65px 0 60px 0;
    display: grid;
    gap: 130px;
    grid-template-columns: 1fr auto 350px;
    max-width: 1375px;
    margin-left: auto;
    @media (max-width: 1279px) {
      padding: 60px 0;
      grid-template-columns: auto auto;
      gap: 30px 130px;
      max-width: 680px;
      margin-left: 0;
    }
    @media (max-width: 767px) {
      gap: 30px 60px;
      padding: 50px 0 40px 0;
    }
    @media (max-width: 479px) {
      display: block;
      padding: 50px 0 15px 0;
    }

    .footer-menu-block {
      @media (max-width: 767px) {
        grid-column: span 2;
      }
      @media (max-width: 479px) {
        margin-bottom: 20px;
      }
    }

    .footer-contacts {
      @media (max-width: 479px) {
        display: grid;
        grid-template-columns: auto auto;
        gap: 5px 25px;
        margin-bottom: 20px;
      }

      .footer-contacts-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 23px;
        @media (max-width: 479px) {
          font-size: 14px;
          grid-column: span 2;
          margin-bottom: 15px;
        }
      }

      .footer-contact {
        margin-bottom: 23px;
        @media (max-width: 479px) {
          margin-bottom: 0;
        }

        &.footer-contact-phone {
          @media (max-width: 479px) {
            grid-row-start: 3;
          }
        }

        .contact-name {
          font-size: 16px;
          line-height: 1.5;
          white-space: nowrap;
          @media (max-width: 479px) {
            font-size: 14px;
          }
        }

        .contact-val {
          color: colors.$black;
          font-weight: 600;
          font-size: 16px;
          line-height: 1.5;
          text-decoration: none;
          @media (max-width: 479px) {
            font-size: 14px;
          }
        }
      }
    }

    .footer-info {
      @media (max-width: 1279px) {
        grid-column: span 2;
      }
      @media (max-width: 767px) {
        grid-column: auto;
      }

      .footer-info-title {
        font-size: 16px;
        margin-bottom: 23px;
        @media (max-width: 479px) {
          font-size: 14px;
          margin-bottom: 15px;
        }
      }

      .footer-address {
        margin-bottom: 23px;

        .address-val {
          font-size: 16px;
          font-weight: 600;
          line-height: 1.5;
          @media (max-width: 479px) {
            font-size: 14px;
          }
        }

        a {
          color: colors.$black;
          text-decoration: none;
          font-size: 16px;
          @media (max-width: 479px) {
            font-size: 14px;
          }

          &:hover {
            color: colors.$blue;
          }
        }
      }

      .footer-payment {

        .payment-text {
          font-size: 16px;
          @media (max-width: 479px) {
            font-size: 14px;
          }
        }

        img {
          display: block;
        }
      }
    }
  }
}*/
.content.main-page {
  background: url("/local/templates/main/images/site_bg.svg") no-repeat fixed left;
  background-size: 70%;
}
.content.main-page h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 45px 0;
}
@media (max-width: 1819px) {
  .content.main-page h2 {
    font-size: 35px;
  }
}
@media (max-width: 1279px) {
  .content.main-page h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .content.main-page h2 {
    font-size: 25px;
    margin-bottom: 32px;
  }
  .content.main-page h2 svg {
    width: 20px;
  }
}
@media (max-width: 479px) {
  .content.main-page h2 {
    font-size: 24px;
  }
}
.content.main-page .recommended-to-buy-title h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contacts-page .contacts-info {
  background: #0071E3 url("/local/templates/main/images/contacts_bg.svg") no-repeat left center;
  display: flex;
  justify-content: center;
  padding: 32px 0;
  border-radius: 8px;
  margin-bottom: 55px;
}
@media (max-width: 1279px) {
  .contacts-page .contacts-info {
    flex-wrap: wrap;
    background-position-y: 30px;
  }
}
.contacts-page .contacts-info .contact-item {
  flex-shrink: 0;
}
.contacts-page .contacts-info .contact-item:not(:last-child) {
  border-right: 1px solid #FFFFFF;
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item:not(:last-child) {
    border: none;
  }
}
.contacts-page .contacts-info .contact-item:not(.contact-socials) {
  display: flex;
  gap: 10px;
}
.contacts-page .contacts-info .contact-item svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  flex-shrink: 0;
}
.contacts-page .contacts-info .contact-item .contact-item-inner .contact-item-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 479px) {
  .contacts-page .contacts-info .contact-item .contact-item-inner .contact-item-title {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.contacts-page .contacts-info .contact-item .contact-item-inner .contact-item-title a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 479px) {
  .contacts-page .contacts-info .contact-item .contact-item-inner .contact-item-title a {
    font-size: 16px;
  }
}
.contacts-page .contacts-info .contact-item .contact-item-inner .contact-item-text {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}
.contacts-page .contacts-info .contact-item.contact-phone {
  padding-right: 70px;
}
@media (max-width: 1550px) {
  .contacts-page .contacts-info .contact-item.contact-phone {
    padding-right: 40px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-info .contact-item.contact-phone {
    width: 50%;
    padding-left: 25px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item.contact-phone {
    width: 100%;
    gap: 23px;
  }
}
.contacts-page .contacts-info .contact-item.contact-phone svg {
  margin-top: 4px;
}
.contacts-page .contacts-info .contact-item.contact-address {
  padding: 0 45px;
}
@media (max-width: 1550px) {
  .contacts-page .contacts-info .contact-item.contact-address {
    padding: 0 50px 0 20px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-info .contact-item.contact-address {
    width: 50%;
    padding-left: 40px;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item.contact-address {
    width: 100%;
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 20px;
    order: 2;
  }
}
.contacts-page .contacts-info .contact-item.contact-address .contact-item-inner {
  width: 300px;
}
@media (max-width: 1440px) {
  .contacts-page .contacts-info .contact-item.contact-address .contact-item-inner {
    width: 200px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-info .contact-item.contact-address .contact-item-inner {
    width: auto;
  }
}
.contacts-page .contacts-info .contact-item.contact-mail {
  padding: 0 120px 0 60px;
}
@media (max-width: 1550px) {
  .contacts-page .contacts-info .contact-item.contact-mail {
    padding: 0 30px 0 20px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-info .contact-item.contact-mail {
    width: 50%;
    padding: 30px 0 0 25px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item.contact-mail {
    width: 100%;
    padding-top: 20px;
    padding-right: 20px;
    gap: 15px;
  }
}
.contacts-page .contacts-info .contact-item.contact-mail .contact-item-inner {
  width: 220px;
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item.contact-mail .contact-item-inner {
    width: auto;
  }
}
.contacts-page .contacts-info .contact-item.contact-mail svg {
  margin-top: 7px;
}
.contacts-page .contacts-info .contact-item.contact-socials {
  padding-left: 60px;
}
@media (max-width: 1550px) {
  .contacts-page .contacts-info .contact-item.contact-socials {
    padding-left: 40px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-info .contact-item.contact-socials {
    width: 50%;
    padding: 30px 0 0 40px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item.contact-socials {
    width: 100%;
    order: 3;
    padding-top: 20px;
    padding-left: 60px;
  }
}
.contacts-page .contacts-info .contact-item.contact-socials .socials-title {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contacts-page .contacts-info .contact-item.contact-socials .socials-title {
    margin-bottom: 12px;
  }
}
.contacts-page .contacts-info .contact-item.contact-socials .socials-icons {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contacts-page .contacts-map {
  height: 670px;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .contacts-page .contacts-map {
    height: 480px;
  }
}
@media (max-width: 479px) {
  .contacts-page .contacts-map {
    height: 390px;
  }
}
.contacts-page .contacts-banner {
  overflow: hidden;
  margin-bottom: 85px;
  border-radius: 30px;
  background: linear-gradient(90deg, #0071E3 0%, #DBEBFC 65.5%, #F0F7FF 100%);
  height: 314px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 35px;
}
@media (max-width: 1819px) {
  .contacts-page .contacts-banner {
    height: 300px;
    justify-content: flex-end;
  }
}
@media (max-width: 1440px) {
  .contacts-page .contacts-banner {
    gap: 20px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner {
    height: 240px;
    grid-template-columns: repeat(3, auto);
    gap: 0 20px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-banner {
    height: 220px;
    gap: 0 10px;
  }
}
@media (max-width: 479px) {
  .contacts-page .contacts-banner {
    grid-template-columns: repeat(2, auto);
    height: 300px;
  }
}
.contacts-page .contacts-banner .banner-title {
  color: #FFFFFF;
  font-size: 85px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  padding-left: 105px;
}
@media (max-width: 1819px) {
  .contacts-page .contacts-banner .banner-title {
    font-size: 65px;
  }
}
@media (max-width: 1550px) {
  .contacts-page .contacts-banner .banner-title {
    padding-left: 30px;
  }
}
@media (max-width: 1440px) {
  .contacts-page .contacts-banner .banner-title {
    font-size: 55px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner .banner-title {
    grid-column: span 2;
    font-size: 36px;
    padding-left: 25px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-banner .banner-title {
    font-size: 30px;
    padding-left: 20px;
  }
}
@media (max-width: 479px) {
  .contacts-page .contacts-banner .banner-title {
    grid-column: auto;
    font-size: 27px;
  }
}
.contacts-page .contacts-banner .banner-circle {
  width: 250px;
  height: 250px;
  background: #000000;
  color: #FFFFFF;
  font-size: 26px;
  line-height: 1.1;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 50%;
}
@media (max-width: 1819px) {
  .contacts-page .contacts-banner .banner-circle {
    width: 185px;
    height: 185px;
    font-size: 20px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner .banner-circle {
    grid-row-start: 2;
    width: 127px;
    height: 127px;
    margin-left: 25px;
    gap: 7px;
    font-size: 14px;
  }
  .contacts-page .contacts-banner .banner-circle img {
    width: 39px;
    height: 39px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-banner .banner-circle {
    width: 102px;
    height: 102px;
    font-size: 12px;
    margin-left: 20px;
  }
}
.contacts-page .contacts-banner .banner-text {
  color: #000000;
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner .banner-text {
    grid-row-start: 2;
  }
}
@media (max-width: 479px) {
  .contacts-page .contacts-banner .banner-text {
    grid-row-start: 3;
    padding-left: 20px;
  }
}
.contacts-page .contacts-banner .banner-text .banner-text-title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1819px) {
  .contacts-page .contacts-banner .banner-text .banner-text-title {
    font-size: 45px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner .banner-text .banner-text-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-banner .banner-text .banner-text-title {
    font-size: 22px;
  }
}
.contacts-page .contacts-banner .banner-text .banner-subtext {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 1819px) {
  .contacts-page .contacts-banner .banner-text .banner-subtext {
    font-size: 26px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner .banner-text .banner-subtext {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-banner .banner-text .banner-subtext {
    font-size: 14px;
  }
}
.contacts-page .contacts-banner .right-image {
  display: block;
  clip-path: ellipse(198px 198px at 198px 154px);
}
@media (max-width: 1550px) {
  .contacts-page .contacts-banner .right-image {
    margin-right: -40px;
    clip-path: ellipse(198px 198px at 225px 154px);
    height: 300px;
  }
}
@media (max-width: 1279px) {
  .contacts-page .contacts-banner .right-image {
    grid-row: span 2;
    height: 240px;
    margin-right: 0;
    clip-path: ellipse(198px 198px at 205px 121px);
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-banner .right-image {
    height: 220px;
    margin-left: -50px;
    margin-right: -30px;
    clip-path: ellipse(170px 170px at 199px 110px);
  }
}
@media (max-width: 479px) {
  .contacts-page .contacts-banner .right-image {
    grid-row: span 3;
    align-self: start;
    clip-path: ellipse(110px 110px at 127px 110px);
  }
}

.delivery-page .delivery-map-block {
  position: relative;
  height: 700px;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block {
    height: auto;
  }
}
.delivery-page .delivery-map-block .delivery-map {
  height: 100%;
  width: 100%;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .delivery-map {
    height: 590px;
  }
}
@media (max-width: 479px) {
  .delivery-page .delivery-map-block .delivery-map {
    height: 460px;
  }
}
.delivery-page .delivery-map-block .self-pickup-block {
  width: 550px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 145px;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .delivery-page .delivery-map-block .self-pickup-block {
    left: 20px;
    width: 480px;
  }
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .self-pickup-block {
    position: relative;
    left: 0;
    width: 100%;
    top: 10px;
    transform: none;
  }
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-top {
    height: 210px;
  }
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-top img {
  display: block;
  width: 100%;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-top img {
    height: 100%;
    object-fit: cover;
  }
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom {
  padding: 40px 50px 35px 80px;
  background: #0071E3;
  position: relative;
}
@media (max-width: 1440px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom {
    padding: 40px 30px 30px 30px;
  }
}
@media (max-width: 479px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom {
    padding: 30px 20px 30px 20px;
  }
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom:before {
  content: "";
  background: url("/local/templates/main/images/white_owl.svg") no-repeat left center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: 65%;
  opacity: 0.2;
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  padding-left: 37px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-title {
    padding-left: 0;
  }
}
@media (max-width: 479px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-title {
    font-size: 14px;
  }
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-text {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 25px;
  padding-left: 37px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-text {
    padding-left: 0;
  }
}
@media (max-width: 479px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-text {
    font-size: 12px;
  }
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-address {
  display: flex;
  gap: 10px;
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-address span {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-address span {
    font-size: 16px;
  }
}
.delivery-page .delivery-map-block .self-pickup-block .self-pickup-bottom .self-pickup-address svg {
  flex-shrink: 0;
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.delivery-page .delivery-text {
  width: 1280px;
}
@media (max-width: 1440px) {
  .delivery-page .delivery-text {
    width: 100%;
  }
}
.delivery-page .delivery-text h2 {
  font-size: 22px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .delivery-page .delivery-text h2 {
    font-size: 20px;
  }
}
.delivery-page .delivery-text h3 {
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .delivery-page .delivery-text h3 {
    font-size: 14px;
  }
}
.delivery-page .delivery-text span.red {
  color: #C00C15;
}
.delivery-page .delivery-big-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 90px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #0071E3;
  margin-bottom: 35px;
  padding: 0 30px;
}
@media (max-width: 1023px) {
  .delivery-page .delivery-big-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .delivery-page .delivery-big-text {
    height: 110px;
  }
}
@media (max-width: 479px) {
  .delivery-page .delivery-big-text {
    height: 90px;
    font-size: 14px;
  }
}

.payment-page h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.payment-page .payment-big-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 90px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #0071E3;
  margin-bottom: 35px;
  padding: 0 100px;
}
@media (max-width: 1279px) {
  .payment-page .payment-big-text {
    font-size: 22px;
    padding: 0 60px;
  }
}
@media (max-width: 767px) {
  .payment-page .payment-big-text {
    height: 112px;
    padding: 0 20px;
  }
}
@media (max-width: 479px) {
  .payment-page .payment-big-text {
    font-size: 20px;
    height: 140px;
  }
}
.payment-page .payment-text h2 {
  margin-bottom: 25px;
}

.favorites-sort {
  display: flex;
  align-items: center;
  height: 52px;
  background: #F5F5F7;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.favorites-sort .sort-block {
  flex-grow: 1;
  display: flex;
  gap: 25px;
}
.favorites-sort .sort-block span[data-sort] {
  cursor: pointer;
}

.page-404 {
  margin-bottom: 120px;
}
.page-404 .img {
  text-align: center;
}
.page-404 .title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
}
.page-404 .text {
  text-align: center;
  margin-top: 10px;
}
.page-404 .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page-404 .buttons .button {
  width: 210px;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/menu/top_content/style.css?1785839351208*/
.top-menu {
  display: flex;
  gap: 40px;
}
.top-menu .menu-item {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/menu/header_about/style.css?1785839351358*/
.about-menu {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about-menu .menu-item {
  width: 100px;
  display: block;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
.about-menu .menu-item:hover {
  color: #1D58BA;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/search.title/header/style.css?17858393512465*/
.header-search-component .header-search-top {
  border-bottom: 1px solid #C6C6C6;
  padding-top: 20px;
  padding-bottom: 40px;
}
.header-search-component .header-search-top .header-search-top-inner {
  width: 990px;
  margin: 0 auto;
}
@media (max-width: 1140px) {
  .header-search-component .header-search-top .header-search-top-inner {
    width: 100%;
  }
}
.header-search-component .header-search-top .header-search-top-inner .header-search-title {
  font-size: 20px;
  font-weight: 600;
  color: #1D58BA;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.header-search-component .header-search-top .header-search-top-inner form {
  position: relative;
}
.header-search-component .header-search-top .header-search-top-inner form input[type=text] {
  height: 40px;
  border: 2px solid #1D58BA;
}
@media (max-width: 479px) {
  .header-search-component .header-search-top .header-search-top-inner form input[type=text] {
    font-size: 12px;
  }
}
.header-search-component .header-search-top .header-search-top-inner form button {
  stroke: #000000;
  position: absolute;
  width: 50px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
  right: 0;
  top: 0;
  cursor: pointer;
}
.header-search-component .header-search-top .header-search-top-inner form button:hover {
  stroke: #1D58BA;
}
.header-search-component .search-popular {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 990px;
  margin: 0 auto;
}
@media (max-width: 1140px) {
  .header-search-component .search-popular {
    justify-content: flex-start;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 1140px) {
  .header-search-component .search-popular .search-popular-block[data-popular=PHRASES] {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-search-component .search-popular .search-popular-block[data-popular=BRANDS] {
    display: none;
  }
}
.header-search-component .search-popular .popular-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.header-search-component .search-popular .search-popular-item {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000000;
  text-decoration: none;
}
.header-search-component .search-popular .search-popular-item:hover {
  color: #1D58BA;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/breadcrumb/breadcrumbs/style.css?1785839351684*/
.breadcrumbs {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 1819px) {
  .breadcrumbs {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .breadcrumbs {
    margin-bottom: 45px;
  }
}
@media (max-width: 479px) {
  .breadcrumbs {
    margin-bottom: 30px;
  }
}
.breadcrumbs .breadcrumbs-item {
  flex-shrink: 0;
  font-size: 12px;
  color: #0071E3;
}
.breadcrumbs .breadcrumbs-item > a:hover {
  color: #C00C15;
  text-decoration-color: #C00C15;
}
.breadcrumbs .round {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background: #0071E3;
  border-radius: 50%;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/menu/footer_top/style.css?1785839351479*/
.footer-top {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .footer-top {
    gap: 30px;
  }
}
@media (max-width: 460px) {
  .footer-top {
    gap: 10px 30px;
    flex-wrap: wrap;
  }
}
.footer-top .menu-item {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer-top .menu-item {
    font-size: 14px;
  }
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/menu/footer_bottom/style.css?1785839351287*/
.footer-bottom {
  display: flex;
  gap: 80px;
}
@media (max-width: 1819px) {
  .footer-bottom {
    gap: 20px;
  }
}
.footer-bottom .menu-item {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/system.auth.form/auth/style.css?17858393512061*/
.auth-form {
  width: 555px;
}
@media (max-width: 767px) {
  .auth-form {
    width: calc(100vw - 60px);
  }
}
@media (max-width: 479px) {
  .auth-form {
    width: calc(100vw - 40px);
  }
}
.auth-form .form-top {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #0071E3;
  color: #1D58BA;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.auth-form .form-bottom {
  padding: 30px 90px 30px 90px;
}
@media (max-width: 767px) {
  .auth-form .form-bottom {
    padding: 30px;
  }
}
.auth-form .form-bottom .form-errors {
  display: none;
  margin-bottom: 20px;
  color: #f00;
}
.auth-form .form-bottom .form-errors.active {
  display: block;
}
.auth-form .form-bottom .form-field {
  margin-bottom: 15px;
}
.auth-form .form-bottom .form-field.field-password {
  position: relative;
}
.auth-form .form-bottom .form-field.field-password input {
  padding-right: 45px;
}
.auth-form .form-bottom .form-field.field-password .eye {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
}
.auth-form .form-bottom .form-field.field-password .eye.active {
  opacity: 1;
}
.auth-form .form-bottom .form-field.field-password .eye svg {
  display: block;
}
.auth-form .form-bottom .remember-password {
  margin-bottom: 30px;
}
.auth-form .form-bottom input[type=submit] {
  margin: 0 auto 30px auto;
}
.auth-form .form-bottom .forgot-button {
  text-align: center;
  margin-bottom: 18px;
}
.auth-form .form-bottom .forgot-button span {
  font-size: 14px;
  transition: all 0.3s;
}
.auth-form .form-bottom .forgot-button span:hover {
  color: #1D58BA;
  cursor: pointer;
}
.auth-form .form-bottom .register-button {
  text-align: center;
}
.auth-form .form-bottom .register-button span {
  font-size: 14px;
  text-decoration: underline;
  color: #1D58BA;
  transition: all 0.3s;
}
.auth-form .form-bottom .register-button span:hover {
  cursor: pointer;
  text-decoration-color: transparent;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/system.auth.forgotpasswd/forgot/style.css?17858393511551*/
.forgot-form {
  width: 555px;
}
@media (max-width: 767px) {
  .forgot-form {
    width: calc(100vw - 60px);
  }
}
@media (max-width: 479px) {
  .forgot-form {
    width: calc(100vw - 40px);
  }
}
.forgot-form .form-top {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #0071E3;
  color: #1D58BA;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.forgot-form .form-bottom {
  padding: 30px 90px 30px 90px;
}
@media (max-width: 767px) {
  .forgot-form .form-bottom {
    padding: 30px;
  }
}
.forgot-form .form-bottom .form-message {
  display: none;
  margin-bottom: 20px;
  color: #f00;
  font-size: 14px;
}
.forgot-form .form-bottom .form-message.success, .forgot-form .form-bottom .form-message.error {
  display: block;
}
.forgot-form .form-bottom .form-message.success {
  color: #1D58BA;
}
.forgot-form .form-bottom .form-message.error {
  color: #f00;
}
.forgot-form .form-bottom .form-fields {
  margin-bottom: 15px;
}
.forgot-form .form-bottom .forgot-text {
  margin-bottom: 30px;
  font-size: 14px;
}
.forgot-form .form-bottom input[type=submit] {
  margin: 0 auto 25px auto;
}
.forgot-form .form-bottom .login-button {
  text-align: center;
}
.forgot-form .form-bottom .login-button span {
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s;
  color: #1D58BA;
  font-size: 14px;
}
.forgot-form .form-bottom .login-button span:hover {
  text-decoration-color: transparent;
}

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

/* End */


/* Start:/local/templates/main/components/bitrix/main.register/registration/style.css?17858393512558*/
.registration-form {
  width: 840px;
}
@media (max-width: 1023px) {
  .registration-form {
    width: calc(100vw - 60px);
  }
}
@media (max-width: 479px) {
  .registration-form {
    width: calc(100vw - 40px);
  }
}
.registration-form .form-top {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #0071E3;
  color: #1D58BA;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.registration-form .form-bottom {
  padding: 30px 40px;
}
@media (max-width: 1023px) {
  .registration-form .form-bottom {
    padding: 30px 20px;
  }
}
.registration-form .form-bottom .form-errors {
  display: none;
  margin-bottom: 20px;
  color: #f00;
}
.registration-form .form-bottom .form-errors.active {
  display: block;
}
.registration-form .form-bottom .form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-bottom: 17px;
}
.registration-form .form-bottom .form-fields .form-field {
  flex-grow: 1;
  flex-shrink: 0;
  width: 40%;
}
@media (max-width: 767px) {
  .registration-form .form-bottom .form-fields .form-field {
    width: 100%;
  }
}
.registration-form .form-bottom .form-fields .form-field.field-password {
  position: relative;
}
.registration-form .form-bottom .form-fields .form-field.field-password input {
  padding-right: 45px;
}
.registration-form .form-bottom .form-fields .form-field.field-password .eye {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5;
}
.registration-form .form-bottom .form-fields .form-field.field-password .eye.active {
  opacity: 1;
}
.registration-form .form-bottom .form-fields .form-field.field-password .eye svg {
  display: block;
}
.registration-form .form-bottom .form-fields .form-field.full-width {
  width: 100%;
}
.registration-form .form-bottom .form-fields .form-field[data-entity="2"] {
  display: none;
}
.registration-form .form-bottom .registration-subscription {
  margin-bottom: 12px;
}
.registration-form .form-bottom .registration-policy {
  margin-bottom: 30px;
}
.registration-form .form-bottom input[type=submit] {
  width: 230px;
  margin: 0 auto 25px auto;
}
.registration-form .form-bottom .login-button {
  text-align: center;
}
.registration-form .form-bottom .login-button span {
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s;
  color: #1D58BA;
  font-size: 14px;
}
.registration-form .form-bottom .login-button span:hover {
  text-decoration-color: transparent;
}

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

/* End */


/* Start:/local/templates/main/template_styles.css?178583935150*/


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

/* End */
/* /local/templates/main/scss/styles.css?178583935158423 */
/* /local/templates/main/components/bitrix/menu/top_content/style.css?1785839351208 */
/* /local/templates/main/components/bitrix/menu/header_about/style.css?1785839351358 */
/* /local/templates/main/components/bitrix/search.title/header/style.css?17858393512465 */
/* /local/templates/main/components/bitrix/breadcrumb/breadcrumbs/style.css?1785839351684 */
/* /local/templates/main/components/bitrix/menu/footer_top/style.css?1785839351479 */
/* /local/templates/main/components/bitrix/menu/footer_bottom/style.css?1785839351287 */
/* /local/templates/main/components/bitrix/system.auth.form/auth/style.css?17858393512061 */
/* /local/templates/main/components/bitrix/system.auth.forgotpasswd/forgot/style.css?17858393511551 */
/* /local/templates/main/components/bitrix/main.register/registration/style.css?17858393512558 */
/* /local/templates/main/template_styles.css?178583935150 */
