@charset "UTF-8";
@import "../fonts/fonts.css?v.102";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  padding: 0;
  background-color: var(--main-bg);
  --text: #18181F;
  --green: #000000;
  --red: #f54246;
  --border: 1px solid rgba(47, 72, 88, 0.1);
  --main-bg: #F8FAFB;
}

div,
h1,
h2,
h3,
h4,
p,
span,
ul,
ol,
li,
a,
input,
textarea,
label,
button {
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

a {
  color: var(--text);
}

a:hover {
  color: var(--green);
}

p {
  font-size: 14px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

ol {
  counter-reset: list;
}

img {
  max-width: 100%;
}

input,
button,
textarea,
select {
  outline: none;
  font-family: "Comfortaa", sans-serif;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}


.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.between {
  justify-content: space-between;
}

.flex.align-center {
  align-items: center;
}

.flex.column {
  flex-direction: column;
}

.d-none {
  display: none;
}

.relative {
  position: relative;
}

.ttl {
  font-weight: 400;
}

.ttl.lg {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
  color: #18181F;
}

.ttl.md {
  font-size: 33px;
  line-height: 1.12;
}

.ttl.sm {
  font-size: 28px;
  color: #000;
  line-height: 1.2;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.green {
  color: var(--green);
}

.ttl.lg a {
  color: var(--green);
}

.ttl.lg a:hover {
  text-shadow: 0 0 5px var(--green);
}

.mt100 {
  margin-top: 100px;
}

.mt50 {
  margin-top: 50px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb10 {
  margin-bottom: 10px;
}

.padding-section {
  padding: 7% 0;
}

body {

  background-color: #ffffff;
}


@media(min-width: 1700px) {
  .padding-section {
    padding: 110px 0;
  }
}

.page {
  padding: 60px 0 90px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  outline: 0;
}

.modal-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-wrapper {
  background: #fff;
  padding: 40px;
  position: relative;
  width: calc(100% - 30px);
  border-radius: 15px;
  max-width: 620px;
}

.modal-wrapper .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: .5;
  color: #000;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: .3s;
}

.uForm__preload {
  display: none;
  position: absolute;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(/images/loading.svg) no-repeat;
  background-size: 120px;
  background-position: center;
  margin: 0 auto;
  background-color: #fff;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 28px;
  line-height: 1;
  color: #FFF;
  height: 60px;
  padding: 0 18px;
  cursor: pointer;
  transition: 0.4s;
  background: var(--green);
  max-width: max-content;
  outline: none;
  border: 1px solid var(--green);
  border-radius: 3px;
  white-space: nowrap;
}

.btn:hover {
  box-shadow: 0 0 5px var(--green);
  color: var(--green);
  background: #fff;
}

.btn.scnd {
  background: #fff;
  color: var(--green);
}

.btn.scnd:hover {
  background: var(--green);
  color: #fff;
}

button.btn {
  max-width: 100%;
}

.control-group {
  margin-bottom: 15px;
}

.input,
.controls input {
  width: 100%;
  height: 45px;
  border: var(--border);
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  transition: .5s;
}

.input:focus,
.controls input:focus {
  border-color: var(--green);
  box-shadow: 0 0 6px var(--green);
}

textarea.input {
  height: 150px;
  resize: none;
}

.contact-form {
  max-width: 720px;
}

.contact-form .input {
  width: calc(50% - 10px);
}

.label,
.control-label {
  font-size: 19px;
  margin-bottom: 5px;
}

.checkbox input {
  display: none;
}

.check-label {
  display: flex;
  align-items: center;
  font-weight: 300;
}

.check-label:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border: var(--border);
  border-radius: 5px;
  font-size: 8px;
  color: transparent;
  transition: .4s;
  margin-right: 15px;
}

.checkbox input:checked~.check-label:before {
  color: var(--green);
}

.login-button {
  width: 260px;
}

.reg-links a {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.breadcrumb,
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #828282;
}

.breadcrumb .divider {
  margin: 0 5px;
}

.breadcrumb {
  flex-wrap: wrap;
}

.breadcrumb span {
  color: #828282;
}

.pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-list li a,
.pagination-list li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1;
  margin: 5px;
  transition: 0.5s;
}

.pagination-list li a {
  color: #000;
}

.pagination-list li span {
  color: var(--green);
}

.pagination-list li.active span,
.pagination-list li:hover a,
.pagination-list li.arrow:hover a {
  background: var(--green);
  color: #fff;
}

.pagination-list li.arrow a {
  background: #F8F8F8;
}

.pagination-list li.arrow span {
  color: #E1E1E1;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #F8F8F8;
}

::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 3px;
}

html,
body,
div,
* {
  scrollbar-width: thin;
  scrollbar-height: thin;
  scrollbar-color: var(--green) #F8F8F8;
}

.burger-menu {
  display: none;
  width: 29px;
  height: 29px;
  position: relative;
  z-index: 1200;
  padding: 5px;
}

.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  opacity: 1;
  transition: all linear 0.3s;
}

.burger-menu span:first-child {
  top: 7px;
}

.burger-menu span:nth-child(2),
.burger-menu span:nth-child(3) {
  top: 15px;
}

.burger-menu span:last-child {
  top: 23px;
}

.burger-menu.active span:first-child {
  top: 0;
  opacity: 0;
}

.burger-menu.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger-menu.active span:last-child {
  top: 40px;
  opacity: 0;
}

.body-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  transition: 400ms linear;
  left: 0;
  overflow-x: hidden;
}

.main {
  flex: 1;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
}

.header-menu a,
.header-menu span {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.header-menu .submenu a {
  font-size: 16px;
}

.header-menu>.menu-item>a,
.header-menu>.menu-item>span {
  color: #fff;
  transition: .4s;
  padding: 10px 10px;
}

.header-menu .menu-item:hover>a,
.header-menu .menu-item:hover>span {
  color: var(--text);
}

.header-menu>.menu-item.parent {
  position: relative;
}

.header-menu>.menu-item.parent>a,
.header-menu>.menu-item.parent>span {
  padding-right: 35px;
}

.header-menu>.menu-item.parent>a:before,
.header-menu>.menu-item.parent>a:after,
.header-menu>.menu-item.parent>span:before,
.header-menu>.menu-item.parent>span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 8px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}

.header-menu>.menu-item.parent>a:after,
.header-menu>.menu-item.parent>span:after {
  transform: translate(2px, -50%) rotate(-45deg);
}

.header-menu>.menu-item.parent:hover>a:before,
.header-menu>.menu-item.parent:hover>span:before {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: var(--text);
}

.header-menu>.menu-item.parent:hover>a:after,
.header-menu>.menu-item.parent:hover>span:after {
  transform: translate(2.5px, -50%) rotate(45deg);
  background: var(--text);
}

.header-menu>.menu-item.parent .submenu {
  width: 350px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -100px;
  box-shadow: 0px 0px 11px rgba(47, 72, 88, 0.15);
  ;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(10px);
  z-index: 5;
  padding-left: 0;
}

.header-menu>.menu-item.parent>.submenu a {
  padding: 15px 30px;
  display: block;
}

.header-menu>.menu-item.parent>.submenu .menu-item {
  position: relative;
}

.header-menu .menu-item.parent:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.submenu .menu-item a {
  line-height: 1.2;
}

.header-menu>.menu-item.active>a,
.header-menu>.menu-item.active>span {
  color: #ff5a00;
  font-weight: 600;
}

.header-menu>.menu-item.active:hover>a, .header-menu>.menu-item.active:hover>span {
    color: #ff5a00;
}

.header-menu>.menu-item.parent>.submenu>.menu-item.parent>a,
.header-menu>.menu-item.parent>.submenu>.menu-item.parent>.submenu>.menu-item.parent>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-menu>.menu-item.parent>.submenu>.menu-item.parent>a::after,
.header-menu>.menu-item.parent>.submenu>.menu-item.parent>.submenu>.menu-item.parent>a::after {
  content: "\203a";
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
}

.header-menu>.menu-item.parent>.submenu>.menu-item.parent .submenu {
  position: absolute;
  top: 0;
  left: 198px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  width: 230px;
  padding-left: 0;
}

.header-menu>.menu-item.parent>.submenu>.menu-item.parent>.submenu>.menu-item.parent>.submenu {
  left: 228px;
}

.header-menu>.menu-item.parent .submenu>.menu-item.parent:hover>.submenu,
.header-menu>.menu-item.parent .submenu>.menu-item.parent .submenu>.menu-item.parent:hover>.submenu {
  visibility: visible;
  opacity: 1;
}

.container {
  max-width: 1560px;
}

.header-menu>.menu-item.parent .submenu>.menu-item.parent:hover>.submenu .menu-item {
  border-bottom: 1px solid #e5e5e5;
}

.header .top-line {
  background: #ff5a00;
  padding: 2px 0;
}

.header .top-line .menu {
  display: flex;
}

.header .top-line .menu a {
  display: block;
  color: var(--main-bg);
  margin-right: 30px;
}

.header .top-line .menu a:hover {
  color: var(--green);
}

.header .top-line .social a {
  font-size: 18px;
  color: #ffffff;
  margin-left: 8px;
  width: 32px;
  height: 32px;
  background: hsl(0deg 0% 100% / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  width: 100%;
  display: flex;
  max-width: 520px;
  align-items: center;
  justify-content: flex-end;
}

.header .icon-tel {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 0 auto;
}

.header .icon-tel:hover {
  color: var(--green);
}

.header .icon-tel:before {
  font-size: 17px;
  color: white;
  margin-right: 8px;
}

.header-links {
  display: flex;
  padding: 0 18px;
  border-right: var(--border);
  margin: 0 30px;
}

.header-links .link,
.header-links .icon-cart,
.header-links .icon-heart,
.header-links .icon-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 8px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: .4s;
  position: relative;
  margin: 0 3px;
}

.header-links .icon-user.logged:after {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e912";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: var(--text);
  color: #fff;
  font-size: 7px;
  position: absolute;
  top: -7px;
  right: -7px;
}

.header-links .link:hover,
.header-links .icon-cart:hover,
.header-links .icon-heart:hover,
.header-links .icon-compare:hover {
  background: #fff;
  color: var(--green);
}

