     @import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");

:root {
  --red: #ec2828;
  --red-hover: #ef8282;
  --red-active: #ec2828d9;
}



body {
  padding-top: 120px;
  font-family: "Mulish", sans-serif;
  color: #444;
  letter-spacing: -0.408px;
}
header.sticky{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  padding: 14px 0 16px 0;
  background-color: #fff;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
header .top_header_row {
  margin-bottom: 15px;
}
header .top_header_row a:hover {
  opacity: 0.7;
}
header .top_header_row ul {
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
header .top_header_row .rs .call {
  position: relative;
}
header .top_header_row .ls ul li {
  margin-right: 14px;
  transition: .3s;
}
header .top_header_row .ls ul li:hover{
  margin-right: 18px;
  opacity: .5;
  color: var(--red);
}
header .top_header_row .ls ul a {
  display: flex;
  align-items: center;
}
header .top_header_row .ls ul li img {
  margin-right: 6px;
  transition: .3s;
}
header .top_header_row .ls ul li:hover img {
  margin-right: 2px;
}
header .top_header_row .rs .call_socials {
  display: flex;
  justify-content: space-between;
}
header .top_header_row .rs .call > li {
  margin-bottom: -2px;
  padding-bottom: 2px;
}
header .top_header_row .rs .call li {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .top_header_row .rs .call img {
  margin-right: 10px;
}
header .top_header_row .rs .call li svg {
  margin-left: 3px;
}
header .top_header_row .rs .call .rs_call {
  position: absolute;
  top: calc(100% + 2px);
  z-index: 10;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .top_header_row .rs .call > li:hover .rs_call {
  opacity: 1;
  visibility: visible;
}
header .top_header_row .rs .call .rs_call h5 {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 900;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 100px;
}
header .top_header_row .rs .call .rs_call h5:not(:first-of-type) {
  margin-top: 25px;
}
header .top_header_row .rs .call .rs_call .inner {
  padding: 14px 73px 24px 15px;
  background-color: #fff;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
header .top_header_row .rs .call .rs_call .inner ul {
  display: flex;
  flex-direction: column;
}
header .top_header_row .rs .socials li:not(:last-of-type) {
  margin-right: 11px;
}
header .mobile_header {
  position: relative;
  display: none;
}
header .mobile_header .catbt_search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .mobile_header .catalog_button .catalog_button_item {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
header .mobile_header .catalog_button .catalog_button_item img {
  width: 15px;
  margin-right: 4px;
}
header .mobile_header .search_form{
  position: absolute;
  right: 0;
  width: 41px;
  transition: .6s;
}
header .mobile_header .search_form.active{
    width: 100%;
    right: 0;
}
header .mobile_header .search_form .search_item input[type="search"] {
  width: 41px;
  height: 41px;
  padding: 9px 9px 9px 25px;
  border-radius: 100px;
  border: 1px solid rgba(68, 68, 68, 0.2);
  color: transparent;
  background-image: url(../img/searchIcon.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: 8px;
  transition: .6s;
  transition-delay: .6s;
  transition-property: width;
}
header .mobile_header .search_form.active .search_item input[type="search"]{
  width: 100%;
  padding: 9px 9px 9px 42px;
  background-position-x: 8px;
  transition-property: width, padding;
  color: #444;
}
header .mobile_header .search_form .search_item input[type="search"]::placeholder{
  color: transparent;
  transition: .6s;
}
header .mobile_header .search_form.active .search_item input[type="search"]::placeholder{
  color: #757575;
}
header .mobile_header .search_form .search-result{
  position: absolute;
  background: #fff;
  width: 150%;
  max-height: 480px;
  margin-top: 13px;
  margin-left: -25%;
  padding: 15px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header .mobile_header .search_form.active .search-result{
  visibility: visible;
  opacity: 1;
}
header .mobile_header .mobile_topmenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
header .mobile_header .mobile_topmenu .open_bt .open {
  display: flex;
}
header .mobile_header .mobile_topmenu .mobile_topmenu_list {
  display: none;
  position: absolute;
  left: 50%;
  z-index: 20;
  top: calc(100% + 16px);
  width: 96%;
  padding: 44px 0 88px 0;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  transform: translate(-50%);
}
header .mobile_header .mobile_topmenu .mobile_topmenu_list > div {
  opacity: 0;
  transition: 0.5s;
}
header .mobile_header .mobile_topmenu .mobile_topmenu_list.active > div {
  opacity: 1;
}
header .mobile_header .mobile_topmenu ul a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .mobile_header .mobile_topmenu ul li img {
  margin-right: 6px;
}
header .mobile_header .mobile_topmenu .mobile_topmenu_list ul.main_list li {
  margin-bottom: 20px;
}
header .mobile_header .mobile_topmenu .call_socials {
  display: flex;
  justify-content: center;
  margin-top: 62px;
}
header .mobile_header .mobile_topmenu .call_socials .call {
  margin-right: 30px;
}
header .mobile_header .mobile_topmenu .socials {
  display: flex;
}
header .mobile_header .mobile_topmenu .socials li:not(:last-of-type) {
  margin-right: 11px;
}
/***************/
header .mobile_header .mobile_topmenu .wishlist__cart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 65px;
}
header .mobile_header .mobile_topmenu .wishlist_button {
  margin-right: 16px;
}
header .mobile_header .mobile_topmenu .wishlist_button .wishlist_button_item {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  background-color: var(--red);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: -0.408px;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist_button
  .wishlist_button_item
  img {
  margin-right: 4px;
  width: 18px;
}
header .mobile_header .mobile_topmenu .cart_button .cart_button_item {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  background-color: var(--red);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: -0.408px;
}
header .mobile_header .mobile_topmenu .cart_button .cart_button_item img {
  margin-right: 4px;
  width: 18px;
}
header .mobile_header .mobile_topmenu .cart_button .cart_button_item .count {
  margin-right: 4px;
}
header .mobile_header .mobile_topmenu .cart_button .cart_button_item .summ {
  font-weight: 500;
}
header .mobile_header .mobile_topmenu .wishlist__popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  width: 470px;
  max-width: calc(100vw - 30px);
  padding: 15px 21px 25px 11px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__cart.wishlist__open
  .wishlist__popup {
  visibility: visible;
  opacity: 1;
}
header .mobile_header .mobile_topmenu .wishlist__popup .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-left: 10px;
}
header .mobile_header .mobile_topmenu .wishlist__popup h3 {
  font-size: 20px;
  font-weight: 900;
}
header .mobile_header .mobile_topmenu .wishlist__popup .prod_list {
  padding-left: 10px;
  max-height: 130px;
  overflow-y: scroll;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 20px;
}

header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list::-webkit-scrollbar {
  width: 4px;
  background-color: #979797;
  border-radius: 20px;
}

header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
header .mobile_header .mobile_topmenu .wishlist__popup .prod_list_item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
header .mobile_header .mobile_topmenu .wishlist__popup .prod_list_item .image {
  flex: 8%;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .image
  img {
  height: 47px;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .title_price {
  flex: 43%;
  padding-left: 7px;
  font-size: 14px;
  line-height: 18px;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .title_price
  .title {
  font-weight: 900;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .title_price
  .price {
  font-weight: 400;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .to_cart {
  flex: 28%;
  text-align: center;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .to_cart
  button {
  padding: 9px 20px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
header .mobile_header .mobile_topmenu .wishlist__popup .prod_list_item .remove {
  flex: 4%;
}
header
  .mobile_header
  .mobile_topmenu
  .wishlist__popup
  .prod_list_item
  .remove
  button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #8b8b8b38;
  border-radius: 50px;
}

header .mobile_header .mobile_topmenu .cart__popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  width: 470px;
  max-width: calc(100vw - 30px);
  padding: 15px 21px 25px 11px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
header .mobile_header .mobile_topmenu .wishlist__cart.cart__open .cart__popup {
  visibility: visible;
  opacity: 1;
}
header .mobile_header .mobile_topmenu .cart__popup .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-left: 10px;
}
header .mobile_header .mobile_topmenu .cart__popup h3 {
  font-size: 20px;
  font-weight: 900;
}
header .mobile_header .mobile_topmenu .cart__popup .prod_list {
  padding-left: 10px;
  max-height: 130px;
  overflow-y: scroll;
}
header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 20px;
}

header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list::-webkit-scrollbar {
  width: 4px;
  background-color: #979797;
  border-radius: 20px;
}

header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
header .mobile_header .mobile_topmenu .cart__popup .prod_list_item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
header .mobile_header .mobile_topmenu .cart__popup .prod_list_item .image {
  flex: 8%;
}
header .mobile_header .mobile_topmenu .cart__popup .prod_list_item .image img {
  height: 47px;
}
header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list_item
  .title_price {
  flex: 43%;
  padding-left: 7px;
  font-size: 14px;
  line-height: 18px;
}
header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list_item
  .title_price
  .title {
  font-weight: 900;
}
header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list_item
  .title_price
  .price {
  font-weight: 400;
}
header .mobile_header .mobile_topmenu .cart__popup .prod_list_item .to_cart {
  flex: 28%;
  text-align: center;
}
header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list_item
  .to_cart
  button {
  padding: 9px 20px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
header .mobile_header .mobile_topmenu .cart__popup .prod_list_item .remove {
  flex: 4%;
}
header
  .mobile_header
  .mobile_topmenu
  .cart__popup
  .prod_list_item
  .remove
  button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #8b8b8b38;
  border-radius: 50px;
}
header .mobile_header .mobile_topmenu .cart__popup .bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
header .mobile_header .mobile_topmenu .cart__popup .bot .for_purchase {
  padding: 9px 40px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
header .mobile_header .mobile_topmenu .cart__popup .bot .items_info {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .mobile_header .mobile_topmenu .cart__popup .bot .count {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  color: var(--red);
}
header .mobile_header .mobile_topmenu .cart__popup .bot .total_price {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: var(--red);
}
/*********************/
header .mobile_header .mobile_topmenu .bot_close {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, 0);
}
header .mobile_header .mobile_topmenu .bot_close button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--red);
  border-radius: 50px;
}
.menu_header_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.menu_header_row .catalog__search {
  display: flex;
}
.menu_header_row .wishlist__cart {
  position: relative;
  display: flex;
}
.menu_header_row .catalog_button {
  margin-right: 16px;
}
.menu_header_row .catalog_button .catalog_button_item {
  display: flex;
  align-items: center;
  padding: 9px 20px;
  background-color: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 100px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
  transition: 0.3s;
}
.menu_header_row .catalog_button .catalog_button_item:hover {
  background-color: #fff;
  color: var(--red);
}
.menu_header_row .catalog_button .catalog_button_item svg {
  margin-right: 10px;
}
.menu_header_row .catalog_button .catalog_button_item svg path {
  transition: 0.3s;
}
.menu_header_row .catalog_button .catalog_button_item:hover svg path {
  fill: var(--red);
}
.menu_header_row .search_form {
  position: relative;
}
.menu_header_row .search_form .search_item input[type="search"] {
  width: 303px;
  padding: 9px 15px 9px 55px;
  border-radius: 100px;
  border: 1px solid rgba(68, 68, 68, 0.2);
  background-image: url(../img/searchIcon.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
}
.menu_header_row .search_form .search_item input[type="search"]::placeholder {
  font-size: 20px;
  font-weight: 400;
}
.menu_header_row .search_form .search-result{
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 470px;
  max-height: 275px;
  overflow-y: auto;
  margin-top: 10px;
  padding: 14px 0;
  background-color: #fff;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}
.menu_header_row .search_form .search-result.active{
  visibility: visible;
  opacity: 1;
}
.menu_header_row .search_form .search-result::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 20px;
}

.menu_header_row .search_form .search-result::-webkit-scrollbar {
  width: 4px;
  background-color: #979797;
  border-radius: 20px;
}

.menu_header_row .search_form .search-result::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
.menu_header_row .search_form .search-result .item > a{
  display: flex;
  padding: 4px 16px;
  transition: .3s;
}
.menu_header_row .search_form .search-result .item > a:hover{
  background: #c3c3c333;
}
.menu_header_row .search_form .search-result .item img{
  flex: 0 0 18%;
  width: 18%;
}
.menu_header_row .search_form .search-result .item .desc{
  flex: 0 0 70%;
  padding-left: 14px;
  font-size: 13px;
}
.menu_header_row .search_form .search-result .item .desc .prices .price{
  font-size: 15px;
}
.menu_header_row .wishlist_button {
  margin-right: 16px;
}
.menu_header_row .wishlist_button .wishlist_button_item {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 9px 12px;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: -0.408px;
  transition: 0.3s;
}
.menu_header_row .wishlist_button .wishlist_button_item:hover {
  color: var(--red);
  background-color: #fff;
}
.menu_header_row .wishlist_button .wishlist_button_item svg {
  margin-right: 12px;
}
.menu_header_row .wishlist_button .wishlist_button_item svg path {
  transition: 0.3s;
}
.menu_header_row .wishlist_button .wishlist_button_item:hover svg path {
  fill: var(--red);
}
.menu_header_row .cart_button .cart_button_item {
  display: none;
  align-items: center;
  padding: 11px 12px;
  background-color: var(--red);
  border-radius: 6px;
  color: #fff;
  border: 1px solid var(--red);
  font-size: 20px;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: -0.408px;
  transition: 0.3s;
}
.menu_header_row .cart_button:hover .cart_button_item {
  background-color: #fff;
  color: var(--red);
}
.menu_header_row .cart_button .cart_button_item svg {
  margin-right: 12px;
}
.menu_header_row .cart_button .cart_button_item svg path {
  transition: 0.3s;
}
.menu_header_row .cart_button:hover .cart_button_item svg path {
  fill: var(--red);
}
.menu_header_row .cart_button .cart_button_item .count {
  margin-right: 12px;
}
.menu_header_row .cart_button .cart_button_item .summ {
  font-weight: 500;
}
.menu_header_row .wishlist__popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  width: 470px;
  max-width: calc(100vw - 30px);
  padding: 15px 21px 25px 11px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.menu_header_row .wishlist__cart.wishlist__open .wishlist__popup {
  visibility: visible;
  opacity: 1;
}
.menu_header_row .wishlist__popup .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-left: 10px;
}
.menu_header_row .wishlist__popup h3 {
  font-size: 20px;
  font-weight: 900;
}
.menu_header_row .wishlist__popup .prod_list {
  padding-left: 10px;
  max-height: 130px;
  overflow-y: scroll;
}
.menu_header_row .wishlist__popup .prod_list::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 20px;
}

.menu_header_row .wishlist__popup .prod_list::-webkit-scrollbar {
  width: 4px;
  background-color: #979797;
  border-radius: 20px;
}

.menu_header_row .wishlist__popup .prod_list::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
.menu_header_row .wishlist__popup .prod_list_item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.menu_header_row .wishlist__popup .prod_list_item .image {
  flex: 8%;
}
.menu_header_row .wishlist__popup .prod_list_item .image img {
  height: 47px;
}
.menu_header_row .wishlist__popup .prod_list_item .title_price {
  flex: 43%;
  padding-left: 7px;
  font-size: 14px;
  line-height: 18px;
}
.menu_header_row .wishlist__popup .prod_list_item .title_price .title {
  font-weight: 900;
}
.menu_header_row .wishlist__popup .prod_list_item .title_price .price {
  font-weight: 400;
}
.menu_header_row .wishlist__popup .prod_list_item .to_cart {
  flex: 28%;
  text-align: center;
}
.menu_header_row .wishlist__popup .prod_list_item .to_cart button {
  padding: 9px 20px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
.menu_header_row .wishlist__popup .prod_list_item .remove {
  flex: 4%;
}
.menu_header_row .wishlist__popup .prod_list_item .remove button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #8b8b8b38;
  border-radius: 50px;
}
.menu_header_row .cart__popup__wr{
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
  padding-top: 10px;
  width: 470px;
  max-width: calc(100vw - 30px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.menu_header_row .cart_button:hover .cart__popup__wr{
  opacity: 1;
  visibility: visible;
}
.menu_header_row .cart__popup {
  
  padding: 15px 21px 25px 11px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}

.menu_header_row .wishlist__cart.cart__open .cart__popup {
  visibility: visible;
  opacity: 1;
}
.menu_header_row .cart__popup .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-left: 10px;
}
.menu_header_row .cart__popup .woocommerce-mini-cart__total, .menu_header_row .cart__popup .woocommerce-mini-cart__buttons{
  display: none;
}
.menu_header_row .cart__popup h3 {
  font-size: 20px;
  font-weight: 900;
}
.menu_header_row .cart__popup .prod_list {
  padding-left: 10px;
  max-height: 157px;
  overflow-y: scroll;
}
.menu_header_row .cart__popup .prod_list::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 20px;
}

.menu_header_row .cart__popup .prod_list::-webkit-scrollbar {
  width: 4px;
  background-color: #979797;
  border-radius: 20px;
}

.menu_header_row .cart__popup .prod_list::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
.menu_header_row .cart__popup .prod_list_item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.menu_header_row .cart__popup .prod_list_item .image {
  flex: 8%;
}
.menu_header_row .cart__popup .prod_list_item .image img {
  height: 47px;
}
.menu_header_row .cart__popup .prod_list_item .title_price {
  flex: 43%;
  padding-left: 7px;
  font-size: 14px;
  line-height: 18px;
}
.menu_header_row .cart__popup .prod_list_item .title_price .title {
  font-weight: 900;
}
.menu_header_row .cart__popup .prod_list_item .title_price .price {
  font-weight: 400;
}
.menu_header_row .cart__popup .prod_list_item .to_cart {
  flex: 28%;
  text-align: center;
}
.menu_header_row .cart__popup .prod_list_item .to_cart button {
  padding: 9px 20px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
.menu_header_row .cart__popup .prod_list_item .remove {
  flex: 4%;
}
.menu_header_row .cart__popup .prod_list_item .remove button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #8b8b8b38;
  border-radius: 50px;
}
.menu_header_row .cart__popup .woocommerce-mini-cart-item{
  margin-bottom: 10px;
}
.menu_header_row .cart__popup .woocommerce-mini-cart-item,
.menu_header_row .cart__popup .woocommerce-mini-cart-item a{
  display: flex;
  align-items: center;
}
.menu_header_row .cart__popup .woocommerce-mini-cart-item a.remove_from_cart_button{
  order: 3;
  justify-content: center;
  margin-right: 15px;
  width: 18px;
  height: 18px;
  background-color: #e6e6e6;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.menu_header_row .cart__popup .woocommerce-mini-cart-item a:nth-child(2){
  order: 1;
  flex: 1 0 30%;
  padding-right: 10px;
  line-height: 19px;
  font-size: 14px;
  font-weight: 800;
}
.menu_header_row .cart__popup .woocommerce-mini-cart-item a:nth-child(2) img{
  width: 80px;
  padding-right: 10px;
}
.menu_header_row .cart__popup .quantity{
  order: 2;
  flex: 0 0 33%;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  word-spacing: -2px;
}
.menu_header_row .cart__popup .quantity .woocommerce-Price-amount{
  padding-left: 5px;
  color: #444;
  word-spacing: 0px;
  font-weight: 500;
}
.menu_header_row .cart__popup .bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.menu_header_row .cart__popup .bot .for_purchase {
  padding: 9px 40px;
  background-color: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
.menu_header_row .cart__popup .bot .items_info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu_header_row .cart__popup .bot .count {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  color: var(--red);
}
.menu_header_row .cart__popup .bot .total_price {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: var(--red);
}
.hero_slider {
  padding: 55px 0 17px 0;
}
.hero_slider .slide .title {
  margin-bottom: 18px;
  padding-top: 90px;
  font-size: 48px;
  font-weight: 900;
  line-height: 104.167%;
  letter-spacing: -0.408px;
}
.hero_slider .slide .desc {
  padding-right: 45px;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -0.408px;
}
.hero_slider .slider_nav {
  display: flex;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 65px;
}
.hero_slider .slider_nav .details {
  position: relative;
  z-index: 9;
  margin-right: 32px;
  padding: 13px 45px;
  color: #fff;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
  background-color: var(--red);
  border-radius: 100px;
}
.hero_slider .slider_nav .details::selection {
  background-color: transparent;
}
.hero_slider .slider_nav .prev_next {
  display: flex;
  position: relative;
  z-index: 9;
}
.hero_slider .slider_nav .prev_next button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 100px;
  cursor: pointer;
  transition: .3s;
}
.hero_slider .slider_nav .prev_next button:hover{
  background-color: #fff;
  
}
.hero_slider .slider_nav .prev_next button:first-of-type {
  margin-right: 12px;
}
.hero_slider .slider_nav .prev_next button svg path{
  transition: .3s;
}
.hero_slider .slider_nav .prev_next button:hover svg path{
  stroke: var(--red);
}
.hero_slider .owl-dots {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
}
.hero_slider .owl-dots .owl-dot {
  width: 6px;
  height: 32px;
  margin-bottom: 10px;
  border: 1px solid;
  border-color: var(--red);
  border-radius: 30px;
  transition: 0.3s;
}
.hero_slider .owl-item .desc ul{
  padding-left: 20px;
}
.hero_slider .owl-item .desc ul li{
  margin-bottom: 9px;
}
.hero_slider .owl-item .desc ul li:before{
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3E%3Cpath d='M10.5 1.5L5.5 11.5L1.5 7' stroke='%23EC2828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
}
.hero_slider .owl-dots .owl-dot.active {
  height: 65px;
  background-color: var(--red);
}
.hero_slider .owl-item.active .title{
  animation: fadeInDown ease 1s .5s both;
}
.hero_slider .owl-item.active .desc{
  animation: fadeInUp ease 1s 1s both;
}
.hero_slider .owl-item.active .slider_img{
  animation: bounceIn ease 1s 1s both;
}
.hero_brands h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 181.25%;
  letter-spacing: -0.408px;
  text-transform: uppercase;
}
.hero_brands .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 0 40px 0;
}
.sv_cat_products .sv_res_ord{
  display: flex;
  justify-content: space-between;
  padding: 30px 0 20px 0;
}
.sv_cat_products .sv_res_ord .woocommerce-notices-wrapper{
  position: absolute;
}
.sv_cat_products .sv_res_ord select{
  padding: 6px;
  border: 1px solid var(--red);
  border-radius: 7px;
  outline: none;
}
.sv_cat_products .sv_product_item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 40px;
  padding-left: 12px;
  padding-right: 12px;
}
.sv_cat_products .sv_product_item .prod_attr {
  position: absolute;
  top: 6px;
  right: 0;
  width: 100%;
  padding: 0 7px;
  display: flex;
  justify-content: space-between;
}
.sv_cat_products .sv_product_item .prod_attr .descount {
  position: relative;
  left: 10px;
  z-index: 5;
}
.sv_cat_products .sv_product_item .prod_attr .delete_compare {
  position: relative;
  right: 10px;
  z-index: 5;
  height: fit-content;
  cursor: pointer;
  transition: .3s;
}
.sv_cat_products .sv_product_item .prod_attr .delete_compare:hover {
  transform: rotate(180deg);
}
.sv_cat_products .sv_product_item .prod_attr .to_wishlist:hover {
  box-shadow: 0 0 7px 1px #444;
}
.sv_cat_products .sv_product_item .prod_attr .to_wishlist svg circle {
  transition: 0.2s;
}
.sv_cat_products .sv_product_item .prod_attr .to_wishlist:active svg circle {
  fill: #717171;
  stroke: #717171;
}
.sv_cat_products .sv_product_item .product_image {
  position: relative;
  z-index: 4;
  margin-bottom: 22px;
}
.sv_cat_products .sv_product_item .product_image img {
  display: block;
  height: 245px;
  margin: 0 auto;
  object-fit: contain;
}
.sv_cat_products .sv_product_item .product_params {
  display: flex;
  flex-direction: column;
  height: inherit;
  margin-top: auto;
}
.sv_cat_products .sv_product_item .title {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: -0.408px;
  transition: 0.3s;
}
.sv_cat_products .sv_product_item .title:hover {
  opacity: 0.7;
}
.sv_cat_products .sv_product_item .stock{
  position: relative;  
  padding-left: 14px;
  font-size: 13px;
  font-weight: 700;
}
.sv_cat_products .sv_product_item .stock:before{
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #4be100;
  border-radius: 100px;
}
.sv_cat_products .sv_product_item .outofstock{
  position: relative;  
  padding-left: 14px;
  font-size: 13px;
  font-weight: 700;
}
.sv_cat_products .sv_product_item .outofstock:before{
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #ec2829;
  border-radius: 100px;
}
.sv_cat_products .sv_product_item .product_code {
  margin-bottom: 9px;
  color: #8b8b8b;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: -0.408px;
}
.sv_cat_products .sv_product_item .product_code span.code {
  margin-bottom: 18px;
  color: #444444;
}
.sv_cat_products.compare .compare_row{
  display: flex;
  overflow-x: scroll;
}
.sv_cat_products.compare .compare_row::-webkit-scrollbar-track {
  background: #e9e9e9;
  border-radius: 20px;
}

.sv_cat_products.compare .compare_row::-webkit-scrollbar {
  height: 10px;
  background-color: #979797;
  border-radius: 20px;
}

.sv_cat_products.compare .compare_row::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
.sv_cat_products.compare .compare_col{
  flex: 0 0 30%;
}
.sv_cat_products.compare .sv_product_item .product_image{
  height: 250px;
}
.sv_cat_products.compare .sv_product_item .product_image > a{
  display: flex;
  height: inherit;
}
.sv_cat_products .pagination{
  padding-top: 40px;
}
.sv_cat_products .pagination > *{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  border: 1px solid var(--red);
  border-radius: 5px;
}
.excerpt {
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 137.5%;
  letter-spacing: -0.408px;
}
.prices {
  display: flex;
  margin-top: auto;
  margin-bottom: 20px;
}
.prices .price {
  margin-right: 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: -0.408px;
}
.prices .old_price {
  color: #8b8b8b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.408px;
  text-decoration-line: line-through;
}
.cart_details {
  display: flex;
}
.cart_details .details {
  margin-right: 8px;
  padding: 10px 35px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
  background-color: var(--red);
  border-radius: 100px;
  color: #fff;
  transition: 0.3s;
}
.cart_details .details:hover {
  background-color: var(--red-hover);
}
.cart_details .details:active {
  background-color: var(--red-active);
}
.cart_details .to_cart {
  display: none;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 11px;
  border-radius: 100px;
  border: 1px solid var(--red);
  transition: 0.3s;
}
.cart_details .to_cart:hover {
  background-color: var(--red);
  border-color: var(--red);
}
.cart_details .to_cart svg path {
  transition: 0.3s;
}
.cart_details .to_cart:hover svg path {
  fill: #fff;
}
.cart_details .to_cart:active {
  background-color: var(--red-active);
}
.cart_details .to_cart:active svg path {
  fill: #fff;
}
.cart_details .to_compare {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-left: 9px;
  padding: 8px;
  padding-left: 9px;
  border-radius: 100px;
  border: 1px solid var(--red);
  transition: 0.3s;
}
.cart_details .to_compare:hover {
  background-color: var(--red);
  border-color: var(--red);
}
.cart_details .to_compare svg path {
  transition: 0.3s;
}
.cart_details .to_compare:hover svg path {
  fill: #fff;
}
.cart_details .to_compare:active {
  background-color: var(--red-active);
}
.cart_details .to_compare:active svg path {
  fill: #fff;
}
.cart_details .to_compare.added-to-favorites{
  background-color: var(--red);
}
.cart_details .to_compare.added-to-favorites svg path{
  fill: #fff;
}
.cart_details .added_to_cart{
  position: absolute;
  bottom: 0;
  color: var(--red);
  text-decoration: underline;
}
.sv_mp_pnd{
    padding: 60px 0 50px 0;
}
.sv_mp_pnd nav {
  margin-bottom: 65px;
}
.sv_mp_pnd .sv_mp_pnd_nav {
  display: flex;
  border: 1px solid var(--red);
  border-radius: 40px;
  overflow: hidden;
}
.sv_mp_pnd .sv_mp_pnd_nav button {
  flex: 0 0 33.4%;
  font-weight: 700;
  color: var(--red);
  padding: 11px 0;
}
.sv_mp_pnd .sv_mp_pnd_nav button.active {
  background-color: var(--red);
  color: #fff;
}
.sv_mp_pnd .slick-track {
  display: flex !important;
}
.sv_mp_pnd .slick-slide {
  height: inherit !important;
}
.sv_mp_pnd .slider .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  border: 1px solid var(--red);
  transition: .3s;
}
.sv_mp_pnd .slider .slick-arrow:hover{
  background-color: #fff;
}
.sv_mp_pnd .slider .slick-arrow svg path{
  transition: .3s;
}
.sv_mp_pnd .slider .slick-arrow:hover svg path{
  stroke: var(--red);
}
.sv_mp_pnd .slider .prev.slick-arrow {
  position: absolute;
  z-index: 2;
  left: -60px;
  top: 22%;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.sv_mp_pnd .slider .next.slick-arrow {
  position: absolute;
  z-index: 2;
  right: -60px;
  top: 22%;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.mp_kitchen .kitchen {
  position: relative;
}
.mp_kitchen .m_img {
  width: 100%;
}
.mp_kitchen .info_item {
  position: absolute;
  cursor: default;
}
.mp_kitchen .info_item.if1 {
  top: 41%;
  left: 13%;
}
.mp_kitchen .info_item.if2 {
  top: 19%;
  left: 26%;
}
.mp_kitchen .info_item.if3 {
  top: 15%;
  left: 44%;
}
.mp_kitchen .info_item.if4 {
  top: 38%;
  left: 79%;
}
.mp_kitchen .info_item.if5 {
  top: 70%;
  left: 86%;
}
.mp_kitchen .info_item.if6 {
  top: 51%;
  left: 35%;
}
.mp_kitchen .info_item.if7 {
  top: 52%;
  left: 74%;
}
.mp_kitchen .info_item.if8 {
  top: 68%;
  left: 46%;
}
.mp_kitchen .info_item .info {
  position: absolute;
  z-index: 3;
  bottom: -3px;
  left: 7px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.mp_kitchen .info_item:hover .info {
  visibility: visible;
  opacity: 1;
  left: -3px;
}
.mp_kitchen .info_item.if4 .info,
.mp_kitchen .info_item.if5 .info,
.mp_kitchen .info_item.if7 .info {
  left: auto;
  right: 7px;
}
.mp_kitchen .info_item.if4:hover .info,
.mp_kitchen .info_item.if5:hover .info,
.mp_kitchen .info_item.if7:hover .info {
  left: auto;
  right: -3px;
}
.mp_kitchen .info_item .info .title {
  display: inline-block;
  margin-bottom: 17px;
  padding: 4px 6px;
  color: #fff;
  background-color: var(--red);
  border-radius: 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.408px;
  text-transform: uppercase;
  transition: 0.3s;
}
.mp_kitchen .info_item:hover .info .title {
  margin-bottom: 7px;
}
.mp_kitchen .info_item .info .price {
  padding: 0 6px;
  border-radius: 25px;
  border: 3px solid var(--red);
  background-color: #fff;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}
.mp_kitchen .info_item:hover .info {
  left: 0;
}
.mp_city_contacts {
  padding: 49px 0 73px 0;
}
.mp_city_contacts h4 {
  display: inline-block;
  margin-bottom: 40px;
  padding: 1px 6px;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: 100px;
}
.mp_city_contacts .contacts_block {
  display: flex;
}
.mp_city_contacts .contacts_block:not(:last-of-type) {
  margin-bottom: 15px;
}
.mp_city_contacts .contacts_block .contact {
  flex: 0 0 33.333333%;
  margin-bottom: 60px;
  padding-right: 20px;
}
.mp_city_contacts .contacts_block .contact > div {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
.mp_city_contacts .contacts_block .contact > div img {
  margin-right: 7px;
}
.mp_city_contacts .contacts_block .contact .addres {
  margin-bottom: 6px;
}
.mp_city_contacts .contacts_block .contact .entrance {
  margin-bottom: 23px;
  padding-left: 28px;
  font-size: 16px;
  color: #8b8b8b;
}
.mp_city_contacts .contacts_block .contact .tel {
  margin-bottom: 18px;
}
.mp_city_contacts .contacts_block .contact .tel a {
  display: flex;
  align-items: center;
}
.beauty_in_simplicity {
  padding-top: 70px;
}
.beauty_in_simplicity h2 {
  margin-bottom: 31px;
  font-size: 32px;
  font-weight: 900;
}
.beauty_in_simplicity .desctop_desc{
  margin-bottom: 86px;
  font-size: 20px;
  line-height: 135%;
  font-weight: 300;
}
.beauty_in_simplicity .mobile_beauty {
  display: none;
}
.beauty_in_simplicity .mobile_beauty h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 900;
}
.beauty_in_simplicity .mobile_beauty .mobile_desc {
  font-weight: 300;
  line-height: 22px;
}
.beauty_in_simplicity .m_img img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1980px;
  object-fit: cover;
  object-position: top;
}
.sv_mp_new {
  padding: 112px 0 130px 0;
}
.sv_mp_new h2 {
  display: inline-block;
  margin-bottom: 42px;
  padding: 0px 8px;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  color: var(--red);
  border-radius: 25px;
  border: 3px solid var(--red);
}
.sv_mp_new .n_block_wr {
  margin-bottom: 13px;
}
.sv_mp_new .n_block {
  position: relative;
  display: flex;
  height: 100%;
  padding: 37px 26px;
  color: #fff;
  font-weight: 900;
  border-radius: 40px;
  overflow: hidden;
}
.sv_mp_new .n_block .info {
  position: relative;
  z-index: 7;
  flex: 0 0 50%;
}
.sv_mp_new .n_block.red .info{
    flex: 0 0 80%;
}
.sv_mp_new .n_block .image {
  position: relative;
  z-index: 5;
  flex: 0 0 50%;
}
.sv_mp_new .n_block.red .image {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 65%;
}
.sv_mp_new .n_block .title {
  margin-bottom: 31px;
  font-size: 16px;
  line-height: 24px;
}
.sv_mp_new .n_block .title span{
  display: inline-block;
  margin-top: 9px;
  font-size: 34px;
  line-height: 34px;
}
.sv_mp_new .n_block .price {
  font-size: 36px;
  line-height: 24px;
}
.sv_mp_new .n_block.red {
  background-color: var(--red);
}
.sv_mp_new .n_block.red:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 780px;
  height: 780px;
  transform: translate(-10%, 25%);
  background-image: url(../img/nw_cr1.png);
  background-size: cover;
  transition: 0.4s;
}
.sv_mp_new .n_block.red:hover:after {
  transform: translate(-10%, 25%) scale(1.3);
}
.sv_mp_new .n_block.blue {
  background-color: #69a5ff;
}
.sv_mp_new .n_block.blue:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 349px;
  height: 349px;
  transform: translate(60%, 0%);
  background-image: url(../img/nw_cr1.png);
  background-size: cover;
  transition: 0.4s;
}
.sv_mp_new .n_block.blue:hover:after {
  transform: translate(60%, 0%) scale(1.4);
}
.sv_mp_new .n_block.black {
  background-color: #323232;
}
.sv_mp_new .n_block.black .image img {
  margin: -20px -20px -20px 20px;
}
.sv_mp_new .n_block.black:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 349px;
  height: 349px;
  transform: translate(60%, 0%);
  background-image: url(../img/nw_cr1.png);
  background-size: cover;
  transition: 0.4s;
}
.sv_mp_new .n_block.black:hover:after {
  transform: translate(60%, 0%) scale(1.4);
}
.brands_in_deal {
  padding: 92px 0 130px 0;
}
.brands_in_deal h2 {
  display: inline-block;
  margin-bottom: 66px;
  padding: 0px 10px;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  border-radius: 25px;
  border: 3px solid var(--red);
}
.brands_in_deal .brands_in_deal_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.brands_in_deal .brands_in_deal_nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(25% - 12px);
  padding: 11px 0;
  border-radius: 30px;
  background: #ededed;
  transition: 0.3s;
}
.brands_in_deal .brands_in_deal_nav button.active {
  background-color: var(--red);
}
.brands_in_deal .brands_in_deal_nav button svg path {
  transition: 0.3s;
  fill: #444444;
}
.brands_in_deal .brands_in_deal_nav button.active svg path {
  fill: #fff;
}
.brands_in_deal .slider .item img {
  border-radius: 40px;
  object-fit: cover;
}
.brands_in_deal .slider .prev.slick-arrow {
  position: absolute;
  z-index: 5;
  left: 50px;
  top: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: var(--red);
  border-radius: 50px;
}
.brands_in_deal .slider .next.slick-arrow {
  position: absolute;
  z-index: 5;
  right: 50px;
  top: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: var(--red);
  border-radius: 50px;
}
.brands_in_deal .slick-dots {
  display: flex;
  justify-content: center;
}
.brands_in_deal .slick-dots li {
  margin-right: 9px;
}
.brands_in_deal .slick-dots li button {
  width: 32px;
  height: 6px;
  border-radius: 30px;
  border: 1px solid var(--red);
  font-size: 0;
  transition: 0.3s;
}
.brands_in_deal .slick-dots li.slick-active button {
  width: 65px;
  background-color: var(--red);
}
.testimonials_mp {
  padding: 108px 0 109px 0;
}
.testimonials_mp h2 {
  display: inline-block;
  padding: 0 10px;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  border-radius: 30px;
  border: 3px solid var(--red);
}
.testimonials_mp .title_sl_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 78px;
}
.testimonials_mp .title_sl_nav .sl_nav {
  display: flex;
  align-items: center;
}
.testimonials_mp .title_sl_nav .prev_next {
  display: flex;
}
.testimonials_mp .title_sl_nav .prev_next button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 100px;
  transition: .3s;
}
.testimonials_mp .title_sl_nav .prev_next button:hover{
  background-color: #fff;
}
.testimonials_mp .title_sl_nav .prev_next button:first-of-type {
  margin-right: 12px;
}
.testimonials_mp .title_sl_nav .prev_next button:last-of-type {
  margin-right: 32px;
}
.testimonials_mp .title_sl_nav .prev_next button svg path{
  transition: .3s;
}
.testimonials_mp .title_sl_nav .prev_next button:hover svg path{
  stroke: var(--red);
}
.testimonials_mp .title_sl_nav .leave_feedback {
  margin-right: 32px;
  padding: 12px 45px;
  color: #fff;
  font-weight: 900;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 100px;
  transition: .3s;
}
.testimonials_mp .title_sl_nav .leave_feedback:hover{
  background-color: #fff;
  color: var(--red);
}
.testimonials_mp .testimonials_mp_slider .item {
  padding: 15px 6px;
}
.testimonials_mp .testimonials_mp_slider .iner {
  padding: 33px 19px 36px 20px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}
.testimonials_mp .testimonials_mp_slider .iner .top {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
.testimonials_mp .testimonials_mp_slider .iner .top .img {
  margin-right: 11px;
}
.testimonials_mp .testimonials_mp_slider .iner .top .img img {
  width: 83px;
  height: 83px;
  border: 1px solid #444444;
  border-radius: 100px;
}
.testimonials_mp .testimonials_mp_slider .iner .top .params .title {
  font-weight: 900;
  letter-spacing: 0.07px;
  text-transform: uppercase;
}
.testimonials_mp .testimonials_mp_slider .iner .top .params .contact {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07px;
  text-decoration-line: underline;
  text-transform: uppercase;
  opacity: 0.3;
}
.testimonials_mp .testimonials_mp_slider .iner .bot .testimon_text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.07px;
}
.page_desc_mblock {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page_desc_mblock:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #00000078;
}
.page_desc_mblock h1 {
  position: relative;
  z-index: 5;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}
.page_desc_mblock .desc {
  position: relative;
  z-index: 5;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
}
.desc_mblock_catalog {
  padding: 106px 0;
}
.breadcrumbs {
  padding: 19px 0;
}
.breadcrumbs ul {
  display: flex;
  font-size: 14px;
  font-weight: 500;
}
.breadcrumbs ul li:not(:last-of-type) {
  position: relative;
  margin-right: 18px;
}
.breadcrumbs ul li:not(:last-of-type):after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M3 1L7 5L3 9' stroke='%23444444'/%3E%3C/svg%3E");
  position: absolute;
  right: -14px;
}
.breadcrumbs ul li:last-of-type {
  opacity: 0.49;
}
.sventa_card_product {
  padding: 30px 0 103px 0;
}
.sventa_card_product .cardpr_top_desc .sup {
  margin-bottom: 9px;
  font-weight: 900;
  line-height: 24px;
}
.sventa_card_product .cardpr_top_desc .title {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 900;
  line-height: 24px;
}
.sventa_card_product .cardpr_top_desc .stock{
  position: relative;  
  padding-left: 14px;
  font-size: 15px;
  font-weight: 700;
}
.sventa_card_product .cardpr_top_desc .stock:before{
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #4be100;
  border-radius: 100px;
}
.sventa_card_product .cardpr_top_desc .outofstock{
  position: relative;  
  padding-left: 14px;
  font-size: 15px;
  font-weight: 700;
}
.sventa_card_product .cardpr_top_desc .outofstock:before{
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #ec2829;
  border-radius: 100px;
}
.sventa_card_product .cardpr_top_desc .product_code {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  color: #8b8b8b;
}
.sventa_card_product .cardpr_top_desc .product_code span {
  color: #444444;
}
.sventa_card_product .cardpr_top_desc .desc {
  margin-bottom: 80px;
  font-size: 20px;
  font-weight: 300;
  line-height: 22px;
}

.sventa_card_product .cardpr_top_desc .installment_delivery {
  display: flex;
  margin-bottom: 45px;
}
.sventa_card_product .cardpr_top_desc .installment_delivery img {
  width: 35px;
  margin-right: 18px;
}
.sventa_card_product .cardpr_top_desc .installment {
  display: flex;
  align-items: center;
  margin-right: 25px;
  padding: 18px 52px 18px 19px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.sventa_card_product .cardpr_top_desc .delivery {
  display: flex;
  align-items: center;
  padding: 20px 24px 19px 19px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.sventa_card_product .cardpr_top_desc .insdel_desc_sup {
  font-size: 14px;
  font-weight: 900;
  line-height: 18px;
  color: #ec2828;
}
.sventa_card_product .cardpr_top_desc .insdel_desc_tit {
  font-weight: 900;
  line-height: 18px;
}
.sventa_card_product .cardpr_top_desc .prices {
  margin-bottom: 33px;
}
.sventa_card_product .cardpr_top_desc .prices .price {
  margin-right: 25px;
  font-size: 24px;
}
.sventa_card_product .cardpr_top_desc .prices .old_price {
  font-size: 24px;
}
.sventa_card_product .cardpr_top_desc .cart_towishlist {
  position: relative;
  display: flex;
  align-items: center;
}
.sventa_card_product .cardpr_top_desc .cart_towishlist .to_cart {
  display: none;
  margin-right: 8px;
  padding: 11px 43px;
  color: #fff;
  font-weight: 900;
  border-radius: 100px;
  background-color: var(--red);
  border: 1px solid var(--red);
}
.sventa_card_product .cardpr_top_desc .cart_towishlist .to_compare {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--red);
  border-radius: 100px;
  transition: .3s;
}
.sventa_card_product .cardpr_top_desc .cart_towishlist .added_to_cart{
  position: absolute;
  bottom: -37px;
  color: var(--red);
  text-decoration: underline;
}
.sventa_card_product .cardpr_top_desc .cart_towishlist .to_compare.added-to-favorites {
    background-color: var(--red);
}
.sventa_card_product .cardpr_top_desc .cart_towishlist .to_compare svg path{
  transition: .3s;
}
.sventa_card_product .cardpr_top_desc .cart_towishlist .to_compare.added-to-favorites svg path {
    fill: #fff;
}
.sventa_card_product .info_char_pec_doc {
  margin-top: 79px;
}
.sventa_card_product .info_char_pec_doc .info__doc__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
.sventa_card_product .info_char_pec_doc .info__doc__nav li {
  flex: 0 0 25%;
  overflow: hidden;
}
.sventa_card_product .info_char_pec_doc .info__doc__nav li:first-of-type {
  border-radius: 20px 0 0 20px;
}
.sventa_card_product .info_char_pec_doc .info__doc__nav li:last-of-type {
  border-radius: 0 20px 20px 0;
}
.sventa_card_product .info_char_pec_doc .info__doc__nav li button {
  width: 100%;
  padding: 28px 0;
  transition: 0.3s;
}
.sventa_card_product .info_char_pec_doc .info__doc__nav li button.active {
  background-color: var(--red);
  color: #fff;
}
.sventa_card_product .info_char_pec_doc h3 {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 900;
}
.sventa_card_product .info_char_pec_doc .characteristics__tab ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sventa_card_product .info_char_pec_doc .characteristics__tab ul li {
  display: flex;
  width: calc(100% - 23px);
  padding: 9px 0;
  font-weight: 900;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}
.sventa_card_product
  .info_char_pec_doc
  .characteristics__tab
  ul
  li:nth-child(even) {
  margin-left: auto;
}
.sventa_card_product .info_char_pec_doc .characteristics__tab ul li span {
  margin-left: auto;
  color: #8b8b8b;
}
.sventa_card_product .info_char_pec_doc .characteristics__tab .show_more {
  margin-top: 41px;
  padding: 12px 147px;
  font-weight: 900;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
}
.sventa_card_product .info_char_pec_doc .characteristics__tab .show_more svg {
  margin-left: 10px;
}
.sventa_card_product .info_char_pec_doc .doc_tab .doc_in {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.sventa_card_product .info_char_pec_doc .doc_tab .doc_item {
  flex: 0 0 38%;
  margin-bottom: 25px;
}
.sventa_card_product .info_char_pec_doc .doc_tab .doc_item:nth-child(even) {
  margin-left: 21px;
}
.sventa_card_product .info_char_pec_doc .doc_tab .item_in {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 14px;
  background: #f6f6f6;
  border: 1px solid #8b8b8b;
  border-radius: 20px;
  transition: 0.3s;
}
.sventa_card_product .info_char_pec_doc .doc_tab .doc_item:hover .item_in {
  border-color: #ec2829;
}
.sventa_card_product .info_char_pec_doc .doc_tab .item_in .format {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sventa_card_product .info_char_pec_doc .doc_tab .item_in .text_format {
  margin-left: 7px;
  color: #8b8b8b;
  font-weight: 700;
}
.sventa_card_product .info_char_pec_doc .doc_tab .item_in .t_d {
  padding: 0 45px 0 20px;
  font-weight: 700;
}
.sventa_card_product .info_char_pec_doc .doc_tab .item_in .t_d .desc {
  color: #8b8b8b;
}
.sventa_card_product .info_char_pec_doc .doc_tab .item_in .download {
  margin-left: auto;
  font-weight: 700;
}
.info_tab .video_reviev {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 98px;
  padding: 145px 0;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
}
.info_tab .video_reviev .reviev_play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 103px;
  height: 103px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.4);
  animation: shadow-pulse 1.5s infinite;
  cursor: pointer;
}
.info_tab .info_desc_row {
  align-items: center;
  margin-bottom: 60px;
  font-size: 20px;
  font-weight: 300;
}
.info_tab .info_desc_row .tit {
  margin-bottom: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}
.info_tab .info_desc_row p {
  margin: 0;
}
.info_tab .info_desc_row ul {
  padding-left: 18px;
}
.info_tab .info_desc_row ul li {
  list-style: disc;
}
.installment_section .h_d {
  margin-bottom: 97px;
}
.installment_section h1 {
  font-size: 48px;
  font-weight: 900;
}
.installment_section .inst_desc {
  padding-right: 40px;
  font-size: 20px;
  font-weight: 300;
}
.installment_section .ins_card {
  margin-bottom: 70px;
}
.installment_section .ins_card img {
  margin-bottom: 26px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.installment_section .ins_card .tit {
  font-size: 20px;
  font-weight: 900;
}
.installment_section .ins_card .month {
  font-size: 36px;
  font-weight: 900;
}
.desc_mblock_war_n_serv {
  padding: 131px 0;
}
.war_n_serv_content_sec {
  padding: 44px 0 89px 0;
}
.war_n_serv_content_sec h1 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 900;
}
.war_n_serv_content_sec .m_desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
}
.contact_wns_row {
  margin-top: 63px;
  font-size: 18px;
  font-weight: 500;
}
.contact_wns_row svg {
  margin-right: 7px;
}
.contact_wns_row .cont_tit {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 900;
}
.contact_wns_row .cont_ph {
  margin-bottom: 15px;
}
.contact_wns_row .cont_time {
  margin-bottom: 40px;
}
.desc_mblock_for_partners_pg {
  padding: 131px 0 131px 0;
}
.for_partners_pg_content_sec {
  font-size: 20px;
  font-weight: 300;
}
.for_partners_pg_content_sec h2 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 900;
}
.for_partners_pg_content_sec .phone_mail {
  padding: 28px 0 96px 0;
}
.for_partners_pg_content_sec .phone_mail {
  display: flex;
}
.for_partners_pg_content_sec .phone_mail .phone {
  margin-right: 16px;
}
.for_partners_pg_content_sec .phone_mail > div {
  display: flex;
  align-items: center;
}
.for_partners_pg_content_sec .phone_mail > div svg {
  margin-right: 10px;
}
.for_partners_form .form_wr h3 {
  font-size: 24px;
  font-weight: 900;
}
.for_partners_form .form_wr {
  margin-bottom: 107px;
  padding: 38px 34px 37px 33px;
  background-color: #f6f6f6;
  border-radius: 40px;
}
.desc_mblock_shipping_payment_pg {
  padding: 120px 0;
}
.ship_deliv_boxes .box {
  margin-bottom: 55px;
  padding: 41px 17px 22px 17px;
  border-radius: 40px;
  background: #f6f6f6;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
}
.ship_deliv_boxes .box:first-of-type {
  margin-top: 65px;
}
.ship_deliv_boxes .box:last-of-type {
  margin-bottom: 132px;
}
.ship_deliv_boxes .box h2 {
  display: flex;
  align-items: center;
  margin-bottom: 31px;
  font-size: 24px;
  font-weight: 900;
}
.ship_deliv_boxes .box h2 img {
  margin-right: 20px;
}
.ship_deliv_boxes .box b {
  font-weight: 700;
}
.ship_deliv_boxes .box blockquote {
  margin: 0;
  padding: 16px 21px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #8b8b8b;
}
.ship_deliv_boxes .box h3 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}
.ship_deliv_boxes .box h3 img {
  margin-right: 12px;
}
.ship_deliv_boxes .box .payment_in_row {
  display: flex;
}
.ship_deliv_boxes .box .payment_in_row .payment_in_box {
  flex: 0 0 37%;
  font-size: 16px;
}
.ship_deliv_boxes .box .payment_in_row .payment_in_box:last-of-type {
  margin-left: 5%;
}
.ship_deliv_boxes .box .payment_in_row_cards {
  display: flex;
  flex-wrap: wrap;
}
.ship_deliv_boxes .box .payment_in_row_cards .p_card {
  padding-right: 9px;
}
.ship_deliv_boxes .box .payment_in_row_cards .p_card img {
  border-radius: 14px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
.cards_h3 {
  margin-top: 45px;
}
.payment_in_row_cards {
  margin-bottom: 50px;
}
.desc_mblock_art_ext_pg {
  padding: 142px 0;
}
.sv_art_section {
  padding: 35px 0px 130px 0px;
}
.sv_art_section .article_box {
  margin-bottom: 60px;
}
.sv_art_section img {
  margin-bottom: 32px;
  width: 100%;
  height: 224px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
.sv_art_section .title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}
.sv_art_section .exc {
  margin-bottom: 12px;
  font-weight: 400;
}
.sv_art_section .art_date {
  font-size: 14px;
  font-weight: 300;
}
.desc_mblock_sale_pg {
  padding: 131px 0;
}
.sv_sale_page_section {
  padding: 55px 0 70px 0;
}
.desc_mblock_partners_list_pg {
  padding: 158px 0;
}
.our_partners_p_sec {
  padding: 57px 0 130px 0;
}
.our_partners_p_sec h3 {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
}
.our_partners_p_sec .partner_img {
  display: flex;
  align-self: center;
  justify-content: center;
  margin-bottom: 50px;
}
.our_partners_p_sec a.become_a_partner {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  border-radius: 100px;
  background: #ec2828;
  color: #fff;
  font-weight: 900;
}
.woocommerce-cart h1.entry-title{
  font-size: 25px;
  font-weight: 700;
}
.woocommerce-cart-form .shop_table.cart button[name="update_cart"]{
  display: none;
}
.shop_table.cart tbody > tr{
  vertical-align: middle;
}
.shop_table.cart tbody .product-thumbnail{
  width: 120px;
}
.shop_table.cart tbody .product-name{
  font-weight: 500;
}
.shop_table.cart tbody .product-quantity input.qty{
  width: 50px;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  background-color: #fff;
}
.cart-collaterals .wc-proceed-to-checkout .checkout-button{
  display: inline-block;
  margin-bottom: 90px;
  padding: 10px 28px;
  background-color: var(--red);
  color: #fff;
  font-size: 17px;
  border: 1px solid var(--red);
  border-radius: 100px;
  font-weight: 900;
  line-height: 137.5%;
  letter-spacing: -0.408px;
  transition: 0.3s;
}
.woocommerce-checkout h1.entry-title{
  font-size: 25px;
  font-weight: 700;
}
.woocommerce-billing-fields{
  margin-bottom: 35px;
}
.woocommerce-billing-fields h3{
  display: none;
}
.woocommerce-billing-fields__field-wrapper{
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-billing-fields__field-wrapper input{
  border-radius: 6px;
}
.woocommerce-billing-fields__field-wrapper .form-row{
  flex: 0 0 50%;
  padding: 0 15px;
}
.woocommerce-billing-fields__field-wrapper .form-row#billing_first_name_field{
    margin-right: 0;
}
.woocommerce-billing-fields__field-wrapper label{
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper input{
    width: 100%;
    padding: 10px 17px;
}
.woocommerce-billing-fields__field-wrapper .form-row#billing_address_1_field{
  order: 5;
  flex: 0 0 100%;
}
.woocommerce-checkout h3{
  margin-bottom: 22px;
  font-size: 21px;
  font-weight: 600;
}
.woocommerce-checkout .woocommerce-additional-fields{
  margin-bottom: 40px;
}
.woocommerce-checkout .woocommerce-additional-fields label[for="order_comments"]{
  padding-bottom: 5px;
  padding-left: 15px;
}
.woocommerce-checkout .woocommerce-additional-fields textarea[name="order_comments"]{
  display: block;
  width: calc(100% - 30px);
  min-height: 130px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 6px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order{
    margin-bottom: 75px;
    padding: 15px;
    border: 1px solid rgba(68, 68, 68, 0.2);
    border-radius: 6px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead tr th{
  padding-bottom: 15px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order .woocommerce-privacy-policy-text{
  display: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order button[name="woocommerce_checkout_place_order"]{
    padding: 11px 12px;
    background-color: var(--red);
    border-radius: 6px;
    color: #fff;
    border: 1px solid var(--red);
    font-size: 19px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.408px;
    transition: 0.3s;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order button[name="woocommerce_checkout_place_order"]:hover{
  opacity: .8;
}
/**********/

.woocommerce-checkout.woocommerce-order-received h1{
    margin: 55px 0;
    text-align: center;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-order ul.woocommerce-thankyou-order-details.order_details{
    display: flex;
    margin: 0;
    padding: 0;
    padding-bottom: 23px;
    border-bottom: 1px solid #787878;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-order ul.woocommerce-thankyou-order-details.order_details > li{
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    padding-right: 55px;
    padding-left: 12px;
    list-style: none;
    border-right: 1px dashed #787878;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-order ul.woocommerce-thankyou-order-details.order_details > li:first-of-type{
    padding-left: 0;
}
.woocommerce-checkout.woocommerce-order-received h2.woocommerce-order-details__title{
    display: none;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-order-details{
  margin-top: 40px;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-table--order-details{
    margin-bottom: 120px;
    font-size: 15px;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-table--order-details thead{
    border-bottom-width: 5px;
    border-color: transparent;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce-table--order-details tfoot{
    border-top-width: 25px;
    border-color: transparent;
    font-size: 14px;
}

/**********/
.catalog_filter .woof_price3_search_container.woof_container .woof_container_inner{
  background-color: transparent;
}
.catalog_filter .woof_price3_search_container .woof_container_inner .irs-bar{
  background-color: #ec2829;
}
.catalog_filter .woof_price3_search_container .woof_container_inner .irs-handle{
  border-color: #ec2829;
}
.catalog_filter .woof_price3_search_container .woof_container_inner .irs-from{
  background-color: #ec2829;
}
.catalog_filter .woof_price3_search_container .woof_container_inner .irs-from:before{
  border-top-color: #ec2829;
}
.catalog_filter .woof_price3_search_container .woof_container_inner .irs-to{
  background-color: #ec2829;
}
.catalog_filter .woof_price3_search_container .woof_container_inner .irs-to:before{
  border-top-color: #ec2829;
}
.catalog_filter .woof_container .woof_container_inner{
  padding: 15px 11px;
  color: #fff;
  background-color: #333;
  border-radius: 8px;
}
.catalog_filter .woof_container .woof_container_inner h4{
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
}
.catalog_filter .woof_container .woof_container_inner ul.woof_list{
  font-size: 14px;
}
.catalog_filter .woof_container .woof_container_inner ul.woof_list li{
  display: flex;
}
.catalog_filter .woof_container .woof_container_inner ul.woof_list li .icheckbox_square-blue{
  padding-right: 22px;
}
.woocommerce-pagination{
  margin-top: 25px;
}
.woocommerce-pagination > ul{
  display: flex;
}
.woocommerce-pagination > ul li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  border: 1px solid var(--red);
  border-radius: 5px;
}
.woocommerce-pagination > ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.woocommerce-pagination > ul li .current{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  color: #fff;
}
footer {
  margin-top: 15px;
  padding: 39px 0 27px 0;
  background-color: #444444;
  color: #fff;
}
footer .f_menu ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4px;
  padding-left: 25px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
footer .f_menu li {
  flex: 33.3333333333%;
  margin-bottom: 2px;
}
footer .f_socials ul {
  display: flex;
  padding-top: 15px;
}
footer .f_socials li {
  margin-right: 11px;
}
footer .onepx {
  margin-top: 30px;
  text-align: center;
}
.sventa_modal_box {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.sventa_modal_box.active {
  opacity: 1;
  visibility: visible;
}
.sventa_modal_box .close {
  position: absolute;
  top: 32px;
  right: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.sventa_modal_box .close:hover {
  transform: rotate(180deg);
}
.sventa_modal_box .modal_inner {
  width: 100%;
  height: 100%;
  background-color: #2b2b2b69;
}
.sventa_modal_box .inner_container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 40px 30px 42px 30px;
  background-color: #fff;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}
.sventa_modal_box h4 {
  display: inline-block;
  margin-bottom: 29px;
  padding: 3px 6px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: 100px;
}
.sventa_modal_box h5 {
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
}
.sventa_modal_box .menu_catalog {
  display: flex;
  align-items: flex-start;
  padding: 5px 0 10px 0;
  max-height: 312px;
  overflow-y: scroll;
}
.sventa_modal_box .menu_catalog::-webkit-scrollbar-track {
  background: #e9e9e9;
  border-radius: 20px;
}

.sventa_modal_box .menu_catalog::-webkit-scrollbar {
  width: 10px;
  background-color: #979797;
  border-radius: 20px;
}

.sventa_modal_box .menu_catalog::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
.sventa_modal_box .menu_catalog ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sventa_modal_box .menu_catalog ul li {
  display: flex;
  align-items: center;
  margin-right: 65px;
  margin-bottom: -2px;
  padding: 6px 0;
  font-size: 20px;
}
.sventa_modal_box .menu_catalog ul li a {
  transition: 0.3s;
}
.sventa_modal_box .menu_catalog ul li a:hover {
  padding-right: 5px;
  color: var(--red);
  opacity: 0.5;
}
.sventa_modal_box .menu_catalog ul li img {
  width: 33px;
  height: 33px;
  margin-right: 10px;
  padding: 3px;
  transition: 0.3s;
}
.sventa_modal_box .menu_catalog ul li a:hover img {
  margin-right: 5px;
}
.sventa_modal_box .menu_catalog .catalog_promotion {
  margin-left: 165px;
}
.sventa_modal_box .menu_catalog .catalog_promotion img {
  border: 1px solid var(--red);
  border-radius: 40px;
  transition: 0.3s;
}
.sventa_modal_box .menu_catalog .catalog_promotion a:hover img {
  box-shadow: 1px 1px 8px var(--red);
}
.sventa_modal_box .promotion_catalog_link {
  padding-top: 10px;
  font-size: 20px;
  color: var(--red);
}
.sventa_modal_box .promotion_catalog_link a {
  display: flex;
  transition: 0.3s;
}
.sventa_modal_box .promotion_catalog_link a:hover {
  opacity: 0.6;
}
.sventa_modal_box .promotion_catalog_link img {
  margin-right: 10px;
  transition: 0.3s;
}
.sventa_modal_box .promotion_catalog_link a:hover img {
  margin-right: 5px;
}
.modal_contacts_menu .inner_container {
  padding-top: 80px;
}
.modal_contacts_menu .contact_scroll {
  max-height: 500px;
  overflow-y: scroll;
}
.modal_contacts_menu .contact_scroll::-webkit-scrollbar-track {
  background: #e9e9e9;
  border-radius: 20px;
}

.modal_contacts_menu .contact_scroll::-webkit-scrollbar {
  width: 10px;
  background-color: #979797;
  border-radius: 20px;
}

.modal_contacts_menu .contact_scroll::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #979797;
}
.modal_contacts_menu .contacts_block {
  display: flex;
  flex-wrap: wrap;
  padding-right: 300px;
}
.modal_contacts_menu .contacts_block:not(:last-of-type) {
  margin-bottom: 15px;
}
.modal_contacts_menu .contacts_block .contact {
  flex: 0 0 33.333333%;
  margin-bottom: 50px;
  padding-right: 20px;
}
.modal_contacts_menu .contacts_block .contact > div {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
.modal_contacts_menu .contacts_block .contact > div img {
  margin-right: 7px;
}
.modal_contacts_menu .contacts_block .contact .addres {
  margin-bottom: 6px;
}
.modal_contacts_menu .contacts_block .contact .entrance {
  margin-bottom: 20px;
  padding-left: 28px;
  font-size: 16px;
  color: #8b8b8b;
}
.modal_contacts_menu .contacts_block .contact .tel {
  margin-bottom: 16px;
}
.modal_contacts_menu .contacts_block .contact .tel a {
  display: flex;
  align-items: center;
}
.leave_feedback_modal .inner_container{
  width: 40%;
}
.leave_feedback_modal form{
  padding-top: 30px;
  margin-bottom: -10px;
}
.leave_feedback_modal form input{
  width: 49%;
  margin-bottom: 11px;
  padding: 9px 10px;
  border-radius: 10px;
}
.leave_feedback_modal form .wpcf7-form-control-wrap:nth-child(2) input{
  margin-left: 2%;
}
.leave_feedback_modal form textarea{
  padding: 9px 10px;
  border-radius: 10px;
  outline: none;
}
.leave_feedback_modal form input[type="submit"]{
  padding: 12px 45px;
  color: #fff;
  font-weight: 900;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 100px;
  transition: .3s;
}
.leave_feedback_modal form input[type="submit"]:hover{
  background-color: #fff;
  color: var(--red);
}
@media (max-width: 1399px) {
  .sventa_modal_box .menu_catalog .catalog_promotion {
    margin-left: 100px;
  }
  .sventa_modal_box .menu_catalog ul li {
    margin-right: 30px;
  }
  .modal_contacts_menu .contacts_block {
    padding-right: 150px;
  }
}
@media (max-width: 1199px) {
  header .top_header_row ul {
    font-size: 12px;
  }
  .hero_slider .slider_nav {
    margin-top: -55px;
  }
  .testimonials_mp h2 {
    font-size: 30px;
  }
  .cart_details .details {
    padding: 13px 30px;
  }
  .sv_cat_products .sv_product_item .prod_attr {
    padding: 0 10px;
  }
  .prices .price {
    font-size: 18px;
  }
  .prices .old_price {
    font-size: 18px;
  }
  .sventa_modal_box .menu_catalog ul li {
    margin-right: 0;
  }
  .sventa_modal_box .menu_catalog .catalog_promotion {
    margin-left: 30px;
  }
  .modal_contacts_menu .contacts_block {
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 65px;
  }
  header .desktop_header {
    display: none;
  }
  header .mobile_header {
    display: block;
  }
  header .top_header_row ul {
    justify-content: space-between;
  }
  .hero_slider .slider_nav {
    margin-top: 30px;
  }
  .hero_slider .slide .title {
    font-size: 37px;
  }
  .hero_slider .slide .desc {
    line-height: 135%;
  }
  .hero_slider .owl-item.active .slider_img{
    animation: none;
  }
  .hero_slider .owl-item.active .title{
    animation: none;
  }
  .hero_slider .owl-item.active .desc{
    animation: none;
  }
  .sv_mp_new .n_block.red{
    min-height: 400px;
  }
  .sv_mp_new .n_block.red .image{
    width: 51%;
  }
  .testimonials_mp .title_sl_nav {
    flex-direction: column;
    margin-bottom: 45px;
  }
  .testimonials_mp .title_sl_nav .title {
    margin-bottom: 20px;
  }
  footer {
    text-align: center;
  }
  footer .f_logo {
    margin-bottom: 15px;
  }
  footer .f_socials ul {
    justify-content: center;
  }
  footer .f_menu {
    margin-bottom: 15px;
  }
  .sventa_modal_box .menu_catalog ul {
    display: grid;
    grid-template-columns: 1fr;
  }
  .modal_contacts_menu .contacts_block .contact {
    flex: 0 0 50%;
  } 
  .leave_feedback_modal .inner_container {
      width: 55%;
  }
}

@media (max-width: 767px) {
  .hero_slider {
    padding: 40px 0 17px 0;
  }
  .hero_slider .slide .title {
    padding-top: 35px;
    font-size: 31px;
  }
  .hero_slider .slide .desc {
    font-size: 18px;
  }
  .hero_slider .owl-dots{
    display: none;
  }
  .hero_brands h2 {
    font-size: 24px;
  }
  .beauty_in_simplicity h2 {
    margin-bottom: 95px;
  }
  .brands_in_deal h2 {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .brands_in_deal .brands_in_deal_nav button {
    padding: 6px 13px;
  }
  .brands_in_deal {
    padding: 20px 0 20px 0;
  }
  .sv_mp_pnd {
    padding-bottom: 100px;
  }
  .sv_mp_pnd .sv_mp_pnd_nav button {
    font-size: 13px;
  }
  .sv_mp_pnd .slider .prev.slick-arrow {
    top: auto;
    bottom: -50px;
    left: 50%;
    transform: translateX(calc(-50% - 12px));
  }
  .sv_mp_pnd .slider .next.slick-arrow {
    top: auto;
    right: auto;
    bottom: -50px;
    left: 50%;
    transform: translateX(calc(50% + 12px));
  }
  .mp_kitchen .info_item .info .title {
    font-size: 9px;
  }
  .mp_kitchen .info_item .info .price {
    font-size: 19px;
  }
  .mp_city_contacts .contacts_block:first-of-type{
    overflow-x: scroll;
  }
  .mp_city_contacts .contacts_block .contact{
    flex: 0 0 72%;
  }
  .beauty_in_simplicity h2 {
    display: none;
  }
  .beauty_in_simplicity .desctop_desc{
    display: none;
  }
  .beauty_in_simplicity .m_img {
    margin-bottom: 25px;
  }
  .beauty_in_simplicity .mobile_beauty {
    display: block;
  }
  .sv_mp_new h2 {
    font-size: 20px;
  }
  .sv_mp_new .n_block .title {
    font-size: 20px;
    margin-right: -45px;
  }
  .sv_mp_new .n_block .price {
    font-size: 20px;
  }
  .sv_mp_new .n_block.red .info {
    flex: 0 0 30%;
  }
  .sv_mp_new .n_block.red .info .title {
    margin-right: -110px;
  }
  .sv_mp_new .n_block.red .info .price {
    margin-right: -90px;
  }
  .sv_mp_new .n_block.red .image {
    flex: 0 0 70%;
  }
  .sv_mp_new .n_block.red {
      min-height: 310px;
  }
  .testimonials_mp .title_sl_nav .title {
    margin-bottom: 41px;
  }
  .testimonials_mp h2 {
    font-size: 20px;
  }
  .testimonials_mp .title_sl_nav .sl_nav {
    justify-content: space-between;
  }
  .testimonials_mp .title_sl_nav .prev_next {
    order: 2;
  }
  .testimonials_mp .title_sl_nav .leave_feedback {
    order: 1;
    margin-right: 0;
    padding: 12px 35px;
  }
  .testimonials_mp .title_sl_nav .prev_next button:last-of-type {
    margin-right: 0;
  }
  .brands_in_deal .slider .item img {
    min-height: 243px;
  }
  .brands_in_deal .slider .prev.slick-arrow {
    left: -8px;
  }
  .brands_in_deal .slider .next.slick-arrow {
    right: -8px;
  }
  .sventa_card_product .info_char_pec_doc .info__doc__nav li button{
    padding: 23px 0;
    font-size: 15px;
  }
  .sventa_modal_box h4 {
    margin-bottom: 30px;
  }
  .sventa_modal_box h5 {
    margin-bottom: 20px;
  }
  .sventa_modal_box .menu_catalog {
    flex-direction: column;
    max-height: 505px;
  }
  .sventa_modal_box .menu_catalog ul {
    order: 2;
  }
  .sventa_modal_box .menu_catalog .catalog_promotion {
    order: 1;
    margin-bottom: 20px;
    margin-left: 0;
  }
  .leave_feedback_modal .inner_container {
      width: auto;
      max-width: 90%;
  }
}

@media (max-width: 575px) {
  header .mobile_header .catalog_button .catalog_button_item {
    padding: 8px 20px;
    font-size: 14px;
  }
  header .mobile_header .search_form .search_item input[type="search"] {
    width: 35px;
    height: 35px;
    padding: 9px 9px 9px 9px;
    background-position-x: 5px;
  }
  header .mobile_header .search_form{
    right: -25px;
  }
  .sv_mp_new .n_block.red:after {
    transform: translate(-26%, 4%) scale(0.7);
  }
  .sv_mp_new .n_block.red:hover:after {
    transform: translate(-26%, 4%) scale(1);
  }
  .sv_mp_new .n_block.red {
    min-height: 260px;
  }
  .sventa_card_product .cardpr_top_desc .installment{
    margin-right: 15px;
    padding: 14px 36px 14px 15px;
  }
  .sventa_card_product .cardpr_top_desc .installment_delivery img{
    margin-right: 12px;
  }
  .sventa_card_product .cardpr_top_desc .delivery{
    padding: 15px 15px 19px 15px;
  }
  .sventa_card_product .info_char_pec_doc .info__doc__nav{
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
  }
  .sventa_card_product .info_char_pec_doc .info__doc__nav li{
    width: 100%;
  }
  .sventa_card_product .info_char_pec_doc .info__doc__nav li:first-of-type{
    border-radius: 0px;
  }
  .sventa_card_product .info_char_pec_doc .info__doc__nav li:last-of-type{
    border-radius: 0px;
  }
  .sventa_card_product .info_char_pec_doc .info__doc__nav li button {
    padding: 15px 0;
    font-size: 14px;
  }
  .sventa_modal_box .inner_container {
    padding: 20px 15px 20px 15px;
  }
  .sventa_modal_box h4 {
    margin-bottom: 20px;
  }
  .sventa_modal_box .menu_catalog {
    max-height: 555px;
  }
  .sventa_modal_box .menu_catalog ul li {
    margin-bottom: 8px;
  }
  .sventa_modal_box .menu_catalog .catalog_promotion {
    margin-bottom: 30px;
    width: 100%;
    padding-right: 25px;
    padding-left: 8px;
  }
  .sventa_modal_box .menu_catalog .catalog_promotion img {
    width: 100%;
    object-fit: cover;
  }
  .modal_contacts_menu .contacts_block .contact {
    flex: 0 0 100%;
  }
  .leave_feedback_modal form input {
    width: 100%;
  }
  .leave_feedback_modal form .wpcf7-form-control-wrap:nth-child(2) input {
    margin-left: 0;
  }
  .leave_feedback_modal form {
    padding-top: 60px;
  }
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}
