@charset "UTF-8";
/* Размеры экранов */
*, ul, ol, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 20px;
  color: #292525;
  min-height: 100vh;
}

body:after {
  content: '';
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5000;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
}

body.menu_opened {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

body.menu_opened::after {
  opacity: 1;
  visibility: visible;
}

body.modal-open {
  padding-right: 0 !important;
  overflow-y: auto;
}

hr {
  border-bottom: 1px solid #D8D8D8;
  margin: 35px 0;
  opacity: .8;
}

.wrapper {
  overflow: hidden;
}

.section_title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section_title .category_name {
  font-size: 32px;
  font-family: 'Halvar Breit Bd';
  margin-right: 25px;
  text-transform: uppercase;
  line-height: 42px;
}

@media (max-width: 1600px) {
  .section_title .category_name {
    font-size: 24px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .section_title .category_name {
    font-size: 20px;
    margin-bottom: 5px;
    margin-right: 0;
    line-height: 26px;
  }
}

.section_title .models_count {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
}

@media (max-width: 1200px) {
  .section_title .models_count {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .section_title {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .section_title .models_count {
    transform: translate(0);
    margin-top: 10px;
  }
}

.play_button {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 65px;
  width: 65px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 30px;
  transition: .3s all ease;
}

.play_button:hover {
  background-color: #FA3D67;
  color: #fff;
}

@media (max-width: 991px) {
  .play_button {
    height: 50px;
    width: 50px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1210px;
  }
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px;
  }
}

@media (min-width: 992px) {
  .modal-lg, .modal-xl {
    max-width: 768px;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    width: 100%;
  }
}

.mobile_menu {
  position: fixed;
  left: -200%;
  width: 375px;
  height: 100vh;
  background-color: #fff;
  padding: 40px 0 30px 0;
  z-index: 10000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .6s all ease;
}

.mobile_menu .close {
  position: absolute;
  right: 13px;
  top: 25px;
}

.mobile_menu h3 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 25px;
  padding-left: 13px;
}

.mobile_menu .address {
  display: flex;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  padding: 17px 13px;
  background-color: #F9F9F9;
}

.mobile_menu .address .contact_image {
  margin-right: 15px;
}

.mobile_menu .address .contact_text .main_text {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

.mobile_menu .address .contact_text .second_text {
  font-size: 12px;
  line-height: 20px;
}

.mobile_menu .product_categories ul {
  list-style: none;
}

.mobile_menu .product_categories ul li {
  border-bottom: 1px solid #D6D6D6;
}

.mobile_menu .product_categories ul li a {
  display: flex;
  align-items: center;
  padding: 15px 13px;
  text-decoration: none;
  background-image: url("../images/cat_arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}

.mobile_menu .product_categories ul li a .image {
  margin-right: 25px;
}

.mobile_menu .product_categories ul li a .name {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #292525;
}

.mobile_menu .navigation ul {
  list-style: none;
}

.mobile_menu .navigation ul li {
  border-bottom: 1px solid #D6D6D6;
}

.mobile_menu .navigation ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 13px;
  background-color: #F9F9F9;
  font-size: 15px;
  font-weight: 500;
  color: #292525;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile_menu .navigation ul li a svg {
  transform: rotate(180deg);
  transition: .3s all ease;
}

.mobile_menu .navigation ul li.has_childs ul {
  display: none;
}

.mobile_menu .navigation ul li.has_childs ul {
  flex-wrap: wrap;
  background-color: #F9F9F9;
  padding: 10px 13px;
}

.mobile_menu .navigation ul li.has_childs ul li {
  margin-bottom: 25px;
  border-bottom: none;
}

.mobile_menu .navigation ul li.has_childs ul li:nth-child(even) {
  flex: 0 0 60%;
}

.mobile_menu .navigation ul li.has_childs ul li:nth-child(odd) {
  flex: 0 0 40%;
}

.mobile_menu .navigation ul li.has_childs ul li a {
  padding: 0;
  font-size: 14px;
  text-transform: none;
  background-color: transparent;
}

.mobile_menu .navigation ul li.has_childs.active > a {
  color: #FA3D67;
}

.mobile_menu .navigation ul li.has_childs.active > a svg {
  fill: #FA3D67;
  transform: rotate(0deg);
}

.mobile_menu .navigation ul li.has_childs.active > a svg path {
  fill: #FA3D67;
}

.mobile_menu .footer_contacts {
  padding: 30px 13px 0 13px;
}

.mobile_menu .footer_contacts .phone {
  margin-bottom: 20px;
}

.mobile_menu .footer_contacts .phone a {
  font-size: 28px;
  font-weight: 500;
  color: #292525;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.mobile_menu .footer_contacts .phone a:hover {
  text-decoration: underline;
  color: #FA3D67;
}

.mobile_menu .footer_contacts .phone p {
  font-size: 14px;
}

.mobile_menu .footer_contacts .callback_actions {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
  position: relative;
}

.mobile_menu .footer_contacts .callback_actions .button {
  flex: 0 0 80%;
  text-align: center;
}

.mobile_menu .footer_contacts .callback_actions::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #D6D6D6;
}

.mobile_menu .footer_contacts .copyright_and_social {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile_menu .footer_contacts .copyright_and_social p {
  font-size: 14px;
  line-height: 18px;
}

.mobile_menu .footer_contacts .copyright_and_social ul {
  list-style: none;
  display: flex;
}

.mobile_menu .footer_contacts .copyright_and_social ul li {
  margin-left: 30px;
}

.mobile_menu .footer_contacts .copyright_and_social ul li:first-child {
  margin-left: 0;
}

.mobile_menu.show {
  left: 0;
}

@media (max-width: 480px) {
  .mobile_menu {
    width: 100%;
  }
}

.modal .modal-dialog .modal-content {
  border-radius: 0;
}

.modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  padding: 0;
  position: relative;
}

.modal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  right: 18px;
  top: 21px;
  z-index: 5;
}

.modal .modal-dialog .modal-content .modal-body {
  padding: 60px 70px;
}

.modal .modal-dialog .modal-content .modal-body .modal_title {
  font-family: 'Halvar Breit Bd';
  font-size: 38px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 30px;
}

.modal .modal-dialog .modal-content .modal-body .modal_title span {
  z-index: 2;
  position: relative;
}

.modal .modal-dialog .modal-content .modal-body .modal_title::before {
  content: '';
  display: block;
  height: 10px;
  width: 82%;
  background-color: #FA3D67;
  position: absolute;
  left: -70px;
  bottom: -9px;
  z-index: 1;
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content .modal-body .modal_title {
    font-size: 28px;
  }
  .modal .modal-dialog .modal-content .modal-body .modal_title::before {
    height: 7px;
    bottom: -3px;
    left: -15px;
    width: 100%;
  }
}

.modal .modal-dialog .modal-content .modal-body .modal_description {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
  color: #000;
}

.modal .modal-dialog .modal-content .modal-body .modal_description a {
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content .modal-body .modal_description {
    font-size: 14px;
  }
}

.modal .modal-dialog .modal-content .modal-body .modal_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item {
  flex: 0 auto;
  width: calc(50% - 10px);
  margin-bottom: 20px;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item input {
  width: 100%;
  padding: 16px 12px;
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  font-size: 14px;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item p {
  font-size: 11px;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item p a {
  color: inherit;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item .button {
  width: 100%;
  text-align: center;
  border: none;
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(n+2) {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(n+2) {
    margin-bottom: 20px;
  }
}

.modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(3) {
  align-self: center;
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content .modal-body .modal_form .input_item {
    width: 100%;
  }
  .modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(1) {
    order: 1;
  }
  .modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(2) {
    order: 2;
  }
  .modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(3) {
    order: 4;
  }
  .modal .modal-dialog .modal-content .modal-body .modal_form .input_item:nth-child(4) {
    order: 3;
  }
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content .modal-body .modal_form {
    margin-bottom: 0;
  }
}

.modal .modal-dialog .modal-content .modal-body .work_time {
  font-size: 12px;
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 80px 15px 0 15px;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .modal .modal-dialog .modal-content {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .modal .modal-dialog {
    height: 100vh;
    margin: 0 auto;
  }
}

.modal.success_modal .modal-dialog {
  height: auto;
  margin: 1.75rem auto;
}

.modal.success_modal .modal-dialog .modal-body {
  padding: 60px 40px 50px 40px;
}

.modal.success_modal .modal-dialog .modal-body .modal_title {
  font-size: 30px;
  margin-bottom: 40px;
  line-height: 1;
}

.modal.success_modal .modal-dialog .modal-body .modal_title::before {
  width: 92%;
  left: -40px;
  bottom: 0;
}

@media (max-width: 767px) {
  .modal.success_modal .modal-dialog .modal-body .modal_title::before {
    width: 112%;
    left: -25px;
    bottom: -2px;
  }
}

@media (max-width: 767px) {
  .modal.success_modal .modal-dialog .modal-body .modal_title {
    font-size: 24px;
  }
}

.modal.success_modal .modal-dialog .modal-body .modal_description {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .modal.success_modal .modal-dialog .modal-body .modal_description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .modal.success_modal .modal-dialog .modal-body .modal_description br {
    display: none;
  }
}

.modal.success_modal .modal-dialog .modal-body .button {
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .modal.success_modal .modal-dialog .modal-body .button {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.modal.success_modal .modal-dialog .modal-body img {
  width: 75%;
  opacity: .1;
}

@media (max-width: 767px) {
  .modal.success_modal .modal-dialog .modal-body img {
    display: none;
  }
}

@media (max-width: 767px) {
  .modal.success_modal .modal-dialog .modal-body {
    padding: 60px 25px;
  }
}

@media (max-width: 767px) {
  .modal.success_modal {
    width: calc(100% - 30px);
    left: 15px;
  }
}

header .header_top {
  padding: 25px 0;
  border-bottom: 1px solid rgba(188, 188, 188, 0.5);
}

header .header_top .mobile_opener {
  display: none;
}

@media (max-width: 991px) {
  header .header_top .mobile_opener {
    display: block;
  }
}

header .header_top .header_logo img {
  width: 100%;
}

header .header_top .header_contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .header_top .header_contacts .contact_item {
  display: flex;
  align-items: center;
  margin-left: 65px;
}

header .header_top .header_contacts .contact_item .contact_text {
  margin-left: 17px;
}

header .header_top .header_contacts .contact_item .contact_text .main_text {
  font-weight: bold;
  font-size: 15px;
}

header .header_top .header_contacts .contact_item .contact_text .main_text a {
  text-decoration: none;
  color: #292525;
  border-bottom: 1px solid transparent;
  transition: .3s all ease;
}

header .header_top .header_contacts .contact_item .contact_text .main_text a:hover {
  color: #FA3D67;
  border-bottom-color: #FA3D67;
}

header .header_top .header_contacts .contact_item .contact_text .second_text {
  font-size: 12px;
}

@media (max-width: 1600px) {
  header .header_top .header_contacts .contact_item .contact_text {
    margin-left: 10px;
  }
}

header .header_top .header_contacts .contact_item:first-child {
  margin-left: 0;
}

@media (max-width: 1600px) {
  header .header_top .header_contacts .contact_item {
    margin-left: 20px;
  }
}

@media (max-width: 1200px) {
  header .header_top .header_contacts .contact_item.company_address {
    display: none;
  }
}

@media (max-width: 991px) {
  header .header_top .header_contacts .contact_item.company_name {
    display: none;
  }
}

@media (max-width: 767px) {
  header .header_top .header_contacts .contact_item.company_callback, header .header_top .header_contacts .contact_item.company_phone .contact_text {
    display: none;
  }
}

@media (max-width: 767px) {
  header .header_top {
    border-bottom: none;
    position: relative;
  }
  header .header_top:after {
    content: '';
    display: block;
    height: 1px;
    width: calc(100% + 24px);
    background-color: rgba(188, 188, 188, 0.5);
    position: absolute;
    left: -12px;
    bottom: 0;
  }
}

header .header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 35px 0;
}

header .header_nav nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

header .header_nav nav ul li {
  margin: 0 35px;
}

header .header_nav nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: #292525;
  position: relative;
}

header .header_nav nav ul li a::before, header .header_nav nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 5px;
  background-color: #FA3D67;
  position: absolute;
  left: 0;
  top: -33px;
  transition: .5s all ease;
}

@media (max-width: 1600px) {
  header .header_nav nav ul li a::before, header .header_nav nav ul li a::after {
    top: -23px;
  }
}

header .header_nav nav ul li a::after {
  left: auto;
  right: 0;
}

header .header_nav nav ul li a:hover::after, header .header_nav nav ul li a:hover::before, header .header_nav nav ul li a.active::after, header .header_nav nav ul li a.active::before {
  width: 100%;
}

header .header_nav nav ul li:first-child {
  margin-left: 0;
}

@media (max-width: 1600px) {
  header .header_nav nav ul li {
    margin: 0 30px;
  }
}

@media (max-width: 1200px) {
  header .header_nav nav ul li {
    margin: 0;
  }
}

@media (max-width: 1200px) {
  header .header_nav nav {
    width: 100%;
  }
  header .header_nav nav ul {
    width: 100%;
    justify-content: space-between;
  }
}

header .header_nav .header_social ul {
  list-style: none;
  display: flex;
}

header .header_nav .header_social ul li {
  margin-left: 30px;
}

header .header_nav .header_social ul li:first-child {
  margin-left: 0;
}

@media (max-width: 1200px) {
  header .header_nav .header_social {
    display: none;
  }
}

@media (max-width: 1600px) {
  header .header_nav {
    padding: 20px 0 25px 0;
  }
}

@media (max-width: 767px) {
  header .header_nav {
    display: none;
  }
}

.main_screen {
  color: #fff;
  align-items: center;
  position: relative;
  display: flex;
  height: calc(100vh - 193px);
}

.main_screen .container {
  position: relative;
  z-index: 100;
}

.main_screen .first_title {
  font-family: 'Halvar Breit Rg';
  font-size: 22px;
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .main_screen .first_title {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .main_screen .first_title {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.main_screen .second_title {
  font-family: 'Halvar Breit Bd';
  font-size: 42px;
  line-height: 53px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .main_screen .second_title br {
    display: none;
  }
}

@media (max-width: 991px) {
  .main_screen .second_title {
    font-size: 32px;
    line-height: 40px;
  }
  .main_screen .second_title br {
    display: block;
  }
}

@media (max-width: 767px) {
  .main_screen .second_title {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}

.main_screen .third_title {
  font-size: 18px;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .main_screen .third_title {
    font-size: 14px;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .main_screen .third_title {
    font-size: 16px;
    line-height: 26px;
  }
}

.main_screen .main_video_play_btn a {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
  width: 95px;
}

.main_screen .main_video_play_btn a span {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  animation: rotation 10s infinite linear;
}

.main_screen .main_video_play_btn a span img {
  position: absolute;
  left: -26px;
  bottom: -18px;
  transform: rotate(1deg);
}

.main_screen .main_video_play_btn a span::before {
  content: '';
  display: block;
  position: absolute;
  height: 127px;
  width: 127px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  left: -16px;
  top: -16px;
  border-radius: 50%;
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .main_screen .main_video_play_btn a span::before {
    height: 95px;
    width: 95px;
  }
}

.main_screen .main_video_play_btn a::after {
  content: url("../images/main_video_play_triangle.svg");
  position: absolute;
  left: 6px;
  top: 6px;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
}

@media (max-width: 767px) {
  .main_screen .main_video_play_btn a::after {
    height: 18px;
    width: 20px;
  }
}

@media (max-width: 767px) {
  .main_screen .main_video_play_btn a {
    height: 65px;
    width: 65px;
  }
}

@media (max-width: 767px) {
  .main_screen .main_video_play_btn {
    position: absolute;
    right: 25px;
    bottom: -10px;
  }
}

.main_screen .background_slider {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  left: 0;
  top: 0;
}

.main_screen .background_slider .owl-stage-outer, .main_screen .background_slider .owl-stage, .main_screen .background_slider .owl-item {
  height: 100%;
}

.main_screen .background_slider .slide_item {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main_screen .background_slider .slide_item img {
  height: 100%;
  object-fit: cover;
}

.main_screen .background_slider .slide_item img.mobile {
  display: none;
}

@media (max-width: 767px) {
  .main_screen .background_slider .slide_item img {
    display: none;
  }
  .main_screen .background_slider .slide_item img.mobile {
    display: block;
  }
}

.main_screen .background_slider .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.main_screen .background_slider .owl-dots .owl-dot {
  height: 3px;
  width: 50px;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 32px;
}

.main_screen .background_slider .owl-dots .owl-dot.active {
  background-color: #fff;
}

@media (max-width: 1600px) {
  .main_screen .background_slider .owl-dots {
    bottom: 25px;
  }
}

@media (max-width: 1600px) {
  .main_screen {
    height: calc(100vh - 172px);
  }
}

@media (max-width: 767px) {
  .main_screen {
    padding-top: 65px;
    padding-bottom: 125px;
    height: auto;
  }
}

.products {
  padding: 125px 0 0 0;
}

.products .container {
  padding-bottom: 80px;
  position: relative;
}

.products .container:after {
  content: '';
  display: block;
  width: calc(100% - 24px);
  border-bottom: 1px solid #D6D6D6;
  position: absolute;
  bottom: 0;
  left: 12px;
}

.products .container.no_border:after {
  content: none;
}

@media (max-width: 991px) {
  .products .container {
    padding-bottom: 185px;
  }
}

@media (max-width: 767px) {
  .products .container {
    padding-bottom: 140px;
  }
}

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

@media (max-width: 991px) {
  .products .products_header .header_right {
    position: absolute;
    bottom: 70px;
  }
  .products .products_header .header_right .button {
    text-align: center;
    padding: 16px 45px;
  }
}

@media (max-width: 767px) {
  .products .products_header .header_right {
    width: calc(100% - 24px);
    bottom: 40px;
  }
  .products .products_header .header_right .button {
    min-height: 45px;
    text-align: center;
    padding: 16px 45px;
  }
}

@media (max-width: 480px) {
  .products .products_header .header_right .button {
    width: 100%;
    text-align: center;
    padding: 16px 0;
  }
}

.products .product_block .swiper-wrapper {
  flex-wrap: nowrap;
}

.products .product_block .product_item .product_image {
  padding: 10px 15px;
  border: 1px solid #D6D6D6;
  margin-bottom: 17px;
}

.products .product_block .product_item .product_image img {
  width: 100%;
}

.products .product_block .product_item .product_info .product_name {
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 10px;
}

.products .product_block .product_item .product_info .product_name a {
  color: #292525;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: .3s all ease;
}

.products .product_block .product_item .product_info .product_price {
  margin-bottom: 20px;
}

.products .product_block .product_item .product_info .product_price .price_for {
  color: rgba(41, 37, 37, 0.5);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.products .product_block .product_item .product_info .product_price .prices {
  display: flex;
}

.products .product_block .product_item .product_info .product_price .prices .new_price {
  margin-right: 15px;
  font-size: 17px;
  color: #000;
  font-weight: bold;
}

.products .product_block .product_item .product_info .product_price .prices .old_price {
  display: flex;
}

.products .product_block .product_item .product_info .product_price .prices .old_price .price_count {
  font-size: 14px;
  color: #B8B8B8;
  text-decoration: line-through;
  margin-right: 10px;
}

.products .product_block .product_item .product_info .product_price .prices .old_price .sale_count {
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  color: #000000;
  position: relative;
  padding-left: 15px;
}

.products .product_block .product_item .product_info .product_price .prices .old_price .sale_count::before {
  content: url("../images/sale_table.svg");
  position: absolute;
  left: 0;
}

.products .product_block .product_item .product_info .product_price .prices.sale .new_price {
  color: #FA3D67;
}

.products .product_block .product_item .product_info .product_advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.products .product_block .product_item .product_info .product_advantages .advantage_item {
  display: flex;
  flex: 0 0 35%;
  align-items: center;
  margin-right: 0;
}

.products .product_block .product_item .product_info .product_advantages .advantage_item .advantage_title {
  font-size: 12px;
  line-height: 14px;
  color: #707070;
  max-width: 50px;
}

@media (max-width: 1200px) {
  .products .product_block .product_item .product_info .product_advantages .advantage_item .advantage_title {
    font-size: 10px;
  }
}

.products .product_block .product_item .product_info .product_advantages .advantage_item .advantage_image {
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .products .product_block .product_item .product_info .product_advantages .advantage_item .advantage_image {
    margin-right: 5px;
  }
  .products .product_block .product_item .product_info .product_advantages .advantage_item .advantage_image img {
    width: 25px;
  }
}

.products .product_block .product_item .product_info .product_advantages .advantage_item:first-child {
  flex: 0 0 25%;
}

.products .product_block .product_item .product_info .product_advantages .advantage_item:last-child {
  flex: 0 0 30%;
  margin-right: 0;
}

.products .product_block .product_item:hover .product_name a {
  color: #FA3D67;
  border-bottom-color: #FA3D67;
}

.products.product_view_2 .product_block .product_item .product_image {
  padding: 0;
  border: none;
}

@media (max-width: 991px) {
  .products {
    padding: 65px 0 0 0;
  }
}

@media (max-width: 767px) {
  .products {
    padding-top: 40px;
  }
}

.video {
  padding: 95px 0 115px 0;
  background-color: #F9F9F9;
}

.video .container {
  position: relative;
}

.video .video_block .video_image {
  position: relative;
  margin-bottom: 20px;
}

.video .video_block .video_image img {
  width: 100%;
}

.video .video_block .video_image .play_button img {
  height: 60px;
  width: 60px;
}

.video .video_block .video_image:hover .play_button {
  color: #fff;
  background-color: #FA3D67;
}

.video .video_block .video_title {
  font-weight: 500;
}

.video .video_block .video_title .duration {
  color: rgba(41, 37, 37, 0.5);
  font-size: 14px;
  margin-left: 10px;
  display: inline-block;
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .video .video_block .video_title {
    display: flex;
    flex-direction: column;
  }
  .video .video_block .video_title .duration {
    margin-left: 0;
    margin-top: 5px;
  }
}

.video .video_navigation {
  position: absolute;
  right: 12px;
  top: 0;
  display: flex;
}

.video .video_navigation .video_next,
.video .video_navigation .video_prev {
  height: 45px;
  width: 45px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D5D5D5;
  transition: .3s all ease;
}

.video .video_navigation .video_next:hover,
.video .video_navigation .video_prev:hover {
  background-color: #FA3D67;
  color: #fff;
}

.video .video_navigation .video_next {
  margin-left: 15px;
}

@media (max-width: 767px) {
  .video .video_navigation {
    display: none;
  }
}

@media (max-width: 991px) {
  .video {
    padding: 60px 0 80px 0;
  }
}

@media (max-width: 767px) {
  .video {
    padding: 40px 0 45px 0;
  }
}

.advantages {
  padding: 160px 0 170px 0;
}

.advantages .section_title {
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .advantages .section_title {
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .advantages .section_title {
    margin-bottom: 40px;
  }
}

.advantages .advantage_item {
  text-align: center;
  position: relative;
}

.advantages .advantage_item .advantage_image {
  margin-bottom: 35px;
}

.advantages .advantage_item .advantage_text {
  font-weight: bold;
}

.advantages .advantage_item::after {
  content: '';
  display: block;
  height: 100%;
  width: 1px;
  background-color: #D6D6D6;
  position: absolute;
  right: -12px;
  top: 0;
}

@media (max-width: 767px) {
  .advantages .advantage_item::after {
    content: none;
  }
}

@media (max-width: 991px) {
  .advantages .advantage_item {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .advantages .advantage_item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
  }
  .advantages .advantage_item .advantage_image {
    margin-bottom: 0;
    margin-right: 25px;
  }
  .advantages .advantage_item .advantage_image img {
    width: 34px;
    height: 29px;
  }
  .advantages .advantage_item .advantage_text {
    font-size: 12px;
    text-align: left;
  }
}

.advantages .row .col-6:last-child .advantage_item::after {
  content: none;
}

@media (max-width: 991px) {
  .advantages .row .col-6:nth-child(3) .advantage_item::after {
    content: none;
  }
}

@media (max-width: 767px) {
  .advantages .row {
    position: relative;
  }
  .advantages .row::before {
    content: '';
    display: block;
    height: 1px;
    width: calc(100% - 24px);
    position: absolute;
    background-color: #D6D6D6;
    top: 70px;
    left: 12px;
  }
  .advantages .row::after {
    content: '';
    display: block;
    height: 1px;
    width: calc(100% - 24px);
    position: absolute;
    background-color: #D6D6D6;
    bottom: 70px;
    left: 12px;
  }
  .advantages .row .col-6:nth-child(5) .advantage_item, .advantages .row .col-6:last-child .advantage_item {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .advantages {
    padding: 65px 0 35px 0;
  }
}

.industry {
  padding: 35px 0 100px 0;
  position: relative;
}

.industry .big_text {
  font-size: 202px;
  font-family: 'Halvar Breit Bd';
  position: absolute;
  left: -30px;
  right: 0;
  margin: auto;
  text-align: center;
  top: 0;
  letter-spacing: -11px;
  -webkit-text-stroke: 1px rgba(112, 112, 112, 0.3);
  -webkit-text-fill-color: white;
  z-index: -1;
}

@media (max-width: 1800px) {
  .industry .big_text {
    font-size: 191px;
  }
}

@media (max-width: 1600px) {
  .industry .big_text {
    font-size: 171px;
  }
}

@media (max-width: 1400px) {
  .industry .big_text {
    font-size: 156px;
  }
}

@media (max-width: 1200px) {
  .industry .big_text {
    font-size: 132px;
    left: -20px;
  }
}

@media (max-width: 991px) {
  .industry .big_text {
    display: none;
  }
}

.industry .big_video {
  position: relative;
}

.industry .big_video img {
  width: 100%;
}

.industry .big_video .play_button {
  height: 85px;
  width: 85px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

@media (max-width: 767px) {
  .industry .big_video .play_button {
    height: 50px;
    width: 50px;
  }
}

.industry .big_video:hover .play_button {
  background-color: #FA3D67;
  color: #fff;
}

@media (max-width: 991px) {
  .industry {
    padding-bottom: 0;
  }
  .industry .container {
    max-width: 100%;
    padding: 0;
  }
}

footer {
  padding: 80px 0 35px 0;
  background-color: #F9F9F9;
}

footer .footer_top {
  padding-bottom: 75px;
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 35px;
}

footer .footer_top .footer_logo img {
  margin-bottom: 25px;
}

footer .footer_top .footer_logo .company_about {
  font-size: 14px;
}

footer .footer_top .footer_menu .menu_title {
  font-weight: bold;
  margin-bottom: 18px;
}

footer .footer_top .footer_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer_top .footer_menu ul li {
  margin-bottom: 15px;
}

footer .footer_top .footer_menu ul li a {
  font-size: 14px;
  color: #292525;
  text-decoration: none;
  transition: .3s all ease;
}

footer .footer_top .footer_menu ul li a:hover {
  text-decoration: underline;
  color: #FA3D67;
}

footer .footer_top .footer_contacts {
  padding-left: 50px;
}

footer .footer_top .footer_contacts .phone {
  margin-bottom: 30px;
}

footer .footer_top .footer_contacts .phone a {
  font-size: 28px;
  font-weight: 500;
  color: #292525;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

footer .footer_top .footer_contacts .phone a:hover {
  text-decoration: underline;
  color: #FA3D67;
}

footer .footer_top .footer_contacts .phone p {
  font-size: 14px;
}

@media (max-width: 767px) {
  footer .footer_top .footer_contacts .phone {
    margin-bottom: 20px;
  }
}

footer .footer_top .footer_contacts .callback_actions {
  display: flex;
  align-items: center;
}

footer .footer_top .footer_contacts .callback_actions .button {
  padding: 16px 30px;
}

footer .footer_top .footer_contacts .callback_actions .whatsapp_callback {
  margin-left: 15px;
  transition: .3s all ease;
  filter: brightness(100%);
}

@media (max-width: 767px) {
  footer .footer_top .footer_contacts .callback_actions .whatsapp_callback {
    margin-left: 20px;
  }
}

footer .footer_top .footer_contacts .callback_actions .whatsapp_callback:hover {
  filter: brightness(90%);
}

@media (max-width: 767px) {
  footer .footer_top .footer_contacts .callback_actions {
    width: 100%;
  }
  footer .footer_top .footer_contacts .callback_actions .button {
    flex: 0 0 75%;
    text-align: center;
  }
}

@media (max-width: 1600px) {
  footer .footer_top .footer_contacts {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  footer .footer_top .footer_contacts {
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  footer .footer_top .col-lg-3:first-child {
    display: none;
  }
}

@media (max-width: 767px) {
  footer .footer_top .col-lg-3, footer .footer_top .col-lg-2 {
    display: none;
  }
}

footer .footer_bottom .d-flex {
  flex-wrap: wrap;
}

footer .footer_bottom .copyright {
  font-size: 14px;
  flex: 0 0 auto;
  width: 50%;
}

@media (max-width: 1200px) {
  footer .footer_bottom .copyright {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  footer .footer_bottom .copyright {
    margin-bottom: 10px;
  }
}

footer .footer_bottom .confidential {
  flex: 0 0 auto;
  width: 50%;
}

footer .footer_bottom .confidential a {
  font-size: 14px;
  color: #292525;
  text-decoration: none;
  transition: .3s all ease;
}

footer .footer_bottom .confidential a:hover {
  text-decoration: underline;
  color: #FA3D67;
}

@media (max-width: 1200px) {
  footer .footer_bottom .confidential {
    width: 100%;
  }
}

@media (max-width: 767px) {
  footer .footer_bottom .confidential {
    margin-bottom: 15px;
  }
}

footer .footer_bottom .payment_ways ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

footer .footer_bottom .payment_ways ul li {
  margin-right: 40px;
}

footer .footer_bottom .payment_ways ul li:first-child {
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 767px) {
  footer .footer_bottom .payment_ways ul li:first-child {
    display: none;
  }
}

@media (max-width: 1600px) {
  footer .footer_bottom .payment_ways ul li {
    margin-right: 20px;
  }
}

@media (max-width: 1200px) {
  footer .footer_bottom .payment_ways ul {
    flex-wrap: wrap;
  }
  footer .footer_bottom .payment_ways ul li:first-child {
    margin-bottom: 15px;
    flex: 0 0 100%;
  }
}

footer .footer_bottom .social_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

footer .footer_bottom .social_links ul li {
  margin-left: 35px;
}

footer .footer_bottom .social_links ul li a circle, footer .footer_bottom .social_links ul li a path {
  transition: .3s all ease;
}

footer .footer_bottom .social_links ul li a:hover path {
  fill: #FA3D67;
}

@media (max-width: 1600px) {
  footer .footer_bottom .social_links ul li {
    margin-left: 20px;
  }
  footer .footer_bottom .social_links ul li:first-child {
    margin-left: 0;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  footer .footer_bottom .social_links ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer .footer_bottom .social_links ul li {
    margin-left: 0;
    margin-right: 30px;
  }
  footer .footer_bottom .social_links ul li:first-child {
    margin-bottom: 15px;
    flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  footer .footer_bottom .social_links {
    display: none;
  }
}

@media (max-width: 767px) {
  footer {
    padding: 30px 0 35px 0;
  }
  footer .footer_top {
    padding-bottom: 30px;
  }
}

.to_top {
  display: none;
  position: fixed;
  height: 45px;
  width: 45px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #D5D5D5;
  justify-content: center;
  align-items: center;
  right: 20px;
  bottom: -60px;
  z-index: 100;
  transition: .3s all ease;
}

.to_top.show {
  bottom: 30px;
}

@media (max-width: 767px) {
  .to_top {
    display: flex;
  }
}

.to_top i {
  color: #000000;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(250, 61, 103, 0.4);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(250, 61, 103, 0);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
    transform-origin: center;
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Main styles */
.button {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  display: inline-block;
  padding: 16px 43px;
  text-decoration: none;
  border-radius: 8px;
  transition: .3s all ease;
  border: 2px solid #FA3D67;
}

.button.button_outline {
  color: #292525;
  background-color: #fff;
}

.button.button_outline:hover {
  color: #fff;
  background-color: #FA3D67;
}

.button.button_fill {
  background-color: #FA3D67;
  color: #fff;
}

.button.button_fill:hover {
  background-color: #FF1045;
}

@media (max-width: 1600px) {
  .button {
    padding: 16px 20px;
  }
}

@media (max-width: 767px) {
  .button {
    padding: 16px 35px;
  }
}

/* Кнопки */
.breadcrumbs .breadcrumb {
  border-top: 1px solid rgba(188, 188, 188, 0.5);
  padding: 30px 0 15px 0;
  margin-bottom: 0;
  --bs-breadcrumb-divider: '—';
}

.breadcrumbs .breadcrumb .breadcrumb-item, .breadcrumbs .breadcrumb .breadcrumb-item a {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #292525;
  text-decoration: none;
}

.breadcrumbs .breadcrumb .breadcrumb-item img, .breadcrumbs .breadcrumb .breadcrumb-item a img {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb {
    border-top: none;
    padding: 20px 0 5px 0;
  }
}

.not_found {
  padding-bottom: 55px;
}

.not_found img {
  width: 100%;
}

@media (min-width: 1400px) {
  .not_found .container, .not_found .container-lg, .not_found .container-md, .not_found .container-sm, .not_found .container-xl, .not_found .container-xxl {
    max-width: 1140px;
  }
}

.not_found .main_title {
  font-size: 38px;
  font-family: 'Halvar Breit Bd';
  margin-bottom: 25px;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .not_found .main_title {
    font-size: 34px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .not_found .main_title {
    font-size: 20px;
  }
}

.not_found .main_description {
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 26px;
}

@media (max-width: 767px) {
  .not_found .main_description {
    font-size: 14px;
    line-height: 22px;
  }
}

.not_found .product_category {
  margin-bottom: 60px;
}

.not_found .product_category ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.not_found .product_category ul li {
  margin-right: 45px;
}

.not_found .product_category ul li a {
  font-size: 13px;
  font-weight: 600;
  color: #292525;
  text-transform: uppercase;
}

.not_found .product_category ul li a:hover {
  text-decoration: none;
}

.not_found .product_category ul li:last-child {
  margin-right: 0;
}

@media (max-width: 1200px) {
  .not_found .product_category ul li {
    margin-bottom: 30px;
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .not_found .product_category ul li {
    margin-right: 20px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .not_found .product_category ul li {
    flex: 0 0 auto;
    width: 50%;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .not_found .product_category ul {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .not_found .product_category {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .not_found {
    padding-top: 45px;
  }
  .not_found .row {
    position: relative;
  }
  .not_found .row img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 350px;
    z-index: -1;
  }
}

@media (max-width: 767px) {
  .not_found {
    padding-top: 5px;
  }
  .not_found .row img {
    max-width: 275px;
  }
  .not_found .action .button {
    padding: 11px 23px;
    background-color: #fff;
  }
}

@media (max-width: 480px) {
  .not_found .row img {
    right: -30px;
    bottom: -55px;
  }
}

@media (max-width: 767px) {
  .catalog .section_title {
    margin-bottom: 15px;
  }
}

.catalog .products {
  padding-top: 20px;
}

.catalog .products .container::after {
  content: none;
}

.catalog .products .products_filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.catalog .products .products_filter .size_filter {
  display: flex;
  flex-wrap: wrap;
}

.catalog .products .products_filter .size_filter .size_item {
  flex: 1;
  margin-right: 15px;
}

.catalog .products .products_filter .size_filter .size_item span {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 8px 25px;
  border: 1px solid #B8B8B8;
  border-radius: 6px;
  transition: .3s all ease;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.catalog .products .products_filter .size_filter .size_item span::before {
  content: url("../images/checked_size.svg");
  position: absolute;
  right: -9px;
  top: 3px;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s all ease;
}

.catalog .products .products_filter .size_filter .size_item span:hover {
  border-color: #FA3D67;
}

@media (max-width: 1600px) {
  .catalog .products .products_filter .size_filter .size_item span {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .catalog .products .products_filter .size_filter .size_item span {
    padding: 8px 15px;
  }
}

@media (max-width: 767px) {
  .catalog .products .products_filter .size_filter .size_item span {
    font-size: 11px;
    padding: 8px 0;
    width: 100%;
  }
}

.catalog .products .products_filter .size_filter .size_item input[type=checkbox], .catalog .products .products_filter .size_filter .size_item input[type=radio] {
  display: none;
}

.catalog .products .products_filter .size_filter .size_item input[type=checkbox]:checked ~ span, .catalog .products .products_filter .size_filter .size_item input[type=radio]:checked ~ span {
  border-color: #FA3D67;
}

.catalog .products .products_filter .size_filter .size_item input[type=checkbox]:checked ~ span::before, .catalog .products .products_filter .size_filter .size_item input[type=radio]:checked ~ span::before {
  opacity: 1;
  visibility: visible;
}

.catalog .products .products_filter .size_filter .size_item input[type=text] {
  border: none;
  width: 100%;
  text-align: center;
  outline: none;
}

.catalog .products .products_filter .size_filter .size_item.other span {
  border-style: dashed;
  margin-right: 0;
}

.catalog .products .products_filter .size_filter .size_item.other span:focus {
  border-color: #FA3D67;
}

.catalog .products .products_filter .size_filter .size_item:nth-child(2) {
  margin-left: 0;
}

.catalog .products .products_filter .size_filter .size_item:last-child {
  margin-right: 0;
}

@media (max-width: 1600px) {
  .catalog .products .products_filter .size_filter .size_item {
    flex: 0 0 auto;
  }
}

@media (max-width: 1400px) {
  .catalog .products .products_filter .size_filter .size_item {
    margin-bottom: 10px;
  }
  .catalog .products .products_filter .size_filter .size_item span {
    font-size: 13px;
  }
  .catalog .products .products_filter .size_filter .size_item:last-child {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .catalog .products .products_filter .size_filter .size_item {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .catalog .products .products_filter .size_filter .size_item {
    flex: 0 0 auto;
    text-align: center;
    margin: 0 5px;
    width: 30%;
    margin-bottom: 10px;
  }
  .catalog .products .products_filter .size_filter .size_item.other {
    width: auto;
  }
  .catalog .products .products_filter .size_filter .size_item:first-child {
    margin-left: 0;
  }
  .catalog .products .products_filter .size_filter .size_item:last-child {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .catalog .products .products_filter .size_filter {
    flex: 0 0 100%;
    margin-bottom: 20px;
    justify-content: space-between;
  }
}

.catalog .products .products_filter .sort {
  position: relative;
  display: flex;
}

.catalog .products .products_filter .sort span {
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .catalog .products .products_filter .sort span {
    display: none;
  }
  .catalog .products .products_filter .sort span.arrow {
    display: inline;
  }
}

@media (max-width: 767px) {
  .catalog .products .products_filter .sort span {
    display: inline-block;
  }
}

.catalog .products .products_filter .sort .sort_elements {
  border: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  background-color: #fff;
  color: #292525;
}

.catalog .products .products_filter .sort .sort_elements .selected {
  background-color: #fff;
  border: none;
  padding: 0 35px 0 0;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  color: #FA3D67;
}

.catalog .products .products_filter .sort .sort_elements .selected.arrow_up {
  background-image: url("../images/selected_arrow_up.svg");
}

.catalog .products .products_filter .sort .sort_elements .selected.arrow_down {
  background-image: url("../images/selected_arrow_down.svg");
}

.catalog .products .products_filter .sort .sort_elements .dropdown-menu {
  min-width: auto;
  padding: 10px 0;
  border-radius: 0;
}

.catalog .products .products_filter .sort .sort_elements .dropdown-menu li {
  cursor: pointer;
  padding: 7px 35px 7px 10px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.catalog .products .products_filter .sort .sort_elements .dropdown-menu li.arrow-up {
  background-image: url("../images/arrow_up.svg");
}

.catalog .products .products_filter .sort .sort_elements .dropdown-menu li.arrow-down {
  background-image: url("../images/arrow_down.svg");
}

.catalog .products .products_filter .sort select {
  display: none;
}

@media (max-width: 767px) {
  .catalog .products .products_filter .sort {
    flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  .catalog .products .products_filter {
    margin-bottom: 25px;
  }
}

.catalog .products .product_item {
  margin-bottom: 45px;
}

.contact_info {
  padding: 115px 0;
}

.contact_info .container {
  position: relative;
}

.contact_info .container .big_text {
  font-size: 202px;
  font-family: 'Halvar Breit Bd';
  position: absolute;
  right: -60px;
  text-align: center;
  bottom: 0;
  -webkit-text-stroke: 1px rgba(112, 112, 112, 0.3);
  -webkit-text-fill-color: white;
  z-index: -1;
}

@media (max-width: 1600px) {
  .contact_info .container .big_text {
    bottom: 85px;
    right: 0;
    font-size: 154px;
  }
}

@media (max-width: 991px) {
  .contact_info .container .big_text {
    bottom: auto;
    top: 300px;
    left: -30px;
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .contact_info .container .big_text {
    display: none;
  }
}

.contact_info .section_title {
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .contact_info .section_title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .contact_info .section_title {
    margin-bottom: 30px;
  }
}

.contact_info .contact_items {
  margin-bottom: 55px;
}

.contact_info .contact_items .contact_item {
  display: flex;
  margin-bottom: 30px;
}

.contact_info .contact_items .contact_item p {
  margin-left: 20px;
}

.contact_info .contact_items .contact_item p span, .contact_info .contact_items .contact_item p a {
  font-weight: bold;
  color: #292525;
  text-decoration: none;
}

@media (max-width: 1600px) {
  .contact_info .contact_items .contact_item br {
    display: none;
  }
}

@media (max-width: 991px) {
  .contact_info .contact_items .contact_item br {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .contact_info .contact_items .contact_item p {
    line-height: 24px;
    font-size: 14px;
  }
  .contact_info .contact_items .contact_item br {
    display: none;
  }
}

@media (max-width: 767px) {
  .contact_info .contact_items {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .contact_info .contact_action {
    margin-bottom: 105px;
  }
}

@media (max-width: 767px) {
  .contact_info .contact_action {
    margin-bottom: 30px;
  }
  .contact_info .contact_action .button {
    width: 100%;
    text-align: center;
  }
}

.contact_info .gallery_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact_info .gallery_block .contact_gallery {
  margin: 0;
  flex: 0 0 auto;
  width: calc(100% - 145px);
}

.contact_info .gallery_block .contact_gallery .gallery_item img {
  width: 100%;
}

@media (max-width: 1600px) {
  .contact_info .gallery_block .contact_gallery {
    width: 100%;
    margin-bottom: 17px;
  }
}

@media (max-width: 991px) {
  .contact_info .gallery_block .contact_gallery {
    width: calc(100% - 140px);
  }
}

@media (max-width: 767px) {
  .contact_info .gallery_block .contact_gallery {
    width: 100%;
  }
}

.contact_info .gallery_block .gallery_thumbs {
  flex: 0 0 auto;
  margin: 0;
  width: 120px;
}

.contact_info .gallery_block .gallery_thumbs .swiper-wrapper .thumb_item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 80px !important;
}

.contact_info .gallery_block .gallery_thumbs .swiper-wrapper .thumb_item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1600px) {
  .contact_info .gallery_block .gallery_thumbs .swiper-wrapper {
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  .contact_info .gallery_block .gallery_thumbs .swiper-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 1600px) {
  .contact_info .gallery_block .gallery_thumbs {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .contact_info .gallery_block .gallery_thumbs {
    width: 115px;
  }
}

@media (max-width: 767px) {
  .contact_info .gallery_block .gallery_thumbs {
    display: none;
  }
}

@media (max-width: 991px) {
  .contact_info {
    padding: 95px 0;
  }
}

@media (max-width: 767px) {
  .contact_info {
    padding: 35px 0 45px 0;
  }
}

.inner_page {
  margin-top: 10px;
  margin-bottom: 100px;
}

.inner_page .container {
  position: relative;
}

.inner_page .container .sidebar {
  padding-top: 50px;
  position: relative;
}

.inner_page .container .sidebar .sidebar_widget {
  margin-bottom: 15px;
}

.inner_page .container .sidebar .sidebar_widget .widget_title {
  display: block;
  padding: 20px 25px;
  font-size: 15px;
  font-family: 'Halvar Breit Bd';
  text-transform: uppercase;
  background-color: #EFEFEF;
  color: #292525;
  text-decoration: none;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul {
  list-style: none;
  padding: 20px 0 0 25px;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li {
  margin-bottom: 25px;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li a {
  color: #292525;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: .3s all ease;
  position: relative;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li a:hover {
  color: #FA3D67;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li a:hover::before {
  left: -25px;
  opacity: 1;
  visibility: visible;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li a::before {
  content: url("../images/menu_triangle.svg");
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s all ease;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li.active a {
  color: #FA3D67;
}

.inner_page .container .sidebar .sidebar_widget .widget_body ul li.active a::before {
  left: -25px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .inner_page .container .sidebar .sidebar_widget .widget_body ul {
    display: flex;
    padding: 0;
  }
  .inner_page .container .sidebar .sidebar_widget .widget_body ul li {
    margin: 0;
    text-align: left;
  }
  .inner_page .container .sidebar .sidebar_widget .widget_body ul li a {
    font-size: 14px;
    text-align: left;
  }
  .inner_page .container .sidebar .sidebar_widget .widget_body ul li a::before {
    content: none;
  }
}

@media (max-width: 991px) {
  .inner_page .container .sidebar .sidebar_widget .widget_body {
    display: none;
  }
}

.inner_page .container .sidebar .sidebar_widget.active .widget_title {
  background-color: #FA3D67;
  color: #fff;
}

@media (max-width: 991px) {
  .inner_page .container .sidebar .sidebar_widget.active .widget_body {
    display: block;
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    border-bottom: 1px solid #D8D8D8;
  }
}

@media (max-width: 991px) {
  .inner_page .container .sidebar {
    display: flex;
    padding-top: 15px;
  }
  .inner_page .container .sidebar .sidebar_widget {
    width: 200px;
    text-align: center;
    margin-right: 20px;
  }
  .inner_page .container .sidebar .sidebar_widget:last-child {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .inner_page .container .sidebar {
    justify-content: space-between;
  }
  .inner_page .container .sidebar .sidebar_widget {
    flex: 0 0 auto;
    width: calc(50% - 5px);
    font-size: 12px;
    margin-bottom: 0;
    margin-right: 0;
  }
  .inner_page .container .sidebar .sidebar_widget .widget_title {
    padding: 13px 0;
  }
}

.inner_page .container .inner_page_content {
  padding: 50px 0 70px 150px;
}

.inner_page .container .inner_page_content .content_title {
  font-size: 32px;
  font-family: 'Halvar Breit Bd';
  padding-bottom: 40px;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 35px;
}

@media (max-width: 1200px) {
  .inner_page .container .inner_page_content .content_title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .inner_page .container .inner_page_content .content_title {
    font-size: 22px;
    line-height: 26px;
    padding-bottom: 17px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_title {
    padding-top: 30px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .address_name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .inner_page .container .inner_page_content .content_body.contact .address_name {
    font-size: 18px;
    line-height: 26px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .address_image {
  margin-bottom: 40px;
}

.inner_page .container .inner_page_content .content_body.contact .address_image img {
  width: 100%;
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_body.contact .address_image {
    margin-bottom: 20px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_body {
  display: flex;
  align-items: flex-start;
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_image {
  margin-right: 15px;
  padding-top: 3px;
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_image {
    margin-right: 10px;
  }
  .inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_image img {
    width: 15px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_content p {
  margin-bottom: 0;
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_content p:first-child {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_content p:first-child {
    font-size: 14px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_content a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #292525;
}

.inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_content img {
  width: 30px;
  margin-left: 30px;
}

@media (max-width: 991px) {
  .inner_page .container .inner_page_content .content_body.contact .address_info .info_body .info_content img {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_body.contact .address_info {
    margin-bottom: 30px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .address_images {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid #D8D8D8;
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_body.contact .address_images {
    margin-top: 20px;
    padding-bottom: 10px;
  }
}

.inner_page .container .inner_page_content .content_body.contact .how_to_get .get_ways {
  line-height: 22px;
}

.inner_page .container .inner_page_content .content_body.dostavka h4 {
  margin-bottom: 20px;
}

.inner_page .container .inner_page_content .content_body .faq_block {
  margin-bottom: 50px;
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item {
  background-color: #FFFFFF;
  border-radius: 0;
  border-color: #D6D6D6;
  outline: none;
  position: relative;
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 16px;
  font-weight: 600;
  background-color: #F9F9F9;
  border-radius: 0;
  position: static;
  padding: 23px 27px;
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-header .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
  border-bottom: none;
  box-shadow: none;
  color: #FA3D67;
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fa3d67'%3e%3cpath fill-rule='evenodd' d='M0,7.642a1.315,1.315,0,0,0,.378.912l6.31,6.31a1.316,1.316,0,0,0,1.865-1.857L3.172,7.626,8.553,2.245h0A1.316,1.316,0,1,0,6.688.388L.378,6.7A1.314,1.314,0,0,0,0,7.642Z'/%3e%3c/svg%3e");
  transform: rotate(90deg);
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M0,7.642a1.315,1.315,0,0,0,.378.912l6.31,6.31a1.316,1.316,0,0,0,1.865-1.857L3.172,7.626,8.553,2.245h0A1.316,1.316,0,1,0,6.688.388L.378,6.7A1.314,1.314,0,0,0,0,7.642Z'/%3e%3c/svg%3e");
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 10px;
  background-size: contain;
  background-position: center;
  transform-origin: 0;
}

.inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-body {
  padding: 0 27px;
}

@media (max-width: 767px) {
  .inner_page .container .inner_page_content .content_body .faq_block .accordion .accordion-item .accordion-body {
    padding-right: 2rem;
  }
}

.inner_page .container .inner_page_content .content_body h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.inner_page .container .inner_page_content .content_body h5 {
  font-size: 14px;
  font-weight: bold;
}

.inner_page .container .inner_page_content .content_body p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}

.inner_page .container .inner_page_content .content_body ul {
  padding-left: 20px;
  font-size: 14px;
  line-height: 22px;
}

.inner_page .container .inner_page_content .content_body ul li {
  margin-bottom: 10px;
}

.inner_page .container .inner_page_content .content_body ol li {
  line-height: 22px;
  font-size: 14px;
  margin-bottom: 30px;
  list-style: none;
  counter-increment: my-awesome-counter;
  display: flex;
}

.inner_page .container .inner_page_content .content_body ol li::before {
  content: counter(my-awesome-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  height: 35px;
  width: 35px;
  flex: 0 0 35px;
  background-color: #FA3D67;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 1400px) {
  .inner_page .container .inner_page_content {
    padding: 50px 0 55px 45px;
  }
}

@media (max-width: 991px) {
  .inner_page .container .inner_page_content {
    padding: 35px 0;
  }
}

.inner_page .container::after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  background-color: #F9F9F9;
  position: absolute;
  left: 17.2%;
  top: 0;
  z-index: -1;
}

@media (max-width: 1400px) {
  .inner_page .container::after {
    left: 25.6%;
  }
}

@media (max-width: 991px) {
  .inner_page .container::after {
    left: -50%;
    width: 200%;
    top: 75px;
  }
}

@media (max-width: 767px) {
  .inner_page .container::after {
    top: 60px;
    height: 94.5%;
  }
}

@media (max-width: 767px) {
  .inner_page {
    margin-bottom: 35px;
  }
}

.inner_page.dostavka .container .inner_page_content {
  padding-top: 75px;
}

.inner_page.dostavka .container::after {
  height: 105%;
}

@media (max-width: 767px) {
  .inner_page.dostavka .container::after {
    height: 94.5%;
  }
}

.inner_page.dostavka.garantiya .container::after {
  height: 105%;
}

@media (max-width: 767px) {
  .inner_page.dostavka.garantiya .container::after {
    height: 97%;
  }
}

.product_view {
  padding-top: 15px;
}

.product_view .product_view_top {
  padding-bottom: 65px;
}

.product_view .product_view_top .product_gallery {
  position: relative;
  overflow: hidden;
}

.product_view .product_view_top .product_gallery .swiper-wrapper {
  margin-bottom: 30px;
}

.product_view .product_view_top .product_gallery .swiper-wrapper img {
  width: 100%;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_gallery .swiper-wrapper {
    margin-bottom: 45px;
  }
}

.product_view .product_view_top .product_gallery .gal_nav {
  display: flex;
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  align-items: center;
  z-index: 10;
  justify-content: space-between;
  width: calc(100% - 50px);
}

.product_view .product_view_top .product_gallery .gal_nav .gallery_nav_next, .product_view .product_view_top .product_gallery .gal_nav .gallery_nav_prev {
  opacity: .5;
  transition: .3s all ease;
}

.product_view .product_view_top .product_gallery .gal_nav .gallery_nav_next:not(.swiper-button-disabled):hover, .product_view .product_view_top .product_gallery .gal_nav .gallery_nav_prev:not(.swiper-button-disabled):hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_gallery .gal_nav {
    display: none;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_top .product_gallery .gal_nav {
    left: 65px;
    width: calc(100% - 130px);
  }
}

.product_view .product_view_top .product_gallery .swiper-pagination {
  z-index: 100;
  bottom: 15px;
}

.product_view .product_view_top .product_gallery .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 32px;
  background-color: #B5B5B5;
  opacity: .5;
  transition: .3s all ease;
}

.product_view .product_view_top .product_gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #292525;
  opacity: 1;
}

@media (max-width: 991px) {
  .product_view .product_view_top .product_gallery {
    margin: 0 -100px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_top .product_gallery {
    margin: 0;
  }
}

.product_view .product_view_top .product_gallery_thumbs .swiper-slide {
  border: 1px solid #D6D6D6;
  position: relative;
}

.product_view .product_view_top .product_gallery_thumbs .swiper-slide img {
  width: 100%;
}

.product_view .product_view_top .product_gallery_thumbs .swiper-slide:hover {
  cursor: pointer;
}

.product_view .product_view_top .product_gallery_thumbs .swiper-slide::after, .product_view .product_view_top .product_gallery_thumbs .swiper-slide::before {
  content: '';
  display: block;
  height: 4px;
  width: 0;
  background-color: #FA3D67;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: .3s all ease;
}

.product_view .product_view_top .product_gallery_thumbs .swiper-slide::after {
  left: auto;
  right: 0;
}

.product_view .product_view_top .product_gallery_thumbs .swiper-slide.swiper-slide-thumb-active::after, .product_view .product_view_top .product_gallery_thumbs .swiper-slide.swiper-slide-thumb-active::before {
  width: 50%;
}

@media (max-width: 1200px) {
  .product_view .product_view_top .product_gallery_thumbs {
    display: none;
  }
}

.product_view .product_view_top .product_info .articul_and_available {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 14px;
}

.product_view .product_view_top .product_info .articul_and_available .articul {
  color: #919191;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .articul_and_available .articul {
    font-size: 12px;
  }
}

.product_view .product_view_top .product_info .articul_and_available .available {
  position: relative;
  display: flex;
}

.product_view .product_view_top .product_info .articul_and_available .available.true {
  color: #0E9C7F;
}

.product_view .product_view_top .product_info .articul_and_available .available.true::before {
  content: url("../images/available_check.svg");
  margin-right: 10px;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .articul_and_available .available {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .articul_and_available {
    margin-bottom: 15px;
  }
}

.product_view .product_view_top .product_info .product_name {
  font-family: 'Halvar Breit Bd';
  font-size: 32px;
  line-height: 62px;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_name {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

.product_view .product_view_top .product_info .product_price {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(188, 188, 188, 0.5);
}

.product_view .product_view_top .product_info .product_price .price_for {
  color: rgba(41, 37, 37, 0.5);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_price .price_for {
    font-size: 12px;
  }
}

.product_view .product_view_top .product_info .product_price .prices {
  display: flex;
}

.product_view .product_view_top .product_info .product_price .prices .new_price {
  margin-right: 15px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_price .prices .new_price {
    font-size: 20px;
  }
}

.product_view .product_view_top .product_info .product_price .prices .old_price {
  display: flex;
}

.product_view .product_view_top .product_info .product_price .prices .old_price .price_count {
  font-size: 16px;
  color: #B8B8B8;
  text-decoration: line-through;
  margin-right: 20px;
}

.product_view .product_view_top .product_info .product_price .prices .old_price .sale_count {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: #000000;
  position: relative;
  padding-left: 15px;
}

.product_view .product_view_top .product_info .product_price .prices .old_price .sale_count::before {
  content: url("../images/sale_table.svg");
  position: absolute;
  left: 0;
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_price .prices .old_price .sale_count {
    font-size: 13px;
  }
  .product_view .product_view_top .product_info .product_price .prices .old_price .sale_count::before {
    transform: scale(1.2);
  }
}

.product_view .product_view_top .product_info .product_price .prices.sale .new_price {
  color: #FA3D67;
}

.product_view .product_view_top .product_info .product_size {
  display: flex;
  margin-bottom: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product_view .product_view_top .product_info .product_size .block_title {
  flex: 0 0 100%;
  margin-bottom: 15px;
  font-family: 'Halvar Breit Bd';
  font-size: 15px;
}

.product_view .product_view_top .product_info .product_size .size_item {
  flex: 1;
  margin: 0 7px;
}

.product_view .product_view_top .product_info .product_size .size_item span {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 8px 0;
  border: 1px solid #B8B8B8;
  border-radius: 6px;
  margin-right: 15px;
  transition: .3s all ease;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.product_view .product_view_top .product_info .product_size .size_item span::before {
  content: url("../images/checked_size.svg");
  position: absolute;
  right: -9px;
  top: 3px;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s all ease;
}

@media (max-width: 1600px) {
  .product_view .product_view_top .product_info .product_size .size_item span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_size .size_item span {
    font-size: 11px;
    padding: 8px 0;
    width: 100%;
  }
}

.product_view .product_view_top .product_info .product_size .size_item input[type=checkbox], .product_view .product_view_top .product_info .product_size .size_item input[type=radio] {
  display: none;
}

.product_view .product_view_top .product_info .product_size .size_item input[type=checkbox]:checked ~ span, .product_view .product_view_top .product_info .product_size .size_item input[type=radio]:checked ~ span {
  border-color: #FA3D67;
}

.product_view .product_view_top .product_info .product_size .size_item input[type=checkbox]:checked ~ span::before, .product_view .product_view_top .product_info .product_size .size_item input[type=radio]:checked ~ span::before {
  opacity: 1;
  visibility: visible;
}

.product_view .product_view_top .product_info .product_size .size_item input[type=text] {
  border: none;
  width: 100%;
  text-align: center;
  outline: none;
}

.product_view .product_view_top .product_info .product_size .size_item.other span {
  border-style: dashed;
  margin-right: 0;
}

.product_view .product_view_top .product_info .product_size .size_item.other span:focus {
  border-color: #FA3D67;
}

.product_view .product_view_top .product_info .product_size .size_item:nth-child(2) {
  margin-left: 0;
}

.product_view .product_view_top .product_info .product_size .size_item:last-child {
  margin-right: 0;
}

@media (max-width: 1600px) {
  .product_view .product_view_top .product_info .product_size .size_item {
    margin: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 1400px) {
  .product_view .product_view_top .product_info .product_size .size_item {
    margin-bottom: 10px;
  }
  .product_view .product_view_top .product_info .product_size .size_item span {
    font-size: 13px;
  }
  .product_view .product_view_top .product_info .product_size .size_item:last-child {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_top .product_info .product_size .size_item {
    flex: 0 0 auto;
    text-align: center;
    margin: 0 5px;
    width: 30%;
    margin-bottom: 10px;
  }
  .product_view .product_view_top .product_info .product_size .size_item:first-child {
    margin-left: 0;
  }
  .product_view .product_view_top .product_info .product_size .size_item:last-child {
    margin-right: 0;
    margin-left: 0;
  }
  .product_view .product_view_top .product_info .product_size .size_item.other {
    width: auto;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_top .product_info .product_size {
    display: block;
  }
  .product_view .product_view_top .product_info .product_size .size_item {
    width: auto;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_size {
    flex: 0 0 100%;
    margin-bottom: 20px;
    justify-content: space-between;
  }
}

.product_view .product_view_top .product_info .product_action {
  margin-bottom: 30px;
}

.product_view .product_view_top .product_info .product_action .button {
  width: 210px;
  padding: 16px 0;
  text-align: center;
  margin-right: 15px;
  font-size: 14px;
}

.product_view .product_view_top .product_info .product_action .button.button_outline {
  font-weight: 500;
}

@media (max-width: 480px) {
  .product_view .product_view_top .product_info .product_action .button {
    width: 165px;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1600px) {
  .product_view .product_view_top .product_info .product_action {
    display: flex;
    justify-content: space-between;
    width: auto;
  }
  .product_view .product_view_top .product_info .product_action .button {
    flex: 0 0 calc(50% - 10px);
    margin: 0;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_top .product_info .product_action {
    margin-bottom: 25px;
    justify-content: flex-start;
  }
  .product_view .product_view_top .product_info .product_action .button {
    flex: 0 0 auto;
    margin: 0 15px 0 0;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_top .product_info .product_action {
    justify-content: space-between;
  }
  .product_view .product_view_top .product_info .product_action .button {
    flex: 0 0 calc(50% - 10px);
    margin: 0;
  }
}

.product_view .product_view_top .product_info .rassrochka_and_dostavka {
  margin-bottom: 40px;
}

.product_view .product_view_top .product_info .rassrochka_and_dostavka > div {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
}

.product_view .product_view_top .product_info .rassrochka_and_dostavka > div:last-child {
  margin-bottom: 0;
}

.product_view .product_view_top .product_info .rassrochka_and_dostavka > div span:first-child {
  width: 30px;
  margin-right: 15px;
}

.product_view .product_view_top .product_info .rassrochka_and_dostavka > div span a {
  color: #292525;
  font-weight: 500;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .rassrochka_and_dostavka > div {
    font-size: 12px;
  }
  .product_view .product_view_top .product_info .rassrochka_and_dostavka > div span a {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .rassrochka_and_dostavka {
    margin-bottom: 25px;
  }
}

.product_view .product_view_top .product_info .product_advantages .advantage_item {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_image {
  margin-right: 17px;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title {
  display: flex;
  align-items: center;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status {
  margin-left: 65px;
  position: relative;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status input {
  width: 185px;
  appearance: none;
  background: #0E9C7F;
  height: 2px;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status input::-webkit-slider-thumb {
  width: 0;
  height: 0;
  appearance: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0E9C7F;
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status input {
    width: 100%;
  }
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status .input_value {
  position: absolute;
  top: -20px;
  font-size: 14px;
  font-weight: bold;
  left: 0;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status:before, .product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status:after {
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  border: 2px solid #0E9C7F;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status:before {
  left: 0;
  bottom: 3px;
}

.product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status:after {
  right: 0;
  bottom: 3px;
}

@media (max-width: 1200px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title .hardnest_status {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_title {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item {
    flex: 0 0 30%;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(1) {
    order: 1;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(2) {
    order: 3;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(3) {
    order: 2;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(4) {
    order: 4;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item {
    flex: 0 0 40%;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(3) {
    flex: 0 0 60%;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item {
    flex: 0 0 50%;
    width: 50%;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item .advantage_image {
    margin-right: 10px;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(1) {
    order: 1;
    flex: 0 0 40%;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(2) {
    order: 2;
    flex: 0 0 60%;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(3) {
    order: 3;
    flex: 0 0 40%;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(3) .advantage_title {
    flex-wrap: wrap;
    position: relative;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(3) .advantage_title .hardnest_status {
    position: absolute;
    margin-left: 0;
    top: 55px;
    left: -45px;
  }
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(4) {
    order: 4;
    flex: 0 0 60%;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_top .product_info .product_advantages .advantage_item:nth-child(3) .advantage_title .hardnest_status {
    top: 75px;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_top .product_info .product_advantages {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_top > .row > div:first-child {
    padding: 0;
  }
}

.product_view .product_view_bottom {
  padding-top: 60px;
  padding-bottom: 95px;
  border-top: 1px solid rgba(188, 188, 188, 0.5);
  border-bottom: 1px solid rgba(188, 188, 188, 0.5);
  margin-bottom: 60px;
}

.product_view .product_view_bottom .sidebar .sidebar_widget {
  margin-bottom: 40px;
}

.product_view .product_view_bottom .sidebar .sidebar_widget .nav-link {
  font-size: 15px;
  font-family: 'Halvar Breit Bd';
  text-transform: uppercase;
  padding: 20px 0;
  background-color: #F3F3F3;
  border-radius: 0;
  margin-bottom: 10px;
  color: #292525;
  position: relative;
}

.product_view .product_view_bottom .sidebar .sidebar_widget .nav-link.active {
  background-color: #FA3D67;
  color: #fff;
}

.product_view .product_view_bottom .sidebar .sidebar_widget .nav-link.active::before {
  left: -8px;
  opacity: 1;
}

.product_view .product_view_bottom .sidebar .sidebar_widget .nav-link:before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #FA3D67;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: .3s all ease;
  z-index: -1;
}

.product_view .product_view_bottom .sidebar .sidebar_widget.product_rating .rating_title {
  font-family: 'Halvar Breit Bd';
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.product_view .product_view_bottom .sidebar .sidebar_widget.product_rating .rating_value {
  display: flex;
  align-items: center;
}

.product_view .product_view_bottom .sidebar .sidebar_widget.product_rating .rating_value .rating_average {
  font-size: 55px;
  font-family: 'Halvar Breit Bd';
  line-height: 1.2;
  margin-right: 15px;
}

.product_view .product_view_bottom .sidebar .sidebar_widget.product_rating .rating_value .voice_count {
  font-size: 14px;
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .sidebar .sidebar_widget .nav {
    flex-direction: row !important;
    margin-right: 0 !important;
  }
  .product_view .product_view_bottom .sidebar .sidebar_widget .nav .nav-link {
    flex: 1;
    height: 45px;
    margin-right: 5px;
    font-size: 11px;
    line-height: 14px;
    padding: 0 0;
    margin-bottom: 0;
  }
  .product_view .product_view_bottom .sidebar .sidebar_widget .nav .nav-link::before {
    content: none;
  }
  .product_view .product_view_bottom .sidebar .sidebar_widget .nav .nav-link:last-child {
    margin-right: 0;
  }
  .product_view .product_view_bottom .sidebar .sidebar_widget.product_rating {
    display: none;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .sidebar {
    display: none;
  }
}

.product_view .product_view_bottom .tab-content .mobile {
  display: none;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .mobile {
    display: block;
  }
}

.product_view .product_view_bottom .tab-content .prod_description_title {
  font-family: 'Halvar Breit Bd';
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.product_view .product_view_bottom .tab-content .prod_description_title span {
  display: none;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .prod_description_title {
    font-size: 18px;
    position: relative;
    margin-bottom: 15px;
  }
  .product_view .product_view_bottom .tab-content .prod_description_title span {
    display: block;
  }
}

.product_view .product_view_bottom .tab-content p {
  margin-bottom: 25px;
  line-height: 26px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
}

.product_view .product_view_bottom .tab-content .where_to_buy {
  margin-top: 60px;
  max-width: 750px;
}

.product_view .product_view_bottom .tab-content .where_to_buy h4 {
  font-family: 'Halvar Breit Bd';
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.product_view .product_view_bottom .tab-content .where_to_buy .buy_element {
  display: flex;
}

.product_view .product_view_bottom .tab-content .where_to_buy .buy_element span {
  display: inline-block;
  padding-top: 5px;
  margin-right: 20px;
  flex: 0 0 30px;
  opacity: .3;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .where_to_buy .buy_element span {
    flex: 0 0 25px;
    margin-right: 10px;
  }
}

.product_view .product_view_bottom .tab-content .where_to_buy .buy_element p a {
  color: #292525;
  transition: .3s all ease;
}

.product_view .product_view_bottom .tab-content .where_to_buy .buy_element p a[data-type=tel] {
  text-decoration: none;
}

.product_view .product_view_bottom .tab-content .where_to_buy .buy_element p a[data-type=tel]:hover {
  color: #FA3D67;
  border-bottom: 1px solid #FA3D67;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .where_to_buy {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .characteristics_table {
    padding-bottom: 25px;
  }
  .product_view .product_view_bottom .tab-content .characteristics_table .col-xl-5 {
    margin-top: 15px;
  }
}

.product_view .product_view_bottom .tab-content .characteristics_table h3 {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
}

.product_view .product_view_bottom .tab-content .characteristics_table .table td, .product_view .product_view_bottom .tab-content .characteristics_table .table th {
  padding: 8px 20px;
  font-size: 14px;
  border: none;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .characteristics_table .table td, .product_view .product_view_bottom .tab-content .characteristics_table .table th {
    padding: 8px 5px;
  }
}

.product_view .product_view_bottom .tab-content .characteristics_table .table.material span {
  position: relative;
}

.product_view .product_view_bottom .tab-content .characteristics_table .table.material span div {
  position: absolute;
  left: 15px;
  top: -45px;
  padding: 15px 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  font-size: 14px;
  min-width: 295px;
  border-radius: 8px;
  opacity: 0;
  visibility: visible;
  transition: .3s all ease;
  z-index: -1;
}

.product_view .product_view_bottom .tab-content .characteristics_table .table.material span svg {
  z-index: 20;
  position: relative;
  transition: .3s all ease;
}

.product_view .product_view_bottom .tab-content .characteristics_table .table.material span:hover div {
  visibility: visible;
  opacity: 1;
  z-index: 30;
  left: 8px;
}

.product_view .product_view_bottom .tab-content .characteristics_table .table.material span:hover svg {
  z-index: 50;
}

.product_view .product_view_bottom .tab-content .characteristics_table .table.material span:hover svg circle {
  fill: #FA3D67;
}

.product_view .product_view_bottom .tab-content .product_materials {
  position: relative;
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block {
  position: relative;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block img {
    width: 90%;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block img {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block img {
    max-width: 95%;
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 590px;
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item {
  width: 100%;
  text-align: center;
  position: absolute;
  transition: .3s all ease;
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(1) {
  top: 0;
  z-index: 70;
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(2) {
  z-index: 60;
  top: 65px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(2) {
    top: 50px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(2) {
    top: 30px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(3) {
  z-index: 50;
  top: 125px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(3) {
    top: 100px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(3) {
    top: 65px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(4) {
  z-index: 40;
  top: 185px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(4) {
    top: 150px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(4) {
    top: 95px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(5) {
  z-index: 30;
  top: 245px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(5) {
    top: 205px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(5) {
    top: 130px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(6) {
  z-index: 20;
  top: 305px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(6) {
    top: 245px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item:nth-child(6) {
    top: 165px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_item.active {
  transform: translateY(-30px);
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: #FA3D67;
  color: #fff;
  border: none;
  border-radius: 50%;
  right: 25px;
  top: 33px;
  transition: .3s all ease;
  animation: pulse-animation 3s infinite;
  z-index: 500;
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button::before {
  content: '';
  height: 42px;
  width: 42px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #FA3D67;
  display: block;
  position: absolute;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button::before {
    width: 35px;
    height: 35px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_2 {
  top: 85px;
  right: 90px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_2 {
    top: 60px;
    right: 110px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_2 {
    right: 60px;
    top: 35px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_3 {
  top: 85px;
  right: 30px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_3 {
    top: 60px;
    right: 60px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_3 {
    right: 30px;
    top: 35px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_4 {
  top: 85px;
  right: 90px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_4 {
    top: 60px;
    right: 110px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_4 {
    right: 60px;
    top: 35px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_5 {
  top: 85px;
  right: 30px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_5 {
    top: 60px;
    right: 60px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_5 {
    right: 30px;
    top: 35px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_6 {
  top: 100px;
  right: 90px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_6 {
    top: 75px;
    right: 110px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_6 {
    right: 60px;
    top: 50px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_7 {
  top: 105px;
  right: -5px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_7 {
    top: 80px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.button_7 {
    right: 0;
    top: 50px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button.active {
  background-color: #000000;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button {
    width: 25px;
    height: 25px;
    right: 60px;
    top: 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button {
    right: 30px;
    top: 15px;
    height: 20px;
    width: 20px;
  }
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs .tab_button::before {
    height: 30px;
    width: 30px;
  }
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs {
    width: 490px;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs {
    width: 470px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block .material_tabs {
    width: 90%;
    right: 0;
    margin: auto;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .material_buttons_block {
    padding-bottom: 345px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content {
  padding-right: 100px;
  position: relative;
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content {
  width: calc(100% - 75px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 50px;
  transition: .3s all ease;
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .tab_number {
  font-size: 109px;
  font-family: 'Halvar Breit Bd';
  text-align: right;
  position: relative;
  z-index: -1;
  -webkit-text-stroke: 1px rgba(112, 112, 112, 0.3);
  -webkit-text-fill-color: white;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .tab_number {
    transform: translateX(30px);
  }
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .tab_title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .tab_title {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_image {
  margin-bottom: 20px;
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_image img {
  width: 100%;
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_image {
    margin-bottom: 10px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_description {
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_description {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_description {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content .material_description {
    font-size: 14px;
    line-height: 22px;
  }
}

.product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content.active {
  opacity: 1;
  visibility: visible;
  top: 0;
}

@media (max-width: 991px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content.active {
    top: 120px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content.active {
    top: 90px;
  }
}

@media (max-width: 480px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content.active {
    top: 0;
  }
}

@media (max-width: 1600px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content {
    width: calc(100% - 35px);
    left: -15px;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .product_view .product_view_bottom .tab-content .product_materials .materials_content .tab_content {
    right: 0;
    max-width: 345px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .product_view .product_view_bottom .tab-content .product_materials {
    padding-bottom: 480px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .product_materials {
    padding-bottom: 585px;
  }
}

.product_view .product_view_bottom .tab-content .delivery_block {
  max-width: 910px;
}

.product_view .product_view_bottom .tab-content .delivery_block .delivery_item {
  margin-bottom: 45px;
}

.product_view .product_view_bottom .tab-content .delivery_block .delivery_item h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .delivery_block .delivery_item h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.product_view .product_view_bottom .tab-content .delivery_block .delivery_item p {
  display: flex;
}

.product_view .product_view_bottom .tab-content .delivery_block .delivery_item p span {
  display: inline-block;
  width: 25px;
  flex: 0 0 25px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .delivery_block .delivery_item p span {
    width: 20px;
    margin-right: 10px;
  }
}

.product_view .product_view_bottom .tab-content .delivery_block .delivery_item:nth-child(-n+2) p span {
  opacity: .3;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .delivery_block .delivery_item {
    margin-bottom: 30px;
  }
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item {
  margin-bottom: 40px;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item p {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  position: relative;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item p span:first-child {
  flex: 0 0 25px;
  margin-right: 5px;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item p span:last-child {
  flex: 0 0 100%;
  padding-left: 30px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item p span:last-child {
    padding-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item p {
    font-size: 14px;
    padding-left: 35px;
    display: block;
  }
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item p span:first-child {
    flex: 0 0 17px;
    margin-right: 15px;
    position: absolute;
    left: 0;
  }
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:first-child p span:first-child, .product_view .product_view_bottom .tab-content .contacts_block .contact_item:last-child p span:first-child {
  opacity: .3;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:first-child p a {
  margin-left: 15px;
  color: #000000;
  transition: .3s all ease;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:first-child p a:hover {
  color: #FA3D67;
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item:first-child p a {
    margin-left: 0;
  }
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:last-child p {
  align-content: center;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:last-child p a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #292525;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:last-child p a img {
  width: 30px;
  margin-left: 30px;
  transition: .3s all ease;
}

.product_view .product_view_bottom .tab-content .contacts_block .contact_item:last-child p a img:hover {
  color: #FA3D67;
  text-decoration: underline;
  filter: brightness(95%);
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item {
    margin-bottom: 0;
  }
  .product_view .product_view_bottom .tab-content .contacts_block .contact_item:nth-child(2) p {
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom .tab-content .contacts_block {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product_view .product_view_bottom {
    padding-top: 25px;
    border: none;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 20px;
  }
  .product_view .product_view_bottom .tab-content .tab-pane {
    display: block;
    opacity: 1;
  }
  .product_view .product_view_bottom .tab-content .tab-pane .mobile_accordion_header {
    font-family: 'Halvar Breit Bd';
    font-size: 15px;
    text-transform: uppercase;
    padding: 25px 0;
    position: relative;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s all ease;
  }
  .product_view .product_view_bottom .tab-content .tab-pane .mobile_accordion_header::before {
    content: '';
    display: block;
    height: 1px;
    width: calc(100% + 24px);
    background-color: #BCBCBC;
    opacity: .5;
    position: absolute;
    left: -12px;
    top: 0;
  }
  .product_view .product_view_bottom .tab-content .tab-pane .mobile_accordion_header svg {
    transition: .3s all ease;
  }
  .product_view .product_view_bottom .tab-content .tab-pane.active .mobile_accordion_header {
    color: #FA3D67;
  }
  .product_view .product_view_bottom .tab-content .tab-pane.active .mobile_accordion_header svg {
    transform: rotate(180deg);
  }
  .product_view .product_view_bottom .tab-content .tab-pane.active .mobile_accordion_header svg path {
    fill: #FA3D67;
  }
  .product_view .product_view_bottom:after {
    content: '';
    display: block;
    width: calc(100% + 24px);
    position: absolute;
    left: -12px;
    bottom: 0;
    background-color: #BCBCBC;
    opacity: .5;
    height: 1px;
  }
}

.return_back {
  margin-bottom: 75px;
}

.return_back .container .return_back_link {
  padding-top: 70px;
  border-top: 1px solid rgba(188, 188, 188, 0.5);
}

.return_back .container .return_back_link a {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #292525;
  text-decoration: none;
}

.return_back .container .return_back_link a img {
  margin-right: 12px;
}

@media (max-width: 767px) {
  .return_back .container .return_back_link {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .return_back {
    margin-bottom: 45px;
  }
}
/*# sourceMappingURL=index.css.map */