.header-links .mycart_wrapp.externbootstrap_wrapp.wrapp_min .mycart_mini_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #ff5a00 !important;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  padding: 0;
  opacity: 1;
  top: -7px;
  right: 3px;
}

.header-links .emptycart.mycart_wrapp.externbootstrap_wrapp.wrapp_min .mycart_mini_txt {
  display: none;
}

.header-links .mycart_wrapp.externbootstrap_wrapp.wrapp_min[class*=" "] .mini_cart_img {
  display: flex;
}

.mobile-menu {
  background-color: #fff;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  display: none;
  overflow-y: scroll;
  padding: 210px 0 50px;
}

.mobile-menu.sticky {
  padding-top: 115px;
}

.mobile-menu .wrapper {
  display: flex;
  flex-direction: column;
}

.mobile-menu .item {
  padding: 10px 15px;
  border-top: var(--border);
}

.mobile-menu .user-info {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}

.mobile-menu .user-login {
  font-size: 13px;
  font-weight: 300;
}

.mobile-menu-login {
  display: flex;
  align-items: center;
}

.mobile-menu-login:before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
}

.mobile-menu .menu {
  width: 100%;
}

.mobile-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.mobile-menu li a,
.mobile-menu li span {
  display: flex;
  width: 100%;
  align-items: center;
  color: var(--text);
  padding: 7px 0;
  font-size: 13px;
  font-style: normal;
}

.mobile-menu .deeper>a,
.mobile-menu .deeper>span {
  padding-right: 15px;
  width: calc(100% - 20px);
}

.mobile-menu .nav-child img {
  display: none;
}

.mobile-menu .nav-child .image-title {
  padding: 0;
}

.mobile-cats .menu {
  padding-left: 30px;
}

.mobile-cats .menu a[class^="icon-"]:before {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 15px;
  margin-right: 10px;
}

.mobile-menu .list-btn {
  width: 18px !important;
  height: 18px;
  top: 0;
  right: 0;
  position: relative;
  border: 1px solid var(--green);
  border-radius: 3px;
  transition: all 0.3s ease-out;
  padding: 0 !important;
}

.mobile-menu .list-btn:before,
.mobile-menu .list-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 6px;
  height: 2px;
  transition: inherit;
  background-color: var(--green);
  transform: translate(-2px, -50%) rotate(45deg);
}

.mobile-menu .list-btn:after {
  transform: translate(2px, -50%) rotate(-45deg);
}

.mobile-menu li.open>a,
.mobile-menu li.open>span {
  color: var(--green);
}

.mobile-menu li.open>.list-btn {
  background: var(--green);
}

.mobile-menu li.open>.list-btn:before {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: #fff;
}

.mobile-menu li.open>.list-btn:after {
  transform: translate(2px, -50%) rotate(45deg);
  background: #fff;
}

.mobile-menu .nav-child {
  display: none;
  width: 100%;
  padding-left: 30px;
}

.mod-languages {
  width: 52px;
  flex-shrink: 0;
  position: relative;
}

.mod-languages .lang-list {
  width: 100%;
}

.mod-languages .lang-list a {
  color: var(--text);
  font-size: 18px;
}

.mod-languages .active-language {
  display: block;
  font-style: normal;
  color: #fff;
  transition: .3s;
}

.mod-languages:hover .active-language {
  color: #ff5a00;
}

.mod-languages .lang-list a:hover {
  color: var(--green);
}

.header .mod-languages .lang-list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0px 0px 11px rgb(47 72 88 / 15%);
  border-radius: 6px;
  transition: 0.3s;
  transform: translateY(10px);
  z-index: 10;
  padding: 5px 0;
}

.header .mod-languages .lang-list li {
  text-align: center;
}

.mobile-menu .lang-list {
  display: none;
  padding-left: 15px;
}

.mod-languages .active-language {
  font-size: 18px;
}

.mod-languages .active-language:before,
.mod-languages .active-language:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 6px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}

.mod-languages .active-language:after {
  transform: translate(2px, -50%) rotate(-45deg);
}

.header .mod-languages:hover .active-language:before,
.mobile-menu .mod-languages.open .active-language:before {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: var(--text);
}

.header .mod-languages:hover .active-language:after,
.mobile-menu .mod-languages.open .active-language:after {
  transform: translate(2.5px, -50%) rotate(45deg);
  background: var(--text);
}

.mobile-menu .mod-languages .active-language {
  font-size: 16px;
}

.mobile-menu .mod-languages .lang-list a {
  margin-top: 15px;
}

.mod-languages:hover .lang-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-languages {
  font-size: 13px;
}

.mobile-languages .caption {
  margin-left: 20px;
}

.mobile-languages .active-language {
  color: var(--green);
}

.mobile-languages li {
  margin-left: 25px;
}

.mobile-languages li a {
  padding: 0;
}

.mobile-menu .login-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 15px;
}

.mobile-menu .mobile-menu-hide {
  display: none;
}

.header .bottom {
  display: none;
}

.icon-search:before {

  color: #ff680a;
  top: 1px;
  position: relative;
}

#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--green);
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--green);
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

#toTop:before {
  transform: rotate(90deg);
}

#toTop.show {
  visibility: visible;
  opacity: 1;
}

.header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--green);
  transition: left linear .4s;
}

.header.sticky,
.main-page .header.sticky {
  position: fixed;
  animation: flash 0.5s linear 1;
  background: rgb(0 0 0 / 95%);
}

.header .show-search {
  display: none;
}

.icon-youtube:before {
  content: " ";
  background: url(../icon/youtube.png);
  background-size: auto;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-viber:before {
  content: " ";
  background: url(../icon/viber.png);
  background-size: auto;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
}

.header .top-line .social a:hover {
  background-color: black;
}



@keyframes flash {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cat-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
}

.cat-wrapper .wrapper {
  width: 100%;
  height: 620px;
  max-height: calc(100vh - 80px);
  background: #fff;
  border-radius: 15px;
  border: var(--border);
  position: relative;
}

.cat-menu {
  height: 100%;
  width: 245px;
  border-right: var(--border);
  padding: 60px 30px;
}

.cat-menu>li {
  transition: .4s;
}

.cat-menu>li>a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 21px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cat-menu>li>a:before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  font-size: 30px;
  margin-right: 20px;
}

.cat-menu>li.hover>a {
  color: var(--green);
}

.cat-menu>li.parent>a:after {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90c";
  font-size: 12px;
  margin-left: auto;
}

.cat-menu>li>.nav-child {
  position: absolute;
  left: 245px;
  right: 0;
  top: 0;
  width: calc(100% - 245px);
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: inherit;
  background-repeat: no-repeat;
  background-position: top 15px right 15px;
  background-size: 250px;
  column-count: 4;
  column-gap: 30px;
  padding: 15px 280px 15px 30px;
}

.cat-menu>li.hover>.nav-child {
  opacity: 1;
  visibility: visible;
}

.cat-menu .icon-dogs~.nav-child {
  background-image: url(/images/categories/cat-dogs-bg.png);
}

.cat-menu .icon-cats~.nav-child {
  background-image: url(/images/categories/cat-cats-bg.png);
}

.cat-menu .icon-rodents~.nav-child {
  background-image: url(/images/categories/cat-rodents-bg.png);
}

.cat-menu .icon-birds~.nav-child {
  background-image: url(/images/categories/cat-birds-bg.png);
}

.cat-menu .icon-fish~.nav-child {
  background-image: url(/images/categories/cat-fish-bg.png);
}

.cat-menu>li>.nav-child>li {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.cat-menu>li>.nav-child a {
  display: block;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 3px;
}

.cat-menu>li>.nav-child a:hover {
  color: var(--green);
}

.cat-menu>li>.nav-child>li>a {
  color: var(--green);
  font-size: 16px;
  margin-bottom: 7px;
}

.cat-menu>li>.nav-child img {
  display: none;
}

.cat-menu>li>.nav-child>li>a:hover {
  text-shadow: 0 0 2px #ff5a00;
}

.header .logo {
  display: flex;
  align-items: center;
  width: 210px;
  flex-shrink: 0;
  margin-right: 8.5%;
  margin: -10px 0 0;
}

.header .top {
  padding: 10px 15px;
}

.btn.for-catteries {
  font-size: 19px;
  height: 40px;
  background: var(--green);
  color: #000;
  border: 1px solid #000;
  margin-right: 15px;
  padding: 0 10px;
}

.btn.for-catteries:hover {
  background: #fff;
  color: var(--text);
}

.btn.show-cat {
  font-size: 15px;
  height: 44px;
  background: #fff;
  color: #000;
  padding: 0 10px;
  margin: 0 30px 0 45px;
  border-radius: 7px;
  font-weight: 600;
}

.btn.show-cat:before {
  font-size: 15px;
  margin-right: 8px;
  content: "";
  width: 18px;
  height: 19px;
  background: url(/images/menu_filled.png);
}

.btn.show-cat .arr {
  width: 18px;
  height: 10px;
  position: relative;
  margin-left: 5px;
  user-select: none;
  margin-right: 5px;
}

.btn.show-cat .arr:before,
.btn.show-cat .arr:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 8px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #000;
  transform: translate(-2px, -50%) rotate(45deg);
}

.btn.show-cat .arr:after {
  transform: translate(2px, -50%) rotate(-45deg);
}

.btn.show-cat.active {
  color: var(--text);
}

.btn.show-cat.active:before {
  content: "\e913";
  color: var(--text);     background: transparent;
}

.btn.show-cat.active .arr:before {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: var(--text);
}

.btn.show-cat.active .arr:after {
  transform: translate(2.5px, -50%) rotate(45deg);
  background: var(--text);
}

.footer {
  background: url(/images/bg-footer.png) #0F0F0F;
  padding: 68px 0 10px;
  background-size: cover;
  color: white;
}

.footer .info-box {
  flex: 1;
}

.footer .logo-box {
  margin-right: auto;
}

.footer .logo {
  display: flex;
  width: 100%;
  max-width: 210px;
}

.footer .logo-text {
  width: 190px;
  font-size: 16px;
  color: #fff;
}

.footer .title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer .menu a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--main-bg);
  margin-bottom: 16px;
}

