@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.ttf');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf');
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
button:active,
button:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
input,
textarea {
  outline: none;
  font-family: Montserrat;
}
input:active,
textarea:active {
  outline: none;
}
:focus {
  outline: none;
}
textarea {
  resize: none;
}
textarea {
  resize: vertical;
}
textarea {
  resize: horizontal;
}
input {
  margin: 0;
}
* {
  box-sizing: border-box;
}
svg path,
button {
  transition-duration: .3s;
}
a {
  transition-duration: .3s;
  color: initial;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
nav {
  list-style: none;
}
body {
  font-family: Montserrat;
  font-size: 14px;
  color: #fff;
  background-color: #121212;
}
body.main_page,
header {
  background-color: #1f1f1f;
}
header{
  z-index: 5;
}
.body--active {
  height: 100vh;
  overflow: hidden;
}
.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 60px;
  margin: 0 auto;
}
#shader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.ticker-wrapper {
  overflow: hidden;
  height: 35px;
  position: relative;
  background: linear-gradient(90deg, #1c1800 0%, #756300 50%, #1c1800 97.5%);
  white-space: nowrap;
}
.ticker-wrapper div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  width: 100%;
  height: 35px;
  transform: translateX(100%);
}
.ticker-wrapper p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 35px;
}
.ticker-wrapper p span {
  padding: 2px 3px;
  border-radius: 2px;
  background-color: #ED1C24;
}
.ticker-wrapper__first-half, .ticker-wrapper__second-half {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  animation: ticker 30s infinite linear forwards;
}

.ticker-wrapper__second-half {
  animation: 30s ticker 16s infinite linear forwards;
}