.footer .menu a:hover {
  color: var(--green);
}

.footer .menu a:before {
  display: none;
}

.footer .menu .blog-link {
  font-size: 26px;
  margin-top: 12px;
}

.footer-cats {
  width: 20%;
  border-left: 1px solid #1B1B1B;
  border-right: 1px solid #1B1B1B;
  padding-left: 4%;
  margin: 0px 5%;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

ul.graphick li {
  display: flex;
  align-items: center;
}

.footer-contacts a {

  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--main-bg);
  font-weight: 500;

}

.footer-contacts a:before {
  font-size: 90%;
  color: var(--green);
  margin-right: 9px;
}

.class_prc {
  font-weight: 600;
  line-height: 1;
  color: #5e5e5e;
  font-size: 12px;
  width: 189px;
  padding: 8px 0 0;
  margin: 0 0 -20px;
}

.footer-contacts a:hover {
  color: #ff5a00;
}

.footer .social a {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--green);
  margin-left: 0px;
}

.footer .social a:hover {
  text-shadow: 0 0 3px #ff59003d;
}

.footer .bottom .container {
  background: transparent;
  color: #808080;
  font-size: 12px;
  padding: 30px 0 15px;
  border-top: 1px solid hsl(0deg 0% 100% / 10%);
  margin-top: 110px;
  font-weight: 500;
}

.footer .discount .item {
  display: flex;
  font-size: 16px;
  color: var(--main-bg);
  margin-bottom: 8px;
}

.footer .discount .percent {
  min-width: 38px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 10px;
}

.footer .discount .item a {
  display: inline;
  font-size: inherit;
  text-decoration: underline;
}

.footer .discount .item a:hover {
  color: var(--green);
}

/*=======================*/
.slider-prev,
.slider-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5f5f5ba;
  color: #60606F;
  font-size: 17px;
  cursor: pointer;
  transition: .5s;
  border: 0;
  margin: 0 15px 0;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--green);
  color: #fff;
}

.home-new .slider-prev,
.home-new .slider-next {
  margin: 0;
}

/*========================*/
.registration .wrapper,
.reset .wrapper,
.login .wrapper {
  max-width: 800px;
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  padding: 60px;
  margin: 0 auto;
}

#member-registration .control-group {
  width: calc(50% - 15px);
  margin-bottom: 20px;
}

#member-registration .field-spacer {
  display: none;
}

.registration .btn-box {
  width: 100%;
}

.registration .cancel {
  font-size: 28px;
  color: var(--green);
}

/*=====================================*/
.productfull {
  padding: 60px 0;
}

/*.product-wrapper .img-box{
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  min-height: 100%;
  background: #fff;
  border: var(--border);
  border-radius: 15px;
}*/
.product-wrapper .img-wrap {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
}

.product-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(100% - 90px);
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
}

#list_product_image_middle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-width: 100%;
}

#list_product_image_middle .lightbox {
  height: 100%;
}

.product-wrapper .img-box img {
  max-height: 100%;
}

#list_product_image_thumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -5px;
}

/*#list_product_image_thumb .item{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 70px;
   height: 70px;
   border-radius: 5px;
   background: #fff;
   padding: 3px;
   margin: 0 5px; 
}
#list_product_image_thumb .item img{
  max-width: 100%;
  max-height: 100%;
}*/
#list_product_image_thumb img {
  max-width: 100px;
  max-height: 70px;
  border-radius: 5px;
  margin: 0 5px 10px;
}

.product-wrapper .img-box img {
  min-width: 80%;
}

.product-wrapper .img-box .text_zoom {
  display: none;
}

.product-wrapper .info-box {
  position: relative;
  min-height: 600px;
  padding-left: 50%;
}

.jshop_prod_attributes>span {
  display: flex;
}

.jshop_prod_attributes .input_type_radio input {
  display: none;
}

.jshop_prod_attributes .input_type_radio label span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 55px;
  height: 40px;
  box-sizing: border-box;
  margin-right: 20px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 5px;
  font-size: 15px;
  color: var(--green);
  cursor: pointer;
  transition: .4s;
  padding: 0 5px;
}

.jshop_prod_attributes .input_type_radio label span:hover {
  color: var(--text);
}

.jshop_prod_attributes .input_type_radio input:checked~label span {
  color: #ff5a00;
  border-color: #ff5a00;
}

.jshop_prod_attributes .input_type_radio label span.nullQuantity {
  color: var(--border);
  position: relative;
}

.jshop_prod_attributes .input_type_radio label span.nullQuantity:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom left, transparent 47%, red, transparent 53%);
}

.jshop_prod_attributes .input_type_radio input:checked~label span.nullQuantity {
  color: red;
  border-color: red;
}

.extra_fields li {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.extra_fields .key {
  width: 290px;
  padding-right: 15px;
}

.product-wrapper .control-box {
  background: #f2f2f2;
  border-radius: 8px;
  padding: 25px 30px;

}

.old_price {
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  text-decoration-line: line-through;
  color: #393636;
}

.prod-price {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--green);
}

.old_price:not([style*="display: none"])~.prod-price {
  color: #ff0000;
}

.prod_qty_input {
  position: relative;
  height: 40px;
  background: #fff;
  padding: 0 20px 0 35px;
  max-width: fit-content;
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.prod_qty_input input {
  width: 100px;
  height: 40px;
  text-align: center;
  outline: none;
  background: #fff;
  color: var(--text);
  font-size: 19px;
  border: none;
}

.quantity-btn {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 100%;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: .4s;
  border: none;
}

.quantity-btn.minus {
  left: 0;
}

.quantity-btn.plus {
  right: 0;
}

.product-wrapper .free-delivery {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(47, 72, 88, 0.10);
  background: var(--main-bg);
  font-size: 14px;
  line-height: 1;
  color: var(--text);
}

.product-wrapper .free-delivery:before {
  font-size: 30px;
  color: var(--green);
  margin-right: 10px;
}

.product-wrapper .free-delivery .title {
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.product-wrapper .control-box .btn {
  height: 48px;
  font-size: 16px;
  padding: 0 30px;
  width: 100%;
  max-width: 100%;

  color: white;
  background: #ff5a00;
  border-color: #ff5a00;
  background-image: url(../icon/icon-price.png);
  background-repeat: no-repeat;
  background-position: 15px 13px;
}

.product-wrapper .control-box .item {
  width: 224px;
}

.product-wrapper .btn.icon-cart:before {
  font-size: 22px;
  margin-right: 15px;
}

.product-wrapper .prod-btns {
  width: 100%;
}

.product-wrapper .prod-btns .btn {
  border-radius: 8px;
}

.product-wrapper .prices-box {
  margin-bottom: 16px;
}

.product-wrapper .wishlist-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-wrapper .btn-wishlist {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 5px;
}

.product-wrapper .btn-wishlist:before {
  font-size: 22px;
  color: inherit;
  margin-right: 10px;
}

.product-wrapper .btn-wishlist.active {
  color: var(--green);
}

.product-wrapper .btn-wishlist span {
  text-decoration: underline;
}

.product-wrapper .not_available {
  width: 100%;
  font-size: 12px;
  color: var(--red);
}

.productweight {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.1;
  color: rgba(47, 72, 88, 0.5);
}

.productweight:before {
  font-size: 24px;
  margin-right: 17px;
  color: #ff5a00;
}

.productweight .per-kilo {
  color: var(--text);
  margin-right: 5px;
}

.product-wrapper .login-caption {
  display: flex;
  align-items: center;
  white-space: nowrap;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 160, 70, 0.30);
  color: var(--black);
  padding: 3px;
  margin-left: auto;
}

.product-wrapper .login-caption .icon-user {
  display: flex;
  align-items: center;
}

.product-wrapper .login-caption .icon-user:before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
}

.product-wrapper .login-caption .green {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-left: 7px;
}

.product-wrapper .login-caption a.green span {
  text-decoration: underline;
}

.product-wrapper .login-caption a.green:after,
.product-wrapper .login-caption .green:after {
  font-family: 'icomoon' !important;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e917";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FEC214;
  color: #000;
  font-size: 17px;
  margin-left: 5px;
}

.product-tabs .tabs {
  display: flex;
  align-items: center;
  height: 80px;
  background: #FFF;
  border-radius: 15px;
}

.product-tabs .tab {
  padding: 5px 30px;
  font-size: 19px;
  color: var(--text);
  transition: .4s;
  cursor: pointer;
}

.product-tabs .tab.active,
.product-tabs .tab:hover {
  color: var(--green);
}

.product-tabs .tab-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.product-tabs .extra_fields_value {
  font-weight: 400;
}

.product-tabs table {
  width: 100%;
  border-collapse: collapse;
}

.product-tabs table td {
  border: 1px solid var(--text);
  padding: 5px;
}

.product-tabs table tr:first-child td:first-child {
  width: 40%;
}

.product-tabs table td:not(:first-child) {
  text-align: center;
}


.btn.show-review-form {
  width: 212px;
  max-width: 212px;
  height: 50px;
  font-size: 19px;
}

.review_mark {
  color: #333333;
  height: 15.2px;
  overflow: hidden;
}

.stars_no_active {
  height: 16px;
  background-image: url(/images/stars.svg) !important;
  background-repeat: repeat-x;
  background-position: 0px 0px;
  background-size: 16px;
}

.stars_active {
  height: 16px;
  background-image: url(/images/stars.svg) !important;
  background-repeat: repeat-x;
  background-position: 0px -16px;
  background-size: 16px;
}

.star-rating-control {
  display: flex;
  align-items: center;
}


#jshop_review_write .form-group {
  width: calc(50% - 15px);
}

#jshop_review_write .form-group.message {
  width: 100%;
}

#jshop_review_write .btn {
  font-size: 19px;
}

#jshop_review_write .btn.secondary {
  color: var(--text);
  border-color: var(--text);
}

#jshop_review_write .btn.secondary:hover {
  color: var(--green);
  border-color: var(--green);
}

.review_item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #E7E7E8;
}

.review_item .review_info {
  width: 25%;
}

.review_item .review_user {
  color: #000;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review_item .review_time {
  font-size: 13px;
  color: #5F5F5F;
  margin-bottom: 12px;
}

.review_item .review_text {
  width: 74%;
  font-weight: 500;
  font-size: 19px;
  color: #000;

}

.lg .lg-actions .lg-next,
.lg .lg-actions .lg-prev {
  color: var(--green);
  border: 1px solid var(--green);
  background: transparent;
  transition: .3s;
}

.lg .lg-actions .lg-next:hover,
.lg .lg-actions .lg-prev:hover {
  color: var(--green);
  background: rgba(214, 41, 35, 0.16);
}

.lg .lg-toolbar .lg-icon:hover {
  color: var(--green);
}

.seo button#showTextButton {
  float: left;
  display: block;
  background: transparent;
  border: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 0 5px 0;
  cursor: pointer;
}

.seohide {
  display: none;
}

.seo {
  background: #F4F6FA;
  padding: 60px 0 120px;

}

.seotext {
  max-width: 1300px;
}

.seotext h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.seotext p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 15px;
}

.moduletablenews-slider h2 {
  font-size: 36px;
  margin: 40px 0px 20px;
}

.home-new {
  background: #F4F6FA;
  padding: 60px 0 30px;
}




@media (min-width: 1700.1px) {
  .viewed-products .prod-flex .prod-card {
    width: calc(16.65% - 8px);
    margin: 0 4px;
  }
}



/*
==================================*/
.main-page {
  padding: 30px 0;
}

.main-slider {
  position: relative;
}

.main-page .main-slider {
  width: calc(100% - 0px);
}

.main-slider {
  align-self: flex-start;
}

.main-slider .swiper-container {
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 60px;
}

.main-slider .swiper-slide {
  /*  height: 500px;*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 33.5%;
}

.main-slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: calc(100% - 0px);
  height: 0;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.main-slider-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
}

.slider-pagination {
  display: flex;
  justify-content: center;
}

.slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 3px !important;
  background: #fff;
  opacity: 1;
  cursor: pointer;
  transition: .3s;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: #ff680a;
}

/*==================*/
.login.page .control-group {
  margin-bottom: 20px;
}

#system-message .alert {
  background: #fff;
  border-radius: 15px;
  font-size: 16px;
  box-shadow: 0 0 5px var(--green);
  margin-top: 15px;
  padding: 15px;
}

/*
=========================*/
.modal.cartt .modal-wrapper {
  width: auto;
  max-width: 780px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}

.modal.cartt .extern_wrap {
  display: block;
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: none;
  background: #fff;
  max-width: 100%;
  width: 780px;
  min-width: 0;
}

.modal.cartt .extern_row {
  border: none;
  border-bottom: var(--border);
  padding-bottom: 24px !important;
  margin-bottom: 24px !important;
}

.modal.cartt .extern_row span {
  padding: 0;
}

.modal.cartt .extern_row .desription-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.modal.cartt .extern_row .pict {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.cartt .extern_row .pict img {
  max-width: 100%;
  max-height: 100%;
}

.modal.cartt .extern_row .desription-top-middle {
  width: calc(100% - 180px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal.cartt .extern_row .name {
  max-width: calc(100% - 30px);
}

.modal.cartt .extern_row span.name {
  max-width: 100%;
  margin-bottom: 8px;
}

.modal.cartt .extern_row span.name a {
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;

}

.modal.cartt .extern_row span.name a:hover {
  color: var(--green);
}

.modal.cartt .extern_row .quantity.block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px !important;
}

.modal.cartt .extern_row .quantity.block .qtty {
  width: auto;
  max-width: 100%;
  display: flex;
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.modal.cartt .extern_row .quantity.block .minus_quantity,
.modal.cartt .extern_row .quantity.block .plus_quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 34px;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  border: none;
  margin: 0;
  padding: 0;
}

.modal.cartt .extern_row input.input_quantity {
  position: relative;
  width: 80px;
  max-width: 80px;
  height: 34px;
  margin: 0;
  background: #fff;
  font-weight: 400;
  font-size: 22px;
  border: none;
  color: var(--text);
}

.modal.cartt .extern_row span.delete {
  background-color: transparent;
  top: 0;
  right: 0;
  transition: .3s;
  height: 18px;
}

.modal.cartt .extern_row span.delete a:before {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e913";
  font-size: 18px;
  color: var(--green);
}

.modal.cartt .extern_row span.delete a:hover:before {
  color: var(--text);
}

.modal.cartt .summ {
  font-weight: 800;
  font-size: 23px;
  color: var(--text);
}

.extern_row .name {
  margin-bottom: 10px;
}

.extern_row span.attr {
  font-size: 19px;
  color: var(--green);
  margin-left: 8px;
}

.summa_total .name {
  font-size: 19px;
  color: var(--text);
}

.modal.cartt .summ_total {
  font-weight: 800;
  font-size: 23px;
  color: var(--green);
}

.modal.cartt .extern_bottom {
  background: #fff;
}

.modal.cartt .extern_bottom .btn {
  width: 280px;
  max-width: 280px;
  color: #fff;
  font-size: 20px;
}

.modal.cartt .extern_bottom .btn:hover {
  color: var(--green);
}

.modal.cartt .extern_bottom .btn-close {
  font-size: 20px;
}

.extern_wrap .extern_empty {
  text-align: center;
  font-size: 19px;
  color: var(--text);
}

#DOMWindow {
  min-height: 275px;
  border: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#DOMWindow .modal_header {
  text-decoration: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

#DOMWindow .btn {
  width: 100%;
  min-width: 100%;
  height: 40px;
  font-size: 18px;
}

#DOMWindow .modal_err {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
}

#DOMWindow .modal_quantity,
#DOMWindow .modal_summ {
  color: var(--green);
}

.cart_empty_text {
  margin-bottom: 16px;
}

/*===========================*/

.checkout__col {
  width: calc(50% - 15px);
  align-self: flex-start;
}

.checkout__inputs-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.checkout__inputs-box_divider {
  margin-top: 15px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}

.checkout__input-box {
  padding: 5px 0px;
}

.checkout__input-box_half {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 5px 10px;
}

.checkout-ttl {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid #D0D0D1;
}

.page.checkout .check-item {
  padding: 10px;
  border: 1px solid #D0D0D1;
}

.page.checkout .check-item.active {
  border: 1px solid var(--green);
  box-sizing: border-box;
}

.page.checkout .check-item .info {
  display: none;
}

.page.checkout .check-item.active .info {
  display: block;
}

.page.checkout .checkbox input[type="radio"]~label,
.page.checkout .checkbox input[type="checkbox"]~label,
.page.checkout #cbAgree {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.page.checkout #cbAgree {
  margin-bottom: 16px;
}

.page.checkout .checkbox input[type="radio"]~label:before,
.page.checkout .checkbox input[type="checkbox"]~label:before,
.page.checkout #cbAgree:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: var(--border);
  background: #fff;
  color: #fff;
  font-size: 8px;
  transition: .3s;
  margin-right: 8px;
  flex-shrink: 0;
  border: 1px solid #000;
}

.page.checkout input[type="radio"]:checked~label:before,
.page.checkout input[type="checkbox"]:checked~label:before,
.page.checkout #cbAgree.active:before {
  color: var(--green);
  border-color: var(--green);
}

.page.checkout .checkbox label {
  font-size: 23px;
}

.page.checkout input[type="radio"]:checked~label {
  font-weight: 700;
}

.page.checkout .map-box {
  height: 330px;
  border-radius: 15px;
  overflow: hidden;
}

.page.checkout .icon-pin {
  display: flex;
  align-items: center;
  color: #252525;
  margin-bottom: 8px;
  font-size: 14px;
}

.page.checkout .icon-pin:before {
  color: var(--green);
  margin-right: 4px;
  font-size: 16px;
}

.page.checkout .np-ttl {
  margin: 5px 0 3px;
}

.page.checkout .pays-list {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.pays-list img {
  max-height: 40px;
  max-width: 80px;
}

.pays-list img:not(last-child) {
  margin-right: 15px;
}

.checkout__box .order-box {
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  padding: 60px;
}

.jshop_prod_cart {
  display: flex;
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #D0D0D1;
}

.jshop_prod_cart .icon-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  position: absolute;
  top: 16px;
  right: 0;
}

.jshop_prod_cart .img-box {
  width: 65px;
  height: 85px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}

.jshop_prod_cart .img-box img {
  max-width: 100%;
  max-height: 100%;
}

.jshop_prod_cart .info {
  flex: 1;
}

.jshop_prod_cart .title {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.1;
}

.jshop_prod_cart .jshop_cart_attribute {
  color: var(--green);
}

.jshop_prod_cart .price {
  font-size: 22px;
  margin-left: 15px;
  align-self: flex-end;
}

.jshop_subtotal {
  padding: 16px 0 8px;
  width: 100%;
  border-bottom: 1px solid #D0D0D1;
}

.jshop_subtotal tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.jshop_subtotal .name {
  font-size: 28px;
}

.jshop_subtotal .value {
  font-size: 28px;
  color: var(--green);
}


/*=========================*/
.page-left-side {
  width: 380px;
}

.page-left-side>.wrapper,
.page-right-side>.wrapper {
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  padding: 30px;
}

.page-left-side .user-name {
  font-size: 23px;
  color: #000;
}

.page-left-side .user-login {
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 30px;
}

.page-left-side .btn {
  width: 100%;
  max-width: 100%;
}

.page-left-side .user-menu,
.logout-form .user-menu {
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 30px 0 0;
  margin-bottom: 30px;
}

.page-left-side .user-menu a,
.page-left-side .logout,
.logout-form .user-menu a,
.logout-form .logout {
  display: flex;
  align-items: center;
  font-size: 19px;
  margin-bottom: 30px;
}

.page-left-side .logout,
.logout-form .logout {
  color: #C10909;
  margin-bottom: 0;
}

.page-left-side .user-menu .active a {
  color: var(--green);
}

.page-left-side .user-menu a:before,
.page-left-side .logout:before,
.logout-form .user-menu a:before,
.logout-form .logout:before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: var(--border);
  transition: inherit;
  margin-right: 30px;
}

.page-left-side .user-menu .active a:before,
.logout-form .user-menu a:hover:before {
  background: var(--green);
  border-color: var(--green);
}