@keyframes ticker {
  0% {
    transform: translate(100%, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

.header_mid_wrapper {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 5px;
  color: #fff;
}
.header_mid_wrapper a {
  color: #fff;
}
.header_mid_wrapper .logo {
  flex-shrink: 0;
  margin-bottom: 10px;
}
.header_mid_wrapper .logo img.mob_logo{
  display:none;
}
#main_menu_open {
  height:32px;
  margin-right: 10px;
    margin-bottom: 10px;
}
.h_search_form {
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0 40px;
}
.h_search_form input {
  padding: 12px 15px;
  padding-right: 54px;
  border: 1px solid #C4A709!important;
  border-radius: 8px;
  background-color: #151515!important;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  color: #fff!important;
  transition-duration: .3s;
  padding-left: 45px !important;
}
.h_search_form .cancel_search{
  display:none;
  position:absolute;

}
.cancel_search svg path{
  stroke: #fff;
}
.h_search_form.h_search_form_focus .cancel_search{
  display:flex;
  flex-direction:column;
  position:absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 40px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.h_search_form input:not(:placeholder-shown) {
  box-shadow: none;
  border-color: #B59D01;
}
.h_search_form input:hover {
  box-shadow: 0 0 2px 2px rgb(196 167 9 / 30%);
}
.h_search_form input:focus {
  border-color: #B59D01;
  box-shadow: 0 0 2px 2px rgb(196 167 9 / 30%);
}
.h_search_form input::placeholder {
  color: #C0C0C0;
}
.h_search_form button {
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 50px;
  background: none;
  border: none;
  cursor: pointer;
}
.header_menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
#header_account_link {
  font-size: 0;
}
.lang_options {
  display: flex;
  align-items: center;
  gap: 7px;
}
.lang_options li {
  position: relative;
  display: flex;
}
.lang_options li:after {
  position: absolute;
  content: "/";
  top: 10px;
  left: 100%;
  color: #fff;
  font-size: 18px;
}
.lang_options li:last-child:after,
#main_menu .lang_options li:after {
  display: none;
}
.lang_options a,
.lang_options span {
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
}
.lang_options a.active,
.lang_options span {
  font-weight: 600;
  color: #C4A709;
}
#main_menu .lang_options {
  gap: 5px;
}
#main_menu .lang_options a,
#main_menu .lang_options span {
  padding: 8px 10px;
  font-size: 16px;
}
#main_menu .lang_options a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
#main_menu .lang_options a.active,
#main_menu .lang_options span {
  border-radius: 5px;
  text-decoration: none;
  background-color: #C4A709;
  color: #fff;
}
.header_menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
#header_cart_link {
  position: relative;
}
.m_call_basket .counter,
#header_cart_link .counter {
  position: absolute;
  top: -4px;
  right: -5px;
  padding: 1.5px 5.5px;
  border-radius: 50%;
  background-color: #C4A709;
  font-size: 10px;
  line-height: 15px;
  font-weight: 500;
  box-shadow: inset 0 0 8px 0 rgba(15, 15, 15, 0.3);
  min-width: 18px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #fff;
}
.m_call_basket .counter{
  top: 0px;
  right: 0px;
}
.catalog_list {
  display: flex;
  align-items: center;
  position: relative;
  justify-content:space-between;
}
.catalog_list > li > a {
  display: block;
  width: 100%;
  padding: 25px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.catalog_list > li > a svg,
.category_popup {
  display: none;
}
.category_popup {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 3px);
  z-index: 12;
  padding: 15px 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.8);
  background-color: #121212;
  gap: 100px;
  align-items: flex-start;
}
.category_popup:after {
  position: absolute;
  content: "";
  height: 3px;
  left: 0;
  right: 0;
  top: -3px;
}
.category_popup a {
  color: #fff;
}
.category_list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  width: 100%;
  row-gap: 15px;
}
.category_list > li {
  max-width: 270px;
}
.category_list > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height:130%;
  margin-bottom: 10px;
  letter-spacing:0.4px;
}
.category_list > li > a img {
  max-width: 32px;
  max-height: 32px;
}
.subcategory_list > li {
  margin-bottom: 10px;
}
.subcategory_list > li:last-child {
  margin-bottom: 0;
}
.subcategory_list a {
  font-size: 15px;
  line-height: 131%;
  color: #dbdbdb;
}
.subcategory_list .subcategory_link {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.category_popup > img {
  flex-shrink: 0;
  max-width: 300px;
  max-height: 365px;
}
#main_menu {
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 15;
  width: 400px;
  background-color: #121212;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.8);
  padding-bottom: 30px;
  transform: translateX(-120%);
}
#main_menu.active{
 transform: translate(0px, 0px);
}
#main_menu a {
  color: #fff;
}
#main_menu .menu_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1f1f1f;
}
#main_menu .logo img {
  max-width: 168px;
  max-height: 44px;
}
#main_menu .logo img.mob_logo{
  display:none;
}
#main_menu .account_link_holder {
  display: none;
}
#main_menu .menu_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: calc(100vh - 86px);
  padding: 15px 20px;
  padding-bottom: 30px;
}
#main_menu .background {
  position: absolute;
  bottom: 30px;
  left: 53px;
  pointer-events: none;
}
#main_menu ul:not(.lang_options) span,
#main_menu ul:not(.lang_options) a {
  display: block;
  padding: 10px 10px;
  font-weight: 500;
  font-size: 18px;
}
#main_menu .menu_wrapper > a {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
#main_menu .menu_bottom_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 44px;
  border-radius: 100px;
  border: 1px solid #303030;
  cursor: pointer;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 36px;
  width: 36px;
  right: 3px;
  bottom: 3px;
  background-color: #C4A709;
  -webkit-transition: .3s;
  transition: .3s;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(-46px);
  -ms-transform: translateX(-46px);
  transform: translateX(-46px);
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
#main_menu .switch img {
  position: absolute;
  top: 3px;
  z-index: 2;
}
#main_menu .switch img:first-of-type {
  left: 3px;
}
#main_menu .switch img:last-of-type {
  right: 3px;
}
.page_section {
  margin-bottom: 80px;
}
.page_section.front_slider_section {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.front_slider img{
  width:100%;
}
.page_section.seo_section {
  padding: 40px 0;
  background-color: #121212;
  margin-bottom: 0;
}
.page_section.catalog_wrapper {
  margin-bottom: 30px;
}
.page_section.image_background_section {
  position: relative;
  padding: 50px 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}
.page_section.image_background_section:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.page_section.image_background_section > .container {
  position: relative;
  z-index: 1;
}
.page_section.brand_section{
  position:relative;
  width: 100%;
}
.page_section.brand_section {
  background-image: url(../img/brand_section_background2-min.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page_section.review_section {
  background-image: url(../img/review_section_background2-min.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page_section.review_section:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.section_title_link_cat{
  margin-bottom:25px;
}
.section_header a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.section_header .section_title.section_title_link span,
.section_header .section_title.section_title_link{
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: #fff;
  text-transform: uppercase;
}
.section_title {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: #fff;
  text-transform: uppercase;
  display: flex;
}
.seo_section .section_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.section_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.section_header .section_title {
  margin-bottom: 0;
}
.section_title span {
  padding: 5px 35px;
  display: inline-block;
  min-width: 261px;
  text-align: center;
  background: linear-gradient(90deg, rgba(196, 167, 9, 0) 0%, rgba(196, 167, 9, 1) 46%, rgba(196, 167, 9, 0) 100%);
  text-transform: uppercase;
}
.product_section_top .section_title {
  font-size: 26px;
  line-height: 32px;
  text-transform: none;
  margin-bottom: 25px;
}
.product_section_bottom .section_header {
  margin-top: 40px;
  margin-bottom: 0;
}
.front_slider .mobile_image {
  display: none;
}
.front_slider .slick-arrow {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}
.front_slider .slick-prev_arrow {
  left: 60px;
}
.front_slider .slick-next_arrow {
  right: 60px;
}
.front_slider .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.front_slider .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.29);
  font-size: 0;
}
.front_slider .slick-dots li.slick-active button {
  background-color: #C4A709;
}
.front_slider a {
  position: relative;
  display: flex;
}
.front_slider a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 95px 25px #000;
  background: rgba(101, 101, 101, 0.05);
  z-index:2;
}
.category_slider_f{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0px;
  clip-path: inherit;
  flex-wrap: wrap;
  gap: 10px;
  margin-top:20px;
}
.category_slider {
  margin-left: -150px;
  margin-right: -60px;
  clip-path: inset(-80px 0 0 150px);
}
.category_slider_f li{
  width: calc(100% / 3 - 10px);
  display: flex;
  flex-direction: column;
  margin-bottom:10px;
}
.category_slider_f li a,
.category_slider li a,
.subcategories a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.subcategories a {
  height: 100%;
  padding: 0 15px;
  gap: 15px;
  font-weight: 400;
  font-size: 17px;
  line-height: 23px;
  text-transform: none;
  letter-spacing: unset;
  text-align: center;
}
.subcategories a:hover{
  color: #C4A709;
}
.category_slider_f .image_wrapper,
.category_slider .image_wrapper{
  position: relative;
  background-color: #000;
  max-height: 380px;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  width:100%;
}
.subcategories .image_wrapper {
  position: relative;
  background-color: #000;
  max-height: 250px;
  max-width: 291px;
  border-radius: 10px;
  overflow: hidden;
}
.subcategories .image_wrapper {
  max-width: 100%;
  max-height: 260px;
  background-color: unset;
}
.category_slider_f .image_wrapper img,
.category_slider .image_wrapper img{
  width:100%;
  max-height: 100%;
  object-fit: cover;
}
.subcategories .image_wrapper img {
  max-height: 100%;
  object-fit: cover;
}
.category_slider_f .image_wrapper:after,
.category_slider_f .image_wrapper:before,
.category_slider .image_wrapper:after,
.category_slider .image_wrapper:before,
.subcategories .image_wrapper:after,
.subcategories .image_wrapper:before {
  position: absolute;
  content: "";
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #1f1f1f 100%);
  transition-duration: .3s;
  pointer-events:none;
}
.subcategories .image_wrapper:after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(32, 32, 32, 0) 0%, #121212 100%);
}
.category_slider_f .image_wrapper:before,
.category_slider .image_wrapper:before,
.subcategories .image_wrapper:before {
  background: linear-gradient(180deg, rgba(32, 32, 32, 0) 0%, #121212 100%);
  opacity: 0;
}
.category_slider_f .slick-track ,
.category_slider .slick-track {
  display: flex;
  gap: 10px;
}
.category_slider_f .slick-track:after,
.category_slider_f .slick-track:before,
.category_slider .slick-track:after,
.category_slider .slick-track:before {
  display: none;
}
.product_slider .slick-slide,
.blog_slider .slick-slide {
  margin: 0 5px;
}
.product_slider,
.blog_slider {
  margin: 0 -5px;
}
.blog_slider .slick-slide {
  margin: 0 7.5px;
}
.blog_slider {
  margin: 0 -7.5px;
}
.slick-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  top: -67.5px;
  right: 0;
  z-index: 1;
  background: rgb(255 255 255 / 30%);
  border-radius: 50%;
}
.slick-arrow:hover{
  background: rgb(255 255 255 / 50%);
}
a > .v_all{
  background: rgb(255 255 255 / 30%);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
a:hover > .v_all{
  background: rgb(255 255 255 / 50%);
}
.slick-prev_arrow {
  right: 107px;
}
.slick-next_arrow {
  right: 60px;
}
.suggested_products .slick-next_arrow {
  right: 0;
}
.suggested_products .slick-prev_arrow {
  right: 47px;
}
.product_slider:not(.suggested_products) .slick-arrow {
  display: none !important;
}
.product_wrap {
  position: relative;
  background-color: #121212;
  border-radius: 5px;
  overflow: hidden;
  transition-duration: .3s;
}
.product_list .product_wrap {
  border: 1px solid #252525;
}
.product_wrap .image_wrapper {
  position: relative;
  max-width: 100%;
  background-color: #fff;
  padding: 0px;
  display: flex;
  flex-direction: column;
}
.product_wrap .image_wrapper img {
  margin: auto;
}
.product_wrap .image_wrapper img.f_img{
  display:block;
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
}
.product_wrap .image_wrapper img.s_img{
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 0px;
  display: block;
}
.product_wrap:hover .image_wrapper img.f_img{
  opacity: 0;
  width: 0px;
  height: 0px;
  visibility: hidden;
}
.product_wrap:hover .image_wrapper img.s_img{
  opacity: 1;
  width: 100%;
  height: 100%;
  visibility: visible;
}
.product_wrap .image_wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 51px 4px #000;
  background: rgba(217, 217, 217, 0.01);
  transition-duration: .3s;
}
.product_wrap .product_status,
.product_gallery .product_status {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  border-radius: 0 2px 2px 0;
  padding: 6px 12px;
  box-shadow: inset 0 0 8px 0 rgba(15, 15, 15, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.product_status.sale {
  background: #d30e0f;
}
.product_status.new {
  background: #c4a709;
}
.product_status.top{
  background: #10986a;
}
.product_gallery .product_status {
  top: 32px;
  font-size: 18px;
}
.product_wrap .product_info_wrap {
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
}
.product_wrap .stock {
  font-size: 12px;
  color: #808080;
}
.stock.out_of_stock {
  color: #D30E0F !important;
}
.product_wrap .product_link {
  margin-top: 5px;
  margin-bottom: 15px;
  height: 48px;
  position:relative;
}
.product_wrap .product_link span{
  word-break: break-word;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-weight: 500;
  line-height: 16px;
  color: #fafafa;
  height: 48px;
  min-height: 48px;
  transition:all 0.5s;
}
.product_wrap:hover .product_link span,
.product_wrap .product_link:hover span{
  position:absolute;
  bottom:0px;
  height: min-content;
  overflow: visible;
  -webkit-line-clamp: none;
  line-clamp:none;
  background-color: #202020;
  z-index:1;
  left:0px;
  width:100%;
}
.product_wrap:hover .product_link span:after,
.product_wrap .product_link:hover span:after{
  width: calc(100% + 20px);
  left: -10px;
  top: -5px;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: #202020;
  content: "";
}
.product_wrap .product_link:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product_wrap .price {
  font-size: 18px;
  font-weight: 600;
}
.price_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.price_wrapper .price {
  color: #D30E0F;
}
.price_wrapper .old_price {
  font-weight: 500;
  font-size: 16px;
  text-decoration: line-through;
  color: #808080;
}
.product_wrap .product_bottom_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}
.product_options {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 3px;
  width: calc(100% - 40px);
  overflow-y: hidden;
  white-space: nowrap;
}
.product_bottom_wrap:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 44px;
  width: 20px;
  background: linear-gradient(to right, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 100%);
  transition-duration: .3s;
}
.product_options a {
  display: flex;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #303030;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 7px 6px;
  color: #fff;
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}
.product_section_top .product_options a {
  height: 38px;
  padding: 10px;
  align-items: center;
}
.product_options.color_options a {
  padding: 0;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-width: 2px;
  overflow: hidden;
}
.product_options li a.active {
  border-color: #c4a709;
  pointer-events: none;
}
.product_options li a.inactive {
  opacity: 0.6;
  border: 1px solid #ED1C24; 
  color:#ED1C24;
}
.product_wrap .product_cart_link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: #C4A709;
  box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.brand_slider{
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #303030;
}
.review_slider {
  border-radius: 5px;
  overflow: hidden;
}
.review_section {
  position:relative;
}
.review_section:before{
  z-index:1;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width:100%;
  height:100%;
  background: linear-gradient(90deg, #1f1f1f 0%, #1f1f1f 30%, rgba(15, 15, 15, 0) 100%);
  transition-duration: .3s;
}
.brand_slider a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 145px;
  width: 100%;
}
.brand_slider a img {
  max-height: 100%;
}
.brand_slider div.slick-slide:not(:last-child) {
  border-right: 1px solid #303030;
}
.brand_slider div.slick-slide > div:not(:first-child) {
  border-top: 1px solid #303030;
}
.review_slider .review_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  transition-duration: .3s;
}
.review_slider li.slick-slide:last-child .review_wrap {
  border-right: none;
}
.review_star_list {
  display: flex;
  align-items: center;
  gap: 3px;
}
.review_star_list_dinamic li{
  cursor:pointer;
}
.review_star_list li.active_h svg path,
.review_star_list li.active svg path {
  fill: #c4a709;
}
.review_wrap .review_wrap_img img {
  border-radius: 5px;
  overflow: hidden;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
  width:100%;
}
.review_wrap:hover .review_wrap_img img {
  transform:scale(1.05);
}
.review_wrap .review_wrap_img{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
}
.review_wrap .name {
  font-size: 16px;
  font-weight: 500;
}
.review_slider .review_wrap p {
  height: 84px;
  font-weight: 500;
  line-height: 152%;
  color: #cfcfcf;
}
.review_wrap a {
  margin-top: -10px;
}
.post_wrapper a:after,
.review_wrap a:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.post_wrapper .post_img{
  position:relative;
  display:flex;
  flex-direction: column;
  width:100%;
  overflow:hidden;
  border-radius: 10px;
}
.post_wrapper .post_date{
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.post_wrapper .post_img img{
  transition:0.5s;
    filter: brightness(0.8);
}
.post_wrapper:hover .post_img img{
  transform:scale(1.05);
}
.post_wrapper .post_img:after {    
  position: absolute;
  content: "";
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #1f1f1f 100%);
  transition-duration: .3s;
  pointer-events: none;
}
.post_wrapper:hover .post_img:after {    
  position: absolute;
  content: "";
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.5)  100%);
  transition-duration: .3s;
}
.post_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition-duration: .3s;
}
.post_wrapper img {
  border-radius: 5px;
  overflow: hidden;
}
.post_wrapper a {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;  
  color: #fff;
  height: 56px;
}
.seo_text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-weight: 500;
  line-height: 157%;
  color: rgba(255, 255, 255, 0.8);
}
.seo_text_wrapper .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.seo_text_wrapper a {
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
}
footer a,
footer span {
  font-size: 14px;
  color: #fff;
}
.complex_link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_top_wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 80px;
  gap:40px;
}
.footer_top_wrapper > img {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 69%;
}
.footer_column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_column:first-child {
  gap: 25px;
  flex-shrink: 0;
}
.footer_column:first-child a {
  font-weight: 600;
}
.footer_column .column_header {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.footer_top_wrapper .logo {
  margin-bottom: 5px;
}
.footer_top_wrapper .logo img {
  width: 225px;
}
.footer_top_wrapper .logo img.mob_logo{
  display:none;
}
.footer_column:first-child ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contacts > li > a,
.contacts > li > span,
.footer_column > ul.f_nav_list > li a,
.footer_column > ul.f_nav_list > li span{
  font-size: 16px;
  color: #fff;
  padding: 5px 0px;
  display: flex;
  gap:10px;
  text-align: left;
  line-height: 150%;
}
.contacts > li > a.fv_all{
  font-size:14px;
}
.footer_column > ul.f_nav_list > li a:hover,
.contacts > li > a:hover{
  color:#C4A709;
}
.footer_column > ul{
  width:100%;
  gap:20px;
}
.footer_column .contacts > *,
.footer_column > ul.f_nav_list > * {
  width: 100%;
}
.footer_column:last-of-type > ul {
  max-height: unset;
}
.footer_column:nth-child(3) > ul {
 
}
.footer_column:nth-child(3) > ul a {
  display: block;
  max-width: 350px;
}
.footer_column a.view_all {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.footer_bottom_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 25px;
}
.footer_bottom_wrapper a,
.footer_bottom_wrapper span {
  font-size: 14px;
  font-weight: 400;
  color: #e3e3e3;
}
.footer_bottom_wrapper > a:last-child {
  display: block;
  margin-left: 88px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: right;
}
.footer_bottom_wrapper ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.breadcrumbs_wrapper {
  padding: 15px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  overflow-y: hidden;
  white-space: nowrap;
  gap: 36px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.breadcrumbs a {
  color: #808080;
}
.breadcrumbs li.active a > span {
  color: #fff;
  pointer-events: none;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs li:after {
  position: absolute;
  content: "";
  background-image: url("../img/breadcrumbs_chevron.svg");
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -26px;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.subcategories {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 20px;
}
.category_section .subcategories {
  margin-bottom: 40px;
}
.subcategories > li {
  width: calc(100% / 6);
}
#mobile_filter_open {
  display: none;
}
.catalog_wrapper {
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  border-top: 1px solid #252525;
}
.catalog_controls {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: flex-end;
  align-items: center;
}
.catalog_controls .sorting {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  width: 100%;
  justify-content: flex-end;
}
.availability_filter,
.sorting_filter{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.availability_filter{
  display:none!important;
}

.availability_filter .switch_small {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 25px;
}
.availability_filter .switch_small input {
  opacity: 0;
  width: 0;
  height: 0;
}
.availability_filter .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #E3E3E3;
  cursor: pointer;
  background-color: #FCFCFC;
}
.availability_filter .slider.round {
    border-radius: 34px;
}
.availability_filter .slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 2px;
  bottom: 2px;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  background-color: #0f0f0f;
  box-shadow: inset 0 0 8px 0 rgba(15, 15, 15, 0.3);
}
.availability_filter input:checked + .slider {
    background-color: #0f0f0f;
}
.availability_filter input:checked + .slider:before {
    -webkit-transform: translateX(23px);
    -ms-transform: translateX(23px);
    transform: translateX(23px);
    background:#fff;
}
.catalog_controls select {
  display: none;
}
.catalog_controls .chosen-container {
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  width: auto !important;
  color: #fff;
}
.catalog_controls .chosen-single {
  height: 38px;
  line-height: 38px;
  border: 1px solid #252525 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff;
  border-radius: 8px;
  padding-left: 14px;
}
.catalog_controls .chosen-search {
  display: none;
}
.catalog_controls .chosen-drop {
  border: none;
  padding-top: 5px;
  border-radius: 0;
  z-index:3;
}
.catalog_controls .sorting_wrapper .chosen-with-drop {
  box-shadow: 0px 0px 12px 0px rgba(28, 28, 27, 0.1);
}
.catalog_controls .chosen-results li {
  transition-duration: .3s;
  line-height: 20px;
  font-size: 14px;
}
.catalog_controls .chosen-results li.highlighted {
  background: transparent;
  color: #C4A709;
}
.catalog_controls .chosen-container-single .chosen-single span {
  margin-right: 42px;
  font-size:14px;
}
.catalog_controls .chosen-container-single .chosen-single div {
  width: 42px;
}
.catalog_controls .chosen-single div b {
  background: url("../img/chosen_caret.svg") center no-repeat !important;
  width: 42px;
  transition-duration: .3s;
}
.catalog_controls .chosen-with-drop .chosen-single div b {
  transform: scaleY(-1);
}
.catalog_controls .chosen-drop {
  background-color: #1f1f1f;
  border: 1px solid #252525;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.product_list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.product_list > li {
  width: calc(25% - 7.5px);
}
.catalog_wrapper .catalog_filter {
  align-self: flex-start;
  width: 230px;
  margin-right: 30px;
  flex-shrink: 0;
}
.catalog_wrapper .catalog_filter form{
  align-self: flex-start;
  width: 100%;
  display:flex;
  flex-direction:column;
  flex-shrink: 0;
}
.catalog_wrapper .catalog_filter .filter_header {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-bottom: 1px solid #252525;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.catalog_wrapper .catalog_filter .filter_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition-duration: .3s;
  cursor: pointer;
}
.catalog_wrapper .filter_item:first-child .filter_item_head {
  padding-top: 0;
}
.catalog_wrapper .catalog_filter .filter_item_body {
  padding-bottom: 20px;
}
.catalog_wrapper .filter_item_head span {
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
  overflow: hidden;
}
.catalog_wrapper .catalog_filter .filter_item_head svg {
  flex-shrink: 0;
  transition-duration: .3s;
}
.catalog_wrapper .filter_item_head.collapsed svg {
  transform: scaleY(-1);
}
.catalog_wrapper .catalog_filter .price_input_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 13px;
}
.catalog_wrapper .price_input_wrapper input {
  width: calc(50% - 4px);
  padding: 0 10px;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  background: transparent;
  border: 1px solid #252525;
  border-radius: 3px;
}
#filter_price_range {
  height: 4px;
  border-radius: 2px;
  border-color: #252525;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button, html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  cursor: pointer;
  border-radius: 100%;
  background-color: #C4A709;
  width: 22px;
  height: 22px;
  border: none;
  top: -9px;
}
.ui-widget.ui-widget-content {
  border: none;
}
.ui-slider-horizontal .ui-slider-range {
  background-color: #AD3635;
  height: 4px;
  top: -1px;
}
.filter_price_range .range_slider_left {
  transform: translateX(8px);
  box-shadow: 2px 0 2px 0 #1f1f1f;
}
.filter_price_range .range_slider_right {
  transform: translateX(-8px);
  box-shadow: -2px 0 2px 0 #1f1f1f;
}
.catalog_wrapper .filter_item ul {
  max-height: 281px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
  padding-bottom:5px;
}
.catalog_wrapper .filter_item_body ul::-webkit-scrollbar-track-piece {
  background-color: #252525;
  border-radius: 10px;
}
.catalog_wrapper .filter_item_body ul::-webkit-scrollbar-track {
  background-color: #252525;
  border-radius: 10px;
}
.catalog_wrapper .filter_item_body ul::-webkit-scrollbar-thumb {
  background-color: #C4A709;
  border-radius: 10px;
}
.catalog_wrapper .filter_item_body ul::-webkit-scrollbar-corner {
  background-color: #C4A709;
}
.catalog_wrapper .filter_item_body ul::-webkit-scrollbar {
  width: 4px;
}
.catalog_wrapper .filter_item ul li {
  margin-bottom: 15px;
  position: relative;
}
.catalog_wrapper .filter_checkboxes li:last-child {
  margin-bottom: 0;
}
.catalog_wrapper .filter_checkboxes li input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.catalog_wrapper .filter_checkboxes li label {
  display: flex;
  width: 100%;
  padding-left: 33px;
  cursor: pointer;
  transition-duration: .3s;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap:10px;
}
.catalog_filter_text{
  display:flex;
  flex-direction:column;
  width:calc(100% - 30px);
}
.catalog_filter_count{
  border-radius: 2px;
  padding: 4px 4px;
  display: flex;
  flex-direction: column;
  width: max-content;
  font-size: 12px;
  line-height: 100%;
  font-weight:500;
  color: #eee;
}
.catalog_wrapper .filter_checkboxes li.disabled_filter label{
  cursor: not-allowed;
  opacity: 0.5;
}
.catalog_wrapper .filter_checkboxes li label:before {
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  position: absolute;
  border: 1px solid #C1C1C1;
  border-radius: 2px;
  content: "";
  transition: .3s;
}
.catalog_wrapper .filter_checkboxes li input:checked + label:before {
  border-color: #C4A709;
}
.catalog_wrapper .filter_checkboxes label:hover:before {
  border-color: #C4A709;
}
.catalog_wrapper .filter_checkboxes li input:checked + label:after {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  left: 5px;
  top: 7.5px;
  background: url(../img/checkbox_tick_n.svg) center no-repeat;
  background-size: contain;
}
.catalog_filter .buttons_wrap {
  display: none;
}
.catalog_list_wrapper {
  width: 100%;
}
.product_list_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.product_list_controls .load_more {
  display: block;
  padding: 10.5px 18px;
  border-radius: 5px;
  background-color: #C4A709;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}
.load_more.load_more_disabled{
  pointer-events: none;
  cursor:not-allowed;
  opacity:0.7;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pagination li > * {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #303030;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.pagination span.skip {
  background-color: transparent;
}
.pagination .active a,
.pagination .active span {
  background-color: #C4A709;
}
.pagination span {
  cursor: default;
}
.pagination li.disabled > * {
  cursor: not-allowed;
  opacity: 0.3;
}
.product_section_top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 5px;
}
.product_gallery {
  position: relative;
  flex-shrink: 0;
  max-width: 536px;
  overflow: hidden;
}
.product_main_slider {
  width: 536px;
  height: 536px;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.product_main_slider li {
  position: relative;
  width: 100%;
  height: 536px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #fff;
}
.product_main_slider li:after,
.product_nav_slider li:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 5px 1px #000;
  background: rgba(217, 217, 217, 0.01);
  pointer-events:none;
}
.product_nav_slider li:after {
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  bottom: -1.5px;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.product_nav_slider li.slick-current:after {
  background-color: transparent;
}
.product_main_slider li img,
.product_nav_slider li img {
  max-width: 100%;
  max-height: 100%;
}
.product_nav_slider {
  margin: 0 -5px;
  margin-top: 10px;
}
.product_gallery .product_nav_slider li {
  position: relative;
  height: 80px !important;
  width: 80px !important;
  margin: 0 5px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 2.5px;
  border: 1.5px solid #1f1f1f;
  overflow: hidden;
  transition-duration: .3s;
  background-color: #fff;
}
.product_nav_slider li.slick-current,
.product_gallery .product_nav_slider li:hover {
  border-color: #C4A709;
}
.product_main_slider .slick-arrow {
  width: 44px;
  height: 44px;
  top: calc(50% - 22px);
  background: rgba(0, 0, 0, 0.1);
}
.product_main_slider .slick-arrow:hover{
  background: rgba(0, 0, 0, 0.5);
}
.product_main_slider .slick-prev_arrow {
  left: 10px;
}
.product_main_slider .slick-next_arrow {
  right: 10px;
}
.product_info_column {
  width: 100%;
}
.product_info_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 500;
  color: #808080;
}
.rating_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product_section_top .price {
  font-size: 26px;
  font-weight: 600;
}
.product_section_top .old_price {
  font-size: 22px;
  font-weight: 500;
}
.cashback {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  position:relative;
}
.cashback b {
  font-weight: 600;
}
.product_wrap .cashback{
  font-size:12px;
}
.product_options_outer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.product_options_wrap span {
  margin-bottom: 10px;
  font-weight: 500;
  color: #808080;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.product_options_wrap span .size_active{
  margin-bottom:0px;
  color: #fff;
}
.product_section_top .product_options {
  width: auto;
}
.product_section_top .product_options:after {
  display: none;
}
.product_section_top .buttons_wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
}
.product_section_top .buttons_wrap > div {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #808080;
}
.product_section_top .counter_wrap {
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #303030;
  overflow: hidden;
}
.product_section_top .counter_wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #303030;
}
.counter_wrap button.disabled {
  cursor: default;
}
.counter_wrap button.disabled svg path {
  stroke: #9C9C9C;
}
.product_section_top .counter_wrap input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  color: #fff;
}
.product_section_top .buttons_wrap > div:last-child {
  gap: 5px;
}
.product_section_top .buttons_wrap > div:last-child a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 3px;
  background-color: #303030;
  color: #fff;
  box-shadow:inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.product_section_top .buttons_wrap > div:last-child a:first-child {
  padding: 10px 50px;
  background-color: #c4a709;
}
.product_section_top .buttons_wrap > div:last-child a:last-child {
  padding: 10px;
}
.product_section_top .tab_wrapper {
  margin-top: 30px;
}
.tab_wrapper > ul {
  display: flex;
  align-items: center;
}
.product_section_top .tab_wrapper > ul li {
  flex: 1;
}
.tab_wrapper > ul li a {
  display: block;
  font-weight: 500;
  color: #B7B7B7;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  text-align: center;
  transition: font-weight 0s, color .3s, border-color .3s;
}
.product_section_bottom .tab_wrapper > ul li a {
  padding-left: 50px;
  padding-right: 50px;
}
.tab_wrapper > ul li.active a,
.tab_wrapper > ul li a:hover {
  font-weight: 600;
  color: #fff;
  border-color: #C4A709;
}
.tab_wrapper .tab_content {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #252525;
  margin-top: -1px;
}
.tab_wrapper .tab_content.active {
  display: block !important;
}
.product_section_bottom .tab_content {
  padding-top: 20px;
}
.tab_content li {
  padding: 2px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.product_section_top .tab_content > a {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.product_section_top .tab_content li span {
  flex: 1;
}
.product_section_top .tab_content li span:first-child img,
.product_section_top .tab_content li span:first-child svg{
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 5px;
  width: 60px;
}
.product_section_top .tab_content .free {
  color: #01b30a;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product_section_top .tab_content .free .from_f{
  display: flex;
  flex-direction: column;
  flex: auto;
  width: max-content;
  flex-grow: initial;
}
.product_section_top .tab_content .free .from_f p{
  display: flex;
  flex-direction: column;
  width: max-content;
  color:#fff;
}
.product_section_top .tab_content .free .from_f p.from_f_i{
  color: #01b30a;
}
.product_section_top .payment_info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.product_section_top .payment_info li:last-child {
  margin-bottom: 0;
}
.tab_content .text_wrapper {
  line-height: 21px;
}
.tab_content .text_wrapper .subtitle {
  font-weight: 600;
}
.product_section_bottom {
  margin-top: 40px;
}
.product_section_bottom .specs{
  max-width:600px;
}
.product_section_bottom .specs li{
  justify-content:space-between;
}
.product_section_bottom .specs,
.product_section_bottom .availability_list {
  border-radius: 3px;
  border: 1px solid #252525;
}
.product_section_bottom .specs li,
.product_section_bottom .availability_list li {
  padding: 10px 15px;
  gap: 20px;
  border-top: 1px solid #252525;
}
.product_section_bottom .availability_list li {
  gap: 10px;
}
.product_section_bottom .specs li:first-child,
.product_section_bottom .availability_list li:first-child {
  border-top: none;
}
.product_section_bottom .specs li:nth-child(odd),
.product_section_bottom .availability_list li:nth-child(odd) {
  background-color: #171717;
}
.product_section_bottom .specs li span:first-child {
  width: 188px;
  flex-shrink: 0;
  font-weight:600;
}
.product_section_bottom .availability_list li a:first-child,
.product_section_bottom .availability_list li span:first-child {
  width: 260px;
  text-wrap: auto;
}
.product_section_bottom .availability_list li a:first-child p,
.product_section_bottom .availability_list li span:first-child p{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  white-space: normal;
  text-decoration:none;
  color: #fff;
  text-wrap: auto;
}
.product_section_bottom .availability_list li a:hover p,
.product_section_bottom .availability_list li a:hover p b,
.product_section_bottom .availability_list li a:hover{
  text-decoration:underline;
}
.product_section_bottom .availability_list li a:first-child p b,
.product_section_bottom .availability_list li span:first-child p b{
  font-weight:600;
}
.product_section_bottom .availability_list li a,
.product_section_bottom .availability_list li span {
  width: 125px;
  flex-shrink: 0;
}
.product_section_bottom .availability_list .stock {
  color: #01B30A;
}
.product_section_bottom .tab_content > a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
}
.text_wrapper.contained {
  display: -webkit-box;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.text_wrapper.contained.expanded {
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset;
}
.tab_content.availability_tab {
  overflow-y: auto;
}
.availability_list {
  white-space: nowrap;  
  width: min-content;
  min-width: 100%;
}
.info_popup_wrap {
  position: relative;
  display: inline-block;
  margin-left: auto;
}
.info_popup_wrap > svg {
  margin-bottom: -5px;
}
.info_popup_wrap .popup_content {
  position: absolute;
  right: -32px;
  bottom: calc(100% + 30px);
  z-index: 3;
  min-width: 450px;
  padding: 10px;
  border-radius: 3px;
  background-color: #F6F6F6;
  opacity: 0;
  transition-duration: .3s;
  pointer-events: none;
}
.info_popup_wrap .popup_content p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #1f1f1f;
}
.info_popup_wrap .popup_content p:last-child {
  margin-bottom: 0;
}
.popup_content:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  right: 25px;
  bottom: -25px;
  background-image: url(../img/info_popup_corner.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.info_popup_wrap:hover .popup_content {
  opacity: 1;
  pointer-events: unset;
}
.reviews > li {
  border-bottom: 1px solid #252525;
}
.reviews > li:last-child {
  border-bottom: none;
}
.reviews > li:nth-child(even) {
  background-color: #171717;
}
.reviews .review_wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}
.reviews .product_recall{
  width: 100px;
  position: relative;
  cursor: pointer;
}
.reviews .product_recall img{
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 100%;
}
.reviews .product_recall:hover{
  opacity:0.7;
}
.reviews .review_wrap > span {
  display: block;
  width: 182px;
  flex-shrink: 0;
  font-weight: 500;
}
.reviews .review_wrap > div{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
.reviews .review_wrap > div span.pub_date {
  color: #808080;
}
.reviews .review_wrap .review_star_list {
  margin: 15px 0;
}
.reviews .review_wrap p {
  font-weight: 500;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
.product_section_bottom .section_header a {
  border-radius: 3px;
  padding: 10px 50px;
  background-color: #c4a709;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  box-shadow:inset 0 0 8px 0 rgb(0 0 0 / 30%);
}


/* hovers  */
#main_menu ul:not(.lang_options) .active > span, 
#main_menu ul:not(.lang_options) .active > a,
header a:hover,
#main_menu a:hover,
.post_wrapper a:hover,
.section_header a:hover,
footer a:hover,
.product_options a:hover,
.breadcrumbs a:hover,
.seo_text_wrapper a:hover,
.catalog_wrapper .catalog_filter .filter_item_head:hover,
.catalog_filter .buttons_wrap > a:first-child:hover,
.product_section_top .buttons_wrap > div:last-child a:nth-child(n + 2):hover {
  color: #C4A709;
}
#header_cart_link:hover {
  color: #fff;
}
footer .socials a svg{transition:0.5s;}
footer .socials a:hover svg{
  transform:scale(1.2);
}
header a:hover svg path,
header button:hover svg path{
  fill: #C4A709;
}
.h_search_form button:hover svg path,
#main_menu a:hover svg path,
#main_menu button:hover svg path,
.section_header a:hover svg path,
footer a.complex_link:hover svg path,
.catalog_wrapper .catalog_filter .filter_item_head:hover svg path,
#mobile_filter_close:hover svg path,
.product_section_top .counter_wrap button:not(.disabled):hover svg path,
.product_section_top .buttons_wrap > div:last-child a.active:nth-child(n + 2) svg path,
.product_section_top .buttons_wrap > div:last-child a:nth-child(n + 2):hover svg path {
  fill: unset;
  stroke: #C4A709;
}
#main_menu #header_account_link:hover,
.product_list_controls .load_more:hover,
.product_section_bottom .section_header a:hover {
  background-color: #A68E09;
  color: #fff;
}
.product_wrap .product_cart_link:hover,
#mobile_filter_open:hover,
.catalog_filter .buttons_wrap > a:last-child:hover,
.product_section_top .buttons_wrap > div:last-child a:first-child:hover {
  background-color: #A68E09;
  box-shadow:inset 0 0 8px 0px rgb(15 15 15 / 30%);
}
.product_slider .slick-list{
  padding: 15px 0px;
}
.product_wrap:hover {
  background-color: #202020;
  box-shadow: 0 3px 12px 1px rgba(211, 211, 211, 0.25);
}
.category_slider_f a:hover .image_wrapper:after, 
.category_slider_f a:hover .image_wrapper:before, 
.category_slider a:hover .image_wrapper:after, 
.category_slider a:hover .image_wrapper:before, 
.product_wrap:hover .product_bottom_wrap:after,
.subcategories a:hover .image_wrapper:after {
/*  background: linear-gradient(to right, rgba(32, 32, 32, 0) 0%, rgba(32, 32, 32, 1) 100%);*/
  opacity: 0;
}
.review_slider li .review_wrap{
  max-width:480px;
}
.review_slider .review_wrap:hover {
  background-color: rgba(155, 155, 155, 0.8);
}
.review_slider .review_wrap .name,
.review_slider .review_wrap p{
  transition:0.5s;
}
.review_slider .review_wrap:hover .name,
.review_slider .review_wrap:hover p{
  color: #000000;
}
.brand_slider a:hover {
  background: rgba(155, 155, 155, 0.7);
}
.brand_slider a img{
  transition:0.5s;
}
.brand_slider a:hover img{
  transform:scale(1.05);
}
.category_slider_f a:hover .image_wrapper:before,
.category_slider a:hover .image_wrapper:before{
  opacity: 1;
}
.pagination li:not(.disabled) a:hover {
  background-color: #404040;
}
.catalog_filter .buttons_wrap > a:first-child:hover {
  border-color: #C4A709;
  color:#000;
}
/* end hovers */

.video-container {
  position: relative;
  width: 100%; 
  min-height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.video-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.video-container video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-container:hover img {
  opacity: 0;
}
.video-container:hover video {
  opacity: 1;
}
.scroll_top{
  width: 42px;
  height: 42px;
  z-index: 15;
  background: rgb(255 255 255 / 30%);
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor:pointer;
  opacity:0.8;
  transition:0.5s;
}
.scroll_top:hover{
  opacity:1;
}
.video_wrapper{
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index:1;
  left:0px;
  top:0px;
}
.video_wrapper video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
main .order_form_wrap{
  background: #1f1f1f;
}
.disnone{
  display: none;
}
.sitemap{
  max-width: 800px;
  margin: 0px 0px;
}
.sitemap ul > li{
  margin-left: 20px;
  position: relative;
}
.sitemap li:before{
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 8px;
  left: -12px;
  background: #1d1d1b;
  background-size: 100%;
  transition: 0.5s;
  border-radius: 50%;
}
.sitemap li:hover:before{
  left: -18px;
}
.sitemap a,
.sitemap span{
  color: #000000;
  text-decoration: none;
}
.sitemap a:hover{
  color: #1d1d1b;
}

.content h1{
  width: 100%;
  float: left;
  font-weight: bold;
  line-height: normal;
  font-size: 26px;
  font-weight:600;
  margin-bottom: 15px;
  position: relative;
  line-height: 1.2;
  margin-bottom:15px;
}
.content h2 strong,
.content h2 b,
.content h2{
  width: 100%;
  float: left;
  font-weight:600;
  font-size: 22px;
  position: relative;
  line-height: 1.2;
  margin-bottom:15px;
}
.content h3 strong,
.content h3 b,
.content h3{
  width: 100%;
  float: left;
  font-weight:600;
  font-size: 20px;
  position: relative;
  line-height: 1.2;
  margin-bottom:15px;
}
.content h4 strong,
.content h4 b,
.content h4{
  line-height: normal;
  font-size: 20px;
  position: relative;
  margin-bottom:15px;
  line-height: 1.2;
  font-weight:600;
}
.content h5 strong,
.content h5 b,
.content h5{
  line-height: normal;
  font-size: 18px;
  font-weight:600;
  position: relative;
  line-height: 1.2;
  margin-bottom:15px;
}
.content a,
.content i,
.content strong,
.content b,
.content div,
.content span,
.content{
  line-height: 18px;
  font-size: 14px;
}

.content p{
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 10px;
}
.content strong,
.content b{
  font-weight: bold;
}
.content i{
  font-style: italic;
}
.content a{
  color: #C4A709;
  text-decoration: underline;
}
.content a:hover{
  color: #C4A709;
  text-decoration: none;
}


.content table{
  width:100%!important;
  margin:0px;
  max-width: 100%;
}
.content table tr th{
  border: none;
  padding: 8px 10px;
}
.content table tr td{
  border:none;
  padding: 8px 10px;
  border: 1px solid #252525;
}


.content table tr{
  color: #fff !important;
}
.content table tr:nth-child(even){
  background: #171717;
  color: #fff !important;
}
.content table tr th:nth-child(1),
.content table tr td:nth-child(1){
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #fff !important;
}

.content table tr th:nth-child(2),
.content table tr td:nth-child(2){
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff !important;
}

.content img{
  max-width: 100%!important;
  height: auto;
}
.content h1{
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 10px;
}
.content ul{
  list-style: disc;
  margin-left: 20px;
}
.content ol{
  list-style: auto;
  margin-left: 20px;
}

.content ul li,
.content ol li{
  width: 100%;
  float: left;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
  display: list-item;
}
.content ul li p,
.content ol li p{
  margin-bottom: 0px;
}
.content ul li > ul{
  margin-top:10px;
  list-style: auto;
  margin-left: 20px;
  list-style: circle;
}
.delivery_info_p{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 10px;
  background: #1f1f1f;
  border-radius: 5px;
  margin-bottom: 10px;
  gap: 10px;
}
.delivery_info_p p:first-child{
  flex-direction: row;
  align-items: center;
  display: flex;
  gap: 8px;
}
.delivery_info_p p,
.delivery_info_p b,
.delivery_info_p strong{
  margin-bottom:0px!important;
}

.price_range {
  position: relative;
  margin-top: 30px;
}
#review_popup{
  position: fixed;
  top: 138px;
  width: 460px;
  margin-left: -230px;
  background: #1f1f1f;
  border-radius: 5px;
  left: 50%;
  padding: 15px 20px;
  z-index: 333;
  text-align: center;
  display: none;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 30%);
}
#login{
  position: fixed;
  top: 138px;
  width: 460px;
  margin-left: -230px;
  background: #1f1f1f;
  left: 50%;
  padding: 20px;
  padding-top: 40px;
  z-index: 333;
  text-align: center;
  display: none;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 30%);
  border-radius:10px;
}
.popup_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form_header {
  display: block;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  color: #C4A709;
}
#login.active{
  display: block;
}