.page-left-side .logout:hover:before,
.logout-form .logout:hover:before {
  background: #C10909;
  border-color: #C10909;
}

.page-right-side {
  width: calc(100% - 400px);
}

#member-profile {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#member-profile .control-group {
  width: calc(50% - 20px);
}

#member-profile .btn-box {
  width: 100%;
}

/*=======================*/
.cartwishlist {
  margin-bottom: 30px;
}

.cart {
  width: 100%;
}

.cart tr {
  display: flex;
  width: 100%;
}

.cart .mobile-cart {
  display: none;
}

.cart .jshop_img_description_center {
  width: 20%;
  text-align: center;
}

.cart .product_name {
  flex: 1;
}

.cart .product_code,
.cart .quantity,
.cart .total_price {
  text-align: center;
  width: 15%;
}

.cart .single_price {
  width: 15%;
}

.cart td.single_price,
.cart td.total_price,
.cart td.quantity {
  font-size: 19px;
  font-weight: 700;
}

.cart .remove_to_cart {
  width: 5%;
}

.cart .data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cart .single_price {
  text-align: center;
}

.cart .icon-cart {
  font-size: 24px;
  color: var(--green);
  text-align: center;
}

.wishlist_empty_text {
  font-size: 19px;
  text-align: center;
  margin-bottom: 50px;
}

.cart .remove {
  width: 20px;
}

.cart .jshop_cart_attribute {
  color: var(--green);
}

/*============================*/

.category-menu .menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -50px;
}

.category-menu .menu>li {
  width: calc(20% - 100px);
  margin: 0 50px 50px;
}

.category-menu .menu a {
  display: block;
}

.category-menu .menu img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.category-menu .menu>li>a {
  font-size: 23px;
  line-height: 1.13;
  margin-bottom: 16px;
}

/*========================*/


.jshop.page .right-side {
  width: calc(100% - 275px);
}

.control-group.box_products_sorting {
  margin: 0 0 0 auto;
}

.box_products_sorting #order {
  width: 267px;
  height: 45px;
  border: 1px solid #D5DADE;
  font-size: 19px;
  border-radius: 5px;
  padding: 10px 20px;
}

.prod-flex {
  margin-left: -15px;
  margin-right: -15px;
}

.prod-card {
  position: relative;
  height: 450px;
}

.prod-flex .prod-card {
  width: calc(20% - 8px);
  margin: 0 4px 15px;
}

.prod-card .product {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  padding: 30px 15px 25px;
}

.prod-card .product:hover {
  height: auto;
  box-shadow: 1px 1px 22px rgb(255 90 0 / 22%);
  z-index: 2;
}

.prod-card .product.not-avail {
  opacity: .5;
}

.prod-card .product.not-avail:hover {
  opacity: 1;
}

.prod-card .product.not-avail .attrib-empty-option {
  display: none !important;
}

.prod-card .product .not_available {
  color: #D62923;
  margin-top: 10px;
}

.prod-card .product .available {
  margin-top: 10px;
  color: grey;
  font-size: 12px;
}

.icon-cart:before {
  content: "\e914";
  content: "";
  width: 44px;
  height: 44px;
  background-image: url(../icon/icon-price.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ff5a00;
  display: block;
  border-radius: 8px;
}

.prod-card .img-box {
  position: relative;
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  margin: 0 auto 30px;
}

.prod-card .img-box img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.prod-card .name {
  font-size: 16px;
  line-height: 1.3;
  height: 38px;
  text-align: left;
  overflow: hidden;
  margin-bottom: 20px;
}

.prod-card .attributes_name {
  display: block;
  text-align: center;
  margin: 10px 0 5px;
}

.prod-card .attr_arr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -5px;
  margin-right: -5px;
}

.prod-card .jshop_prod_attributes .input_type_radio span {
  height: 26px;
  margin: 0 5px 10px;
}

.prod-card .jshop_prod_attributes .input_type_radio label span {
  font-size: 14px;
}

.prod-card .jshop_prod_attributes select.inputbox {
  width: calc(100% - 20px);
  border: 1px solid var(--green);
  border-radius: 3px;
}

.product-wrapper .jshop_prod_attributes {
  display: flex;
  flex-wrap: wrap;
}

.product-wrapper .jshop_prod_attributes select.inputbox {
  width: 140px;
  border: 1px solid var(--green);
  border-radius: 3px;
  margin-right: 15px;
}

.seo.showall .seohide {
  display: block;
}

.seo.showall button#showTextButton {
  text-indent: -999px;
  background: url(../icon/prev.png);
  width: 40px;
  height: 40px;
}

.seo.showall button#showTextButton {
  text-indent: -999px;
  background: url(../icon/prev.png);
  width: 20px;
  height: 18px;
  background-size: cover;
  transform: rotate(90deg);
}

.seo button#showTextButton {
  overflow: hidden;
}


















@media (min-width: 1200.1px) {}

.prod-card .product:hover .name {
  height: auto;
}

.prod-card .old_price {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-decoration-line: line-through;
  color: #7b7b7d;
}

.prod-card .jshop_price {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.prod-card .old_price:not([style*="display: none"])~.jshop_price {
  color: #eb2b00;
}

.prod-card .button_buy {
  font-size: 22px;
  color: var(--green);
}

.prod-card .tag,
.product-wrapper .tag {
  display: flex;
  align-items: center;
  position: absolute;
  top: -5px;
  left: 0;
  min-height: 20px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  padding: 5px;
}

.product-wrapper .tag {
  top: 5px;
  left: 5px;
}

.prod-card .tag.tag1,
.product-wrapper .tag.tag1 {
  background: var(--green);
}

.prod-card .tag.tag3,
.product-wrapper .tag.tag3 {
  background: var(--green);
}

.prod-card .tag.tag4,
.product-wrapper .tag.tag4 {
  background: #64ffc6;
  color: #000;
}

.prod-card .tag.tag7,
.product-wrapper .tag.tag7 {
  background: #ffa800;
}

.prod-card .tag.tag8,
.product-wrapper .tag.tag8 {
  background: #712cd5;
}

.page-flex .left-side {
  position: relative;
}

@media (min-width: 1200.1px) {
  .page-flex .left-side .sticky {
    position: absolute;
    left: 0;
    right: 0;
  }
}

.filter-box {
  width: 245px;
  align-self: flex-start;
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  padding: 5px 15px 0;
}

.filter-box .title {
  font-size: 28px;
  text-align: center;
}

.filter-box .close {
  display: none;
}



#jshop_unijax_filter .uf_wrappers {
  padding-right: 5px;
  max-height: calc(100vh - 290px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: var(--green) #F1F1F1;
}

@media (max-width: 1200px) {
  #jshop_unijax_filter .uf_wrappers {
    max-height: calc(100vh - 200px);
  }
}

#jshop_unijax_filter .uf_wrappers::-webkit-scrollbar-track {
  background: #F1F1F1;
}

[class^=uf_label_] {
  cursor: pointer;
}

#jshop_unijax_filter .uf_trackbar table.trackbar {
  margin-bottom: 0;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background-color: var(--green);
}

input[type=range]::-webkit-slider-thumb {
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 50%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  margin-top: -8px;
}

input[type=range]::-moz-range-track {
  height: 4px;
  background-color: var(--green);
}

input[type=range]::-moz-range-thumb {
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 50%;
  cursor: pointer;
}

.uf_input input[type="checkbox"]~label {
  display: inline-flex;
  align-items: center;
}

.uf_input input[type="checkbox"]~label:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 5px;
  border: var(--border);
  background: #fff;
  color: #fff;
  font-size: 8px;
  transition: .3s;
  margin-right: 8px;
}

.uf_input input[type="checkbox"]:checked~label:before {
  color: var(--green);
  border-color: var(--green);
}

#jshop_unijax_filter .btn {
  width: 100%;
  height: 30px;
  font-size: 13px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.show-filter {
  display: none;
}

@media screen and (max-width: 1200px) {
  .filter-box {
    position: fixed;
    width: 270px;
    height: 100vh;
    border-radius: 0;
    top: 0;
    left: -270px;
    transition: .4s;
    margin: 0;
    z-index: 10000;
  }

  .filter-box:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    transition: inherit;
    background: rgba(47, 72, 88, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .filter-box.open {
    left: 0;
  }

  .filter-box.open:after {
    width: 100vw;
  }

  .filter-box .ttl-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: var(--border);
  }

  .filter-box .title {
    font-size: 20px;
  }

  .filter-box .close {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  .btn.show-filter {
    display: flex;
    height: 25px;
    font-size: 13px;
  }

  .btn.show-filter:before {
    margin-right: 5px;
  }

  .jshop.page .right-side {
    width: 100%;
  }

  .box_products_sorting #order {
        width: 113px;
        height: 25px;
        font-size: 13px;
        padding: 0 5px;
  }

  [class^=uf_label_] {
    font-size: 14px;         margin-bottom: 0px;
  }

}

/*====================*/
.popular-products-slider .slider-nav {
  position: absolute;
  width: 156px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}


/*====================*/
.clients-menu {
  width: 380px;
  background: #fff;
  border: var(--border);
  border-radius: 15px;
  padding: 30px 30px 0;
}

.clients-menu .menu a {
  display: block;
  font-size: 16px;
  margin-bottom: 30px;
}

.clients-menu .menu .active a {
  color: var(--green);
}

.clients-content {
  width: calc(100% - 410px);
}

/*=================================*/

.news-content {
  width: calc(100% - 685px);
}

.last-news {
  width: 520px;
  align-self: flex-start;
  background: #fff;
  border-radius: 15px;
  padding: 60px 30px 30px;
}

.news-page .item-image {
  border-radius: 15px;
  overflow: hidden;
}

.articleBody p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 20px;
}

.articleBody h2 {
  font-size: 24px;
  line-height: 1.1;
  margin: 30px 0 20px;
  color: #000;
}

.articleBody h3 {
  font-size: 19px;
  line-height: 1.1;
  color: #000;
  margin: 20px 0;
}

.articleBody ul li {
  display: flex;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}

.articleBody ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  margin: 7px 10px 0 0;
}