.registration_text,
.to_forget_pass {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #747474;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.to_login,
.registration_text .to_registration{
  margin:0px!important;
}
.find_cheaper_thanks,
.franchising_thanks,
.one_click_thanks {
  display: none;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  align-items: center;
  color: #c4a709;
  font-weight: 500;
  font-size: 20px;
  margin: 15px auto;
  text-align: center;
}
.pop_title_holder {
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}
.recall_form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.pop_title {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    line-height: 28px;
}
.form_b{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form_b_rating{
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.form_b label{
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 20px;
  font-size: 14px;
}
.to_forget_pass,
.to_login, .to_registration{
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #000000;
  text-decoration: underline;
}
.to_forget_pass:hover,
.to_login:hover,
.to_registration:hover{
  text-decoration:none;
}
.form_b_submit {
  background: #C4A709;
  color: #fff;
  height: 45px;
  width: 100%;
  min-width: auto;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow:inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.form_b_submit:hover {
  background-color: #A68E09;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
  color: #fff;
}

.prove_profile{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.prove_profile input{
  width: auto!important;
}
.call_prove_d{
  background: #C4A709;
  color: #fff;
  border: 1px solid #C4A709;
  padding: 10px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  text-align: center;
  margin: 0px 2px 2px 0px;
  font-size: 14px;
}
.call_prove_d:hover{


  text-decoration:none;
  opacity:0.8;
}
.call_prove{
  background: #C4A709;
  color: #fff;
  border: 1px solid #C4A709;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  text-align: center;
  margin: 0px 2px 2px 0px;
  font-size: 12px;
}
.call_prove:hover{
  text-decoration:none;
  opacity:0.8;
}

.user_info_form .input label{
  color: #181818;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  margin-bottom: 5px;
}
.user_info_block{
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.user_info_block p small{
  color: #000000;
}

.catalog_available{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-left: 20px;
}
.catalog_available label{
  font-size: 14px;
  margin-left: 10px;
}
.switch_t{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
input.available-switch {
  position: relative;
  cursor:pointer;
  -webkit-appearance: none;
  outline: none;
  width: 44px;
  height: 24px;
  background-color: #333;
  border: 1px solid #D9DADC;
  border-radius: 50px;
  box-shadow: inset -20px 0 0 0 #fff;
}

input.available-switch:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

input.available-switch:checked {
  box-shadow: inset 20px 0 0 0 #C4A709;
  border-color: #C4A709;
}

input.available-switch:checked:after {
  left: 20px;
  box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}
.auth_switcher{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 10px;
  color: #fff;
  border-radius: 7px;
}
.auth_switcher label,
.auth_switcher input{
  cursor:pointer;
}
.main_form_section{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.form_login_type{
  display:none;
}
.form_login_type.active{
  display: flex;
  flex-direction: column;
  gap:10px;
  width: 100%;
}
.smscode_i{
  display:none;
}
.smscode_i.active{
  display: flex;
  flex-direction:column;
  width:100%;
}
.smscode_i p{
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

#callback .success_text{
  display: none;
  text-align: center;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #C4A709;
  line-height: 20px;
  margin: 36px auto;
  font-weight: bold;
  font-size: 17px;
  padding: 20px 20px;
}
#login input{
  outline: none!important;
}
.main_form_item{
  width: 100%;
  float: none;
  max-width: 100%;
  margin: 10px auto 10px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.main_link{
  width: max-content;
  background-color: #C4A709;
  height: max-content;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  min-height: 40px;
  box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.main_link:hover{
  background-color: #A68E09;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
}
.main_link.hide_adding{
  background-color: #1f1f1f;
  color: #fff;
  border: 1px solid #707070;
}
.main_link.hide_adding:hover{
  background: #C4A709;
  color: #fff;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
}
#login .popup_title{
  color: #333;
  font-size: 22px;
  margin: 5px auto;
}
#login .login_title{
  font-size: 18px;
  color: #333;
  line-height: 30px;
}
#login .forms_but{
  margin-top: 10px;
}
#login .submit_but{
 border-radius: 22px;
 padding: 14px 30px;
 width: 415px;
 background: #C4A709;
 font-weight: 700;
 font-size: 14px;
 color: #fff;
}
#login .submit_but:hover {
  box-shadow: none;
  background-color: #C4A709;
}
.to_login, .to_registration, .to_forget_pass {
  padding: 0;
  margin: 0;
  margin-top: -5px;
  font-size: 14px;
  font-weight: 500;
  color: #B7B7B7;
  float: right;
  border: none;
  text-align: center;
  text-decoration: underline;
  display: inline-block;
  width: auto;
  vertical-align: top;
  text-align:left;
/*  border-bottom: 3px solid transparent;*/
}
.to_login.active, 
.to_registration.active, 
.to_forget_pass.active,
.to_login:hover, 
.to_registration:hover, 
.to_forget_pass:hover{
  color: #C4A709;
  /*background: none;
  border-bottom: 3px solid #C4A709;
  text-decoration: none;*/
}
.registration_gp_form .login_title,
.registration_vk_form .login_title,
.registration_fb_form .login_title,
.registration_ok_form .login_title{
  font-size: 18px;
}
.thanks_text_registration_gp,
.thanks_text_registration_ok,
.thanks_text_registration_fb,
.thanks_text_registration_vk{
  display: none;
  text-align: center;
  width: 100%;
  color: #1d1d1b;
  font-size: 18px;
}
.thanks_text_registration_gp p,
.thanks_text_registration_ok p,
.thanks_text_registration_fb p,
.thanks_text_registration_vk p{
  text-align: center;
  color: #1d1d1b;
  font-size: 18px;
}
.thanks_text_registration,
.thanks_text_forget{
  display: none;
  text-align: center;
  width: 100%;
  overflow: hidden;
  color: #C4A709;
  background: transparent;
  line-height: 20px;
  margin: 32px auto;
  font-weight: 500;
  font-size: 17px;
  padding: 20px 20px;
}
.thanks_text_registration p,
.thanks_text_forget p{
  margin: 0px;
}
.registration_form{display:none}
.forget_form{display:none}

#product_view{
  display: none;
}



#about,
#delivery,
#sizetable,
#order_info {
  background: #fff;
  display: none;
  padding: 15px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -350px;
  width: 700px;
  z-index: 2002;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #444;
}
#about .content,
#delivery .content,
#sizetable .sizetable,
#order_info .order_products{
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
}
#order_info .order_products thead tr:first-child{
  border-bottom: 2px solid #444;
}
#order_info .order_products tbody tr{
  border-bottom: 1px solid #444;
}
#order_info .order_products tbody tr:last-child{
  border-bottom: 2px solid #444;
}
#order_info .order_products .td_1{
  width: 75px;
  height: 75px;
}
#order_info .order_products .td_1 a{
  width: 75px;
  height: 75px;
}
#order_info .order_products .td_2{
  width: 300px;
}
#order_info .order_products .td_2 a{
    font-size: 15px;
    color: #444;
}
#order_info .price_op{
    text-align: center;
    color: #444;
    font-size: 15px;
    padding: 0px 0px;
    margin: 0 auto;
    overflow: hidden;
    display: block;
}
#order_info thead tr th,
#order_info thead tr td{
    font-size: 15px;
    color: #444;
}
#order_info tr th,
#order_info tr td{
  text-align: center;
  padding: 5px 10px;
  vertical-align: middle;
}
#order_info tr .tfoot_1{
  text-align: left;
    font-size: 24px;
    color: #444;
}
#order_info .quantity{
    font-size: 17px;
    color: #444;
}
#order_info .sum_price{
    text-align: center;
    color: #444;
    font-size: 17px;
}
#order_info .td_5{
  width: 220px;
}
#order_info tfoot p{
  font-weight: bold;
  font-size: 20px;
}
#success_adding .pop_close{
  z-index:3;
}
#find_cheaper,
#one_click_modal,
#callback,
#success_adding_compare,
#success_adding_wish{
  background: #1f1f1f;
  display: none;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -250px;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 30%);
  width: 500px;
  z-index: 127;
  text-align: center;
  border-radius:5px;
}
#success_adding{
  background: #1f1f1f;
  display: none;
  padding: 20px;
  position: fixed;
  top: 100px;
  left: 50%;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 30%); 
  width: 700px;
  margin-left:-350px;
  z-index: 127;
  max-height: calc(100vh - 200px);
  overflow:hidden;
  text-align: center;
  border-radius:5px;
}

#find_cheaper p,
#one_click_modal p,
.popup_name,
#callback p,
#success_adding_compare p,
#success_adding_wish p,
#success_adding p{
  margin-top:5px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

#alert{
  background: #1d1d1b;
  display: none;
  padding: 15px 15px;
  position: fixed;
  top: 100px;
  right: 50px;
  max-width: 100%;
  z-index: 99999;
  text-align: left;
  opacity: 0.9;
}
#alert p{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
#notify{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  margin-top: -80px;
  margin-left: -250px;
  background: #fff;
  padding: 10px 15px;
  z-index: 999;
  text-align: center;
}
#notify .popup_title{
  font-size: 22px;
  line-height: 40px;
  font-weight: 600;
}
#notify .success_text{
  display: none;
  text-align: center;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #C4A709;
  line-height: 20px;
  margin: 36px auto;
  font-weight: bold;
  font-size: 17px;
  padding: 20px 20px;
}
#notify .submit_notify{
  margin-top: 10px;
  font-size: 18px;
}



#preload{
  display: none;
  background: rgba(0,0,0, 0.7);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}
#preload #loaderImage,
#preload img{
  top: 50%;
  position: fixed;
  left: 50%;
  margin-left: -64px;
  margin-top: -64px;
}
.error_input{
  background: #fffcfc!important;
  border: 1px solid #ED1C24!important;
}
.pwd_thanks_text,
.profile_thanks_text,
.thanks_text{
  text-align: center;
  font-size: 20px;
  display: none;
  color: #fff;
  font-weight: 500;
  margin: 20px auto;
}

#promo_percent{
  margin: 15px;
  font-size: 18px;
  display: inline-block;
}
#promo_percent span{
  background: #1d1d1b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}





.match_container {
  position: absolute;
  right: 0;
  top: 50px;
  background-color: #fff;
  border: 1px solid #dadada;
  overflow: hidden;
  width: 100%;
  z-index: 99999;
  display: none;
}
.search_container ul{
  padding: 5px 10px 5px 10px;
}
.search_container ul li{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  margin: 5px auto;
  padding: 5px;
}

.search_container ul li a{
  vertical-align: top;
  width: 100%;
  display: inline-block;
}
.search_container ul .match_product_img{
  position: relative;
  display: inline-block;
  top: auto;
  right: auto;
  left: auto;
  text-align: left;
  width: 60px;
  margin-right: 10px;
}
.search_container ul .match_product_name{
    position: relative;
    display: inline-block;
    color: #333;
    right: auto;
    vertical-align: top;
    left: auto;
    top: auto;
    margin: 0px;
    padding: 0px;
    font-size: 13px;
    width: 180px;
    padding-top: 0px;
    max-height: 50px;
    overflow: hidden;
}