.last-news-item .img-box {
  width: 150px;
}

.last-news-item .text-box {
  width: calc(100% - 165px);
  font-size: 19px;
  line-height: 1.1;
}

.news-flex {
  margin-left: -15px;
  margin-right: -15px;
}

.news-card {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 30px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 15px 60px;
  transition: .5s;
}

.news-card:hover {
  box-shadow: 1px 1px 22px rgb(255 90 0 / 29%);
}

.news-card .img-box {
  position: relative;
  overflow: hidden;
  padding-bottom: 50%;
}

.news-card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.news-card:hover .img-box img {
  transform: scale(1.05);
}

.news-card .content-box {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.news-card .readmore {
  border-radius: 8px;
  margin-left: auto;
}

/*===========================*/
.jshop_ajaxsearch {
  flex-shrink: 0;
  width: 400px;
  max-width: 100%;
  margin-right: 30px;
}

.jshop_ajaxsearch form {
  position: relative;
}

.jshop_ajaxsearch .input {
  height: 44px;
  padding: 5px 40px 5px 20px;
  background: hsl(0deg 0% 100% / 20%);
  color: white;
}

.jshop_ajaxsearch .input::placeholder {
  opacity: .75;
  color: white;
}

.jshop_ajaxsearch .submit {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 24px;
  color: var(--green);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.show-search.open:before {
  content: "\e913";
}

.jshop_list_manufacturer {
  margin-left: -15px;
  margin-right: -15px;
}

.jshop_list_manufacturer .item {
  display: flex;
  flex-direction: column;
  width: calc(20% - 30px);
  background: #fff;
  border-radius: 15px;
  border: var(--border);
  overflow: hidden;
  margin: 0 15px 30px;
  transition: .4s;
}

.jshop_list_manufacturer.flex.brand_list_home .item {
  width: calc(25% - 30px);
  border: 0;
}

.jshop_list_manufacturer.flex.brand_list_home .img-box {
  padding-bottom: 30%;
}


.jshop_list_manufacturer .item:hover {
  box-shadow: 1px 1px 22px rgb(255 90 0 / 20%);
}

.jshop_list_manufacturer .img-box {
  position: relative;
  padding-bottom: 100%;
  margin: 5px;
}

.jshop_list_manufacturer .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}

.jshop_list_manufacturer .text-box {
  flex: 1;
  padding: 10px;
}

.jshop_list_manufacturer .link {
  display: block;
  font-size: 19px;
  text-align: center;
}


/*======================*/
.list-orders {
  margin-left: -10px;
  margin-right: -10px;
}

.list-orders .item {
  width: calc(25% - 20px);
  border-radius: 15px;
  border: var(--border);
  padding: 10px;
  margin: 0 10px 20px;
}

.list-orders .item .btn {
  width: 100%;
  height: 30px;
  font-size: 20px;
  margin: 0 auto;
}

.mod-manufacturers {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 45px 20px;
  overflow-x: auto;
  max-width: max-content;
}

.mod-manufacturers .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 64px;
  flex-shrink: 0;
  margin: 0 22px;
}

#list_np_cities {
  max-height: 300px;
  overflow-y: scroll;
}

.product-button-wishlist {
  color: var(--text);
  font-size: 20px;
  max-width: max-content;
  position: absolute !important;
  top: 0;
  right: 0;
  z-index: 1;
}

.product-button-wishlist.active {
  color: var(--green);
}

.product .compare_link_to_list,
.product .remove_compare_list {
  color: #8D8D8D !important;
  font-size: 24px;
  max-width: max-content;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
  margin: 0 !important;
}

.remove_compare_list {
  position: relative;
}

.remove_compare_list:after {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\e912";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #26AD74;
  color: #fff;
  font-size: 8px;
  position: absolute;
  top: 0;
  right: -4px;
}

.compare-box {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.compare-box .icon-compare {
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: 19px;
  color: #8D8D8D;
  cursor: pointer;
  transition: .4s;
}

.compare-box:hover .icon-compare {
  color: var(--col-r);
}

.compare-box .remove_compare_list {
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

/*--------------------------------------------------------------------------------------------------------------------*/

.product-wrapper .icon-compare {
  display: flex;
  align-items: center;
  background: transparent;
  font-size: 16px;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: .4s;
}

.product-wrapper .icon-compare span {
  text-decoration: underline;
}

.product-wrapper .icon-compare:hover {
  color: var(--green);
}

.product-wrapper .icon-compare:before {
  font-size: 30px;
  margin-right: 6px;
}

.product-wrapper .icon-compare.remove_compare_list {
  color: var(--text) !important;
  margin-right: 0;
}

.product-wrapper .icon-compare.remove_compare_list:hover {
  color: var(--red) !important;
}

.product-wrapper .icon-compare.remove_compare_list:after {
  left: 20px;
  right: auto;
}

.product .tooltip,
.product-wrapper .tooltip {
  display: none !important;
}

.header .icon-compare {
  color: #fff;
  font-size: 25px;
  position: relative;
}

.header .icon-compare .count_compare {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: var(--text) !important;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  padding: 0;
  opacity: 1;
  position: absolute;
  top: -7px;
  right: -7px;
}

.compare_table tr {
  display: flex;
  margin-bottom: 4px;
}

.page .compare_table th {
  width: 180px;
  text-align: left;
  padding: 10px 12px;
}

.page .compare_table td {
  width: calc((100% - 280px) / 5);
  font-size: 14px;
  padding: 10px 12px;
  margin-left: 20px;
}

.compare_table .cards {
  position: sticky;
  top: 0;
}

.compare_table .cards td {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 10px 45px 0px rgba(39, 75, 116, 0.08);
  padding: 20px 12px;
}

.compare_table .icon-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #F7F7F7;
  color: #5F5F5F;
  font-size: 12px;
  margin: 0 auto 12px;
}

.compare_table .icon-close:hover {
  color: var(--col-r);
}

.compare_table .prod-name {
  flex: 1;
  font-weight: 600;
  color: #252525;
  font-size: 14px;
  margin-bottom: 15px;
}

.compare_table .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  cursor: pointer;
  margin-bottom: 15px;
}

.compare_table .img-box img {
  max-width: 90%;
  max-height: 90%;
}

.compare_table .btn {
  width: 120px;
  max-width: 120px;
  height: 36px;
  font-size: 20px;
}

.compare_price td p {
  font-weight: 800;
  font-size: 18px;
  color: var(--col-r);
  text-align: center;
}

.compare_code td {
  text-align: center;
}

.compare_manufacturer td {
  text-align: center;
}

.compare_table .stars_no_active {
  margin: 0 auto;
}

.compare_fixed {
  display: none;
  width: 100%;
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 10;
  background: #FFF;
  box-shadow: 0px 10px 45px 0px rgba(39, 75, 116, 0.08);
}

.compare_fixed.sticky {
  display: block;
  animation: flash 0.5s linear 1;
}

.compare_fixed .compare_table {
  max-width: 100%;
}

.compare_fixed .cards td {
  box-shadow: none;
  padding: 8px 12px;
}

.compare_fixed .icon-close {
  margin: 0 0 0 16px;
}

.compare_fixed .img-box {
  width: 80px;
  height: 50px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.compare_fixed .prod-name {
  width: calc(100% - 90px);
  flex: unset;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 0;
}

.clients .discount .item {
  display: flex;
  font-size: 18px;
  margin-bottom: 15px;
}

.clients .discount .percent {
  min-width: 45px;
  margin-right: 15px;
}

.externbootstrap_text__discount {
  font-size: 10px;
}

.select2-container--default {
  font-family: "Arial", sans-serif;
}

.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 44px;
  border-radius: 0;
  border-color: #E7E7E8;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
  line-height: 1;
  color: #5F5F5F;
  padding: 4px 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.product-wrapper .btn.btn_npr,
.product-wrapper .inform_availability {
  height: 48px;
  font-weight: 400;
  font-size: 16px;
  background: #FEC214;
  color: #000;
  border-color: #FEC214;
  border-radius: 8px;
}

.product-wrapper .inform_availability {
  width: auto !important;
}

.product-wrapper .btn.btn_npr:before,
.product-wrapper .inform_availability:before {
  font-size: 24px;
  margin-right: 10px;
}

.product-wrapper .btn.btn_npr:hover,
.product-wrapper .inform_availability:hover {
  background: #000;
  color: #FEC214;
  border-color: #000;
  box-shadow: none;
}

.header .act-info {
  display: block;
  background: #fec214;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  padding: 5px 15px;
}

.header .act-info:hover {
  color: var(--green);
}

#jquery-lightbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0 !important;
  bottom: 0;
  z-index: 2000;
  padding: 0 12.5px 5%;
}

#lightbox-container-image-box {
  width: calc(100% - 30px) !important;
  max-width: 800px;
}

#lightbox-image {
  width: auto;
  max-height: 75vh;
}

#lightbox-container-image-data-box {
  width: 100% !important;
  max-width: 800px;
  min-height: 50px;
  z-index: 2;
  padding: 0;
}

div#lightbox-container-image {
  padding: 0;
}

.filter-box .closeFilter {
  display: none;
}

.filter-box.open .closeFilter {
  display: block;
  position: absolute;
  right: 30px;
  top: 15px;
}

.top-line .lang_mob {
  display: none;
}

.top-line .lang_mob span:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 17px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(70deg);
}

.top-line .lang_mob span:after {
  content: none
}

.header .lang_mob .mod-languages .lang-list {
  position: unset;
  visibility: unset;
  opacity: 1;
  background: none;
  box-shadow: none;
  transform: unset;
}

.top-line .lang_mob span {
  font-size: 16px;
  color: var(--green);
  padding-right: 10px;
}

.top-line .lang_mob ul li a {
  color: #fff;
  font-size: 16px;
}

.top-line .lang_mob .mod-languages {
  display: flex;
  align-items: center;
}

footer .time_in_work {
  margin-top: 30px;
}

/* footer .time_in_work .title{font-size: 16px;} */
footer .time_in_work li span {
  margin: 0px 10px -5px 0px;
}

footer .time_in_work li {
  color: #fff;
  font-size: 16px;
  list-style: none;
}