.search_container ul li:hover{
  background: #dadada;
}
#overflow_1 {
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
#phone_fastbuy{
  vertical-align: middle;
}
.product_to_reserv,
.product_to_basket_fast{
  margin-top: 10px;    
  background: #1f1f1f;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.product_to_reserv p,
.product_to_basket_fast p{
  color: #181818;
}

.fs_search{
  border: 1px solid #ddd;
  padding: 15px;    
  box-shadow: 0px 0px 2px 0px rgba(165, 199, 22, 0.5);
}
.fs_search form{
  text-align: center;
}
.fs_search .filter_row{
  width: 22%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.social_auth{
  text-align: center;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.social_auth li{
  display: inline-block;
}
.social_auth li span,
.social_auth li a{
  color: #000;
  display: inline-block;
  vertical-align: top;
  line-height: 32px;
  margin: 5px;
}

.social_auth li span{
  margin-right: 10px;
}
.social_auth li a.gp_auth,
.social_auth li a.fb_auth{
  display: block;
  width: 32px;
  height: 32px;
  background: #f5f5f5;
}
.social_auth li a.gp_auth:hover,
.social_auth li a.fb_auth:hover{
  background: #C4A709;
  color: #fff;
  text-decoration: none;
}
.pop_close{
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 22px;
  width: 32px;
  text-align: center;
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  transition:0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pop_close svg path{
  stroke: #fff;
}
.pop_close:hover svg path{
  stroke: #C4A709;
}
.pop_close:hover{
  color: #C4A709; 
}
#overflow{
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  overflow: hidden;
  z-index: 106;
  overflow: auto;
  overflow-y: none;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(13.300000190734863px);
  backdrop-filter: blur(13.300000190734863px);
  transition-duration: .3s;
}
.form_delivery_types{
  border: 1px solid transparent;
  margin-bottom: 10px;
}
.form_delivery_types.error_types{
  background: #fccdce!important;
  border: 1px solid #cc0707!important;
  border-radius: 5px!important;
}

.profile_add_delivery{
  display:none!important;
}
.profile_add_delivery.active{
  display: flex!important;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cabinet_tabs .c_title{
  font-size: 22px;
  line-height: 42px;
  margin-top: 5px;
  color: #fff;
  margin-bottom: 10px;
}
.cabinet_menu .cabinet_menu_link{
  font-size: 16px;
  color: #fff;
  border: 1px solid #333333;
  background:#1f1f1f;
  vertical-align: top;
  width: 100%;
  line-height: 20px;
  height: 75px;
  padding: 25px 10px;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cabinet_menu .cabinet_menu_link span{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cabinet_menu .cabinet_menu_link::before{
  content: " ";
  display: inline-block;
  width: 3px;
  height: 75px;
  background:#C4A709;
  position: absolute;
  top: 0px;
  left: 0px;
  transition:0.5s;
}
.wish_in{
  padding-bottom:50px;
}
.cabinet_menu .cabinet_menu_link:focus,
.cabinet_menu .cabinet_menu_link:active,
.cabinet_menu .cabinet_menu_link:hover,
.cabinet_menu .cabinet_menu_link.active{
  text-decoration: none;
  background: #C4A709;
  color: #fff;
}
.cabinet_menu .cabinet_menu_link:focus::before,
.cabinet_menu .cabinet_menu_link:active::before,
.cabinet_menu .cabinet_menu_link:hover::before,
.cabinet_menu .cabinet_menu_link.active::before{
  background:#C4A709;
}
.cabinet_menu .cabinet_menu_link svg{
  margin-right: 15px;
  margin-left: 10px;
}
.cabinet_menu .cabinet_menu_link span svg path,
.cabinet_menu .cabinet_menu_link span svg path,
.cabinet_menu .cabinet_menu_link span svg path,
.cabinet_menu .cabinet_menu_link span svg path{
    fill: #fff;
}
.cabinet_menu .cabinet_menu_link:focus span svg path,
.cabinet_menu .cabinet_menu_link:active span svg path,
.cabinet_menu .cabinet_menu_link:hover span svg path,
.cabinet_menu .cabinet_menu_link.active span svg path{
    fill: #fff;
}
.cabinet_menu .cabinet_menu_link span svg.cb_icon path,
.cabinet_menu .cabinet_menu_link span svg.cb_icon path,
.cabinet_menu .cabinet_menu_link span svg.cb_icon path,
.cabinet_menu .cabinet_menu_link span svg.cb_icon path{
  fill:inherit;
  stroke: #fff;
}
.cabinet_menu .cabinet_menu_link:focus span svg.cb_icon path,
.cabinet_menu .cabinet_menu_link:active span svg.cb_icon path,
.cabinet_menu .cabinet_menu_link:hover span svg.cb_icon path,
.cabinet_menu .cabinet_menu_link.active span svg.cb_icon path{
  fill:inherit;
  stroke: #fff;
}

.cabinet_tab{
  display: none;
  overflow: hidden;    
  border-radius: 10px;
  border: 1px solid #333;
  padding: 30px 20px;
  background: #1f1f1f;
}
.cabinet_tab.active{
  display: block;
}

.c_tab_title{
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 20px;
}

.personal_cabinet .c_title{
  font-size: 18px;
  margin: 15px auto;
  color: #C4A709;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.clr{
  display: block;
  width: 100%;
  clear: both;
}
.user_info_form{
  margin-bottom: 40px;
}
.call_add_delivery{
  background: #c4a709;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  border-radius: 3px;
  padding: 10px 15px;
  margin-top: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  width: max-content;
  margin-bottom: 10px;
  box-shadow:inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.call_add_delivery:hover{
  background-color: #A68E09;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
}
.order_block input[type="password"],
.order_block input[type="text"],
.order_block textarea,
.user_info_form textarea,
.user_info_form input[type="text"],
.user_info_form input[type="password"]{
    color: #444;
    background: #fff;
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 0px 15px 0px 15px;
    border-radius: 5px;
    line-height: 32px;
    width: 100%;
}
.order_block textarea,
.user_info_form textarea{
    color: #444;
    background: #fff;
    border: 1px solid #d1d1d1;
    font-size: 16px;
    padding: 0px 15px 0px 15px;
    border-radius: 5px;
    width: 100%;
}
.order_block input[type="password"]:focus,
.order_block input[type="text"]:focus,
.order_block textarea:focus,
.user_info_form textarea:focus,
.user_info_form input[type="text"]:focus,
.user_info_form input[type="password"]:focus{
  box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  outline: none;
  border: 1px solid #1d1d1b;
  color: #000;
}

.user_info_block .input{
  margin-bottom:10px;
}
.user_info_form .input label{
  font-size: 14px;
  font-weight: normal;
  margin: 0px 0px 0px 3px;
  color: #fff;
  font-weight: 500;
  margin-bottom:5px;
}
.user_info_block{
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.user_info_block p small{
  color: #1d1d1b;
}



.user_info_block [type="checkbox"]:not(:checked) + label:after,
.user_info_block [type="checkbox"]:checked + label:after{
  top:2px;
}

.favorite_btns,
.personal_btns{
  text-align: center;
  display: inline-block;
  clear: both;
  margin-top: 10px;
}
.favorite_btns .button_green,
.personal_btns .button_green{
    background: #1d1d1b;
    color: #fff;
    border: 1px solid #1d1d1b;
    font-size: 16px;
    padding: 0px 15px 0px 15px;
    border-radius: 12px;
    line-height: 32px;
    width: 200px;
    margin: 8px auto;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.favorite_btns .button_green:hover,
.personal_btns .button_green:hover{
    background: #fff;
    color: #1d1d1b;
    border: 1px solid #1d1d1b;
}
.personal_cabinet{
  margin-top: 30px;
  margin-bottom: 20px;
}


.remove_favorite{
  display: block;
  position: absolute;
  top: 10px;
  right: 0px;
  cursor: pointer;
  background: url(../img/icons/remove_favorite.png);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 10px;
  background-position: 0px 0px;
  z-index: 2;
}
.catalog_favorite .tpl_product_colors{
  bottom: 0px;
  top: auto;
}
.favorite_btns{
  text-align: center;
}

.cabinet_mobile_menu{
  display: none;
}
.confirm_img{
  width: 100%;
  display: block;
}
.c_confirm_title{
  text-transform: uppercase;
  font-size: 20px;
  text-align: left;
  margin: 20px 15px;
}
.confirm_page{
  margin: 30px auto;
}
.order_confirm{
  width: 100%;
}

.order_confirm tbody tr:nth-child(odd){
  background: #1f1f1f;
  color: #fff;
}
.order_confirm tbody tr:nth-child(even){
  background: #252525;
  color: #fff;
}
.order_confirm tbody tr:hover{
  background: #4b4b4b;
}
.pro_confirm_img{
  width:60px;
}
.order_confirm tbody tr td{
  padding: 12px 8px;
  vertical-align: middle;
}
.confirm_delivery b,
.confirm_pay b{
  min-width: 80px;
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
}
.confirm_delivery,
.confirm_pay{
  color: #a4a4a4;
}
.confirm_info{
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}
.confirm_info_left{
  float: left;
  display: block;
}
.confirm_info_right{
  float: right;
  display: block;
  font-size: 18px;
}
.confirm_info_right b{
  margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
}
.promocode{

}
.promocode div{
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
}
.promocode input{
  display: inline-block;
  width: 190px;
  border-radius: 5px;
}
.promocode a{
  display: inline-block;
}
.order_block{
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 20px;
    background: #f1f1f1;
    border-radius: 5px;
}
.order_block.active{
  box-shadow: 0px 0px 10px 1px #cecece;
}
.order_step{
  text-transform: uppercase;
  font-size: 16px;
  color: #C4A709;

}
.order_delivery_info p{
  color: #fff;
  font-size: 15px;
}
.order_block .input label{
  font-size: 14px;
  font-weight: bold;
  color: #181818;
  display: block;
    
  margin: 0px 0px 0px 10px;
}
.order_user_info{
  margin-top: 20px;
}
.next_step{
  float: right;
}

.tab_delivery_courier,
.tab_delivery_shop,
.tab_delivery_newpost_courier,
.tab_delivery_newpost,
.tab_cash_pay,
.tab_card_pay,
.tab_regular_user,
.tab_new_user{
  display: none;
}

.tab_delivery_newpost_courier.active,
.tab_delivery_courier.active,
.tab_delivery_shop.active,
.tab_delivery_newpost.active,
.tab_cash_pay.active,
.tab_card_pay.active,
.tab_regular_user.active,
.tab_new_user.active{
  display: block;
}
.order_block_nav{
  border-bottom: 1px solid #efefef;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.to_tab_delivery_newpost_courier,
.to_tab_delivery_courier,
.to_tab_delivery_shop,
.to_tab_delivery_newpost,
.to_tab_cash_pay,
.to_tab_sms_pay, 
.to_tab_card_pay,
.to_tab_regular_user,
.to_tab_new_user{
  display: block;
  width: 50%;
  font-size: 16px;
  float: left;
  padding: 11px 5px;
  color: #222;
  text-decoration: none;
  text-align: center;
  border: 3px solid transparent;
}



.to_tab_delivery_newpost_courier:active,
.to_tab_delivery_newpost_courier:focus,
.to_tab_delivery_newpost_courier.active,
.to_tab_delivery_newpost_courier:hover,
.to_tab_delivery_courier:active,
.to_tab_delivery_courier:focus,
.to_tab_delivery_courier.active,
.to_tab_delivery_courier:hover,
.to_tab_delivery_shop:active,
.to_tab_delivery_shop:focus,
.to_tab_delivery_shop:hover,
.to_tab_delivery_shop.active,
.to_tab_delivery_newpost:active,
.to_tab_delivery_newpost:focus,
.to_tab_delivery_newpost:hover,
.to_tab_delivery_newpost.active,
.to_tab_sms_pay:active,
.to_tab_sms_pay.active,
.to_tab_sms_pay:focus,
.to_tab_sms_pay:hover,
.to_tab_cash_pay:active,
.to_tab_cash_pay:focus,
.to_tab_cash_pay:hover,
.to_tab_cash_pay.active,
.to_tab_card_pay:active,
.to_tab_card_pay:focus,
.to_tab_card_pay:hover,
.to_tab_card_pay.active,
.to_tab_regular_user:active,
.to_tab_regular_user:focus,
.to_tab_regular_user:hover,
.to_tab_regular_user.active,
.to_tab_new_user:active,
.to_tab_new_user:focus,
.to_tab_new_user:hover,
.to_tab_new_user.active{
  color: #C4A709;
  background: none;
  border-bottom: 3px solid #C4A709;
  text-decoration: none;
}
.order_delivery_info .input{
  margin-bottom: 12px;
}
.order_delivery_info .input label{
  margin-bottom: 5px;
}
.order_page{
  margin-top: 20px;
  margin-bottom: 50px;
}
.filters_cleaner{
  display: flex;
  width: calc(100% - 30px);
  margin: 5px auto;
  gap: 5px;
  flex-direction: row;
   flex-wrap: wrap;
}
.catalog_mark_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
  gap:5px;
}
.catalog_mark_list_item {
  background: #fafafa;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  padding: 5px 5px 5px 5px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #E0E0E0;
}
.catalog_mark_list_item span{
  cursor:pointer;
  display: flex;
  height: 100%;
  width: 16px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.catalog_mark_list_item span:hover svg path{
  stroke:#D30E0F;
}
.js_reset_filters:hover{
  border: 1px solid #C4A709;
  background-color: #C4A709;
  color: #fff;
}
.js_reset_filters i{
  font-size: 12px;
  margin-top: -3px;
}
.filter_maintitle{
  width: 100%;
  float: left;
  
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.01em;
  color: #2A2828;
  display: block;
  justify-content: space-between;
  text-align: center;
}
.filter_row{ 
    margin: 0px 0px 10px 0px;
}
.row_checked{
}
.row{
  display: flex;
}
.filter_row .head{
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #C4A709;
    text-decoration: none;
    font-style: normal;
    text-align: justify;
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px auto;
}
.filter_row .values_holder{
  padding: 0px;
  display: none;
}
.filter_row.opened .values_holder{
  display: block;
  position: relative;
}
.filter_row.filter_smalled .values_holder:after{
  display: block;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 20px 20px #fff;
}
.filter_color{
  width: 20px;
  height: 20px;
  border-radius: 5px;
  float: left;
  margin-right: 5px;
  margin-top: 2px;
  border: 1px solid #ddd;
  /*
  display: block;
  display: none;
  */
}
.row_checked.color_checker [type="radio"]:not(:checked) + label:before, 
.row_checked.color_checker [type="radio"]:checked + label:before, 
.row_checked.color_checker [type="checkbox"]:not(:checked) + label:before, 
.row_checked.color_checker [type="checkbox"]:checked + label:before{
  display: none;
}
.row_checked.color_checker [type="radio"]:not(:checked) + label, 
.row_checked.color_checker [type="radio"]:checked + label, 
.row_checked.color_checker [type="checkbox"]:not(:checked) + label, 
.row_checked.color_checker [type="checkbox"]:checked + label{
  padding-left: 0px;
}
.row_checked.color_checker [type="radio"]:checked+label:after, 
.row_checked.color_checker [type="checkbox"]:checked+label:after{
  display: none;
}
.row_checked.color_checker [type="checkbox"]:checked+label .filter_color{
    border: 1px solid #0270bc;
}
.row_checked.color_checker .filter_color{
    margin: 2px;
    width: 28px;
    height: 28px;
}
.filter_range_color .values_holder{
  display: flex!important;
  flex-direction: row;
  flex-wrap: wrap;
}
.filter_range_color .values_holder .row_checked{
  display: flex;
}
/*
.filter_row.filter_range_color.filter_smalled .values_holder:after{
  display: none;
}
.filter_smalled.filter_range_color .remove_filter_smalled{
  display: none
}
.filter_smalled.filter_range_color .values_holder{
  overflow: visible;
  max-height: inherit;
}
*/
.filter_row .open_close{
  float: right;
  font-size: 20px;
  line-height: 14px;
  padding: 0px;
  margin: 0px 0px 0px 0px;
  width: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}
.filter_row.opened .open_close{
  transform:rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

#slider-range-price{
  overflow: visible!important;
}
.ui-slider {
    position: relative;
    text-align: left;
    background: #252525;
    margin-bottom: 15px;
    border-radius: 5px;
}
.ui-slider-horizontal{
  height: 5px;
}
.ui-slider .ui-slider-range{
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -9.5px;
  margin-left: 0px;
}
.ui-slider-horizontal .ui-slider-handle:first-child{

  margin-left: 0px;
}
.ui-slider-horizontal .ui-slider-handle:last-child{
  margin-left: -18px;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
  background: #C4A709;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  cursor: pointer;
  -ms-touch-action: none;
  touch-action: none;
  border: none !important;
  border-radius: 50%!important;
  background: #C4A709!important;
  outline: none;
  margin-left: -10px;
}
.clear_filter{
  background: #fff;
  border: 1px solid #1d1d1b;
  color: #1d1d1b;
  display: block;
  margin: 10px auto;
  max-width: 180px;
}
.clear_filter:hover{
  background: #1d1d1b;
  color: #fff;
}

.remove_filter_smalled{
  display: flex;
  padding: 7px 2px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  margin: 5px auto;
  justify-content: center;
}
.remove_filter_smalled:hover{
  color: #C4A709;
  text-decoration: none;
}

.m_filter_item_body.filter_smalled .m_filter_list,
.m_filter_item_body.filter_smalled .m_filter_item_list{
  max-height: 250px;
  overflow: hidden;
}

.m_card_wrap_body_right_size .product_select{
  display: block;
  width: 100%;
}
.m_card_wrap_body_right_size .product_select .size_values{
  display: block;
  width: 100%;
}
#callback .pop_inner p,
#success_adding_compare .pop_inner p,
#success_adding_wish .pop_inner p,#success_adding .pop_inner p{
  margin-bottom: 20px;
}
.pop_r_btns{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.color_values{
  position: relative;
}
.color_values .vls{
  position: relative;
  background: #f6f6f6;
  border-radius: 5px;
  padding: 10px;
}
.color_values a{
  vertical-align: top;
  border-radius: 5px;
  text-align: center;
  padding: 8px;
  display: inline-block;
  margin: 3px;
  background: #fff;
  border: 1px solid #dbdbdb;
  transition:0.5s;
  position: relative;
}
.color_values a:active::after,
.color_values a:focus::after,
.color_values a:hover::after,
.color_values a.active::after{
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.color_values a p{
  color: #181818;
  padding: 0px;
  margin: 0px;
}
.color_values a p{
  color: #181818;
}
.color_values a:hover p{
  color: #1d1d1b;
}
.color_values .selector_title{
  width: 100%;
  float: left;
  max-width: 100%;
  padding-right: 10px;
  
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
} 
.rating_input{
    position: relative;
    border: none;
    overflow: hidden;
    font-size: 16px;
    padding: 0px 5px 0px 5px;
    margin: 0px auto;
    line-height: 44px;
}
.rating_input label{
  display: block;
  float: left;
  max-width: 100%;
  font-weight: normal;
  margin: 0px;
  font-size: 13px;
  color: #595959;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
}
.rating_recall {
    position: relative;
    float: left;
    height: 15px;
    margin: 3px 0 0 10px;
}.rating_recall span {
  display: block;
  width: 15px;
  height: 15px;
  background: url('../../img/stars.png') no-repeat -15px 0;
  float: left;
  margin: 0 3px 0 0;
}
.rating_recall span.yellow {
  background: url('../../img/stars.png') no-repeat;  
}

.vote_recall.hov_recall, .vote_recall.hov_recall_click{
  background: url('../../img/stars.png') no-repeat;
  cursor: pointer;
}


.tpl_comment .rating_recall_stars{
    position: relative;
    display: inline-block;
    height: 15px;
    margin-top: 2px;
    margin-left: 30px;
}

.rating_recall_stars span {
  display: block;
  width: 15px;
  height: 15px;
  background: url('../../img/stars.png') no-repeat -15px 0;
  float: left;
  margin: 0 3px 0 0;
}

.rating_recall_stars span.yellow {
  background: url('../../img/stars.png') no-repeat;  
}





.preorder_pro{
  background: #ee4c59;
  font-size: 15px;
  color: #fff;
  float: left;
  padding: 5px 10px;
  margin: 5px 0px;
  display: flex;
  max-width: 160px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;

}
.basket_holder{
  color: #181818;
  border-radius: 5px;
  background: #f1f1f1;
  padding: 10px;
  margin: 20px auto;
  clear: both;
}
.cart_case{
  width: 100%;
  background: none;
  color: #181818;
  background:#121212;
  margin-bottom: 20px;
  max-height: calc(100dvh - 200px - 40px - 40px - 40px - 20px);
  overflow: auto;
  padding-bottom:50px;
}
.basket_case{
  width: 100%;
  background: none;
  margin-top: 20px;
  color: #181818;
  margin-bottom: 20px;
  background:#121212;
}
.basket_product_name{
  display: block;
  text-align: left;
  color: #181818;
  font-size: 14px;
  text-decoration: none;
}
.basket_product_name:hover{
  color: #222;
}
.basket_product_info{
  display: block;
  text-align: left;
  color:#222;
  font-size: 11px;
}
.basket_page_sidebar_max_discount{
  color: #a5331a;
  font-size: 12px;
}
.basket_product_info span{
  color: #222;
  font-size: 11px;
}

.amount_few{
  text-align: center;
  display: block;
  font-size: 14px!important;
  font-weight: 500!important;
  margin-bottom: 0px!important;
  color:#fff;
}
.basket_page_sidebar_list_sum .cart_sum{
  color: #fff;
  font-size:16px;
}
.price .amount_1{
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.basket_remove{
  color: #C4A709;
  background: transparent;
  border-radius: 5px;
  line-height: 38px;
  height: 38px;
  width: 38px;
  text-align: center;
  display: block;
  transition: 0.3s;
  margin: 0px auto;
  position: absolute;
  top: 10px;
  right: 10px;
}
.basket_remove:hover{
  color: #fff;
  background: #C4A709;
}
.basket_remove svg path{
  fill:#fff;
}

.cart_btn{
  position: relative;
  width: 50%;
  float: right;
  background: #ccc;
  color: #333;
  font-size: 12px;
  font-weight: normal;  
}
.basket_remove_text{
  display: none;
}
.cart_case .quantity_basket,
.basket_case .quantity_basket{
  align-items: center;
  border-radius: 3px;
  border: 1px solid #303030;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width:max-content;
}
body.oh{
  overflow:hidden;
}
.cart_case .cart_case_total{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.cart_case .quantity_basket input,
.basket_case .quantity_basket input{
  width: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  color: #fff;
  padding:0px;
  border:none;
}
.btn_plus_expire,
.btn_plus{
  cursor:pointer;
  background: transparent;
  color: #1d1d1b;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #303030;
}
.btn_minus_expire,
.btn_minus{
  cursor:pointer;
  background: transparent;
  color: #1d1d1b;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #303030;
}
.plus-minus:hover svg path{
  stroke: #c4a709;
}
.total_p_sum{
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  display: block;
}
.basket_result .tabs_holder{
  border: 1px solid #ccc;
  background: #f7f7f7;
  padding: 15px;
}
.basket_input{
  margin: 10px auto;
}
.basket_input_title{
  color: #181818;
  font-size: 14px;
  float: left;
  width: 50%;
  font-weight: bold;
  display: block;
  
  margin: 0px 0px 0px 10px;
}
.order_pay_info p{
  color: #181818;
  font-size: 14px;
  margin-bottom: 15px;
}
.cart_total_cur,
.cart_total_all,
.cart_total_delivery,
.cart_total{
  color: #181818;
  font-weight: bold;
}
.basket_title{
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  font-size: 18px;
}
.basket_input input{
  width: 50%;
  height: 30px;
  color: #444;
  padding: 0px 10px;
  font-size: 16px;
  line-height: 30px;
}

.basket_case .cart-images{
  border: 1px solid #e6e6e6;
  display: block;
  width: 130px;
  margin: 0px auto;
  border-radius: 5px;
  overflow: hidden;
}
.basket_case .cart-images img{
  width: 100%;
}
.total_cart_sum{
  float: right;
  color: #C4A709;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin: 10px auto;
}
.total_cart_sum_cur{
  float: right;
  color: #C4A709;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin: 5px auto;
}
.cart_btns{
  float: right;
}
.shopping_continue{
  display: inline-block;
  margin-right: 20px;
  color: #7a9313;
  font-weight: bold;
  font-size: 14px;
}
.b_title{
  display: none;
}
.p_h_title{
  display: none;
  float: left;
}



.confirm_order {
  text-decoration: none;
}

.confirm_order:hover {
}




.order_details .chosen-container{
  width: 100%!important;
  outline: none;
  background: none;
  border: none;
  border-radius: 5px;
}
.order_details .chosen-container-single .chosen-single{
  line-height: 40px;
  height: 40px;
  outline: none;
  background: #fff;
  box-shadow: none;
  font-weight: normal;
  color: #181818;
  border-radius: 5px;
  border: 1px solid #d1d1d1;
}
.order_details .chosen-container-single .chosen-single:hover{
    border: 1px solid #1d1d1b;

}
.order_details .chosen-container-single .chosen-search input[type=text]{
  color: #181818;
}
.order_block .chosen-container-single input[type="text"]:focus{
  color: #181818;
}

.order_details .chosen-container-active.chosen-with-drop .chosen-single{
    background: #ffffff;
    border: 1px solid #fff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}
.order_details .chosen-container-single .chosen-single div{ 
  width: 40px;
  height: 40px;
}
.order_details .chosen-container-single .chosen-single span{
  margin-right: 0px;
}

.order_details .chosen-container-single .chosen-single div b{
  background-image: url(../img/std.svg?v=2)!important;
  background-size: 18px 18px!important;
  background-position: center center!important;
  transition: transform 0.5s;
}
.order_details .chosen-container.chosen-with-drop .chosen-drop{
    border: 0px;
    background: #fff;
    color: #181818;
    font-weight: normal;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.3);
}
.order_details .chosen-container-single .chosen-drop,
.order_details .chosen-container .chosen-drop{
  border: 1px solid #C4A709;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}


.order_details .chosen-container-single .chosen-single div,
.order_details .chosen-container-active.chosen-with-drop .chosen-single div{
  background: #fff;
}
.order_details .chosen-container-active.chosen-with-drop .chosen-single div b{
  background-position: 0px 0px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.order_details .chosen-container .chosen-results li.highlighted{
  background: #C4A709;
  color: #fff;
}
.order_details .chosen-container .chosen-results{
  margin: 0px 0px 0px 0;
  padding: 0 0 0 0px;
  clear: both;
}
.order_details .chosen-container .chosen-results li{
  line-height: 22px;
}

/*
::-webkit-scrollbar { width: 0px; height: 3px;}
::-webkit-scrollbar-track {  background-color: #C4A709;}
::-webkit-scrollbar-track-piece { background-color: #ffffff;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #C4A709; border-radius: 5px;}
*/

.tab_regular_user .next_step {
  width: auto;
  float: left;
  text-decoration: none;
  transition: .3s;
  font-weight: 600;
  font-size: 12px;
  color: #FFF;
  padding: 10px 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #C4A709;
  position: relative;
  cursor: pointer;
}

.tab_regular_user .next_step {
  background: rgba(230, 0, 0, 0.8);
}

.cssload-thecube {
    margin: 50px auto;
  width: 73px;
  height: 73px;
  margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
  position: relative;
  transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
}
.cssload-thecube .cssload-cube {
  position: relative;
  transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
}
.cssload-thecube .cssload-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.cssload-thecube .cssload-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 113, 188);
  animation: cssload-fold-thecube 2.76s infinite linear both;
    -o-animation: cssload-fold-thecube 2.76s infinite linear both;
    -ms-animation: cssload-fold-thecube 2.76s infinite linear both;
    -webkit-animation: cssload-fold-thecube 2.76s infinite linear both;
    -moz-animation: cssload-fold-thecube 2.76s infinite linear both;
  transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
}
.cssload-thecube .cssload-c2 {
  transform: scale(1.1) rotateZ(90deg);
    -o-transform: scale(1.1) rotateZ(90deg);
    -ms-transform: scale(1.1) rotateZ(90deg);
    -webkit-transform: scale(1.1) rotateZ(90deg);
    -moz-transform: scale(1.1) rotateZ(90deg);
}
.cssload-thecube .cssload-c3 {
  transform: scale(1.1) rotateZ(180deg);
    -o-transform: scale(1.1) rotateZ(180deg);
    -ms-transform: scale(1.1) rotateZ(180deg);
    -webkit-transform: scale(1.1) rotateZ(180deg);
    -moz-transform: scale(1.1) rotateZ(180deg);
}
.cssload-thecube .cssload-c4 {
  transform: scale(1.1) rotateZ(270deg);
    -o-transform: scale(1.1) rotateZ(270deg);
    -ms-transform: scale(1.1) rotateZ(270deg);
    -webkit-transform: scale(1.1) rotateZ(270deg);
    -moz-transform: scale(1.1) rotateZ(270deg);
}
.cssload-thecube .cssload-c2:before {
  background-color: rgb(41, 171, 226);
  animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
    -ms-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
}
.cssload-thecube .cssload-c3:before {
  background-color: rgb(0, 113, 188);
  animation-delay: 0.69s;
    -o-animation-delay: 0.69s;
    -ms-animation-delay: 0.69s;
    -webkit-animation-delay: 0.69s;
    -moz-animation-delay: 0.69s;
}
.cssload-thecube .cssload-c4:before {
  background-color: rgb(46, 49, 146);
  animation-delay: 1.04s;
    -o-animation-delay: 1.04s;
    -ms-animation-delay: 1.04s;
    -webkit-animation-delay: 1.04s;
    -moz-animation-delay: 1.04s;
}

.nw_block b,
.nw_block{
      text-wrap: nowrap;
}

@keyframes cssload-fold-thecube {
  0%, 10% {
    transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-o-keyframes cssload-fold-thecube {
  0%, 10% {
    -o-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    -o-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    -o-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-ms-keyframes cssload-fold-thecube {
  0%, 10% {
    -ms-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    -ms-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    -ms-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-webkit-keyframes cssload-fold-thecube {
  0%, 10% {
    -webkit-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    -webkit-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    -webkit-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cssload-fold-thecube {
  0%, 10% {
    -moz-transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    -moz-transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    -moz-transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

.nf_img{
  width: 100%;
  margin: 20px auto;
}
.not_found{
  margin-top: 60px;
  text-align: center;
  padding-bottom: 50px;
}
.not_found h1{
  font-weight: bold;
  color: #df4a49;
  font-size: 120px;
}
.not_found div{
  font-size: 26px;
  color: #df4a49;

  line-height: 50px;
}
.ntf_back{
  position: relative;
  margin: 20px auto;
  border-radius: 10px;
}
.brands_block_list{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-wrap:wrap;
}
.brands_block_list li{
  display: flex;
  width: calc(100% / 8);
}
.brands_block_list li a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 145px;
  width: 100%;
}

.brands_block_list li a img{
  display:block;
  width:100%;
  transition: 0.5s;
}
.brands_block_list a:hover {
  box-shadow: 0 3px 12px 1px rgba(211, 211, 211, 0.25);
}
.brands_block_list a:hover img{
  transform: scale(1.05);
}

.no_sizes{
  background: #be1311;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  margin: 10px 0px;
}
.no_products_find{
  font-size: 18px;
  text-align: center;
  background: #ECECEC;
  color: #000;
  width: 100%!important;
  padding: 10px 10px;
}
.go_main_b{
  text-decoration: none;
  float: none;
  background: #df4a49;
  color: #fff;
  padding: 10px 25px;
  margin: 20px auto;
  display: inline-block;
  transition: 0.5s;
}
.go_main_b:hover{
  opacity: 0.7;
}
.order_f_l{
  display: none;
}

.tpl_map_nav{

}
.tpl_map_nav_c{
  display: none;
  background: #f8f8f8;
  padding: 10px 25px;
  line-height: 30px;
  color: #777;
}
.tpl_map_nav.active .tpl_map_nav_c{
  display: block;
}
.tpl_map_nav_h{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 10px 5px;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}
.tpl_map_nav_h i{
  color: #000;
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
}
.tpl_map_nav.active .tpl_map_nav_h{
  background: #1d1d1b;
  color: #fff;
}
.tpl_map_nav_h span{
  font-size: 15px;
  font-weight: 600;
  padding-right: 30px;
  line-height: 35px;
  padding-left: 20px;
}
.tpl_map_nav:hover{
  background: #fbfbfb;
}
.map iframe{
  display: block;
  width: 100%!important;
  height: 100%!important;
  min-height: 450px!important;
  max-height: 450px!important;
}
.map.active{
  display: block;
}
.helper_block{
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 42px;
  height: 42px;
  right: 30px;
  bottom: 80px;
  transition: 0.3s;
  z-index: 5;
}
.helper_block .helper_close{
  display: none;
  background: #5f5f5f;
  border-radius: 50%;
  padding: 10px;
  width: 42px;
  height: 42px;
  transition:0.5s;
}
.helper_block .helper_close svg{
  width: 100%;
  max-width: 20px;
  margin: 0px auto;
  display: block;
}
.helper_block .helper_close svg path{
  fill:#fff;
}
.helper_block .helper_buttons{
  display: none;
  transition:0.5s;
}
.helper_block .helper_buttons > div > a{
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.helper_block .helper_buttons > div > a > svg{
  width: 42px;
  height: 42px;
  transition: 0.5s;
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.helper_block .helper_buttons > div > a:hover > svg{
  transform:scale(1.1);
}

.helper_block .helper_buttons > div > a > .icon svg path{
  fill:#fff;
}
.helper_block .helper_buttons > div > a > .text{
  display: block;
  opacity: 0;
  visibility: none;
  position: absolute;
  top: 5px;
  left: -170px;
  text-align: center;
  width: 160px;
  background: #fff!important;
  border: 1px solid #e1e5eb!important;
  color: #000!important;
  padding: .5em 1em!important;
  white-space: nowrap!important;
  border-radius: .5em!important;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.13)!important;
  transition:1s;
}
.helper_block .helper_buttons > div > a:hover > .text{
  display: block;
  visibility: visible;
  opacity: 1;
}
.helper_block .helper_show{
  background: rgb(255 255 255 / 30%);
  border-radius: 50%;
  padding: 10px;
  transition:0.5s;
  width: 42px;
  height: 42px;
}
.helper_block .helper_show svg path{
  fill:#fff;
}
.helper_block:hover .helper_show{
  display: none;
}
.helper_block:hover .helper_close{
  display: none;
}
.helper_block:hover{
  height: 150px;
}
.helper_block:hover .helper_buttons{
  display: block;
}
.pwd_form,
.profile_form{
  padding-bottom: 15px;
}
.p_empty{
  font-size: 18px!important;
  text-align: center;
  margin-bottom: 0px!important;
  color:#fff;
}


.b_by_letter_holder .page_title {
  margin-bottom: 20px;
}
.letters{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}
.letters a{
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 7px;
}
.letters a:hover{
  background: #C4A709;
  color: #fff;
}
.letters_holder{
  margin: 10px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 5px;
  margin-bottom:20px;
}
.letters_holder span{
  margin-right: 15px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 5px;
}
.b_by_letter_holder{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.b_by_letter_holder .page_title{
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 10px;
  border-bottom: 1px solid #2f2f2f;
  width: 100%;
}

.preload_h{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.article_list{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  gap:10px;
}
.article_list li{
  width:calc(100% / 3 - 10px);
  display:flex;
  flex-direction:column;
}
.f_socials,
.f_contacts{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  max-width: 600px;
}
.navigation_phone_mail{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.contacts_page_top {
  display: flex;
  flex-wrap: wrap;
}
.contacts_page_top_item {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.navigation_time{
  display: flex;
  color: #fff;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.contacts_page_top_item a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contacts_page{
  margin-top:20px;
  margin-bottom:30px;
}
.contacts_page_top_item a:hover{
  color: #C4A709;
}
.contacts_page_top_item a:not(:last-child) {
    margin-bottom: 20px;
}
.contacts_page_top_item .socials li {
    margin: 5px;
}
.contacts_page_top_item .socials {
    display: flex;
    flex-direction: row;
}
.contacts_page_top_item .socials li a:hover{
  opacity:0.7;
}
.contacts_page_top_item p {
    display: flex;
    font-size: 18px;
    min-height: 32px;
    align-items: center;
    line-height: 24px;
}
.contacts_page_map_wrap {
    border-radius: 5px;
    border: 1px solid rgba(51,51,51,.2);
    overflow: hidden;
    display: flex;
}
.contacts_page_map_info {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  background: #1f1f1f;
}
.contacts_page_map {
  flex: 1;
}
.map {
  height: 100%;
  min-height: 450px;
  display: none;
}
.map.active {
    display: flex;
}
.contacts_page_map_info li {
  background:#1f1f1f;
  width: 100%;
  padding: 20px 30px;
  transition: .3s;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  border-bottom: 1px solid #333;
  color: #fff;
}
.contacts_page_map_info li.active {
    background: #C4A709;
    color: #fff;
}
.contacts_page_map_info li p {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
.contacts_page_map_info li p.map_time{
  font-weight:600;
}
.contacts_page_map_info li a {
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color:#fff;
}
.contacts_page_map_info li a svg path{
  stroke: #fff;
}
.contacts_page_map_info li.active a{
  color:#fff;
}
.contacts_page_map_info li.active a svg path{
  stroke:#fff;
}
.product_color, .product_weight {
    display: flex;
    margin-bottom: 5px;
    font-size:15px;
}
.product_color_radio, .product_weight_radio {
    display: flex;
    flex-wrap: wrap;
    margin-bottom:20px;
}
.product_color span, .product_weight span {
    margin-left: 10px;
    font-weight: 600;
}
.product_color_radio_item, .product_weight_radio_item {
    position: relative;
    display: inline-flex;
}
.product_color_radio_item input, .product_weight_radio_item input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.product_color_radio_item label{
  text-align: center;
  cursor: pointer;
  transition: .3s;
  padding: 0;
  display: flex;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #303030;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-width: 2px;
  overflow: hidden;
}
.product_weight_radio_item label {
  text-align: center;
  cursor: pointer;
  transition: .3s;
  display: flex;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  height: 38px;
  padding: 10px;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #303030;
  border: 1px solid transparent;
}
.product_color_radio_item label:hover, .product_weight_radio_item label:hover{
  border: 1px solid #C4A709;
}
.product_color_radio_item input:checked + label, .product_weight_radio_item input:checked + label {
  background: #C4A709;
  color: #fff;
  border-color: #C4A709;
}
.product_weight_radio_item.size_disabled label{
  opacity: 0.6;
  color: #D30E0F;
  border: 1px solid #ED1C24;
}
/*
.product_color_radio_item.color_disabled label, .product_weight_radio_item.size_disabled label {
    opacity: 0.45;
}
*/

.min_order_text{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  justify-content: center;
  padding: 15px 15px;
  border-radius: 15px;
}
.min_order_text span{
    font-size: 18px;
    background: #C4A709;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.account_subsection {
    margin: 30px 0;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #C4A709;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}
.account_subsection .subsection_name{
    font-size: 20px;
    margin-bottom: 20px;
    transition-duration: .3s;
}
.order_summary {
    flex: 2;
    margin-left: 20px;
}
.order_details {
    flex: 3;
}
.cart_section_wrapper{
    display: flex;
}
.cart_section_wrapper .account_subsection .subsection_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.account_subsection .subsection_name.collapsed, .catalog_section .catalog_filter .filter_item_head.collapsed {
    margin-bottom: 0;
}
.already_reg {
    display: block;
    font-size: 17px;
    border-radius: 5px;
    background: #F8F8F8;
    padding: 20px 15px;
    margin-bottom: 20px;
}
.already_reg a {
    font-weight: bold;
    text-decoration: none;
    color: #C4A709;
}
.already_reg a:hover {
    text-decoration: underline;
}
.account_subsection .form_inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    flex-direction: column;
    align-items: start;
}
.account_subsection .form_inputs.form_inputs_row{
  flex-direction: row;
}
.cart_section_wrapper .buyer_form {
    flex-direction: row;
}
.account_subsection .input_wrap {
    display: flex;
    flex-direction: column;
    width: 255px;
}
.cart_section_wrapper .account_subsection .input_wrap {
    width: calc(50% - 20px);
}
.account_subsection .input_wrap span {
    font-size: 14px;
    margin-bottom: 12px;
}
span.collapse {
    cursor: pointer;
}
.collapse svg {
    transition-duration: .3s;
}
.collapsed .collapse svg {
    transform: rotate(180deg);
}
.cart_product_list {
    padding-bottom: 20px;
    border-bottom: 1px solid #c1c1c1;
}
.pricing_section {
    font-size: 16px;
}
.order_history_list .pricing_row, .order_summary .pricing_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.cart_product_list li {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}
.cart_product_list li:last-child {
    margin-bottom: 0;
}
.cart_product_list li .product_image_wrap {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.cart_product_list li .product_image_wrap img {
    max-height: 100%;
    max-width: 100%;
}
.cart_product_list .product_options .reduced {
    color: #797979;
}
.b_price_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    width: auto;
}
.cart_product_list .product_info_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #252525;
    padding-bottom: 10px;
}
.cart_product_list .product_name {
    font-size: 16px;
    margin: 0 23px 15px 0;
}
.cart_product_list .product_options {
    display: flex;
    flex-direction: column;
}
.cart_product_list .pricing_wrap {
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center;
}
.cart_product_list .delete_product {
    position: absolute;
    top: 0;
    right: 0;
}
.cart_product_list .delete_product:hover svg path{
  stroke:#C4A709;
}
.cart_product_list .cart_quantity{
  width: 40px;
  height: 25px;
  border: none!important;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0px;
  text-align: center;
}
.cart_product_list .pricing_wrap .quantity_counter {
  display: flex;
  align-items: center;
}
.basket_page_list_info_price_old {
    text-decoration: line-through;
}
.cart_product_list .pricing_wrap a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 1px solid #c1c1c1;
    transition-duration: .3s;
    cursor: default;
}
.cart_product_list .pricing_wrap a.active {
    border-color: #C4A709;
    cursor: pointer;
}
.cart_product_list .pricing_wrap a:hover {
    background: #C4A709;
    color: #fff;
    cursor: pointer;
}
.cart_product_list .pricing_wrap a:hover svg path{
  stroke: #fff;
}
.order_summary .pricing_row {
    margin-bottom: 15px;
}
.req_text {
  display: flex;
  flex-direction: row;
  margin: 15px 0;
  font-size: 14px;
  align-items: center;
  gap: 5px;
  color:#fff;
}
.req_field,
.req_text span{
  color: #ED1C24;
}
::-webkit-scrollbar-track-piece {
    background-color: #252525;
}
::-webkit-scrollbar-track {
    background-color: #C4A709;
}
::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #C4A709;
    border-radius: 5px;
}
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

.ac_city{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.ac_depart{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;

}
.ac_depart.ac_filed:after,
.ac_city.ac_filed:after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  right: 10px;
  background: #f8f8f8;
  border-radius: 50%;
  background-image: url(../img/checkbox_tick_n.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
}
.ac_depart_result,
.ac_city_result{
  display: none;
  width: 100%;
  position: absolute;
  top: 45px;
  z-index: 2;
}
.ac_depart_result ul,
.ac_city_result ul{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 5px 0px;
  border-radius: 8px;
  border: 1px solid #C1C1C1;
  max-height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
}
.ac_depart_result ul li,
.ac_city_result ul li{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ac_depart_result ul li a,
.ac_city_result ul li a{
  display: flex;
  width: 100%;
  padding: 10px 10px;
  font-size: 15px;
  color: #000;
}
.ac_depart_result ul li a:hover,
.ac_city_result ul li a:hover{
  color: #fff;
  background-color: #C4A709;
}

.ac_city_ukrpost{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.ac_depart_ukrpost{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;

}
.ac_depart_ukrpost.ac_filed:after,
.ac_city_ukrpost.ac_filed:after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  right: 10px;
  background: #f8f8f8;
  border-radius: 50%;
  background-image: url(../img/checkbox_tick_n.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
}
.ac_depart_result_ukrpost,
.ac_city_result_ukrpost{
  display: none;
  width: 100%;
  position: absolute;
  top: 45px;
  z-index: 2;
}
.ac_depart_result_ukrpost ul,
.ac_city_result_ukrpost ul{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 5px 0px;
  border-radius: 8px;
  border: 1px solid #C1C1C1;
  max-height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
}
.ac_depart_result_ukrpost ul li,
.ac_city_result_ukrpost ul li{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ac_depart_result_ukrpost ul li a,
.ac_city_result_ukrpost ul li a{
  display: flex;
  width: 100%;
  padding: 10px 10px;
  font-size: 15px;
  color: #000;
}
.ac_depart_result_ukrpost ul li a:hover,
.ac_city_result_ukrpost ul li a:hover{
  color: #fff;
  background-color: #C4A709;
}




.ac_city_meest{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.ac_depart_meest{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;

}
.ac_depart_meest.ac_filed:after,
.ac_city_meest.ac_filed:after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  right: 10px;
  background: #f8f8f8;
  border-radius: 50%;
  background-image: url(../img/checkbox_tick_n.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
}
.ac_depart_result_meest,
.ac_city_result_meest{
  display: none;
  width: 100%;
  position: absolute;
  top: 45px;
  z-index: 2;
}
.ac_depart_result_meest ul,
.ac_city_result_meest ul{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 5px 0px;
  border-radius: 8px;
  border: 1px solid #C1C1C1;
  max-height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
}
.ac_depart_result_meest ul li,
.ac_city_result_meest ul li{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ac_depart_result_meest ul li a,
.ac_city_result_meest ul li a{
  display: flex;
  width: 100%;
  padding: 10px 10px;
  font-size: 15px;
  color: #000;
}
.ac_depart_result_meest ul li a:hover,
.ac_city_result_meest ul li a:hover{
  color: #fff;
  background-color: #C4A709;
}


.ac_city_rozetka{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.ac_depart_rozetka{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;

}
.ac_depart_rozetka.ac_filed:after,
.ac_city_rozetka.ac_filed:after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  right: 10px;
  background: #f8f8f8;
  border-radius: 50%;
  background-image: url(../img/checkbox_tick_n.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
}
.ac_depart_result_rozetka,
.ac_city_result_rozetka{
  display: none;
  width: 100%;
  position: absolute;
  top: 45px;
  z-index: 2;
}
.ac_depart_result_rozetka ul,
.ac_city_result_rozetka ul{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 5px 0px;
  border-radius: 8px;
  border: 1px solid #C1C1C1;
  max-height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
}
.ac_depart_result_rozetka ul li,
.ac_city_result_rozetka ul li{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ac_depart_result_rozetka ul li a,
.ac_city_result_rozetka ul li a{
  display: flex;
  width: 100%;
  padding: 10px 10px;
  font-size: 15px;
  color: #000;
}
.ac_depart_result_rozetka ul li a:hover,
.ac_city_result_rozetka ul li a:hover{
  color: #fff;
  background-color: #C4A709;
}

.order_form_top_pay{
  padding: 10px 10px;
  background: #121212;
  border-radius: 5px;
  display:none;
  margin-bottom:10px;
  font-size: 12px;
  line-height: 130%;
  color: #fff;
}
.order_form_top_pay b{
  font-weight:600;
}
.order_form_top_deliv{
  display: none;
}
.order_form_top_pay.active,
.order_form_top_deliv.active{
  display: flex;
  flex-direction: column;
  width:100%;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.form_section.radio_section{
  display: flex;
  flex-direction: column;
    width: 100%;
}

.form_section > span {
    font-size: 16px;
    margin-bottom: 15px;
}
.radio_section input {
    display: none;
}
.radio_section label {
    position: relative;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    cursor: pointer;
    transition-duration: .3s;
}
.radio_section label:after {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    display: block;
    left: 0;
    top: calc(50% - 8px);
    border-radius: 8px;
    border: 1px solid #c1c1c1;
    transition-duration: .3s;
}
.radio_section input:checked+label {
    color: #C4A709;
}
.radio_section input:checked+label:after {
    background-color: #C4A709;
    border-color: #C4A709;
}
.radio_section input:checked+label {
    color: #C4A709;
}

.catalog_compare_table{
  display: block;
  width: 100%;
  overflow-x:auto;
  overflow-y:hidden;
  margin-bottom: 50px;
}
.catalog_compare_table::-webkit-scrollbar{
  height: 10px;
}
.page_section_compare > .section_title{
  background: #C4A709;
  padding: 5px 10px;
  color: #fff;
}
.catalog_compare_table table{
  width: 100%;
  min-width: 800px;
}
.catalog_compare_table td{
  text-align: left;
  padding: 10px 8px;
  border: 1px solid #eee;
  background:#fff;
}
.catalog_compare_table tr:nth-child(odd) th,
.catalog_compare_table tr:nth-child(odd) td{
  background: #f3f3f3;
}
.catalog_compare_table tr:hover th,
.catalog_compare_table tr:hover td{
  background: #e7e7e7;
}
.catalog_compare_table th{
  text-align: left;
  font-weight: bold;
  padding: 10px 8px;
  border: 1px solid #eee;

}
.catalog_compare_table .product_wrap{
  max-width:280px;
  min-width: 192px;
}

.compare_holder .catalog_list_compare, 
.compare_holder .catalog_list_like{
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 8;
  background: transparent;
}

.basket_page_wrap {
  display: flex;
  color: #000;
}
.basket_page_sidebar {
  width: 100%;
  max-width: 325px;
  margin-left: 35px;
}
.basket_page_main {
  flex: 1;
}
.basket_page_list > li {
  margin-bottom: 10px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.basket_page_summ {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width:100%;
}
.basket_page_summ p {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
}
.basket_page_summ span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.basket_page_summ_b p{
  font-size: 18px;
  font-weight: 600;
}
.basket_page_summ_b span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.basket_page_sidebar_big {
  font-size: 14px;
}
.deliv_title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.deliv_title span {
  text-transform: uppercase;
  font-weight: 800;
  margin-left: 5px;
  color: #C4A709;
  margin-bottom: 0px!important;
}
.deliv_title img {
  margin-left: 5px;
}
.order_page_sidebar {
  max-width: 500px;
  text-align: left;
  height: max-content;
  padding: 30px 30px;
  border-radius: 10px;
  background: #1f1f1f;
}
.basket_page_sidebar_head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.basket_page_sidebar_head > div {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.basket_page_sidebar_head > div .step{
  border-radius: 50%;
  border: 1px solid #C4A709;
  font-size: 15px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.basket_page_sidebar_head a {
  color: #C4A709;
}
.cart_case li,
.basket_page_sidebar_list li {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  border-bottom: 8px solid #1f1f1f;
  position: relative;
}
.cart_case li .basket_remove,
.basket_page_sidebar_list li .basket_remove{
  top: 2px;
  right: 10px;
}
.basket_page_sidebar_list_img {
  width: 100%;
  max-width: 60px;
  min-width:60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.basket_page_sidebar_list_sum {
  white-space: nowrap;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  flex-direction: column;
}
.basket_page_sidebar_list_info {
  flex: 1;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.basket_page_sidebar_list_info a {
  margin-bottom: 10px;
  color: #fff;
  text-align: left;
  font-weight: 500;
  text-decoration: none;
  line-height:150%;
}
.basket_page_sidebar_list_weight {
  display: flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}
.basket_page_price_info {
  padding: 10px 0;
  display:none;
  width:100%;
}
.basket_page_price_info li {
  display: flex;
  justify-content: space-between;
  width:100%;
}
.basket_page_price_info li p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
.basket_page_price_info li span {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.product_tabs_wrap{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
  margin: 0px auto;
}
.basket_page_price_info li span.deliv_span {
  color: #81BF21;
}
.basket_page_price_info li:not(:last-child) {
  margin-bottom: 10px;
}
.order_form_wrap {
  padding: 30px;
  background: #1f1f1f;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}
.order_form_wrap:not(:last-child) {
    margin-bottom: 10px;
}

.form_item > span {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  margin-bottom: 5px;
  gap:3px;
  color:#fff;
}
.order_form_top_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:10px;
}
.order_form_top_item:not(:last-child) {
  position: relative;
  margin-bottom: 15px;
}
.order_form_top_item .form_item {
  width: calc(100% / 2 - 10px);
  max-width: 100%;
  margin-bottom: 10px;
}
.order_form_top_item .form_item.form_full{
  width: 100%;
  max-width: 100%;
}
.order_form_top_item .form_item.form_item_4{
  width: 25%;
}
.order_form_top_item .form_item--hasChild {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  max-width: 360px;
  width: calc(50% + 30px);
}
.order_form_top_item .form_item--bottom {
  padding-top: 5px;
}
.order_form_top_item .form_item--full {
  width: 100%;
  max-width: 100%;
}
.order_form_top_item .form_item--full{
    margin-top: 5px;
    margin-bottom: 5px;
}
.order_form_top_item .form_title {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
  color:#fff;
  align-items: center;
  gap: 8px;
}
.order_form_top_item .form_title .step{
  border-radius: 50%;
  border: 1px solid #C4A709;
  font-size: 15px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.basket_page_agreement input,
.form_item--radio input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.basket_page_agreement label{
  padding-left: 30px;
  font-weight: 500;
  min-height: 25px;
  display: block;
  align-items: center;
  font-size: 11px;
  cursor: pointer;
  position: relative;
  color:#fff;
}
.form_item--radio label {
  padding-left: 30px;
  font-weight: 500;
  min-height: 25px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height:120%;
  cursor: pointer;
  position: relative;
  color:#fff;
}
.basket_page_agreement label,
.cabinet_tab .form_item--radio label,
.order_page .form_item--radio label{
  gap:10px;
}
.cabinet_tab .form_item--radio input:checked + label,
.order_page .form_item--radio input:checked + label,
.cabinet_tab .form_item--radio label:hover,
.order_page .form_item--radio label:hover{
  color:#C4A709;
}
.cabinet_tab .form_item--radio label span,
.order_page .form_item--radio label span{
  padding: 5px;
  border-radius: 5px;
  max-height: 26px;
  display: flex;
  width: 55px;
  min-width:55px;
  align-items: center;
  justify-content: center;
}
.cabinet_tab .form_item--radio label span img,
.order_page .form_item--radio label span img{
  width:100%;
}
.cabinet_tab .form_item--radio label span svg,
.order_page .form_item--radio label span svg{
  width:100%;
}
.basket_page_agreement label:before,
.form_item--radio label:before {
  content: "";
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  position: absolute;
  border: 1px solid #C1C1C1;
  border-radius: 2px;
  content: "";
  transition: .3s;
}
.basket_page_agreement input:checked + label:before,
.form_item--radio input:checked + label:before {
  border: 1px solid #C4A709;
}
.basket_page_agreement label:after,
.form_item--radio label:after {
  content: "";
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  left: 5px;
  top: 7.5px;
  background: url(../img/checkbox_tick_n.svg) center no-repeat;
  background-size: contain;
  display:block;
  opacity:0;
}
.basket_page_agreement input:checked + label:after,
.form_item--radio input:checked + label:after{
  opacity:1;
}
.form_item--radio p {
  padding-left: 41px;
  padding-top: 10px;
}
.form_item--radio input:checked + label:after {
  opacity: 1;
}
.order_form_top_deliv {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order_form_top_deliv.active{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.basket_page_comment{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
  margin-bottom:20px;
}
.basket_page_comment .form_item > span{
  color:#fff;
}
input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="phone"], 
textarea {
  background: #FFFFFF;
  border-radius: 4px;
  height: 40px;
  padding: 0 15px;
  border: none;
  font-size: 14px;
  border: 1px solid #d5d5d5;
  width: 100%;
}
input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus, 
input[type="phone"]:focus, 
textarea:focus {
  border-color: #C4A709;
  box-shadow: 0 0 2px 2px rgb(255 255 255 / 30%);
}
.page_section.content_section{
  margin-bottom:20px;
}
.main_lvl_1 .icon_h,
.main_lvl_1 .icon_w,
.main_lvl_1 .icon{
  display:none;
  max-width:24px;
}
.main_lvl_1{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  transition:0s;
}
.catalog_list > li > a{
  transition:0s;
}
.main_lvl_1 .icon_w{
  display:block;
}
li:hover > a > .main_lvl_1 .icon_h{
  display:block;
}
li:hover > a > .main_lvl_1 .icon_w{
  display: none;
}
.catalog_list > li:hover > a > .main_lvl_1,
.catalog_list > li:hover > a{
  color: #C4A709;
}
.c_filter_item_cat_name{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5px 0px 15px 0px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
#find_cheaper,
#callback_modal,
#one_click_modal{
  display:none;
}
.reviews .nocomments{
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 18px;
  line-height: 36px;
  margin: 10px auto;
  text-align: left;
}
.forms_o .chosen-container{
  width: 100%!important;
  outline: none;
  background: none;
  border: none;
  border-radius: 5px;
}
.forms_o .chosen-container-single .chosen-single{
  line-height: 40px;
  height: 40px;
  outline: none;
  background: #fff;
  box-shadow: none;
  font-weight: normal;
  color: #181818;
  border-radius: 5px;
  border: 1px solid #d1d1d1;
}
.forms_o .chosen-container-single .chosen-single:hover{
    border: 1px solid #000000;

}
.forms_o .chosen-container-single .chosen-search input[type=text]{
  color: #181818;
}
.forms_o .order_block .chosen-container-single input[type="text"]:focus{
  color: #181818;
}

.forms_o .chosen-container-active.chosen-with-drop .chosen-single{
    background: #ffffff;
    border: 1px solid #fff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}
.forms_o .chosen-container-single .chosen-single div{ 
  width: 40px;
  height: 40px;
}
.forms_o .chosen-container-single .chosen-single span{
  margin-right: 0px;
}

.forms_o .chosen-container-single .chosen-single div b{
  background-image: url('../img/icons/drop_down.png?v=2')!important;
  background-size: 100%!important;
  background-position: 0px 0px!important;
  transition:transform 0.5s;
}
.forms_o .chosen-container.chosen-with-drop .chosen-drop{
    border: 0px;
    background: #fff;
    color: #181818;
    font-weight: normal;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.3);
}
.forms_o .chosen-container-single .chosen-drop,
.forms_o .chosen-container .chosen-drop{
  border: 1px solid #C4A709;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}


.forms_o .chosen-container-single .chosen-single div,
.forms_o .chosen-container-active.chosen-with-drop .chosen-single div{
  background: #fff;
}
.forms_o .chosen-container-active.chosen-with-drop .chosen-single div b{
  background-position: 0px 0px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.forms_o .chosen-container .chosen-results li.highlighted{
  background: #C4A709;
  color: #fff;
}
.forms_o .chosen-container .chosen-results{
  margin: 0px 0px 0px 0;
  padding: 0 0 0 0px;
  clear: both;
}
.forms_o .chosen-container .chosen-results li{
  line-height: 22px;
}
.quantity_basket{
  align-items: center;
  border-radius: 3px;
  border: 1px solid #303030;
  overflow: hidden;
}
.basket_count {
  display:flex;
  flex-direction: column;
  width: 100%;
}
.social_login{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
  font-size: 14px;
  line-height:150%;
  margin-top: 10px;
  color: #fff;
}
.social_login ul{
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.social_login ul li{
  display: flex;
  flex-direction: column;
  width: auto;
}
.social_login ul li a{
  display: flex;
  flex-direction: row;
  width: auto;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 6px 8px;
  align-items: center;
}
.social_login ul li a:hover{
  background: #fff;
  color: #000;
}
.social_login ul li a:hover svg path{
  fill: #000;
}
.reg_soc_form{
  max-width: 420px;
  padding: 30px 30px;
  background: #1f1f1f;
  box-sizing: border-box;
  border-radius: 10px;
}
.basket_page_agreement{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 15px;
  width: 100%;
}
.basket_page_agreement input{
  width: 16px;
  height: 16px;
}
.basket_page_agreement label{
  font-size: 11px;
  line-height: 150%;
  color: #fff;
  cursor:pointer;
}
.basket_page_agreement label a{
  color: #fff;
  text-decoration:underline;
}
.basket_page_agreement label a:hover{
  text-decoration:none;
}
.empty_c{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:20px;
  justify-content:center;
}
.empty_icon{
  display: flex;
  flex-direction: column;
  width: 36px;
  height: 36px;
  align-items:center;
  justify-content:center;
}
.fast_buy_block{
  display: flex  ;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.fast_buy_block .main_link{
  min-width:max-content;
}
.order_page_sidebar .step_4 .order_form_wrap{
  padding:0px;
}
.pre_card{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  position: relative;
}


.orders_empty{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.orders_empty_b{
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  text-align: center;
}
.orders_empty_s{
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.orders_empty_a{
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #C4A709;
  padding: 12px 20px;
  line-height: 18px;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin: 0px auto;
}
.orders_empty_a:hover{
  opacity:0.7;
}
.orders_history {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.order_info_num {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.order_info_num span{
  color: #c4a709;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
}
.order_info_date_product {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.order_info_products_count, .order_info_date {
  font-size: 15px;
  line-height: 18px;
  color: #fff;
  font-weight: 300;
}
.order_info_products {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.order_info_products li {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 10px;
  justify-content: space-between;
  gap: 20px;
  background: #1f1f1f;
  color: #fff;
}
.order_profile_product_left {
  display: flex;
  flex-direction: column;
  width: 70px;
  min-width:40px;
}
.order_profile_product_left img {
  display: block;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}
.order_profile_product_left:hover img {
  opacity: 0.7;
}
.order_profile_product_mid {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.order_profile_product_mid_l{
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.order_profile_product_mid_l a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}
.order_profile_product_mid_l a:hover{
  color:#C4A709;
}
.order_info_totals_title{
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.order_profile_product_mid_r a {
  background: #C4A709;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 10px;
  margin: 5px 0px;
  display: inline-block;
}
.order_profile_product_mid_r a:hover{
  background:#C4A709;
  color:#000000;
}
.order_profile_product_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}
.order_profile_product_quantity {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 18px;
  border-radius: 3px;
}
.order_profile_product_quantity span{
  display:none;
}
.order_profile_product_sum {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
}
.order_profile_product_sum span{
  display:none;
}
.order_profile_product_mid span {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #8B8B8B;
}
.order_info_status {
    display: flex;
    height: 34px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
}
.order_info_status span {
    width: auto;
    height: 34px;
    background: #000000;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 12px;
    border-radius: 3px;
}
.order_info_status span.status_green{
  background: #C4A709;
  color: #fff;
}
.order_info_status span.status_yellow{
  background: #C4A709;
  color: #fff;
}
.order_info_status span.status_red{
  background: #ED2421;
  color: #fff;
}
.order_info_more {
  display: none;
  width: 100%;
}
.order_delivery_info{
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #1f1f1f;
  padding: 10px 15px;
  gap: 5px;
}
.order_delivery_info > li span{
  font-weight: 600;
}
.order_info_more.active{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order_info_totals {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.orders_history > li {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px;
  gap: 10px;
  background: #121212;
  border-radius: 6px;
}
.order_info_nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.order_info_read_more {    
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  gap:10px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #C4A709;
  box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.order_info_read_more:hover{
  background-color: #A68E09;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
}
.order_info_read_more svg{
  transform:rotate(90deg);
}
.order_info_read_more.active svg{
  transform:rotate(270deg);
}
.order_repeat{
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  border-radius: 3px;
  padding: 7px 10px;
  margin-top: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.order_repeat:hover{
  background:#C4A709;
  color: #fff;
}
.orders_products_recalls{
  display:flex;
  flex-direction:column;
  width: 100%;
  gap:10px;
}
.orders_products_recalls > li{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 7px;
  padding: 5px 10px;
}
.payment_logos{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: auto;
  min-width: auto;
  max-height: max-content;
  padding: 0px;
}
.order_continue_shopping{
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.order_continue_shopping:hover{
  color:#C4A709;
}
.order_continue_shopping:hover svg path{
  stroke: #C4A709;
}

.addr_basket{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 15px;
  width:100%;
}
.addr_block_use{
  border: none;
  text-decoration: none;
  cursor: pointer;
  width: max-content;
  background-color: #C4A709;
  height: max-content;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  min-height: 34px;
  box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.addr_block_use:hover{
  background-color: #A68E09;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
}
.addr_block{
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 15px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  align-items: center;
  justify-content: flex-start;
  background: #121212;
  margin-bottom: 5px;
}
.addr_block_in{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.addr_block_remove{
  font-size: 26px;
  text-decoration: none;
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
  border-radius: 6px;
}
.addr_block_remove:hover{
  color:#c4a709;
}
.addr_type{
  font-size: 12px;
  font-weight: 300;
  color: #f3f3f3;
}
.addr_addr{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.addr_basket .addr_addr{
  font-size: 14px;
}
.addr_basket .addr_block{
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 15px;
  width: 100%;
  background: #fafcff;
  padding: 5px 10px;
  border-radius: 6px;
  align-items: center;
  justify-content: flex-start;
}
.title_holder{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}
.pop_title_sub{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 130%;
}
.pop_title_sub p{
  margin-bottom:10px;
}
.franchising_form{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  border-radius: 10px;
  padding: 30px 20px;
  background: #1f1f1f;
  max-width: 800px;
  margin: 10px auto;
}
.faq_title{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 150%;
  margin-top: 20px;
}
.faq_block {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
  margin: 10px auto;
}
.faq {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
  border-radius:5px;
  background: #1f1f1f;
}
.faq .faq_question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  transition: 0.5s;
  font-size:16px;
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  line-height: 130%;
  border-radius:5px;
}
.faq .faq_question:hover{
  background:#2b2b2b;
}
.faq .faq_question button {
  transition: 0.5s;
  transform: rotate(0deg);
  border: none;
  background: none;
}
.faq .faq_question button svg path{
  stroke:#fff;
}
.collapse img {
  transition-duration: .3s;
}
.faq .faq_answer {
    display: none;
    padding: 10px;
}
.faq .faq_question button {
    transform: rotate(180deg);
}
.faq.active .faq_question button {
    transform: rotate(0deg);
}
.faq.active .faq_answer {
    display: block;
    border-top: 1px solid #b6b6b6;
}
.gallery_block {
  width:100%;
  margin:0px 0px!important;
}
.gallery_block li{
  padding:5px;
  margin-bottom:0px!important;
}
.gallery_block li a{
  border-radius:5px;
  overflow:hidden;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
}
.gallery_block li a img{
  width:100%;
  display: block;
  transition:0.5s;
}
.gallery_block li a:hover img{
  opacity:0.7;
}
.gallery_block .slick-prev_arrow{
  right: auto;
  top: 50%;
  left: 0px;
  margin-top: -21px;
}
.gallery_block .slick-next_arrow{
  right: 0px;
  top: 50%;
  left: auto;
  margin-top: -21px;
}
.content_double_blocks{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin:0px 0px;
  gap:20px;
}
.content_double_blocks.content_double_blocks_reverse{
  flex-direction:row-reverse;
}
.content_double_block{
  display:flex;
  width:calc(100% / 2 - 20px);
  flex-direction:column;
}
.alert_info_block{
  background: #1f1f1f;
  padding: 15px 15px;
  border-radius: 5px;
  margin: 5px 0px;
  font-size: 16px;
  color: #C4A709;
  display: flex;
  flex-direction: column;
}
.alert_info_block p{
  font-size:16px;
  line-height:150%;
}
.alert_info_block p:last-child{
  margin-bottom:0px;
}
.perevagi_holder{
  background-color: #1f1f1f;
  padding:20px 0px;
  display: flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-bottom:20px;
}
.perevagi_holder h2{
  font-size: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 15px 0px;
  font-weight: 500;
  color: #fff;
}
.perevagi{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}
.perevagi .tpl_perevagi{
  display:flex;
  flex-direction:column;
  width:calc(100% / 3 - 30px);
  gap:10px;
}
.perevagi .tpl_perevagi .tpl_perevagi_img{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:10px;
  max-width:100%;
}
.perevagi .tpl_perevagi .tpl_perevagi_img img{
  width:100%;
  display:block;
  filter:invert(1);
  max-width: 120px;
}

.perevagi .tpl_perevagi .tpl_perevagi_title{
  font-size: 16px;
  font-weight: 500;
  line-height:150%;
  text-transform: uppercase;
  color:#fff;
  text-align:center;
}
.perevagi .tpl_perevagi .tpl_perevagi_subtitle{
  font-size: 15px;
  font-weight: 400;
  line-height:150%;
  color:#fff;
}
.brand_logo_h{
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index:0;
  justify-content: center;
  width: 100%;
  position: relative;
  min-height:500px;
}
.brand_logo{
  max-width:600px;
  display:flex;
  flex-direction:row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: absolute;
  z-index: 9999;
  pointer-events: none;
}
@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
.brand_logo .brand_logo_wl{
  transform-origin: center;
  animation: flip 2s infinite linear;
  width:200px;
}
.brand_logo .brand_logo_wo{
  width: calc(100% - 250px);
  min-width: 160px;
}
.content .free_text{
  color: #fff;
  background: #C4A709;
  padding: 1px 5px;
  border-radius: 5px;
  font-weight: 500;
}
.nav_mobile{
  display:none;
}

#success_adding .pop_r_btns{
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 40px;
  background: #1f1f1f;
}
#success_adding .cart_case li:last-child:not(.empty_c){
  position: absolute;
  bottom: 40px;
  background: #1f1f1f;
  z-index: 3;
  width: 100%;
  margin-bottom: 0px;
  border: none;
  padding: 10px 10px;
  box-shadow: 0px -5px 5px 0px rgb(255 255 255 / 10%);
}
.pro_confirm_img{
  width:60px;
}
.user_cashback{
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 5px;
  width: 100%;
  padding: 10px 10px;
  border-radius: 6px;
  align-items: center;
  justify-content: flex-start;
  background: #121212;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 150%;
}
.user_cashback span{
  font-size:20px;
  font-weight:600;
  color:#C4A709;
}
.cart_wish.active svg path{
  fill:#C4A709!important;
  stroke:#C4A709!important;
}
.color_active,
.size_active{
  display: none!important;
}.lds-ellipsis {
  /* change color here */
  color: #1c4c5b
}
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.price_cart{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.price_cart_s{
  display: flex;
  flex-direction: column;
  width: auto;
}
.find_cheaper{
  font-size: 16px;
  text-decoration: underline;
  color: #fff;
  font-weight: 500;
}
.find_cheaper:hover{
  text-decoration: none;
}
.nav_phone_soc_holder{
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
  align-items: center;
}
.nav_phone_soc_holder > a{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.helper_buttons_nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.helper_buttons_nav > div{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.helper_buttons_nav > div a svg{
  width:22px;
  height:22px;
}
.find_cheaper_text{
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 20px;
  font-weight: 500;
}
.cashback_more{
  display:none;
}
.get_order_url_holder{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.get_order_url{
  line-height: 18px;
  flex-direction: row;
  text-decoration: none;
  margin: 0px auto;
  width: max-content;
  background-color: #fff;
  height: max-content;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 3px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  min-height: 40px;
  box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
}
.get_order_url svg path{
  stroke: #000;
}
.get_order_url:hover{
  background-color: #A68E09;
  box-shadow: inset 0 0 8px 0px rgb(15 15 15 / 30%);
  color: #fff;
}
.get_order_url:hover svg path{
  stroke: #fff;
}
.order_url {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  color: #fff;
}
.order_url span {
  background: #C4A709;
  color: #fff;
  padding: 10px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
}
.section_title_link:hover{
  color:#fff!important;
}
.checkout_bonus{
  background: #121212;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 10px;
  margin-top: 0px;
  border-radius: 6px;
}
.checkout_bonus_use {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.checkout_bonus_use input{
  display:none;
}
.checkout_bonus_use label {
  padding-left: 30px;
  font-weight: 500;
  min-height: 25px;
  display: block;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  line-height: 150%;
}
.price_bonus_use_holder{
  display: none;
}
.price_bonus_use_holder.active {
  display: flex !important;
}
.checkout_bonus_use label:before {
  content: "";
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  position: absolute;
  border: 1px solid #C1C1C1;
  border-radius: 2px;
  content: "";
  transition: .3s;
}
.checkout_bonus_use input:checked+label:before {
  border: 1px solid #C4A709;
}
.checkout_bonus_use label:after {
content: "";
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    left: 5px;
    top: 7.5px;
    background: url(../img/checkbox_tick_n.svg) center no-repeat;
    background-size: contain;
    display: block;
    opacity: 0;
}
.checkout_bonus_use input:checked+label:after {
   opacity:1;
}
.checkout_bonus_text {
  font-size: 12px;
  line-height: 150%;
  padding-left: 30px;
  color: #f3f3f3;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.share_block{
  position: fixed;
  display: none;
  top: 138px;
  width: 460px;
  margin-left: -230px;
  background: #1f1f1f;
  left: 50%;
  padding: 20px;
  padding-top: 40px;
  z-index: 333;
  text-align: center;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 30%);
  border-radius: 10px;
  color: #fff;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.share_block_head{
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  text-align:center;
}
.share_block .pop_close svg path{
  stroke:#fff;
}
.share_block_list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.share_block_list li{
  display: flex;
  flex-direction: column;
}
.share_block_list li a{
  display: flex;
  flex-direction: column;
  position:relative;
  transition:0.5s;
}
.share_block_list li a:hover{
  transform:scale(1.05);
}
.share_block_list li a svg{
  width:100%;
  max-width:48px;
}

.step_4 .form_title{
  display:none;
}
.video_i{
  position:relative;
}
.video_i img{
  height:100%;
  object-fit:cover;
  width:100%;
}
.video_i .play_video_icon{
  position:absolute;
  top: 0px;
  left:0px;
  width:100%;
  height:100%;
  display: flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.product_page_bottom_tabs_char_list_right,
.product_page_bottom_tabs_char_list_right p{
  text-align:right;
}
.video_trigger{
  display: flex;
  position: absolute;
  right: 10px;
  z-index: 2;
  top: 10px;
}
.video_trigger:hover{
  opacity:0.7;
}
.nav_phone_side{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.product_manufacturer{
  font-weight: 500;
  color: #808080;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.product_manufacturer_i{

    display: flex;
    flex-direction: column;
    width: max-content;
}
.product_manufacturer_i:hover{
  opacity:0.7;
}
.product_manufacturer_i img{
  max-height:40px;
}
@media screen and (max-width: 1350px) {
  .category_popup {
    gap: 30px;
  }
  .category_popup > img {
    max-width: 25%;
  }
  .footer_column:nth-child(3) > ul a {
    min-width: unset;
  }
  .subcategories > li {
    width: calc(25%);
  }
  .product_section_bottom .tab_wrapper > ul li a {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .video-container{
    min-height: 260px;
  }
  .ticker-wrapper p:last-child {
    display: none;
  }
  .product_list > li {
    width: calc(33.33% - 6.67px);
  }
  .product_gallery {
    max-width: 440px;
  }
  .product_main_slider {
    width: 440px;
    height: 440px;
  }
  .product_main_slider li {
    height: 440px;
  }
  .basket_page_wrap {
    flex-direction: column;
  }
  .order_page_sidebar{
    max-width: 100%;
    margin: 10px 0px;
  }
  .basket_page_price_info{
    display:flex;
  }
  .step_4 .form_title{
    display:flex;
  }
  .order_page_sidebar{
    order:-1;
  }
  .step_4_mobile .step_4{
    margin-top:10px;
  }
}

@media screen and (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }
  .category_popup > img {
    display: none;
  }
  .category_list {
    column-gap: 40px;
  }
  .category_list > li {
    max-width: unset;
  }
  .footer_top_wrapper {
    padding-bottom: 110px;
  }
 .product_section_bottom .tab_wrapper > ul li a {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 992px) {
  .header_mid_wrapper .logo {
    margin-bottom: 0px;
  }
  #main_menu_open {
    margin-bottom:0px;
  }
  .product_wrap .product_link:hover span:after{
    width: calc(100% + 10px);
    left: -5px;
    top: -5px;
  }
  .basket_page_sidebar_head > div .step{
    display: none;
  }

  .brand_logo_h{
    min-height:320px;
  }
  .cashback_more{
    display:block;
    font-size: 14px;
    text-decoration: underline;
  }

  .review_wrap .review_wrap_img img{
    margin:0px auto;
    width:calc(100% - 50px);
  }
  sp-live-chat{
    display:none!important;
  }
  sp-live-chat.active{
    display:block!important;
  }
  .h_search_form.h_search_form_mobile{
    position: fixed;
    top: 0px;
    background: #1f1f1f;
    margin-top: 0px;
    padding-bottom: 10px;
    z-index: 16;
  }
  .h_search_form.h_search_form_focus .cancel_search{    
    max-height: 45px;
  }
  .nav_mobile{
    background: rgb(31 31 31 / 70%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    padding: 0px 10px 0px 10px;
    z-index: 10;
    box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 20%);
  }
  .nav_mobile ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    gap: 5px;
  }
  .nav_mobile ul li{
    display:flex;
    flex-direction: column;

  }
  .nav_mobile ul li a{
    display:flex;
    flex-direction:column;
    padding: 10px 15px 15px 15px;
    position:relative;
  }

  .nav_mobile ul li a.m_call_basket svg path,
  .nav_mobile ul li a.m_call_user svg path{
    fill:#fff;
  }
  .nav_mobile ul li a:not(.m_call_user,.m_call_basket) svg path{
    stroke: #fff;
  }
  .share_block,
  #login{
    top:10px;
    width:calc(100% - 20px);
    overflow:auto;
    padding-top: 20px;
  }
  li:hover > a > .main_lvl_1 .icon_h{
    display:none!important;
  }
  .main_lvl_1 .icon{
    display:none;
  }
  .catalog_list li a .main_lvl_1 .icon_w,
  .catalog_list li a .main_lvl_1 .icon_w{
    display:block;
  }
  .catalog_list > li.active > a .main_lvl_1 .icon_w{
    display:none;
  }
  .catalog_list > li.active > a .main_lvl_1 .icon_h{
    display:block!important;
  }
  .product_section_top .section_title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .product_section_top .price {
    font-size: 26px;
  }
  .seo_section .section_title {
    font-size: 18px;
  }
  .seo_text_wrapper .subtitle,
  .footer_column .column_header,
  .footer_column:first-child > a,
  .product_section_top .price_wrapper .old_price {
    font-size: 16px;
  }
  .section_header .section_title.section_title_link span, 
  .section_header .section_title.section_title_link,
  .section_title,
  .section_title span{
    font-size:20px;
  }
  .section_header a,
  .category_slider_f li a,
  .category_slider li a,
  .product_wrap .product_link,
  .review_wrap .name,
  .post_wrapper a,
  footer a,
  footer span,
  .catalog_controls .sorting {
    font-size: 13px;
  }
  .product_wrap .price{
    font-size:19px;
    font-weight:600;
  }
  .price_wrapper{
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0px;
  }
  .product_wrap .product_info_wrap{
    padding: 5px 5px;
  }
  .product_wrap .catalog_list_price{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 40px;
    justify-content: center;
    align-items: flex-start;
  }
  .price_wrapper .old_price,
  .review_slider .review_wrap p,
  .product_gallery .product_status {
    font-size: 12px;
  }
  .product_wrap .product_link{
    margin-bottom:5px;
  }
  .section_title span {
    min-width: 167px;
    padding: 4px 0;
  }
  .suggested_products_section .section_title span {
    padding: 4px 16px;
    text-align: left;
  }
  .container {
    padding: 0 16px;
  }
  .product_list{
    gap:6px;
  }
  .product_list > li{
    width: calc(50% - 3px);
  }

  .category_section .container {
    padding: 0 5px;
  }
  .page_section {
    margin-bottom: 15px;
  }
  .section_title{
    margin-bottom:15px;
  }
  .page_section.image_background_section,
  .page_section.seo_section {
    padding: 30px 0;
  }
  .section_header a svg {
    width: 16px;
    height: 16px;
  }
  #main_menu .logo,
  .header_bottom .catalog_list,
  .header_menu > li:nth-child(-n + 2),
  .category_slider_f:after,
  .category_slider:after,
  .ticker-wrapper p:nth-child(n + 3) {
    display: none;
  }
  #main_menu .account_link_holder {
    display: initial;
  }
  .header_mid_wrapper .logo img {
    max-width: 186px;
  }
  .header_mid_wrapper {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  #main_menu {
    width: calc(100% - 40px);
    overflow-y: auto;
  }
  #main_menu .menu_header {
    justify-content: flex-end;
    gap: 25px;
    padding: 8px;
  }
  #header_account_link {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-radius: 5px;
    background-color: #c4a709;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
  }
  #main_menu_close {
    margin-right: auto;
  }
  #main_menu .menu_wrapper {
    justify-content: flex-start;
    align-items: stretch;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 0;
    height: auto;
    min-height: calc(100vh - 147px);
  }
  #main_menu .catalog_list {
    flex-direction: column;
    align-items: stretch;
  }
  #main_menu ul:not(.lang_options) span,
  #main_menu ul:not(.lang_options) a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
  }
  #main_menu .catalog_list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    text-align: left;
    padding-right: 0;
  }
  .front_slider .slick-dots {
    bottom: 10px;
    gap: 5px;
  }
  .catalog_list > li > a svg {
    display: initial;
    transition-duration: .3s;
  }
  .catalog_list > li.active > a svg {
    transform: rotate(-90deg);
  }
  #main_menu .menu_wrapper > a {
    margin-top: auto;
  }
  #main_menu nav ul {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #252525;
    margin-bottom: 20px;
    margin-left: 38px;
  }
  #main_menu .category_popup {
    position: static;
    box-shadow: none;
    padding: 0;
  }
  #main_menu .category_list {
    display: block;
  }
  #main_menu .category_list > li > a {
    display: flex;
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  #main_menu .subcategory_list > li {
    margin-bottom: 0;
  }
  #main_menu .subcategory_list li a {
    padding-left: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .front_slider .slick-dots button {
    width: 6px;
    height: 6px;
  }
  .category_slider_f,
  .category_slider {
    margin: 0;
    clip-path: unset;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 10px;
    margin-bottom: 30px;
  }
  .category_slider_f > li.
  .category_slider > li {
    width: calc(33.33% - 6.67px);
  }
  .product_wrap .product_link {
    line-height: 16px;
    height: 48px;
  }
  .product_wrap .product_status {
    font-size: 10px;
    padding: 7px 8px;
  }
  .brand_slider a {
    padding: 4px 16px;
    height: 100px;
  }
  .review_slider .review_wrap {
    padding: 16px;
  }
  .review_wrap > img {
    height: 200px;
  }
  .review_slider .review_wrap p {
    line-height: 16px;
    height: 64px;
  }
  .post_wrapper a {
    line-height: 18px;
    height: 54px;
  }
  .seo_text_wrapper {
    gap: 20px;
  }
  .footer_top_wrapper {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
    padding-bottom: 50px;
  }
  .footer_column {
    width: calc(50% - 10px);
    align-items: center;
    text-align: center;
  }
  .footer_column:first-child {
    order: -2;
  }
  .footer_column:last-of-type {
    order: -1;
  }
  .footer_column:last-of-type > ul {
    max-height: unset;
    gap: 10px;
  }
  .footer_column:last-of-type a {
    padding-left: 0;
  }
  .footer_bottom_wrapper {
    flex-direction: column;
    gap: 9px;
  }
  .footer_bottom_wrapper > a:last-child {
    margin-left: 0;
  }
  .footer_column:last-of-type .complex_link svg {
    width: 16px;
    height: 16px;
  }
  .subcategories a {
    padding: 0 10px;
    font-size: 14px;
    line-height: 18px;
    gap: 10px;
  }
  .subcategories .image_wrapper {
    height:auto;
  }
  .subcategories > li {
    width: 33%;
  }
  .catalog_wrapper .catalog_filter .filter_item_head{
    font-size:14px;
    padding:15px 0px;
  }
  .catalog_wrapper .catalog_filter {
    display: none;
    position: fixed;
    z-index: 108;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    width: calc(100% - 40px);
    padding: 0;
    height:100%;
    overflow-y: auto;
    background-color: #1f1f1f;
  }
  .catalog_wrapper .catalog_filter .filter_header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: sticky;
    top: 0px;
    left: 0px;
    background: #1f1f1f;
    width: 100%;
    padding: 10px 10px;
    z-index:3;
    box-shadow:0 0px 12px 1px rgba(211, 211, 211, 0.25);
  }
  #mobile_filter_open {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #C4A709;
  }
  .catalog_controls {
    justify-content: space-between;
    gap: 20px;
  }
  .catalog_filter .filter_body {
    position: relative;
    padding: 0px 16px;
    padding-bottom: 30px;
    min-height: calc(100vh - 71px);
  }
  .catalog_mark_list{
    padding: 0px 15px;
  }
  .catalog_filter .buttons_wrap {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    position: sticky;
    background: #1f1f1f;
    z-index: 3;
    padding: 5px 10px;
    box-shadow:0 0px 12px 1px rgba(211, 211, 211, 0.25);
  }
  .catalog_filter .buttons_wrap a {
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .catalog_filter .buttons_wrap > a:first-child {
    border: 1px solid #707070;
  }
  .catalog_filter .buttons_wrap > a:last-child {
    background-color: #C4A709;
  }
  #mobile_filter_close {
    display: flex;
  }
  .product_section_top {
    flex-direction: column;
  }
  .product_gallery {
    margin: 0 auto;
  }
  .product_section_bottom .section_header a {
    padding: 0;
    background: none;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
  .product_section_bottom .section_header a:hover {
    background: none;
    color: #C4A709;
  }
  .tab_wrapper > ul {
    white-space: nowrap;
    overflow-y: auto;
  }
  .product_section_bottom .tab_wrapper > ul li a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .suggested_products .slick-arrow {
    width: 36px;
    height: 36px;
    top: -56px;
  }
  .suggested_products .slick-prev_arrow {
    right: 41px;
  }
  .delivery_info li {
    position: relative;
    transform: translateX(0);
  }
  .info_popup_wrap .popup_content {
    position: fixed;
    bottom: calc(100% + 7px);
    right: 0;
    max-width: 100vw;
    min-width: 288px;
  }
  .info_popup_wrap .popup_content:after {
    display: none;
  }
  .find_cheaper_text{
    font-size:12px;
  }
  .cashback .info_popup_wrap .popup_content{
    position: absolute;
    bottom: calc(100% + 7px);
    right: 0;
    max-width: 100vw;
    min-width: 288px;
    left: 0px;
  }
  .cashback .info_popup_wrap{
    position:unset;
  }
  .delivery_info .info_popup_wrap:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    right: calc(50% - 10px);
    bottom: calc(100% + 5px);
    background-image: url(../img/info_popup_corner.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    transition-duration: .3s;
  }
  .delivery_info .info_popup_wrap:hover:after {
    opacity: 1;
    pointer-events: unset;
  }
  .video-container:hover video{
    opacity:1;
  }
  .video-container:hover img{
    opacity:1; 
  }
  .category_slider_f li.video_active .video-container video,
  .category_slider li.video_active .video-container video{
    opacity:1;
  }
  .category_slider_f li.video_active .video-container img,
  .category_slider li.video_active .video-container img{
    opacity:0;
  }
  .article_list li{
    width:calc(100% / 2 - 10px);
  }
  .account_subsection .input_wrap, .account_subsection .form_inputs button, #submit_order, .cart_section_wrapper .account_subsection .input_wrap {
    width: 100%;
  }
  .order_summary{
    margin-left: 0;
  }
  .cart_section_wrapper {
    flex-direction: column-reverse;
  }
  .contacts_page_map_info{
    max-width: 100%;
  }
  .contacts_page_top_item{
    width: 100%;
  }
  .contacts_page_map_wrap{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .letters_holder{
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .letters_holder span{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .letters a{
    font-size: 24px;
  }
  .helper_block{
    display:none;
    right:10px;
  }
  .helper_block:hover .helper_buttons{
    display: none;
  }
  .helper_block.active{
    display:block;
  }
  .helper_block.active .helper_buttons{
    display: block;
  }
  .helper_block.active .helper_close{
    display: block;
  }
  .helper_block:hover .helper_show{
    display: block;
  }
  .helper_block.active .helper_show{
    display: none;
  }
  .helper_block:hover{
    height: 50px;
  }
  .helper_block .helper_close svg{
    max-height:20px;
  }
  .helper_block.active{
    height: 230px!important;
  }
  .not_found {
    margin-top: 0px;
  }
  .fs_search .filter_row{
    width: 48%;
  }
  .cabinet_tab .cabinet_menu_link{
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    vertical-align: top;
    width: 100%;
    height: 75px;
    padding: 25px 10px;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cabinet_tab .cabinet_menu_link span{
    display: flex;
    position: relative;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }
  .cabinet_tab .cabinet_menu_link::before{
    content: " ";
    display: inline-block;
    width: 3px;
    height: 75px;
    background:#C4A709;
    position: absolute;
    top: 0px;
    left: 0px;
    transition:0.5s;
  }
  .cabinet_tab .cabinet_menu_link:focus,
  .cabinet_tab .cabinet_menu_link:active,
  .cabinet_tab .cabinet_menu_link:hover,
  .cabinet_tab .cabinet_menu_link.active{
    text-decoration: none;
    background: #C4A709;
    color: #fff;
  }
  .cabinet_tab .cabinet_menu_link:focus::before,
  .cabinet_tab .cabinet_menu_link:active::before,
  .cabinet_tab .cabinet_menu_link:hover::before,
  .cabinet_tab .cabinet_menu_link.active::before{
    background:#C4A709;
  }


  .cabinet_tab svg{
    margin-right: 15px;
    margin-left: 10px;
  }
  .cabinet_tab:focus svg path,
  .cabinet_tab:active svg path,
  .cabinet_tab:hover svg path,
  .cabinet_tab.active svg path{
      fill: #fff;
  }
  .cabinet_tab:focus svg.cb_icon path,
  .cabinet_tab:active svg.cb_icon path,
  .cabinet_tab:hover svg.cb_icon path,
  .cabinet_tab.active svg.cb_icon path{
    fill:inherit;
    stroke: #fff;
  }


  .cabinet_tab{
    padding: 0px;
    border-radius: 0px;
    display: block!important;
  }
  .cabinet_tab .inner_tab_content{
    padding: 5px 10px; 
    display: none;
  }
  .cabinet_tab.active .inner_tab_content{
    display: block;
  }
  .cabinet_mobile_menu{
    display: block;
  }
  .pwd_form .row,
  .profile_form .row{
    flex-direction: column;
  }
  .brands_block_list li{
    width:calc(100% / 4);
  }
  #main_menu ul li .main_lvl_1{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0px;
  }
  .main_lvl_1 .icon_w{
    display:block;
    width:28px;
    height:auto;
  }
  footer{
    margin-bottom: 50px;
  }
  .scroll_top{
    bottom:60px;
    right:10px;
  }
  .price_cart{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .find_cheaper{
    font-size: 14px;
  }
  #main_menu #header_account_link {
    width: 100%;
    padding: 0px;
    border-radius: 5px;
    background-color: #c4a709;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    box-shadow: inset 0 0 8px 0 rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content h1{
    font-size: 24px;
  }
  .content h2 strong,
  .content h2 b,
  .content h2{
    font-size: 20px;
  }
  .content h3 strong,
  .content h3 b,
  .content h3{
    font-size: 18px;
  }
  .content h4 strong,
  .content h4 b,
  .content h4{
    font-size: 16px;
  }
  .content h5 strong,
  .content h5 b,
  .content h5{
    font-size: 16px;
  }
  .product_wrap .product_cart_link:hover, #mobile_filter_open:hover, .catalog_filter .buttons_wrap > a:last-child:hover, .product_section_top .buttons_wrap > div:last-child a:first-child:hover, .pagination li:not(.disabled) a:hover{
    background-color: #c4a709;
    box-shadow: none;
  }
}

@media screen and (max-width: 768px) {
  .h_search_form input{
    height:32px;
  }
  .h_search_form button{
    top: 7px;
    height: 36px;
    left: 7px;
  }
  .availability_filter .switch_small{
    min-width:48px;
  }
  .availability_filter{
    gap:5px;
  }
  .sorting_filter > span{
    display: none!important;
  }
  .availability_pre{
    display:none;
  }
  .sorting_filter > span{
    display: none!important;
  }
  .share_block_head{
    font-size:16px;
  }
  .share_block_list li a{
    width:32px;
  }
  .product_wrap .product_bottom_wrap{
    gap:5px;
  }
  .product_options.color_options a {
    width: 18px;
    height: 18px;
  }
  .product_options{
    width: calc(100% - 35px);
  }
  .cabinet_tab svg{
    margin:0px;
  }
  .cabinet_holder .col-xs-12{
    padding-left: 5px;
    padding-right: 5px;
  }
  .cabinet_tab .inner_tab_content{
    padding:5px 5px;
  }
  .order_info_products li{
    gap:10px;
  }
  .order_profile_product_mid_l a {
    font-size: 10px;
    line-height: 14px;
  }
  .order_profile_product_left{
    width: 40px;
    min-width: 40px;
  }
  .order_profile_product_right{
    gap:10px;
  }
  .order_info_totals_title{
    font-size:13px;
  }
  .order_profile_product_mid{
    width:auto;
  }
  .order_profile_product_mid span {
    font-size: 11px;
    line-height: 14px;
  }
  .contacts > li > a.fv_all{
    font-size:12px;
  }
  .order_profile_product_quantity{
    font-size:10px;
    line-height:12px;
  }
  .order_profile_product_sum{
    font-size:12px;
    line-height:16px;
  }
  .order_info_num {
    font-size: 14px;
    line-height: 18px;
  }
  .order_info_num span{
    font-size:12px;
  }
  .order_info_read_more{
    font-size:12px;
    padding: 5px 8px;
  }
  .order_delivery_info{
    font-size:11px;
  }
  .order_info_products_count, 
  .order_info_date {
    font-size: 13px;
    line-height: 16px;
  }
  .orders_history > li{
    padding: 10px 5px;
  }
  .tab_wrapper > ul li a{
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
  }
  .product_options a{
    padding: 4px 6px;
    font-size: 11px;
    line-height: 14px;
  }
  .registration_text > span{
    display: none;
  }
  .confirm_order{
    width:100%;
  }
  .addr_addr{
    font-size:13px;
  }
  .addr_block_use{
    font-size:12px;
    line-height:130%;
  }
  #success_adding .cart_case li:last-child:not(.empty_c){
    position: absolute;
    bottom: 40px;
    background: #1f1f1f;
    z-index: 3;
    width: 100%;
    margin-bottom: 0px;
    border: none;
    padding: 10px 10px;
  }
  .basket_page_sidebar_list_info a{
    font-size:12px;
    line-height: 130%;
  }
  .content_double_blocks{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:20px;
  }
  .content_double_blocks.content_double_blocks_reverse{
    flex-direction:column;
  }
  .content_double_blocks .content_double_block{
    width:100%;
  }
  .faq_title{
    font-size: 17px;
  }
  .faq .faq_question{
    font-size:14px;
  }
  .franchising_form{
    padding: 20px 10px;
  }
  .franchising_form .pop_title{
    font-size:22px;
  }
  .pop_title_sub{
    font-size:13px;
  }
  .product_wrap .cashback{
    font-size:10px;
    margin-top:5px;
  }
  .product_wrap .cashback svg{
    width: 12px;
    height: 12px;
  }
  .product_wrap .product_bottom_wrap{
    margin-top:5px;
  }
  .reviews .review_wrap > span{
    margin-bottom: 10px;
  }
  .reviews .product_recall {
    width: 64px;
  }
  .cart_case{
    margin-bottom:0px;
    max-height: calc(100dvh - 40px - 40px - 140px);
    padding-bottom: 30px;
  }
  .contacts > li > a, .contacts > li > span, .footer_column > ul.f_nav_list > li a, .footer_column > ul.f_nav_list > li span {
    font-size: 14px;
  }
  #main_menu .lang_options a.active, 
  #main_menu .lang_options span{
    background-color: transparent;
    color: #C4A709;
  }
  .ticker-wrapper p{
    font-size:11px;
    line-height:24px;
  }
  .ticker-wrapper,
  .ticker-wrapper div{
    height:24px;
  }
  a > .v_all {
    width: 28px;
    height: 28px;
  }
  .page_section.brand_section {
    background-image: url(../img/brand_section_background2-min.webp);
    background-attachment: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .page_section.review_section{    
    background-image: url(../img/review_section_background2-min.webp);
    background-attachment: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .footer_top_wrapper .logo img.desktop_logo,
  .header_mid_wrapper .logo img.desktop_logo,
  #main_menu .logo img.desktop_logo{
    display:none;
  }
  .footer_top_wrapper .logo img.mob_logo,
  .header_mid_wrapper .logo img.mob_logo,
  #main_menu .logo img.mob_logo{
    display:block;
  }
  .video-container{
    min-height: 190px;
  }
  .header_mid_wrapper {
    flex-wrap: wrap;
  }
  .h_search_form.h_search_form_focus .cancel_search{
    top: 4px;
    right: 14px;
  }
  .h_search_form {
    order: 1;
    margin: 0;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: 5px;
    width: 100vw;
    padding: 0 16px;
    padding-top: 8px;
  }
  .header_menu {
    margin-left: auto;
  }
  .h_search_form button svg {
    width: 20px;
    height: 20px;
  }
  .front_slider a img {
    min-height: 170px;
    object-fit: cover;
  }
  .front_slider a img:not(.mobile_image) {
    display: none;
  }
  .front_slider a:after {
    box-shadow: inset 0 0 40px 18px #000;
    background: rgba(101, 101, 101, 0.05);
  }
  .front_slider .mobile_image {
    display: initial;
    width: 100%;
    height: 100%;
  }
  .footer_top_wrapper {
    flex-direction: column;
    row-gap: 30px;
  }
  .footer_top_wrapper .footer_column {
    order: unset;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .footer_bottom_wrapper {
    align-items: flex-start;
  }
  .subcategories > li {
    width: 50%;
  }
  .product_section_top .counter_wrap button {
    width: 38px;
    height: 38px;
  }
  .reviews .review_wrap {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }
  .reviews .review_wrap .review_star_list {
    margin: 10px 0;
  }
  .product_section_bottom .section_header {
    margin-bottom: 20px;
  }
  .product_section_bottom .specs li span:first-child {
    width: 130px;
  }
  .product_section_top .tab_content li span:first-child {
    max-width: 120px;
  }
  .product_section_top .tab_content li span:last-child {
    flex: 1.3;
  }

  .order_form_top_item .form_item {
    width: 100%;
    max-width: 100%;
  }
  .brands_block_list li{
    width:calc(100% / 3);
  }
  .post_wrapper a{
    font-size:12px;
  }
  .front_article_list li {
    width: calc(100% - 30px);
  }
  .front_article_list li:not(:last-child) {
    margin-bottom: 20px;
  }
  #notify{
    top: 20%;
    left: 50%;
    width: 300px;
    margin-top: 0px;
    margin-left: -150px;
  }
  .pop_close{
    right: 0px;
  }
  .map_holder_left{
    width: 100%;
  }
  .map_nav{
    min-height: auto;
    height: auto;
  }
  .map_holder_right{
    width: 100%;
  }
  #alert{
    right: 12px;
  }
  .to_login, .to_registration, .to_forget_pass{
    padding: 5px 3px;
    font-size: 14px;
  }
  .pop_close{
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .share_block,
  #login{
    top: 10px;
    width: calc(100% - 10px);
    margin-left: 5px;
    left: 0px;
  }
  .preorder_pro{
    font-size: 11px;
  }
  #about,
  #delivery,
  #sizetable{
    width: 100%;
    margin-left: 0px;
    left: 0px;
    top: 10%;
    margin-top: 0px;
  }
  #callback,
  #find_cheaper,
  #one_click_modal,
  #success_adding_compare,  #success_adding_wish{
    width: calc(100% - 10px);
    margin: 0px;
    top: 5px;
    left: 5px;
    padding: 10px 10px;
  }

  .cart_case .quantity_basket input, .basket_case .quantity_basket input{
    width:32px;
    height: 32px;
    padding: 0px;
    font-size: 11px;
  }
  .btn_plus_expire, .btn_plus,
  .btn_minus_expire, .btn_minus{
    width:32px;
    height:32px;
  }
  #success_adding .pop_inner p{
    height: 40px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  #success_adding{
    width: 100%;
    left: 0px;
    margin: 0px;
    top: 0px;
    padding: 0px 0px;
    border-radius: 0px;
    max-height: calc(100% - 130px);
  } 
  #success_adding .pop_r_btns{
    width: 100%;
    position: absolute;
    bottom: 0px;
    left:0px;
    height: 40px;
    background: #1f1f1f;
  }
  #success_adding .pre_card{
    padding-bottom:40px;
  }
  .match_container{
    width: 100%;
  }
  .fs_search .filter_row{
    width: 100%;
  }
  #order_info{
    padding: 5px;
    width: calc(100% - 10px);
    margin: 0px;
    left: 5px;
    top: 50px;
  }

  .perevagi{
    gap:10px;
  }
  .perevagi .tpl_perevagi{
    width:calc(100% / 2 - 10px);
  }
  .perevagi .tpl_perevagi .tpl_perevagi_title{
    font-size:13px;
  }
  .perevagi .tpl_perevagi .tpl_perevagi_subtitle{
    font-size:11px;
  }
  .perevagi .tpl_perevagi .tpl_perevagi_img img{
    max-width:60px;
  }
  .brand_logo{
    max-width:100%;
    gap:20px;
  }
  .brand_logo .brand_logo_wl{
    width:50px;
  }
  .brand_logo .brand_logo_wo{
    max-width:calc(100% - 70px);
  }
  #video iframe{
    height:320px;
  }
}

@media screen and (max-width: 600px) {
  .fast_buy_block{
    flex-direction:column;
  }
  .fast_buy_block .main_link{
    width:100%;
  }
  #login .popup_inner{
    max-height: calc(100vh - 115px);
    overflow: auto;
  } 
  .product_section_bottom .availability_list li a:first-child,
  .product_section_bottom .availability_list li span:first-child{
    width:185px;
  }
  .contacts_page_map_info li{
    padding: 10px 15px;
    font-size: 14px;
  }
  .auth_switcher{
    flex-direction:column;
    align-items: flex-start;
    justify-content: center;
    gap:10px;
  }
  .pop_r_btns{
    gap:5px;
  }
  .pop_r_btns a{
    padding: 5px 10px;
    font-size: 12px;
    min-height: 36px;
  }
  .product_main_slider .slick-arrow{
    width:36px;
    height:36px;
  }
  .product_main_slider .slick-arrow svg{
    width: 18px;
    height: 18px;
  }
  .scroll_top{  
    right: 20px;
    bottom: 60px;
    width: 36px;
    height:36px;
  }
  .ticker-wrapper p:nth-child(n + 2) {
    display: none;
  }
  .ticker-wrapper__first-half,
  .ticker-wrapper__second-half {
    animation: ticker 10s infinite linear forwards;
  }
  .ticker-wrapper__second-half {
    animation: 10s ticker 5s infinite linear forwards;
  }
  .product_list_controls {
    flex-direction: column-reverse;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
  .pagination {
    justify-content: center;
  }
  .product_list_controls .load_more {
    max-width: 310px;
    width: 100%;
  }
  .catalog_controls {
    flex-direction: column-reverse;
    gap: 15px;
    align-items: flex-end;
  }
  #mobile_filter_open {
    width: 100%;
    justify-content: center;
  }

  .order_form_wrap,
  .order_page_sidebar{
    padding:15px;
  }
  .basket_product_info, .basket_product_name{
    line-height: 20px;
  }

  .basket_remove{
    width: 38px;
    height: 38px;
    margin: 0px auto;
  }
  .basket_remove i{
    display: inline-block;
  }
  .basket_remove_text{
    display: inline-block;
  }
  .amount_few{
    text-align: left;
  }
  .price .amount_1{
    text-align: left;
  }
  .total_p_sum{
    text-align: left;
    font-size: 16px;
  }
  .to_tab_delivery_courier, .to_tab_delivery_shop, .to_tab_delivery_newpost, .to_tab_delivery_newpost_courier, .to_tab_cash_pay, .to_tab_sms_pay, .to_tab_card_pay, .to_tab_regular_user, .to_tab_new_user{
    font-size: 15px;
  }
  .order_block,
  .order_page .container{
    padding: 5px;
  }
  .b_title{
    display: none;
    vertical-align: top;
    width: 50%;
    float: left;
    text-align: left;
  }
  .p_h_title{
    display: inline-block;
  }
  .basket_case .cart-images{
    width: 100%;
    border: none;
    margin: 40px auto;
  }
  .basket_product_name_holder{
    display: inline-block;
    width: 100%;
  }
  .order_count{
    display: inline-block;
  }
  .order_history_btnns{
    text-align: center;
  }
  .basket_case thead{
    display: none;
  }
  .basket_product_info,
  .basket_product_name{
    text-align: left;
  }
  .order_f_l{
    display: block;
    float: left;
    width: 50%;
  }
  .order_f_r{
    display: block;
    float: left;
    width: 50%;
  }
  .c_confirm_title{
    background: #fafafa;
    margin: 0px 15px;
    padding: 10px;
  }
  .order_confirm tbody tr{
    border-bottom:1px solid #fafafa;
  }
  .order_confirm tbody tr:last-child{
    border-bottom:1px solid transparent;
  }
  .order_confirm tbody tr td{
    text-align: left;
    display: block;
    width: 100%!important;  
    overflow: hidden;
    border-bottom: 1px solid #414141;
    padding: 12px 15px;
    vertical-align: middle;
  }
  .order_confirm tbody tr:first-child{
    display: none;
  }
  .brands_block_list li{
    width:calc(100% / 2);
  }
  #review_popup{
    width: calc(100% - 10px);
    left: 5px;
    margin: 0px;
  }
  .confirm_info_right{
    font-size:14px;
    text-align:left;
  }
  .confirm_info{
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 500px) {
  .product_section_bottom .tab_wrapper > ul li a{
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
  }
  .form_item--radio label{
    padding-left:25px;
  }
  #main_menu .account_link_holder {
    order: 1;
    width: 100%;
  }
  #main_menu .menu_header {
    flex-wrap: wrap;
  }
  #header_account_link {
    max-width: unset;
  }
  .section_header a b {
    display: none;
  }
  .category_slider_f > li,
  .category_slider > li {
    width: calc(50% - 5px);
  }
  .blog_slider {
    margin-left: -40px;
    margin-right: -16px;
    clip-path: inset(0 0 0 40px);
  }
  .footer_bottom_wrapper ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer_top_wrapper > img {
    max-width: unset;
    width: 100%;
    left: 0;
    transform: none;
  }
  .footer_column:nth-child(3) > ul a {
    min-width: 110px;
  }
  .product_list_controls .load_more {
    max-width: unset;
  }
  .product_section_top .buttons_wrap > div:last-child {
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 10px;
    width: 100%;
  }
  .product_section_top .buttons_wrap > div:last-child > a:nth-child(2) {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .product_section_top .buttons_wrap > div:last-child > a:first-child {
    width: calc(100% - 49px);
    justify-content: center;
  }
  .product_gallery {
    max-width: 343px;
  }
  .product_main_slider {
    width: 343px;
    height: 343px;
  }
  .product_main_slider li {
    height: 343px;
  }
  .product_gallery .product_nav_slider li {
    width: 60px !important;
    height: 60px !important;
  }
  .header_mid_wrapper .logo img{
    max-width:155px;
  }
  .catalog_controls .chosen-container-single .chosen-single span{
    font-size:13px;
  }
  body .widget-fab{
    width:32px!important;
    height:32px!important;
  }
  .basket_page_sidebar_list_sum .cart_sum{
    font-size:14px;
  }
  .basket_page_sidebar_list_info{
    padding-right:5px;
  }
}

@media screen and (max-width: 374px) {
  .catalog_controls .sorting{flex-wrap:wrap;}
  .catalog_controls .chosen-container-single .chosen-single span{
    font-size:12px;
  }
  .form_item--radio label{
    gap:5px;
    font-size:12px;
  }
  .basket_page_sidebar_list_img{    
    max-width: 40px;
    min-width: 40px;
  }
  #main_menu .lang_options a, #main_menu .lang_options span{
    font-size:14px;
  }
  #main_menu .menu_header{
    gap:5px;
  }
  #main_menu .background{
    width:185px;
  }
  .basket_page_sidebar_list_info a {
    font-size:10px;
  }
  .section_header a, .category_slider li a, .category_slider_f li a, .product_wrap .product_link, .review_wrap .name, .post_wrapper a, footer a, footer span, .catalog_controls .sorting{
    font-size:12px;
  }
  .product_wrap .price{
    font-size:15px;
  }
  .product_wrap .product_info_wrap{
    padding:5px;
  }
  .video-container{
    min-height: 140px;
  }
  .product_wrap .stock,
  .price_wrapper .old_price {
    font-size: 10px;
  }
  .header_mid_wrapper .logo img {
    max-width: 160px;
  }
  .section_header a .v_all,
  .section_header a svg {
    display: none;
  }
  .footer_top_wrapper .footer_column {
    align-items: stretch;
  }
  .catalog_controls .chosen-container {
    width: 200px !important;
  }
  .pagination li > * {
    width: 36px;
    height: 36px;
  }
  .product_list_controls .load_more {
    padding: 8.5px;
  }
  .product_info_top,
  .product_section_bottom .section_header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .suggested_products .slick-arrow {
    display: none !important;
  }
  .product_section_bottom .specs li span:first-child {
    width: 100px;
  }
  .product_gallery {
    max-width: 288px;
  }
  .product_main_slider {
    width: 288px;
    height: 288px;
  }
  .product_main_slider li {
    height: 288px;
  }
  .product_gallery .product_nav_slider li {
    width: 60px !important;
    height: 60px !important;
  }

}