footer .time_in_work .ru_lang li:last-child span {
  width: auto;
}

footer .footer-contacts .time_in_work {
  display: none;
}

footer .mob_info {
  display: none;
}

footer .mod-languages span.active-language:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 17px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(70deg);
}

footer .mod-languages span.active-language:after {
  content: none
}

footer .mod-languages .lang-list {
  position: unset;
  visibility: unset;
  opacity: 1;
  background: none;
  box-shadow: none;
  transform: unset;
}

footer .mod-languages span.active-language {
  font-size: 16px;
  color: #ff5a00;
  padding-right: 10px;
}

footer .mod-languages ul.lang-list li a {
  color: #fff;
  font-size: 16px;
}

footer .mod-languages {
  display: flex;
  align-items: center;
}

footer .block_lang {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 5px;

}

footer .block_lang .title {
  /* font-size: 16px; */
  font-weight: 300;
}

div.movetext {
  margin-bottom: 60px;
}

.movetext button {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1;
  color: #FFF;
  height: 40px;
  padding: 0 18px;
  cursor: pointer;
  transition: 0.4s;
  background: var(--green);
  max-width: max-content;
  outline: none;
  border: 1px solid var(--green);
  border-radius: 3px;
  white-space: nowrap;
}

.movetext button:hover {
  box-shadow: 0 0 5px var(--green);
  color: var(--green);
  background: #fff;
}

.footer-contacts p {
  color: #C8C8CC;

}

.footer-contacts .social a:before {
  color: white;
}

.footer-contacts .social a:before {
  color: white;
  background-color: rgb(255 255 255 / 10%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-contacts a:before {
  font-size: 90%;
  color: #ff5a00;
  margin-right: 9px;
}

.footer-contacts a.icon-mail:before {
  font-size: 120%;
}



.sect-h1 .top-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
  align-items: center;
}

.sect-h1 .top-section img {
  width: 100%;
  max-width: 770px;
  border-radius: 20px;
}

.sect-h1 .top-text {
  flex: 1;
  min-width: 300px;
  padding-left: 50px;
}

.sect-h1 .top-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #18181F;
}

.sect-h1 .top-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #60606F;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sect-h1 .top-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #60606F;
  font-weight: 500;
}

.sect-h1 .top-text a:hover {
  color: #ff5a00;
}

.sect-h1 .top-text a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 700;
  color: #18181F;

  font-size: 14px;
}

.sect-h1 .bottom-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sect-h1 .box {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 370px;
  text-align: left;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.last-news {
  font-size: 0;
}

.last-news a.text-box {
  padding: 10px 0 10px;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
}

.sect-h1 .box h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.sect-h1 .box p {
  margin: 0;
  font-size: 16px;
  color: #3d3d3d;
}

.sect-h1 .box img {
  max-width: 100%;
}

.peach {
  background: #ffe4d2;
}

.lightgray {
  background: #f1f3f8;
}

.box.peach img,
.box.lightgray img {
  position: absolute;
}

.sect-h1 .box p {
  max-width: 300px;
  color: #60606F;
  line-height: 1.55;
  font-size: 16px;
}

.sect-h1 .box img {
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
}

.flex-orange-bl {
  background: #FF680A;
  border-radius: 8px;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  padding: 0 40px 15px;
  font-size: 24px;
  font-weight: 600;
  color: white;
  justify-content: space-between;
}

.flex-orange-bl .title-med-wh {
  max-width: 880px;
  line-height: 1.2;
  padding: 0 45px 0;
  margin: 12px 0 0;
}



.advantages {

  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.advantages h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.2;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.advantages-list li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.advantages-list li:hover {
  transform: translateY(-5px);
}

.advantages-list .icon {
  height: 112px;
  margin-bottom: 16px;
  margin-top: -25px;
}

.advantages-list .icon img {
  max-height: 100%;
}

.advantages-list h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333342;
}

.advantages-list p {
  font-size: 16px;
  color: #60606F;
  line-height: 1.4;
}

.why-us-grid ul.why-us-list:nth-child(2) li {
  background: linear-gradient(45deg, #ffffff, transparent);
}

.why-us {
  padding: 60px 20px;
  text-align: center;
  background: url(/images/why-bg.png) #F4F6FA;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.why-us h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.why-us-list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 296px;
}

.why-us-list li {
  background: rgb(255 255 255 / 95%);
  border-radius: 12px;
  padding: 20px;
  font-size: 16px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  line-height: 1.4;
  min-height: 147px;
}

.num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 8px;
  line-height: 1.2;
}

.num.orange {
  color: #F45E25;
}

.why-us-image {
  position: relative;
  max-width: 300px;
}

.why-us-image img {
  width: 100%;
  border-radius: 12px;
}

.why-us-note {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
  font-size: 14px;
}

.moduletablehome-title-brands h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.2;
}

.moduletablehome-title-brands a {
  display: flex;
  float: right;
  margin: -60px 0 0;
  position: relative;
  z-index: 2;
}

.moduletablehome-brand .mb25 {
  display: none;
}

.moduletablehome-brand .jshop_list_manufacturer .text-box {
  display: none;
}

.moduletablehome-brand .jshop_list_manufacturer .item {
  background: transparent;
  border: 0;
}

.moduletablehome-brand {
  background: white;
}

.moduletablehome-title-brands a:hover {
  color: #ff5a00;
}

.moduletablehome-title-brands {
  max-width: 1560px;
  margin: auto;
  padding: 60px 0 0;
}

.moduletablehome-brand .text-box {
  display: none;
}

.moduletablehome-brand div#comjshop {
  padding: 20px 0 0px;
}

.moduletablehome-brand .swiper-button-next,
.moduletablehome-brand .swiper-button-prev {
  color: black;
  width: 15px !important;
  height: 30px;
  position: absolute;
  top: 95%;
  left: 50%;
  margin: -25px 0px 0;
  font-size: 26px;
  display: none !important;
}

.moduletablehome-brand .swiper-button-prev {
  margin: -25px -60px 0;
}

.moduletablehome-brand .swiper-button-next:after,
.moduletablehome-brand .swiper-button-prev:after {

  font-size: 26px;
}

.beforefooter {
  font-size: 0;
}

.beforefooter .last-news-item.flex {
  padding: 12px;
  border: 1px solid #E6E9F1;
  border-radius: 15px;

}

.beforefooter .last-news-item a.text-box {
  font-size: 18px;
  font-weight: 700;
  min-height: 45px;
  display: inline-block;
  width: 100%;
  margin: 10px 0 1px;
  padding: 0 10px 0;
}

.beforefooter .last-news-item p.article-short {
  font-size: 16px;
  line-height: 1.44;
  margin: 0 0 20px;
  padding: 0 10px 0;
}

.beforefooter .last-news-item img {
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.beforefooter .last-news-item p.article-date {
  font-size: 12px;
  color: #9797A1;
  padding: 0 10px 15px;
}

.beforefooter .last-news-item p.article-date:before {
  content: "";
  width: 15px;
  height: 14px;
  display: inline-block;
  background: url(/images/time.png);
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 5px -2px 0px;
}

.moduletablenews-slider {
  padding-top: 85px;
  position: relative;
  width: 100%;
  top: -72px;
}

.slider-prev:before,
.slider-next:before {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slider-prev:before {
  content: "\e90d";
}

.slider-next:before {
  content: "\e90c";
}

.moduletablenews-slider .slider-prev,
.moduletablenews-slider .slider-next {
  position: absolute;
  top: 0px;
  right: 160px;

}

.moduletablenews-slider .slider-prev {
  margin-right: 75px;
}

/*product*/


.product-wrapper .login-caption,
.product-wrapper .icon-compare.remove_compare_list,
.product-wrapper .compare_link_to_list {
  display: none !important;
}

.product-wrapper .prod-btns .btn.icon-cart {
  display: none !important;
}

.product-wrapper .prod-price {

  line-height: 1.2;

}

.popular-products-slider.mb60 {

  padding-bottom: 60px;
  margin-bottom: 10px;
}

.modal-wrapper .ttl {
  font-weight: 600;
  line-height: 1.33;
  font-size: 18px;
}

.form-group-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px 0;
}

.form-group-flex .radio input {
  display: none;
}

.contentpane .btn.scnd {

  color: #ff5a00;
  border: 1px solid #ff5a00;
}

.form-group-flex .radio .radio-label {
  border: 1px solid #ff5a00;
  display: block;
  padding: 5px 6px;
  margin: 0 3px 0;
  cursor: pointer;
  font-size: 13px;
}

form#oneсlickForm button.btn.centered {
  height: auto;
  font-size: 20px;
  padding: 10px 25px;
  margin: 20px auto 0;
  width: 100%;
}

.form-group-flex .radio input:checked+.radio-label {
  background: #ff5a00;
  color: white
}

.product-wrapper .control-box {
  position: relative;
  min-height: 150px;
}

.product-wrapper .not_available {

  position: absolute;
  top: 0;
}

.prod-btns.prod_buttons.flex.between {
  position: relative;
  top: -35px;
}

div#iap_show_link {
  position: absolute;
  top: 85px;
  left: 280px;
}

div#iap_show_link a.jsh_modal.inform_availability.btn.icon-notification {
  background-image: none;
}

.form_sort_count .control-group {
  margin-bottom: 15px;
  min-width: 160px;
  display: flex;
  align-items: center;
  padding: 0px 8px 0px 0;
  margin: 0 0 0;
  justify-content: space-between;
}

.product .compare_link_to_list,
.product .remove_compare_list {

  display: none !important;
}

.flex-orange-bl .social.flex a {
  margin: 15px 5px 0;
}

.header-menu>.menu-item>a:hover {
  color: #ff5a00;
}


.product-wrapper .jshop_prod_attributes input:checked+label .radio_attr_label {
  font-weight: 600;

}


.moduletablehome-brand .swiper-wrapper {
  transform: translate3d(0px, 0, 0) !important;
  flex-wrap: wrap;
  justify-content: space-between;
}

.moduletablehome-brand .swiper-wrapper>*:nth-child(n + 13) {
  display: none !important;
}

.header-links a.link.icon-user {
  display: none !important;
}

.cat-menu>li>.nav-child>li>a span.image-title {
  font-weight: 600;
  color: #ff5a00;
}

.flex-orange-bl .social.flex {
  margin: 10px 0 0;
}

.footer .menu a:hover {
  color: #ff5a00 !important
}

.why-us-list li {
  cursor: pointer;

  transition: 0.5s;
}

.why-us-list li:hover {
  cursor: pointer;
  box-shadow: 0px 3px 17px rgb(255 90 0 / 20%);
  transform: translateY(-5px);
  transition: 0.5s;
}

a.jsh_modal.btn.btn_npr.icon-notification {
  display: none;
}

div#comjshop .page-left-side {
    display: none;
}
.jshop_list_product a.btn.icon-filter.show-filter {
    display: none;
}
a.icon-discount.icon-new::before {
    content: " ";
    font-family: sans-serif !important;
    font-size: 10px;
width: 33px;
    height: 33px;
    border-radius: 50%;
  
    background: url(/images/icon_new.png);
    background-size: cover;
}










@media (min-width: 1700px) {
  .container {
    max-width: 1590px !important;
  }
}


@media (min-width: 1200px) {
  body.page404 a.btn.for-catteries {
    display: none;
}
  .moduletablehome-brand .swiper-wrapper .swiper-slide img {
    max-height: 200px;
    margin: 0 0 -25px;
  }

  .item.wishlist-box {
    position: relative;
    top: 10px;

  }

  .product-wrapper .control-box {
    padding: 25px 30px 0;
    justify-content: space-between;
  }

  .product-wrapper .free-delivery {
    position: relative;
    top: 0px;
    margin: 1px 0px 0;
  }
}

@media (max-width: 1921px) {
  .sect-h1 .top-text {
    padding-left: 15px;
  }

  .sect-h1 .top-text h2 {
    font-size: 32px;
  }

  .sect-h1 .top-text h3 {
    font-size: 16px;
  }
}



@media (max-width: 1699px) {

  .beforefooter .last-news-item img {
    height: 230px;
  }

  .moduletablehome-title-brands {
    max-width: 1380px;
  }

  .header-links {

    margin-right: 0;
  }

  .jshop_ajaxsearch {
    flex-shrink: 0;
    width: 370px;
  }

  .flex-orange-bl .title-med-wh {
    max-width: 728px;
  }
}

@media (max-width: 1500px) {
  .beforefooter .last-news-item img {
    height: 190px;
  }

  div#iap_show_link {
    position: absolute;
    top: 85px;
    left: 363px;
    width: 286px;
  }

  .item.wishlist-box {

    top: 0;
  }

  .sect-h1 .box p {
    max-width: 260px;
  }

  .header-contact {
    max-width: 60%;
  }

  .sect-h1 .top-section img {
    width: 100%;
    max-width: 50%;
    border-radius: 20px;
  }

  .sect-h1 .top-text {
    padding-left: 0px;
  }

  .flex-orange-bl {
    font-size: 21px;
  }

  .why-us-list {
    max-width: 260px;
  }

  .moduletablehome-title-brands {
    max-width: 1170px;

  }

  .home-new {
    margin: -50px 0 0;
  }

  .sect-h1 .box img {

    top: auto;

    bottom: 0;
  }
}


@media (max-width: 1300px) {
  div#iap_show_link {
    position: absolute;
    top: 85px;
    left: 344px;
    width: 269px;
  }
}

@media (max-width: 1200px) {
  .jshop_list_product .block_sorting_count_to_page.flex.align-center  {
    justify-content: space-between;
}
  .form_sort_count .control-group {
margin-bottom: 0px;
        min-width: 115px;
        padding: 0;
  }
 .right-side .label, .right-side .control-label {
        font-size: 13px;
    }
      .btn.show-filter {
        display: flex!important;
                padding: 0 7px 0;
    }
  .jshop_ajaxsearch .input {
 
    background: hsl(0deg 10% 3% / 60%);
    color: white;
}
  .beforefooter .last-news-item img {
    height: 145px;
  }

  div#iap_show_link {
    position: absolute;
    top: 87px;
    left: 268px;
    width: 210px;
  }

  .product-wrapper a#clickOrder {
    top: 58px;
    position: relative;
  }

  .product-wrapper .control-box {
    position: relative;
  }

  .product-wrapper .free-delivery {
    margin: 0;
  }

  .moduletablehome-title-brands {
    max-width: 960px;
    padding: 50px 15px 0px;
  }

  .footer .top {
    padding: 0px 0;
  }

  .why-us-list li {

    padding: 15px;
    font-size: 14px;
    min-height: 135px;
  }

  .why-us-list {
    max-width: 215px;
  }

  .header-contact {
    max-width: 100%;
  }

  .header .top-line .icon-tel {
    margin-left: 5px;
    margin-right: 5px;
  }

  .top-line .lang_mob {

    margin: 0 15px 0;
  }

  .sect-h1 .box {

    padding: 20px
  }

  .sect-h1 .box p {
    max-width: 260px;
    font-size: 14px;
  }

  .sect-h1 .box {
    min-height: 349px;
  }

  .advantages-list h3 {
    font-size: 20px;
  }
}


@media (max-width: 990px) {
  .product-wrapper .prices {
    padding-top: 10px;
  }

  div#iap_show_link {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .sect-h1 .top-section img {
    width: 100%;
    max-width: 100%;

  }

  .sect-h1 .bottom-section {
    display: block;
  }

  .why-us-list {
    max-width: 50%;
  }

  .header .bottom a.btn.for-catteries {
    color: white;
    border-color: white;
  }

  .header .bottom .btn {

    border: 1px solid white;
  }
}




@media (max-width: 767px) {
  .mobile-menu-login {
    display: none;
    
}
  .product-wrapper .not_available {
    position: absolute;
    top: 20px;
}
  a.icon-discount.icon-new::before {
 
    width: 15px;
    height: 15px;
 
}
  .jshop_list_manufacturer.flex.brand_list_home .item:last-child {
    display: none;
  }

  .jshop_list_manufacturer.flex.brand_list_home {
    width: 100%;
  }

  .jshop_list_manufacturer.flex.brand_list_home .item {
    width: calc(33% - 13px);
  }

  .jshop_list_manufacturer.flex.brand_list_home {
    width: 100%;
    justify-content: space-between;
    margin: 50px 0 0;
  }

  .prod_qty_input {

    position: relative;
    top: 10px;
  }

  .product-wrapper .prices {
    padding-top: 30px;
  }

  .class_prc {
    font-weight: 600;
    line-height: 1;
    color: #5e5e5e;
    font-size: 12px;
    width: 100%;
    padding: 8px 0 0;
    margin: 0 0 -0px;
    position: absolute;
    float: left;
    top: -2px;
  }

  .beforefooter .last-news-item img {
    height: 250px;
  }

  .product-wrapper a#clickOrder {
    top: 20px;
    position: relative;
  }

  .slider-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 2px !important;

  }

  .header .logo {
    width: 170px;
  }

  .product-wrapper .prod-btns .btn {

    top: 20px;
  }

  .flex-orange-bl {
    font-size: 21px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-wrapper .control-box .item {
    width: calc(100% - 0px);
    margin-bottom: 15px;
  }

  .item.wishlist-box {
    position: relative;
    bottom: 0;
    margin-left: 0px;
    left: 0;
    height: 50px;
  }

  .product-wrapper .control-box .item {
    width: calc(100% - 0px) !important;

  }

  .modal-wrapper .ttl {
    font-size: 16px;
  }

  .form-group-flex .radio {
    margin: 0 0 5px;
  }

  .prod_qty_input input {
    width: 45px;
  }

  .header-contact a.icon-tel:nth-child(2) {
    display: none;
  }

  .header .icon-tel:before {
    display: none;
  }

  .sect-h1 .top-text h2 {
    font-size: 26px;
  }

  .header .top-line .social a {
    width: 27px;
    height: 27px;
    margin-left: 5px;
  }

  .header-contact {
    max-width: 100%;
    justify-content: space-between;
  }

  .advantages h2 {
    font-size: 28px;
  }

  .top-line .lang_mob ul li a {
    color: #fff;
    font-size: 14px;
  }

  .top-line .lang_mob {
    margin: 0 5px 0;
  }

  .top-line .lang_mob span {
    font-size: 14px;
  }

  .why-us h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
  }

  .why-us-list {
    max-width: 100%;
  }

  .why-us {
    padding: 40px 0px;
  }

  .moduletablehome-title-brands h2 {
    font-size: 28px;
  }

  .moduletablehome-title-brands a {
    float: left;
    margin: -20px 0 0;
  }

  .moduletablenews-slider .slider-prev,
  .moduletablenews-slider .slider-next {
    right: -15px;
  }

  .moduletablehome-title-brands {
    max-width: 960px;
    padding: 50px 15px 0px;
  }

  .seotext h1 {
    font-size: 23px;
  }

  .footer {

    padding: 5px 0 10px;
  }

  .footer .info-box {
    width: calc(47% - 10px);
  }

  .footer .social a {
    font-size: 17px;
    margin-left: 0px;
  }

  .footer-contacts .social a:before {
    width: 35px;
    height: 35px;
    margin-right: 3px;
    margin-bottom: 10px;
  }

  .footer .bottom .container {
    padding: 15px 15px 10px;
    margin-top: 20px;
  }

  .why-us-list li {

    min-height: auto;
  }

  .num {
    display: block;
    font-size: 30px;
  }

  .flex-orange-bl .title-med-wh {

    padding: 0 0px 0;
  }

  .moduletablehome-brand .swiper.modulatable-swiper .swiper-slide {
    max-width: 30%;
    margin: -20px 5px !important;
  }
}

@media (min-width: 767px) {
  .only-mobile {
    display: none !important;
  }
}

@media (max-width: 467px) {
  .main-slider .swiper-slide {

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-bottom: 31.1%;
    width: 100% !important;
  }

  .beforefooter .last-news-item img {
    height: 175px;
  }

  .sect-h1 .box p {
    max-width: 300px;

  }
}


@media (max-width: 377px) {

.header .top-line .icon-tel {
      
        font-size: 14px;
    }

  }
  
  
  .home-new .prod-card .button_buy {
    display: none;
}