.buy_template {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 14px 0 10px 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 500;
}

.buy_template_link {
  display: block;
  font-size: 16px;
  line-height: 1;
  padding: 8px 30px;
  margin-top: 9px;
  text-align: center;
  background: #f8e342 !important;
}

.buy_template_link:hover {
  text-decoration: none;
}

.buy_template img {
  max-width: 55px;
  /*width: 55px;*/
  margin-top: 6px;
}

#clock {
  font-size: 19px;
  color: white;
  padding-top: 17px;
}

.order_body h2 {
  font-size: 14px;
  margin-top: 5px;
  padding-top: 5px;
  margin-bottom: 5px;
  line-height: 20px;
}

.change_color {
  float: left;
  padding: 5px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.change_color input {
  display: block;
  margin: 4px auto 0 auto;
  cursor: pointer;
  border: 2px solid #fff;
  padding: 0;
  background: transparent;
  height: 30px;
  width: 30px;
}

.change_color form {
  display: block;
  margin: 4px auto 0 auto;
}

.change_color.main_color > input {
  background: var(--sm-text-color);
  color: transparent;
}

.change_color.second_color > input {
  background: var(--sm-link-color);
  color: transparent;
}

.change_color.background_color > input {
  background: var(--sm-background);
  color: transparent;
}

html,
body {
  height: 100%;
}

@media (max-width: 600px) {
  body {
    height: 100dvh;
    height: 100vh; /* fallback for safari */
  }
}

body {
  max-width: 100%;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-variant-numeric: lining-nums;
  background: var(--sm-background);
  color: var(--sm-text-color);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
  margin-right: 17px;
}

iframe {
  max-width: 100%;
  max-height: 100%;
}

select {
  display: none;
}

div {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

label {
  margin-bottom: 10px;
}

.modal-dialog {
  margin: 10px auto;
}

.modal.product_modal .modal-dialog {
  width: calc(100% - 30px) !important;
}

.lazyload {
  opacity: 0;
}

.clear {
  clear: both;
}

.anim {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-delay: 0s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.caret {
  display: inline-block;
  position: relative;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--sm-text-color) transparent transparent transparent;
}

/*! SELECTIZE*/
.selectize-control {
  height: 27px;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input.input-active {
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  box-shadow: none;
  height: 27px;
}

.selectize-control.single .selectize-input .item {
  padding-left: 6px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  user-select: none;
  padding-right: 22px;
}

.shipping_methods_block .selectize-control.single .selectize-input .item {
    width: max-content!important;
    padding-right: 0;
}

.selectize-input > input {
  display: none !important;
}

.selectize-control.single .selectize-input:after,
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -3px;
  border-width: 5px 5px 0 5px;
  border-color: var(--sm-text-color) transparent transparent transparent;
  z-index: -1;
  right: 9px;
}

.selectize-dropdown {
  z-index: 110;
}

.selectize-dropdown .active {
  background: var(--sm-btn-color);
  color: var(--sm-btn-text-color);
}

.selectize-dropdown [data-selectable].option {
  max-width: 100%;
  cursor: pointer;
  line-height: 1;
  text-align: left;
}

/*! END SELECTIZE*/
/*!----------------------------------------------- MAIN PARAMETERS -------------------------------------*/
.error-page {
  text-align: center;
}

a {
  color: var(--sm-link-color);
  outline: none !important;
}

a:hover,
a:focus {
  color: var(--sm-text-color);
}

.center-block {
  float: none;
}

h2,
h1,
.like_h2 {
  color: var(--sm-text-color);
  line-height: 30px; /* prevent jumping on load */
  margin: -6px 0 10px 0;
  position: relative;
}

ul {
  padding-left: 0;
  list-style: none;
}

svg {
  width: 1em;
  height: 1em;
  font-size: 16px;
}

.modal-content {
  background-color: #fff;
}

.quantity-selector-mask input {
  height: 48px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  border-radius: 12px;
  border: 1px solid #cfcfcf;
}

.padd-0 {
  padding: 0;
}

.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.alert {
  font-weight: normal;
  font-size: 13px;
  line-height: 21px;
}

main > .container > .alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

body > .alert,
#compare_box + .alert,
#divShoppingCard ~ .alert {
  position: fixed;
  max-width: 380px;
  /*z-index: 99;*/
  z-index: 1051;
  top: 10px;
  right: 10px;
}

body > .alert,
#compare_box + .alert {
  right: 0;
}

.modal-body .alert {
  position: relative;
  max-width: 100%;
  right: 0;
}

.modal-body .alert .close {
  display: none;
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-left: 0;
  margin-right: 0;
}

.container > .mobile_menu > .dropdown > .dropdown-menu {
  position: relative;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

/*main > .container-fluid.padd-0 > .row {*/
/*  !*margin:-30px 0 0 0;*!*/
/*  margin: 0;*/
/*}*/

/*main > .container-fluid > .row > div {*/
/*  padding:0;*/
/*}*/
.img-responsive {
  /*display: block !important;*/
  display: inline-block !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
}

.modal-header .close {
  outline: 0;
  fill: var(--sm-text-color);
}

.no-title .modal-header {
  border-bottom: 0;
}

.no-title .modal-body {
  margin-top: 0;
  padding-top: 0;
}

.article_modal .modal-body {
  overflow-y: auto;
  max-height: 400px;
  width: 100%;
  margin-top: 14px;
}

.article_modal .modal-body::-webkit-scrollbar { width: 6px; height: 6px; }
.article_modal .modal-body::-webkit-scrollbar-button { height: 0; }
.article_modal .modal-body::-webkit-scrollbar-track { background-color: transparent; opacity: 0; }
.article_modal .modal-body::-webkit-scrollbar-track-piece { background-color: transparent; opacity: 0; }
.article_modal .modal-body::-webkit-scrollbar-thumb { height: 50px; background-color: #858585; border-radius: 3px; }
.article_modal .modal-body::-webkit-scrollbar-corner { background-color: transparent; opacity: 0; }
.article_modal .modal-body::-webkit-resizer {  background-color: transparent; opacity: 0; }

.modal-body h3,
.modal-body h2,
.modal-body h1 {
  text-align: center;
  margin-top: 0;
}

.left_content .how_know_for_us .our_variants {
  margin: 0 0 30px;
  background: var(--sm-grey-color);
  border-radius: 7px;
  padding: 7%;
}

.left_content .how_know_for_us .btn.btn-default.gradient {
  color: #000;
}

.left_content .how_know_for_us .our_variants b {
  margin-right: 10px;
}

.btn-primary {
  color: var(--sm-btn-text-color);
  font-size: 13px;
  background: #ffb300;
  background: var(--sm-btn-color);
}

.btn-primary:hover {
  border-color: var(--sm-btn-color) ;
}

.modal-body .action_btn #checkoutButton.btn-primary {
  line-height: normal;
}

.btn-dismiss {
  color: #000;
  background: #eee;
  line-height: normal;
  font-size: 13px;
  border: 0;
}

.btn-success {
  border: 1px solid #cfcfcf;
  outline: none !important;
  color: #fff;
  background: var(--sm-grey-color);
  /* Old browsers */
  background: -moz-linear-gradient(top, var(--sm-grey-color) 0%, #e2e2e2 100%);
  /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, var(--sm-grey-color)),
    color-stop(100%, #e2e2e2)
  );
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    var(--sm-grey-color) 0%,
    #e2e2e2 100%
  );
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, var(--sm-grey-color) 0%, #e2e2e2 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, var(--sm-grey-color) 0%, #e2e2e2 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, var(--sm-grey-color) 0%, #e2e2e2 100%);
  /* W3C */
}
.btn-success {
  color: #000000;
  border: 1px solid #f9e442;
  background: #f9e442;
}

.btn-lg {
  padding: 12px 27px;
  font-size: 16px;
  line-height: 1;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  color: var(--sm-btn-text-color);
  background: var(--sm-btn-color);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: var(--sm-btn-color);
}

.btn-success:hover,
.btn-success:focus {
  color: #fff;
  background: var(--sm-link-color);
  border: 1px solid #cfcfcf;
}

.p_list_model {
    max-width: 60px;
    color: #999 !important;
    float: left !important;
    padding: 5px !important;
    padding-left: 0px !important;
}

.p_list_model + span {
    padding: 5px;
    padding-right: 0;
}

.product:hover .p_list_model {
    position: relative;
    max-width: 100%;
    z-index: 1;
}

.product:hover .p_list_model + span {
    position: absolute;
    right: 0;
}

.label {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  display: inline;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 3px 8px;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

.label-default {
  background-color: #c0c0c0;
}

.label-black {
  padding: 0 1px 0 5px;
  color: var(--sm-text-color);
  display: inline-flex;
  align-items: flex-end;
}

.label-black i {
  color: #54af28;
  font-size: 17px;
  padding-right: 5px;
}

.label-black svg {
  fill: #54af28;
  font-size: 12px;
  margin-right: 5px;
}

.laebel-nostock {
  color: #999;
}

.label-success {
  background-color: #6ec642;
}

/* checkbox styles */
-ms-input-placeholder,
-o-input-placeholder,
::-webkit-input-placeholder,
::-moz-placeholder {
  color: #000;
}

/*--------------------------- TOP HEADER ------------------------*/
.top_header {
  background: var(--sm-bg-header);
  padding: 5px 0;
  border-bottom: 0px solid #ededed;
}

.container_top_header {
  position: relative;
}

.wrapper_language_currency_select {
  float: left;
}

.language_select,
.currency_select {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
  float: left;
}

.language_select .dropdown-menu > li > a {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: 100%;
  padding: 4px 8px;
  color: var(--sm-text-color);
}

.language_select .dropdown-menu > li > a:hover,
.language_select .dropdown-menu > li > a:focus {
  background: var(--sm-btn-color);
  color: var(--sm-btn-text-color);
}

.language-dropdown-button {
  height: 27px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--sm-text-color);
  border-radius: 0;
  font-weight: 400;
  line-height: normal;
  font-size: 14px;
  min-width: 47px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.language-dropdown-button:hover {
  -webkit-text-stroke: .7px #000;
}

.dropdown-menu-language {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 50px;
  padding: 0;
  margin: 5px 15px 0;
  list-style: none;
  font-size: 14px;
  background-color: #fff;
  border: 2px solid var(--sm-grey-color);
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 105px;
}

form .selectize-control,
form .selectize-control.single .selectize-input,
form .selectize-control.single .selectize-input.input-active {
  height: 34px;
  display: flex;
}

form select {
  height: 34px;
  padding-left: 8px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
}

form .selectize-input > input,
form .selectize-control.single .selectize-input .item {
  display: inline-flex !important;
  padding-left: 10px !important;
}

form .shipping_methods_block .selectize-input.has-items > input#np_cities-selectized {
    padding-left: 3px !important;
}

form .selectize-control.single .selectize-input.not-full input,
form .selectize-control.single .selectize-input .item {
  width: 100% !important;
}

form .selectize-control.single .selectize-input,
form .selectize-control.single .selectize-input.input-active {
  border-radius: 7px;
  border: 2px solid var(--sm-grey-color);
}

form .selectize-dropdown [data-selectable].option {
  padding: 5px 12px;
}

.currency_select {
  margin: 0 10px 0 0;
  position: relative;
  min-width: 47px;
}

.currency_select form {
  display: inline-flex;
  align-items: center;
}

.currency_select .selectize-input {
  border: none;
}

.currency_select form .selectize-control.single,
.currency_select form .selectize-control.single .selectize-input,
.currency_select form .selectize-control.single .selectize-input.input-active {
  /*width: 65px;*/
  width: 47px;
  height: 27px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.currency_select form .selectize-control.single .selectize-input .item:hover {
  -webkit-text-stroke: .7px #000;
}

.currency_select form .selectize-input > input {
  display: none !important;
}

.currency_select form .selectize-input > input,
.currency_select form .selectize-control.single .selectize-input .item {
  padding: 0 !important;
}

.currency_select .selectize-input.dropdown-active::before {
  content: unset;
}

.currency_select  .selectize-control.single .selectize-input::after {
  right: 6px;
}

.currency_select .selectize-dropdown {
  margin: 5px 0 0 0;
}

.currency_select form .selectize-dropdown [data-selectable].option {
  padding: 5px 8px;
}

.enter_registration {
  display: inline-flex;
  align-items: center;
  height: 27px;
}

.enter_registration > div,
.enter_registration a {
  display: flex;
  align-items: center;
  justify-content: center;
 gap: var(--gap-s);
  height: inherit;
}

.enter_registration svg {
  width: 16px;
  height: 16px;
}

.enter {
  position: relative;
  font-size: 12px;
  margin-right: 0;
}

.enter > a {
  color: var(--sm-link-color);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

#kabinet .enter_registration .enter > a {
  font-size: 14px;
  margin-top: 0;
  color: var(--sm-text-color);
}

.enter > a:hover {
  color: var(--sm-link-color);
}

button.enter_link span {
  font-size: 16px;
  font-weight: 700;
}

.reg_solo_health {
  margin-left: 10px;
}

.reg_solo_health i {
  color: #333;
  font-size: 23px;
}

.reg_solo_health:hover {
  border-bottom: none;
}

.social_header_facebook,
.social_header_google {
  display: inline-flex;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 2px;
  font-size: 17px;
  border-radius: 50%;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.social_header_facebook {
  margin: 0 2px 0 5px;
}

#kabinet .social_header_facebook,
#kabinet .social_header_google,
.networks-container .social_header_facebook,
.networks-container .social_header_google {
  width: 100%;
  height: 34px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 34px;
}

#kabinet .social_header_google,
.networks-container .social_header_google {
  background: #eee;
  color: #000;
}

.client-enter_window {
  display: block !important;
}

#kabinet a.social_header_facebook:hover,
#kabinet a.social_header_google:hover,
.client-enter_window .social_header_facebook:hover {
  text-decoration: none;
}

#kabinet .social_header_facebook svg,
#kabinet .social_header_google svg,
.networks-container .social_header_facebook svg,
.networks-container .social_header_google svg,
.client-enter_window .social_header_facebook svg {
  fill: #fff;
  font-size: 17px;
  margin: 0 8px 0 0;
}

#kabinet .social_header_google:hover {
  background: #aaa;
  color: #fff !important;
}

.form_enter {
  margin: 0;
  width: 100%;
}

.form_enter * {
  outline: none !important;
}

.form_enter svg {
  fill: #575955;
  width: 15px;
  height: 15px;
}

.form_enter input {
  margin: 0 0 11px 0;
  padding: 0 10px;
}

form[name="login"] .form-control {
    padding-left: 12px;
}

.form_enter p * {
  display: inline-block;
  vertical-align: middle;
}

.name_enter {
  width: 100%;
}

.password_enter {
  width: 100%;
  margin: 0 0 15px !important;
  border-right: none;
}

.forget_password {
  color: #464646;
  text-decoration: underline;
  text-align: right;
  float: right;
  margin: 0 0 20px;
}

.forget_password:hover {
  color: #464646;
  text-decoration: none;
}

.form_enter ::-moz-placeholder {
  line-height: 31px;
}

/* MAIN NAVIGATION */

.main_nav li.mobile {
  /* additional navigation class on window width <= 768px (see script.js) */
  display: none;
}

.main_nav li:last-of-type {
  margin-right: 0;
  padding-right: 16px;
}

.main_nav li > a:hover {
  text-decoration: underline;
}

.main_nav li.active_page > a {
  color: #248bcb;
}

/* SHOW-HIDE BUTTON WHEN WINDOW WIDTH <= 768 PX */
.toggle_nav {
  border-radius: 4px;
  float: right;
  margin: 0 5px 0 0;
  padding: 9px 10px;
  border: 1px solid #78c6f7;
  background: #fff;
}

.toggle_nav:hover {
  background: #555;
}

.toggle_nav .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #78c6f7;
}

.toggle_nav .icon-bar + .icon-bar {
  margin-top: 4px;
}

.toggle_nav:hover .icon-bar {
  background: #a8dbfa;
}

/*--------------------------- MIDDLE HEADER ------------------------*/
/*** edit test ***/
.middle_header {
  background-color: #fff;
}

.container_middle_header > .row {
  display: flex;
  align-items: center;
}

/*** edit test ***/
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
}

.logo p {
  margin: 20px 0 10px 0;
  font-size: 18px;
}

.logo a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  width: auto !important;
}

.logo a:hover {
  color: #248bcb;
  color: var(--sm-text-color);
}

.logo span {
  font-size: 14px;
  line-height: 30px;
  color: #000;
}

.logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  pointer-events: none;
}

/*** edit test ***/
.callback_round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  line-height: 23px;
  margin: 0 5px 0 0;
  font-size: 14px;
  border-radius: 50%;
  color: #fff;
  background: #c0c0c0;
  text-align: center;
}

.callback_round svg {
  fill: #fafafa;
  font-size: 12px;
  margin-bottom: 1px;
}

/*** edit test ***/
.phones_header,
.top_header .buy_one_click_callback,
.online {
  font-size: 14px;
  margin: 0 15px 0 0;
  float: left;
  height: 27px;
  display: inline-flex;
  align-items: center;
}

.phones_header > p {
  margin: 0;
  display: flex;
  align-items: center;
}

/*** edit test ***/
.search_site {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main_search_form {
  width: 100%;
}

.form_search_site {
  position: relative;
  width: 100%;
  margin: 0;
}

.form_search_site * {
  display: inline-block;
  vertical-align: middle;
}

/*noinspection ALL*/
.search_site_input {
  width: 100%;
  height: 48px;
  padding: 0 12px 0 42px;
  border: 2px solid var(--shade);
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  border-radius: var(--radius-m);
}

.search_site_input:focus {
  outline: 2px solid var(--shade) !important;
}

@media (min-width: 1600px) {
  .search_site_input {
    height: 56px;
  }
}

/*** edit test ***/
.search_site_submit {
  position: absolute;
  top: 0;
  left: 0;
  background: unset;
  width: 16px;
  padding: 0 0 0 16px;
  width: 32px;
  height: 100%;
  border: none !important;
  outline: none !important;
  color: var(--sm-text-color);
  font-size: 18px;
  border-radius: 0 7px 7px 0;
}

.search_site_submit svg {
  fill: #5f5f5f;
  width: 1.1em;
  height: 1.1em;
}

.form_search_site ::-moz-placeholder {
  line-height: 35px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-light-color);
}

.basket_768 {
  display: none;
  min-width: 37px;
  min-height: 31px;
  text-align: right;
}

.basket_768:hover,
.basket_768:focus {
  text-decoration: none;
  color: var(--sm-link-color);
}

.quantity_basket_768 {
  display: inline-block;
  vertical-align: middle;
  margin: -35px 13px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: #ffb300;
  color: var(--sm-link-color);
}

/* ONLINE-CHAT */
/*** edit test ***/
.online {
  cursor: pointer;
  color: var(--sm-link-color);
}

/* SHOPPING CART */
.basket {
  font-weight: 700;
  font-size: 16px;
}

.basket #shopping_cart_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.basket #shopping_cart_box > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

#shopping_cart_box .popup_cart {
  cursor: pointer;
}

.basket .vertical_line {
  position: relative;
}

.basket .vertical_line:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 2px;
  background: var(--sm-btn-color);
}

.backet_checkout {
  display: block;
  white-space: nowrap;
  font-size: 15px !important;
  text-decoration: underline;
}

.empty_backet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.summ_basket {
  font-weight: 700;
}

.moduleRow .form-control:focus,
.moduleRow .form-control {
  border: 0;
  color: #000 !important;
  cursor: pointer;
}

.moduleRow .form-group {
  margin: 5px;
}

.moduleRow .form-control:focus {
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: none;
}

.moduleRow label {
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: flex-end;
}

.moduleRow {
  /*margin:2px 0;*/
  cursor: pointer;
}

.row.shippingModuleHeadingRow > .moduleRow {
  margin: 0 15px;
  margin-right: 0;
}

.row.shippingModuleHeadingRow > .col-sm-12 {
  margin-left: 17px;
}

.moduleRow:hover,
.moduleRowSelected {
  background: var(--sm-grey-color);
  cursor: pointer;
}

#paymentMethods > .row.item {
  margin: 5px -15px;
}

#paymentMethods > .row.item input,
select {
  margin: 5px 0 0;
}

.img_basket {
  display: inline-block;
  padding: 0;
  z-index: 10;
  color: #000;
  height: 17px;
}

.img_basket svg {
  fill: var(--sm-text-color);
  font-size: 16px;
  height: 17px;
}

/*--------------------------- ADDITIONAL NAVIGATION ------------------------*/
.add_nav .navbar-default {
  border: none;
  background: #248bcb;
  background: var(--sm-link-color);
  /* Old browsers */
  background: -moz-linear-gradient(
    top,
    var(--sm-link-color) 0%,
    var(--sm-link-color) 100%
  );
  /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, var(--sm-link-color)),
    color-stop(100%, var(--sm-link-color))
  );
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    var(--sm-link-color) 0%,
    var(--sm-link-color) 100%
  );
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    var(--sm-link-color) 0%,
    var(--sm-link-color) 100%
  );
  /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    var(--sm-link-color) 0%,
    var(--sm-link-color) 100%
  );
  /* IE10+ */
  background: linear-gradient(
    to bottom,
    var(--sm-link-color) 0%,
    var(--sm-link-color) 100%
  );
  /* W3C */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.add_nav .navbar-nav {
  float: none;
  font-size: 16px;
  text-align: center;
}

.add_nav .navbar {
  margin: 0;
  min-height: 51px;
  border-radius: 0;
  border: none;
}

.add_nav .navbar-default .navbar-nav {
  display: table-row;
}

.add_nav .navbar-nav > li {
  float: none;
}

.add_nav .navbar-default .navbar-nav > li {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.add_nav .navbar-default .navbar-nav > li:last-of-type {
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.add_nav .navbar-default .navbar-nav > li > a {
  display: table-cell;
  width: 1170px;
  padding: 0 5%;
  vertical-align: middle;
  height: 51px;
  color: #fff;
  line-height: 1;
  background: transparent;
  position: relative;
  z-index: 25;
}

.c-icon {
  display: inline-block;
  margin-right: 5px;
}

.c-icon img {
  height: auto;
}

.add_nav .navbar-default .navbar-nav > li > a:hover {
  color: var(--sm-btn-text-color);
  text-decoration: none;
  background: #ffb300;
  background: var(--sm-btn-color);
}

/* SHOW-HIDE BUTTON FOR ADDITIONAL NAVIGATION ON WIDTH <= 768 PX */
.add_nav .navbar-default .navbar-toggle {
  border-color: #fff;
  margin-right: 0;
}

.add_nav .navbar-default .navbar-toggle:hover {
  background: #fff;
  border-color: #1473ad;
}

.add_nav .navbar-default .navbar-toggle .icon-bar {
  background: #fff;
}

.add_nav .navbar-default .navbar-toggle:hover .icon-bar {
  background: #1473ad;
}

/*--------------------------------------------------------------------------
                                MAIN PAGE STYLES
--------------------------------------------------------------------------*/
main:after {
  content: "";
  display: block;
  clear: both;
}

/*--------------------------- LEFT COLUMN  ------------------------*/
/* ACCORDION */
.accordion {
  /*padding: 16px 0;*/
  padding: 0;
  margin: 0 0 50px 0;
  /* border: 2px solid #EDEDED;  */
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  line-height: 1.2;
  background: var(--sm-grey-color);
}

aside .ui-corner-all {
  border-radius: 0;
}

/* tabs headers */
aside .accordion h3,
aside .accordion h4 {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-size: 14px;
  padding: 0 6%;
  min-height: 0;
  font-weight: 400;
}

aside .accordion h3:hover,
aside .accordion h4:hover {
  background: #ffb300;
  background: var(--sm-link-color);
  color: #fff;
}

aside .accordion h3:last-of-type,
aside .accordion h4:last-of-type {
  border-bottom: none;
}

aside .accordion h3:last-of-type a {
  border-bottom: 0 !important;
}

aside .accordion h3 > a,
aside .accordion h4 > a {
  display: block;
  font-size: 14px;
  color: #737373;
  padding: 10px 0;
  border-bottom: 1px dotted #e0e0e0;
}

aside .accordion h3 > a.current,
aside .accordion h4 > a.current {
  color: #248bcb;
  color: var(--sm-text-color);
}

aside .accordion h3:hover > a,
aside .accordion h4:hover > a {
  text-decoration: none;
  color: #fff;
}

aside .accordion h3:last-of-type a,
aside .accordion h4:last-of-type a {
  border-bottom: 1px dotted #e0e0e0;
  color: #737373;
  font-size: 14px;
  padding: 10px 0;
}

aside .ui-corner-all,
aside .ui-corner-top,
aside .ui-corner-left,
aside .ui-corner-tl {
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
}

aside .ui-corner-all,
aside .ui-corner-top,
aside .ui-corner-right,
aside .ui-corner-tr {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

aside .ui-state-active,
aside .ui-widget-content .ui-state-active,
aside .ui-widget-header .ui-state-active {
  border: none;
  background: none;
  font-weight: normal;
  color: #399fdf;
}

/* links headers */
aside .ui-state-hover a,
aside .ui-state-hover a:link,
aside .ui-state-hover a:visited {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #737373;
  text-decoration: none;
  outline: none !important;
}

aside .ui-state-hover a:hover,
aside .ui-state-focus a:hover {
  /*color:#399FDF;  */
}

aside .ui-state-active a,
aside .ui-state-active a:link,
aside .ui-state-active a:visited {
  color: #399fdf;
  text-decoration: none;
}

/* content */
aside .ui-accordion .ui-accordion-content {
  display: none;
  padding: 10px 6%;
  overflow: auto;
  font-size: 12px;
}

aside .ui-widget-content {
  background: none;
  color: #878787;
  font-size: 12px;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

aside .ui-state-default,
aside .ui-widget-content .ui-state-default,
aside .ui-widget-header .ui-state-default {
  background: none;
  font-weight: normal;
  color: #fff;
  border: none;
}

aside .ui-helper-reset {
  outline: 0;
}

.left_content .articles>nav {
  background: var(--sm-grey-color);
  border-radius: 7px;
}

.left_content form[name="manufacturers"] {
  max-height: 500px;
  overflow-y: auto;
}

.articles {
  margin-bottom: 50px;
}

.articles h2 {
  margin: 0 0 14px 0;
}

.articles nav {
  border-top: 2px solid var(--sm-grey-color);
}

.articles nav > ul {
  padding: 0;
}

.articles nav > ul > li {
  display: inline-block;
  padding: 16px 4%;
  width: 100%;
  border-bottom: 2px solid var(--sm-grey-color);
}

.articles nav > ul > li > img {
  display: block;
  float: left;
  height: auto;
}

.articles nav > ul > li > a {
  display: block;
  float: left;
  margin-left: -50px;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.articles nav > ul > li > a.no_mg {
  margin-left: 0;
}

.articles nav > ul > li > a > span {
  display: block;
  width: 100%;
  padding: 0 70px 0 0;
  margin-left: 70px;
  color: var(--sm-text-color);
  opacity: 0.8;
  background: none;
  line-height: 1.2;
  font-size: 14px;
}

.articles nav > ul > li > a.no_mg > span {
  margin-left: 57px;
}

.articles nav > ul > li > a:hover {
  padding-left: 5px;
  color: var(--sm-link-color);
  background: none;
  text-decoration: none;
}

/* BANNER IN SIDEBAR */

.bn_sidebar {
  text-align: center;
  padding: 0 0 50px 0;
}

.bn_sidebar img {
  max-width: 100%;
  border-radius: 7px;
  width: 100%;
  height: auto;
}

/* HOW TO KNOW BLOCK */
.how_know_for_us {
  margin: 0 0 50px 0;
}

.how_know_for_us .like_h3 {
  position: relative;
  padding: 22px 8%;
  margin: 0 0 26px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: #ffb300;
  background: var(--sm-link-color);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.how_know_for_us .like_h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 17px;
  bottom: -10px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ffb300 transparent transparent transparent;
  border-color: var(--sm-link-color) transparent transparent transparent;
}

.our_variants {
  padding: 0 7%;
}

.how_know_for_us label {
  font-size: 14px;
  font-weight: 400;
  color: var(--sm-text-color);
  opacity: 0.8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.how_know_for_us label:hover {
  opacity: 0.6;
}

/* checkbox styles */

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

form[name="addressbook"] input[type="checkbox"],
form[name="addressbook"] input[type="radio"] {
  display: inline;
}

form[name="manufacturers"] {
  padding: 16px 0;
  margin: 0 0 50px 0;
  border: 4px solid #ededed;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 1.2;
  background: var(--sm-grey-color);
}

/*** edit test ***/
.filter_box_in input[type="checkbox"] + span,
.filter_box_in input[type="checkbox"] + label:before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23eee' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z'%3E%3C/path%3E%3C/svg%3E");
  border-radius: 3px;
}

input[type="radio"] + label:before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23eee' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z'%3E%3C/path%3E%3C/svg%3E");
}

input[type="checkbox"]:checked + label,
input[type="radio"]:checked + label {
  color: #248bcb;
  color: var(--sm-link-color);
}

/*** edit test ***/
input[type="radio"]:checked + label:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='var(--sm-btn-text-color)' d='M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z'%3E%3C/path%3E%3C/svg%3E");
}

input[type="radio"]:checked + label:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='var(--sm-btn-text-color)' d='M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z'%3E%3C/path%3E%3C/svg%3E");
}

.how_know_for_us input[type="checkbox"] + label:before,
.how_know_for_us input[type="radio"] + label:before {
  /*margin-bottom: 5px;*/
}

.how_know_for_us label:last-of-type {
  margin-bottom: 15px;
}

.wishlisht_button label,
.compare_button label {
  cursor: pointer;
}

.wishlisht_button label:hover,
.compare_button label:hover {
  text-decoration: underline;
  color: var(--sm-text-color);
}

.pointer_events_none {
  pointer-events: none;
  opacity: 0.3;
}

.manuf_bg > a,
.manuf_bg_current > a {
  display: block;
  font-size: 14px;
  color: #737373;
  padding: 10px 15px;
  border-bottom: 1px dotted #e0e0e0;
}

.manuf_bg:last-child > a {
  border-bottom: none;
}

.manuf_bg > a:hover,
.manuf_bg_current > a:hover {
  background: var(--sm-link-color);
  color: #fff;
  text-decoration: none;
}

/*--------------------------- CENTER CONTENT  ------------------------*/
.sidebar-toggle-up {
  background: #57b32c;
  color: #fff;
  padding: 7px 15px;
  border-bottom: 2px solid #40861f;
}

.one-sidebar div.right_content {
  line-height: 1.4;
  font-size: 13px;
  padding-left: 30px;
}

/* SLIDER */
.product_slider {
  overflow: hidden; /* prevent show all products before slider init */
  /* overflow:visible; */
}

.product_slider:hover {
  z-index: 3;
}

.product_slider.owl-carousel:hover {
  overflow: visible;
}

.product_slider .product {
  height: auto;
  /*margin-bottom:132px;*/
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.product_slider .product:hover .wrapper_product_hover {
  position: unset;
}

.product_slider .product_list {
  margin-bottom: 132px;
}

.row_slider_banner img {
  border-radius: 4px;
}

.product_slider.slider-with-labels {
  overflow: hidden !important;
  height: calc(var(--product-slider-height) + 28px);
}

.product_slider.slider-with-labels .owl-stage-outer {
  padding-top: 28px;
}

/* BANNER */
.banner {
  float: right;
}

.banner img {
  max-width: 100%;
  border-radius: 4px;
}

/* NEWS AND REVIEWS */
.news,
.customer_reviews {
  margin: 15px -1px 0 0;
}

.last-reviews_main {
  display: flex;
  border-bottom: 1px solid #d9d9d9;
}
.last-reviews_main:last-of-type {
  border-bottom: none;
}
.last-reviews_main > div {
  width: 100%;
  margin-bottom: 10px;
}
.last-reviews_main > div:first-of-type {
  width: 100px;
  margin-right: 20px;
}
.last-reviews_main .p-img {
  width: 100px;
  height: 100px;
  border-radius: 7px;
  background: #fff;
  margin-bottom: 10px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}
.last-reviews_main .p-img a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
}
.last-reviews_main .p-img img {
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.last-reviews_main .user_info_container,
.last-reviews_main .p-name {
  max-width: none;
  width: 100%;
}
.last-reviews_main .p-name a {
  text-align: center;
  width: 100%;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.last-reviews_main .text_review {
  padding: 0;
  border-bottom: none;
}

.news .like_h2 > a,
.customer_reviews .like_h2 > a {
  display: inline-block;
  margin: 0 0 0 10px;
  color: var(--sm-link-color);
  font-size: 13px;
  font-weight: 400;
}

.news .like_h2 > a:hover,
.customer_reviews .like_h2 > a:hover {
  text-decoration: underline;
}

.news .like_h2 > a > span:hover,
.customer_reviews .like_h2 > a > span:hover {
  text-decoration: underline;
}

.like_h2 a {
  font-size: 13px;
  font-weight: 400;
  position: absolute;
  right: 15px;
  margin: 3px 0 0 0;
  color: var(--sm-link-color);
  text-decoration: none;
}

.like_h2 a:hover {
  text-decoration: underline;
}

.news h3,
.customer_reviews h3,
.news article > p,
.customer_reviews article > p {
  line-height: 1.2;
}

.customer_reviews article > p.clearfix {
  line-height: 1;
}

.news article h5 > a {
  display: block;
  margin: 14px 0 0 0;
  color: #248bcb;
  color: var(--sm-link-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.news article h5 > a:hover {
  text-decoration: underline;
}

.news article h5 > a:after,
.customer_reviews article > a:after {
  content: "";
  display: table;
  clear: both;
}

.news article > p,
.customer_reviews article > p {
  margin: 0;
  font-size: 12px;
  color: var(--sm-text-color);
  line-height: 1.5;
}

/* NEWS */

.news article img {
  float: left;
  margin: 0 5% 0 0;
  object-fit: contain;
  object-position: top;
}

.news article {
  padding: 20px 0 25px 0;
  border-top: 1px solid #e5e5e5;
}

.news article:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}

.news article time * {
  display: inline-block;
  vertical-align: middle;
}

.news article time {
  min-height: 23px;
  padding: 5px 0;
  vertical-align: middle;
}

.row_news_customer_reviews {
  margin-bottom: 50px;
}

.row_news_customer_reviews .news article time,
.row_news_customer_reviews time {
  color: #6e6e6e;
}

.news article time i {
  fill: var(--sm-text-color);
  opacity: 0.7;
  font-size: 28px;
  margin-right: 7px;
}

.news article time svg {
  fill: var(--sm-text-color);
  margin: 0 2px 2px 0;
  font-size: 18px;
}

/* REVIEWS */
.container_customer_reviews,
.container_customer_reviews-wrap {
  padding: 12px 20px;
  background: var(--sm-grey-color);
}

.customer_reviews .article {
  padding: 12px 0 0 0;
  background: var(--sm-grey-color);
}

.user_info_container {
  margin: 0 0 4px 0;
  text-align: justify;
  text-align-last: justify;
}

.user_info_container * {
  display: inline-block;
  vertical-align: middle;
}

.user_info i {
  padding-right: 10px;
  font-size: 16px;
}

.user_info svg {
  margin-right: 10px;
  font-size: 16px;
  margin-bottom: 2px;
}

.quantity_like {
  margin: 0;
  padding: 0;
}

.quantity_like > span {
  color: var(--sm-text-color);
  display: block;
  line-height: 23px;
  font-weight: 700;
  text-align: center;
  text-align-last: center;
}

.nik_user {
  margin: 0;
  color: #248bcb;
  color: var(--sm-link-color);
  font-size: 14px;
  font-weight: 700;
}
.nik_user.nik_user_h5 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.nik_user a:hover {
  text-decoration: underline;
}

.user_info_container time {
  min-height: 23px;
  padding: 6px 0;
  font-size: 11px;
}

.user_info_container time i {
  font-size: 28px;
  color: #ccc;
  margin-right: 7px;
}

.container_customer_reviews time svg {
  fill: #6e6e6e;
  margin: 0 2px 2px 0;
  width: 14px;
}

.text_review {
  margin: 0;
  padding: 0 0 22px 0;
  border-bottom: 1px solid #d9d9d9;
}

.text_review a {
  color: var(--sm-text-color);
  font-size: 13px;
  line-height: 1;
}

.container_customer_reviews .article:last-of-type .text_review {
  border-bottom: none;
}

select.required,
input.required {
  border-color: red;
}

.container-fluid .row_big_banner .col-xs-12 {
  padding: 0;
}

.short-description {
  margin-bottom: 20px;
}

.short-description p {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
}

/*--------------------------------------------------------------------------
                                END MAIN PAGE STYLES
--------------------------------------------------------------------------*/

.page-wrap:after {
  content: "";
  display: block;
}

.page-wrap {
  min-height: calc(100dvh - 370px);
}

footer {
  min-height: 350px;
}

.top_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top_footer ul * {
  display: block;
}

.top_footer ul > li a {
  position: relative;
  padding: 0;
}

.section_top_footer .show_all {
  cursor: pointer;
  color: #000;
  color: var(--sm-text-color);
  text-decoration: underline;
}

/* FOOTER CONTACTS */
.contacts_info_footer p,
.contacts_info_footer a {
  font-size: 14px;
}

.contacts_info_footer p {
  margin: 15px 0 0 0;
}

.contacts_info_footer p svg {
  font-size: 14px;
  margin-right: 5px;
}

.contacts_info_footer p:last-of-type svg {
  font-size: 16px;
}

p.phones {
  font-size: 16px;
  font-weight: 700;
}

.contacts_info_footer p > span,
.contacts_info_footer a {
  color: #248bcb;
  color: var(--sm-link-color);
}

.contacts_info_footer a {
  text-decoration: none;
  color: #000;
  color: var(--sm-text-color);
}

.contacts_info_footer a:hover {
  text-decoration: underline;
  color: #248bcb;
  color: var(--sm-link-color);
}

.money_systems {
  text-align: center;
}

.money_systems ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.money_systems li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 4%;
}

.money_systems img {
  width: inherit;
  height: auto;
}

.link_webstudio {
  font-size: 13px;
  text-align: left;
  line-height: 1.2;
}

.link_webstudio * {
  display: inline-block;
}

.link_webstudio p {
  color: var(--sm-text-color);
}

.link_webstudio a {
  display: block;
  color: #248bcb;
  color: var(--sm-link-color);
}

.dd_select {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dd_select .selectize-control.single .selectize-input {
  /* width: 75px;*/
  width: auto;
  height: 27px;
  border: 0;
  background: transparent;
}

.dd_select .selectize-control.single .selectize-input:hover {
  background: #fff;
}

.dd_select.pl_sort .selectize-control.single .selectize-input,
.dd_select.pl_sort .selectize-control.single {
  /*width: 150px;*/
  width: auto;
  min-width: 150px;
}

.category_heading {
  color: var(--sm-text-color);
  margin: 15px 0;
}

.dd_select.product_quantity_per_page {
  display: none;
}

/*--------------------------------------------------------------------------
                                CATALOG (PRODUCT LISTING) STYLES
--------------------------------------------------------------------------*/

/*--------------------------- CENTER CONTENT  ------------------------*/
.one-sidebar div.left_content {
  padding-right: 0;
}

.yellow {
  color: #fff;
}

/* CATALOG */

.row_catalog_products {
  margin: 0 0 45px 0;
  position: relative;
}

.row_catalog_products .col_product {
  padding-left: 0px;
  padding-right: 0px;
}

.row_catalog_products .col_product:hover .product {
  box-shadow: none;
}

.row_catalog_products h2 {
  margin: 17px 0 16px 5px;
}

.product,
.wrapper_product_hover {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
}

.product_list .wrapper_product_hover_list {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: left;
  border: 1px solid transparent;
  padding: 9px 9px;
}

.product_list .wrapper_product_hover_list:hover {
  border: 2px solid var(--sm-grey-color);
  padding: 8px 8px;
}

.product {
  position: relative;
  margin: 0;
}

.product_slider .product:hover {
  height: auto !important;
}
.custom_block_b_container .owl-item{
  padding-top: 30px;
}

.product_list {
  position: relative;
  padding: 4px 0;
  margin: 0 0 10px 0;
  min-height: 200px;
}

.product img,
.product_list img,
.product_hover img,
.product_hover_list img {
  /*margin: 6px 0 0 0;*/
  width: 100%;
}

.price_table td {
  padding: 4px;
}

.color_attributes-item {
  cursor: pointer;
  margin-right: 3px;
}

.color_attributes-item img {
  border: 1px solid #ddd;
}

.color_attributes-item.active img {
  border: 1px solid #000;
}

.color_attributes-item input[type="radio"] {
  display: none;
}

.p_description {
  display: inline-block;
  padding: 0;
  width: 100%;
}

.product-desc {
  padding: 24px 0;
}

.p_description_list {
  display: inline-block;
  padding: 8px;
  width: 100%;
}

.product_hover .p_description {
  display: inline-block;
  /* margin: 0 6px;*/
}

.product_list .p_description_list .div_list:first-child ,
.product-img {
  position: relative;
}


.product-img a {
  border-radius: var(--radius-l);
  background-color: #e0e0e0;
  overflow: hidden;
}

.div_list {
  vertical-align: top;
  display: inline-block;
  text-align: center;
}

.div_list .model_product {
  text-align: left;
}

.div_list .product_code .label {
  padding-left: 0;
}

.art_list {
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #7f7f7f;
  text-align: left;
}

.art_list .left {
  color: #7f7f7f;
}

.l_list {
  clear: left;
}

.art_list .label {
  color: #777;
  display: inline-block;
  line-height: 20px;
}

.art .left {
  color: #7f7f7f;
}

.p_img_href {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.p_img_href img {
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.p_img_href svg {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  font-size: 28px;
  transition: 0.1s ease-in;
}

.p_img_href svg:hover {
  transform: scale(1.1);
}

.p_img_href img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p_img_href.object_fit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p_img_href_list {
  display: inline-block;
}

.p_img_href_list img {
  vertical-align: middle;
  float: left;
}

.object_fit .p_img_href,
.object_fit .p_img_href_list {
  width: 100%;
}

.object_fit .p_img_href > img,
.object_fit .p_img_href_list > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.model_product {
  display: -webkit-box;
  min-height: 70px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--sm-link-color);
  line-height: 23px;
  text-align: left;
  width: 100%;
  padding: 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
          line-clamp: 3; 
  -webkit-box-orient: vertical;
}

.col_product .model_product {
  text-align: left;
}

.price,
.product button,
.price_recommended_price,
.product_hover button {
  display: inline-block;
  vertical-align: top;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  margin: 0;
  font-size: 18px;
}

.price:has(.old_price) .new_price {
  padding: 1px 3px;
  color: var(--sm-btn-color);
  background-color: var(--orange);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow)
}


.price_recommended_price {
  text-align: left;
  margin: 0;
  line-height: 1.4;
}
.recommended_price_container {
  margin-top: 5px;
}
.recommended_price {
  font-size: 14px;
  font-weight: 600;
  opacity: .6;
  /*color: #39ab39;*/
}
.price > span {
  display: block;
}


.new_old_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 24px;
}

.new_old_price > span {
  display: flex;
  gap: 5px;
  margin-left: 5px;
  align-self: start;
}

.new_price {
  margin: 0;
  font-weight: 700;
}

.old_price {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light-color);
  text-decoration: line-through;
}

.currency {
  font-size: 14px;
}

/* PRODUCT BLOCK ON HOVER */
.wrapper_product_hover {
  width: 100%;
  padding: 4px;
  background: #fff;
  border: 1px solid #e9e9e9;
}

.listing_attrs {
  display: none;
}

.product:hover .product-attr {
  padding: 0 20px;
}

.listing_attrs_list {
  display: block;
}

.product:hover .listing_attrs {
  display: table;
  line-height: 1.2;
  font-size: 13px;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
  table-layout: fixed;
}

.product:hover .wrapper_product_hover {
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 11;
}

.product .p_description table.listing_attrs td {
  padding-bottom: 10px;
}

.product_hover .compare_button {
  display: none;
}

.product_hover .compare_list {
  display: inline-block;
}

.product:hover .product_hover .compare_button {
  display: block;
}

.product_hover {
  background: #fff;
  padding: 0;
  border-radius: 2px;
}

.product_hover_list {
  background: #fff;
  padding: 0;
  border-radius: 2px;
}

.product_hover_list .price {
  float: none;
  padding-top: 10px;
  text-align: left;
  width: 100%;
}

.product_hover_list .product_stock > span {
  float: none !important;
  padding-left: 0;
}

.product_hover_list .new_old_price > span {
  float: none;
}

.product_hover_list .compare_list {
  margin-top: 20px;
}

.product_hover_list .p_description_list .col-sm-3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product_hover_list .p_description_list .wishlisht_button {
  padding-left: 0 !important;
}

.p_description_list .div_list {
    display: flex;
    justify-content: center;
}

.product_hover table,
.compare_button,
.likes {
  text-align: left;
}

.product_hover table {
  margin: 5px 0 10px 0;
}

.product_hover table td:first-of-type {
  color: #4c4c4c;
}

.product_hover table td:last-of-type {
  color: var(--sm-text-color);
}

.product_hover table td {
  padding: 0 0 5px 0;
}

.product_hover table td:last-of-type {
  padding: 0 0 5px 5px;
}

/* COMPARE */
.compare {
  margin: 0 0 12px 0;
}

.compare_button a,
.compare_button a:hover {
  text-decoration: none;
}

.compare_button a + a:hover {
  text-decoration: underline;
}

.compare_button label {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.compare_button label > a {
  display: inline-block;
  vertical-align: middle;
  padding-top: 2px;
  color: #248bcb;
  color: var(--sm-text-color);
  border-bottom: 1px dashed transparent;
}

.compare_button label > a:hover {
  text-decoration: none;
  border-bottom: 1px dashed #248bcb;
  border-bottom: 1px dashed var(--sm-text-color);
}

.ul_list {
  white-space: nowrap;
  list-style-type: square;
}

.li_list {
  float: left;
}

.categories_menu {
  position: relative;
}

.block_categories .no-categories {
  display: block;
  padding: 17px 0px;
  color: #fff;
}

.mobile_menu .no-categories {
  color: #000;
  padding: 15px;
}

.sub_ul {
  left: 16px;
  right: 16px;
  top: 51px;
  position: absolute;
  z-index: 105;
  display: none;
  padding: 0 5px 5px 5px;
  border-radius: 0 0 7px 7px;
  background: var(--sm-background);
  box-shadow: 0px 0px 0px 2px var(--sm-link-color);
  /*

  outline:4px solid rgba(7,134,235,0.5);
  background: rgba(7,134,235,0.5);
  */
}

.sub_ul:after {
  content: "";
  display: block;
  background: var(--sm-background);
  border-radius: 0 0 5px 5px;
  min-height: 50px;
}

.sub_ul > li {
  padding: 0 15px;
}

.sub_ul > li.wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.categories_menu div.sub,
.parent_category_image {
  float: left;
}

.parent_category_image > img {
  margin-top: 20px;
}

.categories_menu .sub {
  padding: 25px 10px 0 10px;
  width: 120px;
  margin-top: 25px;
  text-align: left;
  position: relative;
}

.categories_menu .sub svg {
  fill: var(--sm-btn-color);
  line-height: 16px;
  font-size: 16px;
}

.categories_menu .sub > a {
  color: #000;
  font-size: 14px;
  padding-left: 0;
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
}

.categories_menu .sub_sub {
  text-align: center;
}

.categories_menu .sub_sub a {
  display: block;
  color: var(--sm-text-color);
  font-size: 12px;
  line-height: 19px;
}

.categories_menu .sub_sub a:hover {
  color: #248bcb;
  color: var(--sm-link-color);
  text-decoration: none;
}

.categories_menu .sub > a img {
  margin-bottom: 10px;
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
}

.categories_menu .sub .sub_sub_list {
  position: absolute;
  z-index: 1;
  background: #fff;
  padding: 10px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  width: 100%;
}

.categories_menu .sub:hover .sub_sub_list {
  opacity: 1;
  visibility: visible;
}

/* small_slider */
.small_slider {
  border-bottom: 2px solid var(--sm-grey-color);
  border-top: 2px solid var(--sm-grey-color);
  padding: 0 30px;
  overflow: hidden;
  max-height: 150px;
}

.small_slider a {
  display: block;
  vertical-align: middle;
  height: 100%;
  text-align: center;
  line-height: 150px;
}

.small_slider a img {
  padding: 0 10px;
  max-width: 100%;
  width: 100px;
  height: auto;
}

.small_slider .owl-carousel .owl-stage {
  height: 150px;
  overflow: hidden;
}

.section_top_footer .h3,
.contacts_info_footer .h3 {
  color: var(--sm-text-color);
}

/* COMMENTS */
.container_customer_reviews.allcomments::-webkit-scrollbar { width: 6px; height: 6px; }
.container_customer_reviews.allcomments::-webkit-scrollbar-button {  height: 0; }
.container_customer_reviews.allcomments::-webkit-scrollbar-track {  background-color: transparent; opacity: 0; margin: 7px 7px 7px; }
.container_customer_reviews.allcomments::-webkit-scrollbar-track-piece { background-color: transparent; opacity: 0; margin: 7px 7px 7px; }
.container_customer_reviews.allcomments::-webkit-scrollbar-thumb { height: 50px; background-color: #858585; border-radius: 3px; margin: 7px 7px 7px; }
.container_customer_reviews.allcomments::-webkit-scrollbar-corner {  background-color: transparent; opacity: 0; margin: 7px 7px 7px; }
.container_customer_reviews.allcomments::-webkit-resizer {  background-color: transparent; opacity: 0; margin: 7px 7px 7px; }

.allcomments .last-reviews_main {
  margin-top: 10px;
}

.allcomments .user_info_container::after {
  display: none;
}

.allcomments time {
  display: block;
  float: right;
  margin-top: 5px;
}

.allcomments .text_review {
  padding-bottom: 5px;
}

.captcha_img {
  margin-right: 10px;
}

.paginator .btn {
  cursor: pointer;
}

.paginator {
  text-align: center;
}

/* RATING */

.rating_wrapper * {
  margin: 0;
  padding: 0;
  color: white;
  width: 85px;
}


.sp_rating {
  font-size: 11px;
  line-height: 1.7em;
  color: #5f5f5f;
  display: block;
  width: 85px;
}

.sp_rating .score {
  display: block;
  content: "";
  color: #aaa;
}

.rating {
  float: left;
  padding-right: 4px;
}

.base {
  content: "";
  width: 90px;
  float: left;
  /*padding-right: 4px;*/
  overflow: hidden;
  color: #aaa;
  position: relative;
  display: block;
}

.average {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.base:before,
.add_comment_box .sp_rating:hover .score:before,
.comment-reply-block .sp_rating:hover .score:before {
  content: "";
  font-size: 15px;
  letter-spacing: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 16' fill='none'%3E%3Cpath d='M6.52514 0.440459C6.6761 -0.0174828 7.3239 -0.017484 7.47486 0.440458L8.77549 4.38582C8.84306 4.59079 9.03452 4.72927 9.25034 4.72928L13.4433 4.72943C13.9294 4.72945 14.1296 5.35288 13.7345 5.63592L10.3548 8.05662C10.177 8.18393 10.1026 8.41196 10.171 8.61961L11.4648 12.545C11.6162 13.0044 11.092 13.3897 10.6988 13.1081L7.29111 10.6677C7.11705 10.5431 6.88295 10.5431 6.70888 10.6677L3.30124 13.1081C2.90799 13.3897 2.38385 13.0044 2.53525 12.545L3.82897 8.61961C3.89741 8.41196 3.82299 8.18393 3.64524 8.05662L0.265536 5.63592C-0.129637 5.35288 0.0705841 4.72945 0.556663 4.72943L4.74966 4.72928C4.96548 4.72927 5.15694 4.59079 5.22451 4.38582L6.52514 0.440459Z' fill='%23a3a3a3'/%3E%3C/svg%3E");
  height: 14px;
  display: block;
}

.average:before,
.add_comment_box .score a:hover,
.add_comment_box .score span:hover,
.add_comment_box .score a:hover::before,
.add_comment_box .score span:hover::before,
.rating_product .score span:hover,
.rating_product .score span:hover::before,
.comment-reply-block .score a:hover,
.comment-reply-block .score span:hover,
.comment-reply-block .score a:hover::before,
.comment-reply-block .score span:hover::before {
  overflow: hidden;
  content: "";
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 16' fill='none'%3E%3Cpath d='M6.52514 0.440459C6.6761 -0.0174828 7.3239 -0.017484 7.47486 0.440458L8.77549 4.38582C8.84306 4.59079 9.03452 4.72927 9.25034 4.72928L13.4433 4.72943C13.9294 4.72945 14.1296 5.35288 13.7345 5.63592L10.3548 8.05662C10.177 8.18393 10.1026 8.41196 10.171 8.61961L11.4648 12.545C11.6162 13.0044 11.092 13.3897 10.6988 13.1081L7.29111 10.6677C7.11705 10.5431 6.88295 10.5431 6.70888 10.6677L3.30124 13.1081C2.90799 13.3897 2.38385 13.0044 2.53525 12.545L3.82897 8.61961C3.89741 8.41196 3.82299 8.18393 3.64524 8.05662L0.265536 5.63592C-0.129637 5.35288 0.0705841 4.72945 0.556663 4.72943L4.74966 4.72928C4.96548 4.72927 5.15694 4.59079 5.22451 4.38582L6.52514 0.440459Z' fill='%23FFD05A'/%3E%3C/svg%3E");
  height: 14px;
  display: block;
  transition: 0s;
  color: transparent;
}

.review-children {
  margin-left: 25px;
  margin-top: 20px;
}

.votes {
  float: left;
  padding-right: 4px;
}

.score {
  width: 90px;
  height: 18px;
  float: left;
  position: relative;
  margin-top: -20px;
  display: none;
}

.score a,
.score span {
  content: "";
  color: transparent;
  display: block;
  height: 15px;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  cursor: pointer;
}

.score1 {
  width: 20%;
  z-index: 55;
}

.score2 {
  width: 40%;
  z-index: 54;
}

.score3 {
  width: 60%;
  z-index: 53;
}

.score4 {
  width: 80%;
  z-index: 52;
}

.score5 {
  width: 100%;
  z-index: 51;
}

.status {
  height: 15px;
  width: 85px;
  position: relative;
}

.score_this {
  height: 16px;
  overflow: hidden;
}

.score_this a {
  color: #f37800;
}

.add_comment_box .base:before,
.add_comment_box .score a:hover::before,
.add_comment_box .score span:hover::before,
.add_comment_box .sp_rating:hover .score:before {
  font-size: 18px;
}

.score a,
.score span {
  height: 18px;
}

.sp_rating .score {
  color: transparent;
  margin-top: -18px;
}

.average:before {
  font-size: 18px;
}

.sp_rating,
.base,
.status,
.score {
  width: 85px;
  height: 18px;
}

.quantity_rating {
  line-height: 20px;
}

/*END RATING */

/* USER PANEL */
#account a {
  font-size: 13px;
}

#account li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  list-style-type: disc;
  list-style-position: inside;
  color: #c96000;
  border-bottom: 1px solid #e0e0e0;
}

#account_history_table tr:nth-child(even) td {
  background: #f7f7f7;
}

#account_order_info .attributes {
  padding-left: 20px;
  font-size: 12px;
  margin: 5px 0;
  font-style: italic;
}

#address_book .firstname_lastname {
  font-size: 18px;
}

.address_entry {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 10px 0;
}

.typical_table h2 {
  font-size: 15px;
  margin: 8px 0;
}

.typical_table td {
  padding: 5px 5px;
}

.typical_table td:nth-child(4),
.typical_table td:nth-child(5) {
  display: inline-block;
}

.typical_table td:nth-child(5) button {
  font-weight: 800;
  width: 83px;
}

.typical_table td:nth-child(5) .popup_cart {
  background: #6ec642;
}

/* END USER PANEL */

/* better_togeather */
.bt_top_shadow {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
  height: 41px;
  position: relative;
  top: 60px;
}

.bt_bot_shadow {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
  height: 41px;
  position: relative;
  bottom: 60px;
}

/*#better_togeather {
     z-index: 1;
     position: relative;
     background: #fff;
     margin: 20px 0;
     padding: 10px 20px;
     -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
     -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
     box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
 }

#better_togeather .discount {
    margin-top: 10px;
    margin-left: 30px;
    color: #fff;
    font-size: 23px;
    background: transparent url(../images/blue_label.png) 0 0 no-repeat;
    width: 130px;
    height: 132px;
    text-align: center;
    line-height: 129px;
    font-weight: bold;
}

#better_togeather .item {
    text-align: center;
    width: 120px;
    box-shadow: 0 0 6px #ccc inset;
    padding: 10px;
}*/

#better_together {
  display: flex;
  flex-direction: column;
}

.better_together_box {
  display: flex;
  align-items: center;
}

.better_together_box .bt_middle_section {
  width: 150px;
}

.better_together_box .bt_middle_section .discount,
.better_together_box .bt_middle_section .new_price {
  margin: 0 0 5px;
}

.better_together_box .bt_middle_section .old_price {
  margin: 0;
}

.better_together_box .item {
  text-align: center;
}

.better_together_box .bt_product {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  border: 2px solid transparent;
  border-radius: 7px;
}

.better_together_box .bt_product:hover {
  border-color: var(--sm-grey-color);
}

.bt_product {
  text-align: center;
}

.bt_product .image div {
  display: flex;
  justify-content: center;
}

.btogether-plus {
  text-align: center;
  font-size: 50px;
}

/*--------------------------------------------------------------------------
                                PRODUCT INFO STYLES
--------------------------------------------------------------------------*/
/* PRODUCT INFO */
/* PRODUCT INFO SLIDER */
.slider_product_card {
  padding: 0;
  margin-bottom: 20px;
  position: relative;
}

#slider {
  position: relative;
}

#slider .slides li a {
  display: block;
  height: 320px;
  line-height: 320px;
  text-align: center;
}

#slider .slides li a img {
  vertical-align: middle;
  max-height: 100%;
  margin: 0 auto;
}

.single_slide {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 7px;
}

#owl-frontslider .item > *,
.single_slide .item > *,
#owl-frontslider .item-video > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.padd-0 #owl-frontslider,
.padd-0 .single_slide {
  border-radius: 0 !important;
}

#owl-frontslider.owl-loaded {
  opacity: 1;
  border-radius: 7px;
}

#owl-frontslider img,
.single_slide img {
  object-fit: cover;
  width: 100%;
}

#owl-frontslider .owl-lazy,
.single_slide .item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.single_slide .item {
  opacity: 1;
}

#owl-frontslider .owl-lazy a,
.single_slide .item a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

#owl-frontslider .owl-nav {
  pointer-events: auto;
}

#owl-frontslider .owl-dots {
  position: absolute;
  pointer-events: auto;
  bottom: 20px;
  width: 100%;
}

#carousel-custom-dots {
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.5px;
}

#carousel-custom-dots.owl-dots li svg.fa-circle,
#carousel-custom-dots.owl-dots li svg.fa-circle-o {
  display: none;
}

#carousel-custom-dots li.owl-dot {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #000;
}

#carousel-custom-dots li.owl-dot.active {
  background-color: #000;
}


#owl-frontslider .owl-prev,
#owl-frontslider .owl-next {
  color: #fff;
}

#owl-frontslider .owl-prev svg,
#owl-frontslider .owl-next svg {
  fill: var(--sm-btn-color);
  font-size: 30px;
}

.position-relative {
  position: relative;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  cursor: pointer;
  top: 50%;
}

.owl-nav .owl-prev {
  left: 0;
}

.owl-nav .owl-next {
  right: 0;
}

.owl-theme .owl-controls .owl-nav .owl-prev {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #248bcb;
  color: var(--sm-text-color);
}

.owl-theme .owl-controls .owl-dot {
  display: inline-block;
}

.owl-theme .owl-controls .owl-dot span {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  border: 0;
  margin: 0 3px;
}

.owl-theme .owl-controls .owl-nav .owl-next {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #248bcb;
  color: var(--sm-link-color);
}

.owl-theme .owl-controls .owl-nav .owl-prev svg,
.owl-theme .owl-controls .owl-nav .owl-next svg {
  fill: #fff;
  font-size: 16px;
}

.owl-theme .owl-controls .owl-dot.active span,
.owl-theme .owl-controls.clickable .owl-dot:hover span {
  background-position: 0 -31px;
}

.additional_images2 .owl-prev {
  position: absolute;
  left: 0;
  top: 45%;
}

.additional_images2 .owl-next {
  position: absolute;
  right: 0;
  top: 45%;
}

.carousel-pager .item {
  height: 75px;
  line-height: 75px;
  text-align: center;
  opacity: 0.5;
  cursor: pointer;
}

.carousel-pager .owl-item {
  border-right: 1px solid #e5e5e5;
}

.carousel-pager .owl-item:last-child {
  border: 0;
}

.owl-item .col_product {
  width: 100% !important;
}

.additional_images2 {
  padding-bottom: 7px;
}

.item.single_image {
  text-align: center;
}

.carousel-pager .synced .item {
  opacity: 1;
}

.carousel-pager .item img {
  max-height: 90%;
}

body #sync1 {
  display: block;
}

#sync1 .item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
}

#sync1 .item a {
  display: block;
  height: 100%;
  width: 100%;
}

.alert-danger-header {
  margin-bottom: 0;
}

.alert-danger-header > div {
  position: relative;
}

.alert-danger-header .close {
  position: absolute;
  right: -5px;
  top: calc(50% - 12px);
}

.additional_images2 .item img {
  vertical-align: middle;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}

/* PRODUCT INFO DESCRIPTION */
.attrib_divs label,
.attrib_divs label > a {
  color: var(--sm-text-color);
  font-weight: 400;
  line-height: 1.3;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.attrib_divs label:hover,
.attrib_divs label > a:hover {
  opacity: 0.7;
}

/*.attrib_divs input[type="checkbox"] + label:before {
  content: '';
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23eee' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z'%3E%3C/path%3E%3C/svg%3E");
}*/
/*** edit test ***/

.attrib_divs input[type="checkbox"]:checked + label:before {
  /*background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23248bcb' d='M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;*/
  content: "\2714";
  color: #fff;
  background: var(--sm-link-color);
  border: 1px solid transparent;
  border-radius: 3px;
  width: 15px;
  height: 15px;
  font-size: 12px;
  line-height: 1;
  position: relative;
  padding-top: 1px;
  text-align: center;
}

.attr_select,
.prod_attributes_div > div {
  margin-bottom: 10px;
}

.attr_select .selectize-control,
.attr_select select {
  width: fit-content;
  font-weight: 400;
  min-width: 50%;
}

.description_card_product .prod_buy_btns .btn-success {
  background: linear-gradient(to bottom, var(--sm-grey-color) 0%, #e2e2e2 100%);
  color: var(--sm-text-color);
  border: none;
  height: 40px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
}

.description_card_product .prod_buy_btns .btn-success:hover {
  background: linear-gradient(to bottom, #e2e2e2 0%, var(--sm-grey-color) 100%);
}

.description_card_product table {
  border-collapse: inherit;
  width: 100%;
  font-size: 14px;
  vertical-align: middle;
}

.art_card_product {
  font-size: 12px;
  color: #7f7f7f;
}

.select_color {
  display: inline-block;
  width: 26px;
  height: 26px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  border-radius: 13px;
  cursor: pointer;
}

.select_color:nth-of-type(2) {
  background: #fb641d;
}

.product-buy-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 36px 0;
}

.old_price_card_product,
.old_price_compare_product {
  color: var(--sm-text-color);
  opacity: 0.7;
  text-decoration: line-through;
}

.ccp {
  font-size: 85%;
}

.prod_options tr td:first-of-type {
  width: 180px;
  padding-right: 15px;
  line-height: 16px;
}

.prod_options tr td:last-of-type {
  color: var(--sm-text-color);
  font-weight: 700;
}

.description_card_product .col-sm-12,
.description_card_product .col-sm-4,
.description_card_product .col-sm-8 {
  padding: 10px 15px;
}

.description_card_product .first_row {
  padding-top: 0;
}

.description_card_product .prod_buy_btns {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 13px;
  white-space: nowrap;
}

.description_card_product .description_card_small_btn {
  display: flex;
  align-items: flex-start;
}

.description_card_product .description_card_small_btn .label-success {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin-right: 10px;
}

.description_card_product .description_card_small_btn .col-sm-12 {
  padding: 0;
  height: 20px;
}

.description_card_product .description_card_small_btn .col-sm-12 .pull-left {
  margin: 0;
  padding: 0 !important;
}

.description_card_product
  .description_card_small_btn
  .col-sm-12
  .pull-left
  .fb_iframe_widget
  span {
  width: 100px !important;
}

.description_card_product
  .description_card_small_btn
  .col-sm-12
  .pull-left
  .fb_iframe_widget
  span
  iframe {
  width: 100px !important;
}

.table_1 .ui-icon {
  display: none;
}

.table_1 .ui-state-default,
.table_1 .ui-widget-content .ui-state-default,
.table_1 .ui-widget-header .ui-state-default {
  background: #fff;
  color: #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.table_1 .ui-helper-reset {
  line-height: 1;
}

.table_1.ui-corner-all {
  border-radius: 0;
}

.table_1 .ui-state-active,
.table_1 .ui-widget-content .ui-state-active,
.table_1 .ui-widget-header .ui-state-active {
  background: transparent;
  border: none;
  color: #828282;
}

.table_1 .ui-state-active,
.table_1 .ui-widget-content .ui-state-active,
.table_1 .ui-widget-header .ui-state-active,
.table_1 .ui-state-hover,
.table_1 .ui-widget-content .ui-state-hover,
.table_1 .ui-widget-header .ui-state-hover {
  background: #399fdf;
  color: #fff;
  border: none;
}

.buy {
  padding: 12px 45px;
  font-size: 16px;
  line-height: 1;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.pre_order_click svg path {
  fill: white;
}
/* SHARE BUTTONS */
.container_sheare_compare {
  margin: 30px 0 25px 0;
  padding: 0;
}

.share_with_friends,
.compare_button {
  display: inline-block;
  /*vertical-align: middle;*/
}

.share_with_friends * {
  display: inline-flex;
}

.share_with_friends p {
  margin: 0 18px 0 0;
  font-size: 12px;
  color: var(--sm-text-color);
  vertical-align: middle;
}

.share_with_friends a {
  margin: 0 4px 0 0;
}

.share_with_friends a:hover {
  opacity: 0.8;
}

/* COMPARE */
.compare_table {
  width: 100%;
}

.compare_table tr td {
  padding: 4px 0;
}

.compare_table .prod_price {
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
  font-size: 20px;
}

.compare_table .compare_attrs {
  text-align: center;
  border-bottom: 1px solid #e7e7e7;
  min-height: 20px;
  padding-top: 3px;
  padding-bottom: 5px;
}

#compare_box {
  position: fixed;
  background: #fff;
  width: 110px;
  left: 0;
  top: 300px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.23);
  z-index: 51;
}

.wishlist_box2 {
  display: none;
  position: fixed;
  background: #fff;
  width: 110px;
  left: 0;
  top: 200px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.23);
  padding: 15px;
  z-index: 51;
}

#compare_wishlist {
  margin: 10px 0;
  display: flex;
  gap: 10px;
}

.compare_item {
  position: relative;
  margin: 10px 0;
  transition: all 0.2s;
}

.compare_item:hover .compare_block__delete {
  opacity: 1;
}

.compare_block__prod_img {
  text-align: center;
  width: 100%;
}

.compare_block__prod_img img {
  max-width: 100%;
}

.compare_block__prod_name {
  background: #fff;
  z-index: 1;
  padding: 0;
  border-radius: 0 0 10px 0;
  width: 100%;
  font-size: 10px;
  margin-top: 7px;
}

.compare_item:hover .compare_block__prod_name {
  visibility: visible;
  opacity: 1;
  overflow: hidden;
}

.compare_box_title {
  padding: 5px 10px;
  font-size: 12px;
  color: #00beff;
  font-weight: bold;
}

.compare_block__delete:hover,
.compare_block__delete {
  position: absolute;
  top: -5px;
  right: 10px;
  /*opacity: 0;*/
  border-radius: 20px;
  width: 17px;
  height: 18px;
  font-style: normal;
  text-decoration: none;
  background: var(--sm-link-color);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare_block__delete svg {
  fill: #fff;
  font-size: 11px;
  margin-bottom: 1px;
}

.compare_block__delete .icon-remove-compare svg {
  fill: #000;
}

.compare_block__delete i {
  font-style: normal;
}

.compare_item .inner {
  padding: 5px 10px;
}

.gocomparelink {
  font-size: 10px;
  font-weight: bold;
  text-decoration: underline;
  padding: 4px;
  display: block;
  text-align: center;
}

#comp_delete {
  margin-left: -55px;
  margin-top: -115px;
}

#comp_img {
  width: 115px;
  margin: 0 auto;
  padding: 5px 0;
  text-align: center;
}

#copm_qty {
  width: 25px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ccc;
  height: 25px;
}

.compare {
  margin: 0 0 0 1%;
  display: block;
  text-align: left;
}

.compare_button label,
.compare_button a,
.wishlisht_button label {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  color: var(--sm-link-color);
  height: 24px;
}

.compare_button {
  width: 24px;
  height: 24px;
}

.compare_button input[type="checkbox"] + label:before,
.compare_button input[type="checkbox"] + a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M434.8 137.6L285.4 69.5c-16.2-7.4-42.7-7.4-58.9 0L77.2 137.6c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.9 7.7 44.7 7.7 61.6 0l148-67.5c17.6-8 17.6-21.1 0-29.1zM225.2 375.2l-99.8-45.5c-4.2-1.9-9.1-1.9-13.3 0l-34.9 15.9c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.9 7.7 44.7 7.7 61.6 0l148-67.5c17.6-8 17.6-21.1 0-29.1l-34.9-15.9c-4.2-1.9-9.1-1.9-13.3 0l-99.8 45.5c-16.9 7.7-44.7 7.7-61.6 0z'%3E%3C/path%3E%3Cpath fill='var(--sm-btn-color)' d='M434.8 241.6l-31.7-14.4c-4.2-1.9-9-1.9-13.2 0l-108 48.9c-15.3 5.2-36.6 5.2-51.9 0l-108-48.9c-4.2-1.9-9-1.9-13.2 0l-31.7 14.4c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.9 7.7 44.7 7.7 61.6 0l148-67.5c17.7-8 17.7-21.1.1-29.1z'%3E%3C/path%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M434.8 137.6L285.4 69.5c-16.2-7.4-42.7-7.4-58.9 0L77.2 137.6c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.9 7.7 44.7 7.7 61.6 0l148-67.5c17.6-8 17.6-21.1 0-29.1zM225.2 375.2l-99.8-45.5c-4.2-1.9-9.1-1.9-13.3 0l-34.9 15.9c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.9 7.7 44.7 7.7 61.6 0l148-67.5c17.6-8 17.6-21.1 0-29.1l-34.9-15.9c-4.2-1.9-9.1-1.9-13.3 0l-99.8 45.5c-16.9 7.7-44.7 7.7-61.6 0z'%3E%3C/path%3E%3Cpath fill='var(--sm-btn-color)' d='M434.8 241.6l-31.7-14.4c-4.2-1.9-9-1.9-13.2 0l-108 48.9c-15.3 5.2-36.6 5.2-51.9 0l-108-48.9c-4.2-1.9-9-1.9-13.2 0l-31.7 14.4c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.9 7.7 44.7 7.7 61.6 0l148-67.5c17.7-8 17.7-21.1.1-29.1z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  background: var(--sm-compare-btn-color);
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
  fill: var(--sm-btn-color);
}

.wishlisht_button input[type="checkbox"] + label:before {
  content: "";
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff2525' d='M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'%3E%3C/path%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff2525' d='M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  background: var(--sm-wishlist-btn-color);
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}

.wishlisht_button input[type="checkbox"]:checked + label:before,
.compare_button input[type="checkbox"]:checked + label:before,
.compare_button input[type="checkbox"]:checked + a:before{
  opacity: 1;
}

/* RATING */
.container_rating_likes {
  padding: 0;
  margin: 12px 0 20px 0;
}

.rating_product,
.likes_block {
  display: inline-block;
}

.rating_product {
  vertical-align: middle;
  font-size: 12px;
}

.rating,
.rating > a,
.rating_product > p,
.rating_product > a {
  display: inline-block;
  vertical-align: bottom;
}

.rating_product > p {
  margin: 0 10px 0 10px;
  color: #252525;
}

.rating_product > a {
  color: #248bcb;
  color: var(--sm-text-color);
  text-decoration: underline;
}

.rating_product > a:hover {
  text-decoration: none;
}

/*--------------------------- PRODUCT RIGHT SIDE  ------------------------*/
.product_right_content {
  font-size: 14px;
}

.product_right_content ul {
  padding-left: 40px;
}

.product_right_content aside {
  margin-bottom: 20px;
}

.product_right_content section {
  margin: 0 0 32px 0;
}

.product_right_content nav .right_column {
  padding: 20px 10%;
  border: 2px solid var(--sm-grey-color);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.product_right_content .h3 {
  margin: 0 0 17px -11px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.product_right_content ul {
  padding: 0;
  list-style: none;
}

.product_right_content nav li {
  display: block;
  margin: 0 0 10px 0;
}

.product_right_content nav p {
  margin-bottom: 20px;
}

.product_right_content nav a {
  color: #248bcb;
  color: var(--sm-link-color);
  text-decoration: underline;
}

.product_right_content nav a:hover {
  text-decoration: none;
}

.product_right_content p {
  margin: 0;
  color: var(--sm-text-color);
  opacity: 0.8;
  line-height: 1.2;
}

/* PRODUCT INFO TABS */
.nav-tabs {
  border-bottom: 0;
}

.tab-content > .active {
  background: transparent;
  border: 0;
}

.panel-body ul,
.article_content ul {
  list-style-type: disc;
  margin-left: 30px;
}

#tab-description {
  overflow-wrap: break-word;
}

#tab-description img,
#tab-description-collapse img {
  max-width: 100%;
  height: auto !important;
}

#tab-downloads {
  background: #F5F5F5;
  border-radius: 3px;
  padding: 30px 40px;
  margin-bottom: 30px;
}
#tab-downloads .files_to_download_tab .file_to_download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 2px solid rgba(165, 165, 165, 0.5);
  gap: 10px;
}
#tab-downloads .files_to_download_tab .file_to_download:last-of-type {
  border-bottom: none;
}
#tab-downloads .files_to_download_tab .file_to_download span {
  font-size: 16px;
  overflow-wrap: anywhere;
}
#tab-downloads .files_to_download_tab .file_to_download span.size {
  font-size: 12px;
}
#tab-downloads .files_to_download_tab .file_to_download .download_file {
  display: block;
  text-align: center;
  background: rgb(50, 50, 48);
  border: 2px solid rgb(50, 50, 48);
  color: #fff;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
#tab-downloads .files_to_download_tab .file_to_download .download_file:hover,
#tab-downloads .files_to_download_tab .file_to_download .download_file:focus {
  text-decoration: none;
  background: transparent;
  color: rgb(50, 50, 48);
}

.char-left {
  min-width: 50%;
  padding: 5px 0;
  font-weight: bold;
}

.char-right {
  padding: 5px 0;
  float: left;
}

.nav-tabs > li.active > .tablinks,
.nav-tabs > li.active > .tablinks:hover,
.nav-tabs > li.active > .tablinks:focus {
  cursor: default;
}

/*--------------------------------------------------------------------------
                                END PRODUCT INFO
--------------------------------------------------------------------------*/

#ajax_search_brands .filter_heading {
    padding: 14px 0 0 0;
}

.attrib_divs.ajax {
  max-height: none;
  overflow: unset;
}

aside .ui-slider-horizontal {
  position: relative;
  height: 7px;
  margin: 21px 0 18px 0;
  -webkit-border-radius: 3.5px;
  -moz-border-radius: 3.5px;
  border-radius: 3.5px;
  background: #ededed;
}

aside .ui-slider-range {
  background: #ffb300 !important;
  background: var(--sm-btn-color) !important;
}

.dipcen {
  margin-bottom: 25px;
}

.dipcen .slider-from,
.dipcen .slider-to {
  width: 42%;
  float: left;
}

.price_fltr {
  display: none;
  margin-top: 8px;
}

/*** edit test ***/
#slider-range .ui-slider-handle {
  margin-top: -1px;
  margin-left: -11px;
  cursor: pointer;
}

#slider-range .ui-slider-handle:focus {
  outline: none;
}

#slider-range .ui-slider-handle::before {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  background-repeat: no-repeat;
}

#slider-range .ui-slider-handle:first-of-type::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='iso-8859-1'?%3e%3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e%3csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 256 256' style='enable-background:new 0 0 256 256;' xml:space='preserve'%3e%3cg%3e%3cg%3e%3cpolygon points='207.093,30.187 176.907,0 48.907,128 176.907,256 207.093,225.813 109.28,128 '/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  margin-left: 5px;
}

#slider-range .ui-slider-handle:last-of-type::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='iso-8859-1'?%3e%3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e%3csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 256 256' style='enable-background:new 0 0 256 256;' xml:space='preserve'%3e%3cg%3e%3cg%3e%3cpolygon points='79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128 '/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

/*
#slider-range .ui-slider-handle:first-of-type,
#slider-range .ui-slider-handle:last-of-type {
    width: 35px;
    height: 35px;
    background: #ffb300;
    border: 2px solid #000;
    border-radius: 50%;
    margin-top: 0;
}
*/

#cart_order_total {
  margin: 15px 0;
  font-size: 20px;
}

.coupon_input {
  display: inline-block;
  width: auto;
}

.coupon_response_valid {
  font-weight: bold;
  padding: 10px 0;
  color: green;
}

.coupon_response_invalid {
  font-weight: bold;
  padding: 10px 0;
  color: red;
}

.checkout__item_image {
  text-align: center;
}

#voucherRedeem {
  padding: 7px 9px;
  vertical-align: top;
}

.cart_popup_form {
  position: absolute;
  top: 15%;
  left: 50%;
  min-height: 100px;
  margin-top: 0 !important;
}

.form-group.invalid input[name="telephone"],
.form-group.invalid input[name="billing_telephone"] {
  border: 2px solid rgba(243, 7, 39, 0.2) !important;
  background: rgb(254, 242, 244) !important;
}
.form-group.invalid .success_icon {
  display: none !important;
}

.form-group.invalid .error_icon {
  display: flex;
}

form input[type="submit"]:disabled,
form input[type="submit"]:disabled:hover {
  background-color: #999;
  color: white;
}

#sync1 img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.single_image img:hover,
.single_image a:hover,
#sync1 img:hover,
#sync1 a:hover {
  cursor: url(../images/loupe.png), zoom-in !important;
}

.thumbs_row {
  padding: 0 20px;
}

.thumbs div {
  height: 100px;
  overflow: hidden;
  margin-top: 10px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
}

.thumbs div img {
  cursor: pointer;
  max-height: 100%;
  /*max-width: 100%;*/
  max-width: max-content;
  width: 100%;
  height: auto;
}

.thumbs div.active {
  border: 2px solid var(--sm-grey-color);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
}

/* END POPUP */

.ch_link {
  display: block;
}

/* ----------------- SUPER CATEGORIES ----------------- */

.accordion a,
.accordion .like_a {
  display: block;
  font-size: 14px;
  color: var(--sm-text-color);
  padding: 10px 0;
  border-top: 2px solid #fff;
}

.accordion .like_a.active {
    color: var(--sm-btn-text-color);
}

.accordion > a,
.accordion > .like_a,
.accordion ul > li > a,
.accordion ul > li > .like_a {
  padding: 10px 30px 10px 15px;
}

.accordion > ul:nth-child(1) > li:nth-child(1) > a,
.accordion > ul:nth-child(1) > li:nth-child(1) > .like_a,
.accordion > a:nth-child(1),
.accordion > .like_a:nth-child(1) {
  border-top: none;
}

.accordion li > .like_a {
  background: var(--sm-btn-color);
}

.accordion ul > li > ul {
  background: #eee;
}

.accordion ul > li > ul > li > ul {
  background: #e1e1e1;
}

.accordion li > a.active {
  color: #248bcb;
  color: var(--sm-link-color);
}

.accordion > ul > li .active + .down i,
.accordion .down:hover i,
.accordion > ul > li .active + .down svg,
.accordion down:hover svg,
.accordion > ul li .active.down svg {
  -moz-transform: rotate(90deg); /* Firefox */
  -ms-transform: rotate(90deg); /* IE */
  -webkit-transform: rotate(90deg); /* Safari, Chrome, iOS */
  -o-transform: rotate(90deg); /* Opera */
  transform: rotate(90deg);
}

.accordion > ul > li ul {
  display: none;
}

.accordion > ul > li ul li a,
.accordion > ul > li ul li .like_a {
  padding-left: 27px;
}

.accordion > ul > li ul li ul li a,
.accordion > ul > li ul li ul li .like_a {
  padding-left: 40px;
}

.accordion > ul > li ul li ul li ul li a,
.accordion > ul > li ul li ul li ul li .like_a {
  padding-left: 55px;
}

.accordion > ul > li a.active + ul {
  display: block;
}

.accordion > a:hover,
.accordion li a:hover {
  background: #ffb300;
  background: var(--sm-btn-color);
  color: var(--sm-btn-text-color);
  text-decoration: none;
}

.vivod_ {
  line-height: 1;
}

.btn-link {
  padding: 0 3px;
  height: 27px;
  color: var(--sm-link-color) !important;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
}

.btn-link i {
  color: #888;
  font-size: 28px;
}

.btn-link svg {
  fill: #aaa;
  font-size: 22px;
}

.btn-link:hover i,
.btn-link.hover i {
  color: #248bcb;
  color: var(--sm-link-color);
}

.btn-link:hover svg,
.btn-link.hover svg,
svg.fa-spin {
  fill: #248bcb;
  fill: var(--sm-link-color);
}

/* ----------------- SUPER CATEGORIES END ----------------- */

.right_content {
  float: right;
}

[data-page-name="password_forgotten"] .right_content,
[data-page-name="account_password"] .right_content,
[data-page-name="address_book"] .right_content,
[data-page-name="account_edit"] .right_content,
[data-page-name="account_history"] .right_content,
.compare_page .right_content,
.wishlist_page .right_content,
.checkout_page .right_content {
  padding-left: 15px;
  padding-right: 15px;
}

.refresh_icon {
  position: relative;
}

.refresh_icon .fa-spin {
  position: absolute;
  display: none;
  font-size: 17px;
  right: 0;
  top: 5px;
  color: #248bcb;
  color: var(--sm-text-color);
}

.btn_coupon {
  margin-bottom: 15px;
}

.newsletter {
  margin-bottom: 15px;
}

.newsletter label {
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.newsletter input[type="checkbox"] + label:before,
.form-group input[type="checkbox"] + label:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23eee' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z'%3E%3C/path%3E%3C/svg%3E");
}

.newsletter input[type="checkbox"]:checked + label:before,
.form-group input[type="checkbox"]:checked + label:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23248bcb' d='M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z'%3E%3C/path%3E%3C/svg%3E");
}

.abook {
  margin-bottom: 20px;
}

#block {
  text-align: center;
  /*position: relative;*/
}

.category {
  position: relative;
}

#loadMoreProducts {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

#loadMoreProducts #loadMoreI {
  width: 14px;
  height: 14px;
  margin-left: 5px;
  fill: #fff;
}

#loadMoreProducts:hover svg,
#loadMoreProducts:focus svg {
  fill: #fff;
}

.pdf_link {
  text-align: right;
  position: relative;
  /*right: 16px;*/
  top: 0;
}

.pdf_link span {
  display: inline-flex;
  line-height: initial;
}

.pdf_link i {
  font-size: 14px;
}

.pdf_link svg {
  width: 16px;
  height: 16px;
  margin-right: 3px;
}

/*** edit test ***/
.subcats_imgs {
  text-align: center;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*** edit test ***/
.subcats_imgs > div {
  display: flex;
  align-items: center;
  min-height: 120px;
}

/*** edit test ***/
.subcats_imgs > div a {
  display: block;
  font-size: 13px;
  width: 100%;
}

.subcats_imgs img {
  display: block;
  margin: 0 auto 10px;
  max-height: 120px;
  width: 100%;
  height: auto;
  max-height: 120px;
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}

.subcats_imgs > div a:hover img {
  transform: scale(1.05);
}

.category .subcats_imgs.flex {
  display: flex;
  justify-content: space-between;
}
.category .subcats_imgs > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category .subcats_imgs .no-img {
  font-size: 1.5rem;
}

.block_categories .img-container,
.subcats_imgs .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.template_select {
  width: 100%;
  margin-top: 10px;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  display: inline-block;
  font: normal normal normal 30px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #777;
  width: 14% !important;
  text-decoration: none !important;
}

#browse_category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

#browse_category.subcats_img {
  margin-bottom: 15px;
}

#browse_category > div {
  position: relative;
  max-height: 180px;
  border-radius: 10px;
  overflow: hidden;
}

#browse_category > div .name {
  position: absolute;
  bottom: 15px;
  left: 15px;
  margin: 0;
  font-size: 36px;
  color: #fff;
  z-index: 1;
}

#browse_category img {
  height: auto-fit;
  width: 100%;
  object-fit: cover;
}

.frontpage #browse_category.subcats_imgs > div > a {
  padding: 0;
  margin: 0;
}

@media (max-width: 1200px) {
  #browse_category > div {
    max-height: 120px;
  }
  
  #browse_category > div .name {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  #browse_category {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #browse_category {
    grid-template-columns: repeat(1, 1fr);
  }
}

#browse_category a:has(img) {
  justify-content: space-between;
}

.page-wrap .right_content #browse_category a {
  padding: 0 0 30px 0;
  color: #000 !important;
}

.page-wrap .right_content #browse_category a:hover {
  color: #428bca !important;
}

.checkout_error {
  border: 3px solid red;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  font-size: 15px;
  font-weight: bold;
  display: block;
}

form[name="create_account"] .form-group {
  position: relative;
  margin: 5px 0;
}

form[name="create_account"] button:not(.close) {
  width: 100% !important;
  min-width: 250px;
  height: 35px;
  border-radius: 5px;
}

form[name="create_account"] label {
  cursor: pointer;
}

form[name="create_account"] input[type="submit"] {
  pointer-events: none;
  opacity: 0.5;
}

.active_submit {
  pointer-events: auto !important;
  opacity: 1 !important;
}

.addresses_block {
  padding: 10px;
  margin-bottom: 10px;
}

.addresses_block label,
.addresses_block input[type="radio"] {
  cursor: pointer;
  font-weight: normal;
  padding-left: 20px;
  line-height: 1.3;
}

.addresses_block input[type="radio"] + label:before {
  margin-left: -17px;
}

.addresses_block:hover,
.ab_checked {
  background: var(--sm-grey-color);
  cursor: pointer;
}

.prod_options_radio label {
  display: inline;
  margin-right: 10px;
}

.prod_options_radio label.disabled_label {
  pointer-events: none;
  background: var(--sm-grey-color);
  color: #aaa;
  font-weight: normal !important;
}

.prod_options_radio input[type="radio"]:checked + label {
  background-color: #ebebeb;
  border-color: #adadad;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.prod_options_radio input[type="radio"] + label:before {
  content: "";
}

.pag {
  display: inline-block;
  width: 100%;
  clear: both;
}


.char {
  border-bottom: 1px dotted var(--sm-grey-color);
}

#tab-characteristics {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}

#tab-characteristics {
  width: 100%;
}

.full-width-field {
  /*left: -100%;*/
  position: relative;
  margin-top: 5px;
  /*width: 200%;*/
  width: 100%;
}

.text_credit_card_expires {
  margin-top: 5px;
  position: relative;
  left: 0;
  margin-bottom: 40px;
  max-width: 110px;
  padding-right: 5px;
}

.full-width-field-date {
  width: 84%;
  position: absolute;
}

.full-width-field-date.expires_month {
  left: -77%;
  margin-top: 26px;
}

.full-width-field-date.expires_year {
  left: 8%;
  top: 26px;
}

.credit_card_info .full-width-field {
  left: 0;
  width: 100%;
}

.credit_card_info .text_credit_card_expires {
  left: 0;
  margin: 10px 0;
}

.credit_card_info .full-width-field-date {
  width: 49%;
  margin-bottom: 10px;
  position: unset;
  display: inline-block;
}

.credit_card_info .full-width-field-date.expires_month {
  margin-top: 0;
}

.credit_card_info .full-width-field-date.expires_year {
  float: right;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */
  .owl-carousel .owl-item {
    display: block;
  }

  .base {
    width: 90px;
  }
}

.product {
  background: transparent;
  border-radius: 2px;
  padding-top: 2px;
}

.product .outer {
  padding: 0;
}

.product .product-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.btn-primary.add_product_to_cart,
.btn-primary.bargain_get_questions,
.btn-primary.popup_cart,
.btn-primary.buy,
.product .pre_order_click,
.product .add2cart,
.product .added2cart {
  position: absolute;
  height: 48px;
  width: 160px;
  padding: 15px;
  border-radius: var(--radius-m);
  color: #fff;
  z-index: 1;
}

@media (max-width: 768px) {
  .btn-primary.popup_cart {
    width: 100%;
  }
}

.product .pre_order_click {
  position: initial;
}

@media (min-width: 1600px) {
  .btn-primary.add_product_to_cart,
  .btn-primary.bargain_get_questions,
  .btn-primary.popup_cart,
  .product .pre_order_click,
  .product .add2cart,
  .product .added2cart {
    height: 56px;
  }
}

.product .pre_order_click {
  color: var(--white);
}

.btn-primary.add_product_to_cart,
.btn-primary.bargain_get_questions,
.product .pre_order_click,
.product .add2cart,
.product .added2cart {
  border-color: var(--sm-btn-color);
}

.btn-primary.add_product_to_cart:hover,
.btn-primary.bargain_get_questions:hover,
.btn-primary.popup_cart:hover,
.btn-primary.buy:hover,
.product .pre_order_click:hover,
.product .add2cart:hover,
.product .added2cart:hover {
  background-color: var(--hover-btn);
  border-color: var(--hover-btn);
  color: var(--white);
}

.btn-primary.add_product_to_cart:focus,
.btn-primary.bargain_get_questions:focus,
.product .pre_order_click:focus,
.product .add2cart:focus,
.product .added2cart:focus {
  outline: 4px solid var(--shade);
}

.product .delete-product {
  background-color: transparent;
}

.product .delete-product svg {
  pointer-events: none;
}

.product .delete-product:focus svg path,
.product .delete-product:hover svg path {
  fill: #fff;
}

.btn-primary.add_product_to_cart:hover,
.btn-primary.bargain_get_questions:hover,
.product .add2cart:hover,
.product .added2cart:hover {
  background-color:  #cc3d46;
}


.product:hover {
  padding-top: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.p_description {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
}

.product table {
  margin: 0 0 10px 0;
  text-align: left;
}

.product table td {
  padding: 0 0 5px 0;
}

.product table td:first-of-type {
  color: #4c4c4c;
}

.product table td:last-of-type {
  padding: 0 0 5px;
}


.product:hover {
  z-index: 35;
  background: transparent;
}

.product:hover .p_description {
  height: auto;
  background: #fff;
}

.row_catalog_products .product:hover .wishlisht_button {
  float: right;
  padding: 0;
}

.product_list .compare_button,
.product .compare_button,
.product_list .wishlisht_button,
.product .wishlisht_button {
  position: absolute;
  right: 5px;
  bottom: 0;
  padding: 0;
}

.product_list .compare_button,
.product_list .wishlisht_button {
  right: 20px;
}

.product_list .compare_button {
  right: 40px;
}

.product .compare_button {
  right: 25px;
}

.compare_button label,
.compare_button label a,
.wishlisht_button label {
  font-size: 0;
}

.compare_button label a {
  display: none;
}

.product .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: normal;
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 500px) {
  .product .btn {
    font-size: 14px;
  }
}
.product .btn svg {
  fill: #fff;
  height: 17px;
}

.product img,
.product_list img,
.product img,
.product_hover_list img {
  width: auto;
  opacity: 0;
  object-fit: contain;
  max-width: 100%;
}

.product img {
  width: auto;
}

.product .nostock {
  opacity: 0.5;
}

/*ACCOUNT PAGE*/

#account-menu a {
  color: #000;
  width: 100%;
  text-align: center;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 5px;
}

.infoBoxContents a.btn.btn-default {
  color: #000;
}

.infoBoxContents input.btn.btn-default {
  color: #000;
}

#account-menu a:hover,
#account-menu a:focus,
#account-menu a:active {
  color: #333;
}

.account_template {
  margin-bottom: 15px;
}

.account_template .table-responsive {
  overflow-x: auto;
}

.account_template .pagerss,
.account_template .pagerss > div:last-child {
  display: flex;
  align-items: center;
}

.account_template .pagerss > div:last-child {
  justify-content: end;
}

.account_template .pagerss > div:last-child .pull-right:first-child {
  order: 1;
  margin-left: 5px;
}

.account_template .pagerss nav {
  display: flex;
}

#account_order_info .order_header {
  background: var(--sm-grey-color);
  border: 1px solid #ddd;
  border-bottom: 0;
}

#account_order_info .order_header > div {
  padding: 8px;
  height: 100%;
}

#account_order_info .order_header > div:first-of-type {
  border-right: 1px solid #ddd;
}

#account_order_info .order_body {
  border: 1px solid #ddd;
  background: var(--sm-grey-color);
}

#account_order_info .order_body > div {
  padding: 8px;
}

#account_order_info .order_body > div:first-of-type {
  border-right: 1px solid #ddd;
}

#account_order_info .account_delivery_method,
#account_order_info .account_product {
  margin-left: -8px;
  margin-right: -8px;
}

#account_order_info .account_delivery_method > div,
#account_order_info .account_product > div {
  padding: 8px;
  /*text-align: right;*/
}

#account_order_info .account_delivery_method > div:last-of-type,
#account_order_info .account_product > div:last-of-type {
  /*padding: 8px 0;*/
  /*text-align: left;*/
}

#account_history_table tr .account_history_actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 0;
  border-top: 1px solid #ddd;
}

#account_history_table tr:first-of-type .account_history_actions {
  border: 0;
}

#account_history_table .account_history_actions .btn-danger {
  margin-right: 5px;
}

#account_history_table .account_history_actions .popupPrintReceipt svg {
  fill: #fff;
  width: 14px;
  height: 14px;
}

#account_history_table .account_history_actions .popupPrintReceipt:hover svg,
#account_history_table .account_history_actions .popupPrintReceipt:focus svg {
  fill: #000;
}

#address_book .panel-heading .btn-group.btn-xs {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
}

#address_book .panel-heading .btn-group svg {
  fill: #fff;
  width: 14px;
  height: 14px;
}

.address_book a.btn.btn-default.btn-xs {
  color: #000;
}

.account_template input[name="city"] {
  margin-bottom: 25px;
}

.account_template form .selectize-control,
.account_template form .selectize-control.single .selectize-input,
.account_template form .selectize-control.single .selectize-input.input-active {
  height: 36px;
}

.brands_block {
  column-count: 5;
  padding-top: 50px;
}

.brand-container ul li {
  padding: 5px 0;
}

.brands_block h3 {
  text-transform: uppercase;
  margin: 0 0 29px;
  color: #5a5a5b;
}

.brands_block a:hover,
.brands_block a:focus,
.brands_block a:active {
  text-decoration: none;
  color: var(--sm-text-color);
}

.search_categories {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
}

.search_categories a,
.search_categories .clarifying-categories {
  margin-right: 10px;
  margin-bottom: 5px;
}

.search_categories .clarifying-categories {
  cursor: pointer;
  color: var(--sm-link-color);
  /*min-width: max-content;*/
}

.search_categories .clarifying-categories:hover {
  color: var(--sm-text-color);
  text-decoration: underline;
}

.search_categories span {
  color: #888;
}

.search_cat_active {
  font-weight: bold;
}

/*!checkout selectize*/
.checkout form .selectize-control.single .selectize-input {
  height: auto;
  border: none;
}

.checkout .selectize-control.single .selectize-input:after,
.checkout .selectize-control.single .selectize-input.dropdown-active:after {
  right: 20px;
}

.shipping_methods_block {
  background: #fff;
}

.shipping_methods_block .selectize-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 5px 0;
}

#np_warehouses-selectized::-webkit-input-placeholder {
  color: #999;
}

#np_warehouses-selectized::-moz-placeholder {
  color: #999;
}

#np_warehouses-selectized:-ms-input-placeholder {
  color: #999;
}

#np_warehouses-selectized:-moz-placeholder {
  color: #999;
}

.ajax-module-box .lazy-data-loader {
  position: relative;
  display: block;
  height: 60px;
}

.ajax-module-box .lazy-data-loader:before {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(50% - 27px);
  left: calc(50% - 27px);
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='60px' height='60px' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cg%3E%3Cpath fill='%23ddd' d='M478.71 364.58zm-22 6.11l-27.83-15.9a15.92 15.92 0 0 1-6.94-19.2A184 184 0 1 1 256 72c5.89 0 11.71.29 17.46.83-.74-.07-1.48-.15-2.23-.21-8.49-.69-15.23-7.31-15.23-15.83v-32a16 16 0 0 1 15.34-16C266.24 8.46 261.18 8 256 8 119 8 8 119 8 256s111 248 248 248c98 0 182.42-56.95 222.71-139.42-4.13 7.86-14.23 10.55-22 6.11z'%3E%3C/path%3E%3Cpath fill='%23aba9a9' d='M271.23 72.62c-8.49-.69-15.23-7.31-15.23-15.83V24.73c0-9.11 7.67-16.78 16.77-16.17C401.92 17.18 504 124.67 504 256a246 246 0 0 1-25 108.24c-4 8.17-14.37 11-22.26 6.45l-27.84-15.9c-7.41-4.23-9.83-13.35-6.2-21.07A182.53 182.53 0 0 0 440 256c0-96.49-74.27-175.63-168.77-183.38z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  animation-play-state: running;
  background-repeat: no-repeat;
  animation-play-state: running;
  animation: 3s linear 0s normal none infinite running rot;
  -webkit-animation: 1.5s linear 0s normal none infinite running rot;
}

.selectize-control {
  position: relative;
  margin-left: 0px;
}

.currency_select form[name="currencies"] > span {
  display: none;
}

.filter_cont .filter_heading::before {
  content: "";
  height: 2px;
  background: var(--sm-grey-color);
  display: block;
  position: absolute;
  left: 15px;
  right: 0;
  margin: -25px 0 0;
}

label {
  margin-bottom: 10px;
}

.right_content .category #r_spisok .col-lg-12.col_product .div_list {
  text-align: left !important;
}

.right_content .category #r_spisok .col-lg-12.col_product ul.ul_list {
  list-style: none;
}

.right_content .category #r_spisok .col-lg-12.col_product ul.ul_list li {
  clear: both;
}

.right_content .category #r_spisok .col-lg-12.col_product .new_old_price {
  margin: 12px 0 12px 0;
}

.container_customer_reviews .user_info {
  line-height: 1;
}

.container_customer_reviews time {
  padding: 6px 0 0 0;
}

.container_customer_reviews-wrap .row {
  margin-right: 0;
}

.container_customer_reviews,
.container_customer_reviews-wrap {
  max-height: 434px;
  display: block;
  overflow: auto;
  border-radius: 7px;
}

.container_customer_reviews-wrap time {
  display: flex;
  align-items: center;
}

.container_customer_reviews-wrap time svg {
  margin-right: 5px;
  width: 14px;
}

.container_customer_reviews-wrap time svg > path {
  fill: #c0c0c0;
}

.customer_reviews_overflow .scrolbar_box::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  border-radius: 5px;
  background-color: #f6f6f6;
}

.customer_reviews_overflow .scrolbar_box::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 5px;
}

.row_news_customer_reviews .news_block_wrapper {
  width: 100%;
}

.row_news_customer_reviews .news_block_wrapper a {
  font-weight: 700;
}

.row_news_customer_reviews .news_block_wrapper p {
  font-size: 13px;
  line-height: 1.3;
}

.row_news_customer_reviews .news_block_wrapper .news_block_img,
.row_news_customer_reviews .news_block_wrapper .pad-left-0 {
  display: inline-block;
  padding: 5px 7px 10px 0;
  vertical-align: top;
}

.row_news_customer_reviews .news_block_wrapper .news_block_img {
  width: 24%;
  text-align: left;
}

.row_news_customer_reviews .news_block_wrapper .news_block_img img {
  object-fit: cover;
  height: auto;
}

.row_news_customer_reviews .news_block_wrapper .pad-left-0 {
  width: 74%;
}

.col_product .product .p_description .art {
  /* display: flex; */
  display: none;
  position: relative;
  margin-top: 10px;
  justify-content: space-between;
  align-items: center;
}

.col_product .product .p_description .art.clearfix:before

.col_product .product .p_description .listing_attrs tr td {
  color: #000;
  border: none;
}

.col_product .product .p_description .listing_attrs tr td {
  color: #000;
  border: none;
}

.col_product .product .p_description .listing_attrs tr td span {
  color: #979092;
}

.page-wrap .right_content .small_slider#manufacturers {
  margin: 0 0 50px 0;
}

.page-wrap .right_content .small_slider#manufacturers .owl-controls {
  margin: 0;
}

.page-wrap
  .right_content
  .small_slider#manufacturers
  .owl-stage-outer
  .owl-item
  a
  img {
  padding: 0 5px;
  max-width: 100%;
  height: auto;
}

.top_footer
  .row_menu_contacts_footer
  .contacts_info_footer
  .phones#footer_contacts
  p
  svg {
  width: 14px;
  height: 14px;
  margin-right: 7px;
}

.page-wrap .right_content .ajax-module-box.lazy-data-block {
  position: relative;
}

.page-wrap .right_content .ajax-module-box.lazy-data-block a.all-specials_a {
  text-decoration: none;
  color: #000;
}

.page-wrap
  .right_content
  .ajax-module-box.lazy-data-block
  .ajax-module-box.lazy-data-block
  a.all-specials_a {
  display: none;
}

.row_catalog_products .owl-stage-outer .col_product .product .compare_button {
  margin-right: 0;
}

.row_catalog_products
  .owl-stage-outer
  .col_product
  .product
  .compare_button
  svg,
.row_catalog_products
  .owl-stage-outer
  .col_product
  .product
  .wishlisht_button
  svg {
  margin-left: 5px;
  fill: #478ac7;
}

/*!END checkout selectize*/

.d-none {
  display: none !important;
}

/*PRINT PRODUCT PAGE*/

@media print {
  a:after {
    content: "" !important;
  }

  .open_custom_panel_btn,
  .custom_panel_block.visible,
  .custom_panel_block,
  .open_custom_panel_btn,
  footer,
  .top_header.hidden-xs,
  .breadcrumb,
  .container_middle_header .row div:nth-of-type(2),
  .container_middle_header .row div:nth-of-type(3),
  jdiv,
  .container_sheare_compare,
  .prod_buy_btns,
  .search-form-tooltip,
  .search-block,
  .header-actions,
  .product_right_content,
  .content-tabs {
    display: none !important;
  }

  .middle_header.hidden-xs.visible-sm-block,
  .navbar-header.visible-xs,
  .navbar-header,
  .navbar,
  .navbar-default,
  .visible-xs,
  .hidden-xs {
    display: block !important;
  }

  .container_middle_header {
    padding: 0 15px !important;
  }

  .container_middle_header .row div:nth-of-type(1) {
    display: block !important;
    width: 100%;
    float: unset;
  }

  .logo {
    float: unset;
  }

  .logo a {
    justify-content: center;
    margin: 0 !important;
  }

  main {
    padding: 0;
    border: none;
  }

  .prod_main_info > .col-xs-12 {
    width: 50% !important;
  }

  .description_card_product .prod_price,
  .logo_block {
    width: 100% !important;
  }

  .description_card_product {
    padding: 0;
  }

  .description_card_product > .col-sm-12 {
    display: none;
  }

  .category_heading {
    margin: 0 0 15px;
  }

  .navbar-header {
    position: relative !important;
  }

  .page-wrap {
    margin: 0;
  }

  .page-wrap:after {
    content: unset;
  }

  .label {
    border: none;
    outline: none;
  }

  #sync1 .item a {
    display: block;
    text-align: center;
    height: inherit;
    width: 100%;
  }
}

@media print and (max-width: 767px) {
  .hidden-xs {
    display: block !important;
  }

  .top_header.hidden-xs {
    display: none !important;
  }

  .navbar-header {
    position: relative;
  }
}

@media print and (min-width: 768px) {
  .logo_block {
    display: none;
  }
}

/*END PRINT PRODUCT PAGE*/

/*BUG REPORT*/
.bug_report {
  cursor: pointer;
}

.bug-report-text {
  resize: none;
}

#BugReportForm {
  text-align: center;
}

#BugReportForm .btn-loader {
  width: 25px;
  height: 25px;
}

/*END BUG REPORT*/

/* Timer */
.timer {
  margin-top: 70px;
  padding: 10px;
  border: 1px solid grey;
  background-color: white;
  color: black;
  border-radius: 10px;
  text-align: center;
  width: 250px;
}

.timer-title {
  font-size: 12px;
  margin-top: 0;
}

.timer-container {
  display: inline-block;
}

.timer-numbers {
  display: block;
  float: left;
  color: white;
  font-size: 20px;
  margin-right: 10px;
}

.timer span {
  margin-right: 2px;
  background-color: #575757;
  border-radius: 7px;
  padding: 4px;
}

.timer-description {
  font-size: 12px;
  margin-top: 6px;
  text-align: center;
  color: black;
}

/*login popup style*/
#modal_getLoginForm .modal-dialog {
  max-width: 320px;
  min-width: 320px;
}

.client-enter_window .social_header_facebook,
.client-enter_window .social_header_google {
  width: 100%;
  height: 34px;
  line-height: 34px;
  border-radius: 4px;
  margin: 10px 0;
  font-size: 14px;
  background: #4862a3;
  color: #fff;
  padding: 0;
}

.phone-enter-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.phone-enter-wrapper input {
  margin: 0 !important;
}

.client-enter_window .social_header_google {
  background: #eee;
  color: #000;
}

.client-enter_window .social_header_google:hover,
.client-enter_window .social_header_facebook:hover {
  text-decoration: none;
  background: #aaa;
}

.client-enter_window .social_header_facebook .fa {
  font-size: 17px;
  margin: 0 8px 0 0;
}

.client-enter_window .social_header_facebook svg,
.client-enter_window .social_header_google svg {
  margin: 0 8px 0 0;
}

.client-enter_window > .or {
  margin: 0 0 10px 0;
  overflow: hidden;
  text-align: center;
}

.client-enter_window > .or:before,
.client-enter_window > .or:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100%;
  height: 1px;
  background: #ccc;
  border: solid #fff;
  border-width: 0 10px;
}

.or:before {
  margin-left: -100%;
}

.or:after {
  margin-right: -100%;
}

.client-enter_window .form_enter {
  margin: 0;
  width: 100%;
  position: relative;
}

.client-enter_window .form_enter .fa {
  width: 40px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  margin-right: -40px;
  position: relative;
  z-index: 1;
  font-size: 14px;
  float: left;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 4px 0 0 4px;
  color: #575955;
}

.client-enter_window .form_enter span {
  position: absolute;
  top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 34px;
  z-index: 1;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 4px 0 0 4px;
}
.client-enter_window .form_enter span.password_svg {
  top: unset;
}

.client-enter_window .form_enter span svg {
  width: 24px;
  height: 24px;
}

.client-enter_window .form_enter span + input {
  padding-left: 50px;
}

.client-enter_window .password_enter {
  border-right: 1px solid #ccc;
  width: 100%;
  margin: 0 0 6px !important;
}

.client-enter_window .forget_password {
  text-align: right;
  float: right;
  margin: 0 0 20px;
  color: #464646;
  text-decoration: underline;
  padding: 0;
  font-size: 11px;
  font-weight: 400;
  background: transparent;
}

.client-enter_window .forget_password:hover,
.client-enter_window .forget_password:focus,
.client-enter_window .forget_password:active {
  background: transparent;
  color: var(--sm-text-color);
}

.client-enter_window .registration {
  height: inherit;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  color: #464646;
  border-bottom: 1px dashed #ededed;
}

.registration:hover {
  color: var(--sm-link-color);
  border-bottom: 1px dashed var(--sm-link-color);
  text-decoration: none;
}

/*popular search queries*/

.popular_queries_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.popular_queries_container > a {
  padding: 0 6px 0 6px;
  border-radius: 3px;
  background-color: #b5aae2;
  color: black;
  margin: 3px;
  font-size: 1.3em;
}

/*scroll up button*/
div.scrollup {
  position: fixed;
  z-index: 10;
  color: var(--sm-btn-text-color);
  background: var(--sm-btn-color);
  right: 48px;
  bottom: 70px;
  width: 48px;
  height: 48px;
  font-size: 40px;
  border-radius: 50%;
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
}

div.scrollup:hover {
  background: var(--sm-btn-color);
}

.scrollup > svg {
  fill: var(--sm-btn-text-color);
}

.video-button {
  position: absolute;
  margin: auto;
  height: 40%;
  z-index: 20000;
}

.input-type-number-custom {
  -moz-appearance: textfield;
}

.input-type-number-custom::-webkit-inner-spin-button {
  display: none;
}

.add-comment-row .g-recaptcha {
  display: inline-block;
  padding-top: 5px;
}

.art_card_product_vendor_code {
  margin: 0 0 0 10px;
}

.product_page #tab-comments .h3 a {
  text-decoration: underline !important;
}

.prod_options_radio input[type="radio"] + label:after {
  display: none;
}

.prod_attributes .selectize-dropdown .option:not([data-selectable]) {
  display: none;
}

body[data-page-name="login"] h2,
body[data-page-name="create_account"] h2,
body[data-page-name="contact_us"] h1,
body[data-page-name="article_info"] h1 {
  margin-top: 15px;
}

/* ----------------- TEST PERIOD OVER PAGE ----------------- */
.test-over_wrapper {
  text-align: center;
}

.test-over_wrapper .item_wrapper {
  margin-top: 15px;
}

.test-over_title {
  margin: 70px 0 0 0;
  font-weight: 700;
  border: none !important;
}

.test-over_wrapper .item {
  min-height: 350px;
  border-radius: 10px;
  border: solid 3px #eee;
  background: #fff;
  padding: 25px;
  position: relative;
  text-align: center;
  transition: all 0.5s;
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  cursor: pointer;
}

.test-over_wrapper .item.active {
  background: #fffef5;
  /* -webkit-box-shadow: 0 0 0 3px #ffd400; */
  /* -moz-box-shadow: 0 0 0 3px #ffd400; */
  /* box-shadow: 0 0 0 3px #ffd400; */
  transition: box-shadow 0s;
  /* border: solid 2px #fffef5; */
  border: 3px solid #ffd400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.test-over_wrapper .item:hover {
  background: #fffef5;
  transition: box-shadow 0s;
  border: 3px solid #ffd400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.test-over_wrapper .item_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.test-over_wrapper .item_header .check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: solid 2px #dedede;
  background: #fff;
  position: relative;
  cursor: pointer;
}

.test-over_wrapper .active .item_header .check {
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  border: solid 2px #ffd400;
  background-color: #ffd400;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.test-over_wrapper .packet_name {
  font: 400 16px "Roboto", sans-serif;
  margin: 35px auto 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #181818;
  font-style: italic !important;
}

.test-over_wrapper .packet_name:after {
  content: "";
  height: 6px;
  width: calc(100% + 2px);
  position: absolute;
  left: -1px;
  bottom: 2px;
  background: #ffd400;
  z-index: -1;
}

.test-over_wrapper .packet_price {
  position: relative;
  display: block;
  font: 700 26px "Roboto", sans-serif;
}

.test-over_wrapper .packet_text {
  /*margin-top: 10px;*/
  margin-top: 0;
  color: #555;
  font-size: 14px;
}

.test-over_wrapper a {
  text-decoration: none;
}

.test-over_wrapper .button_choose {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 8%);
  color: #fff;
  border-radius: 5px;
  background: #19bf4a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0 8px;
  cursor: pointer;
  transition: background 0.3s;
  font: 600 13px "Roboto", sans-serif;
  /*margin-top: 20px;*/
  margin-top: 0;
  visibility: hidden;
}

.test-over_wrapper .active .button_choose {
  visibility: visible;
}

.test-over_wrapper .item:hover .button_choose {
  visibility: visible;
}

.period-to-delete {
  max-width: 117px;
  margin: 10px 0 0 auto;
  padding: 5px;
  border: 2px solid #ffd400;
  border-radius: 5px;
}

/* ----------------- END TEST PERIOD OVER PAGE ----------------- */

/*Attribute combinations*/
.prod_attributes_div
  .select_id_option
  .selectize-dropdown-content
  .disabled-filter {
  opacity: 0.5;
}

.prod_attributes_div
  .attributes_type_color
  .color_attributes-item.disabled-filter {
  opacity: 0.5;
}

.prod_attributes_div
  .color_attributes-item.disabled-filter
  ~ .filter-product-image {
  border-style: dashed;
  /*display: none;*/
  /*cursor: default;*/
  /*pointer-events: none;*/
}

.prod_options_radio label.disabled-filter {
  opacity: 0.5;
}

.prod_attributes_div .color_attributes-item.disabled-filter img.img-circle {
  border-style: dashed;
}

.prod_attributes_div .color_attributes-item ~ .filter-product-image {
  margin: 10px 10px 10px 0;
  width: 23%;
  vertical-align: middle;
  /*display: inline-grid;*/
  border: 2px #ccc solid;
  border-radius: 0;
  overflow: hidden;
}

.prod_attributes_div .color_attributes-item ~ .filter-product-image:hover {
  border-color: #333;
  opacity: 1;
}

.prod_attributes_div .color_attributes-item ~ .filter-product-image.active {
  border-color: #6ec642;
}

.color_attributes-item img.filter-product-image {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border: 0;
  /* margin: auto;
     margin-top: 10px;*/
}

.prod_attributes_div
  .color_attributes-item
  ~ .filter-product-image
  .attribute-text {
  font: 400 13px "Montserrat-Regular";
  overflow-wrap: break-word;
  margin: 10px auto;
  width: 100%;
  text-align: center;
  padding: 0 5px;
  height: 32px;
}

.color_attributes-item.attribute-hidden {
  display: none;
}

.prod_options_radio label.attribute-hidden {
  display: none;
}

form[name="login"] .btn-default {
  margin-right: 0px;
  width: 100%;
  border-radius: 0;
  padding: 10px 9px;
}
@media (max-width: 991px) {
  body[data-page-name="login"] .right_content {
    padding: 0 15px;
  }
}
@media (max-width: 500px) {
  body[data-page-name="login"] .btn-success {
    width: 100%;
  }
}

/*Attribute combinations end*/
.flex_center {
  display: flex;
  justify-content: center;
}

body[data-page-name="create_account"] main > .container-fluid .row:first-child,
body[data-page-name="login"] main > .container-fluid .row:first-child,
body[data-page-name="contact_us"] main > .container-fluid .row:first-child,
body[data-page-name="index_products"] main > .container-fluid .row:first-child {
    margin: 0px ;
}
div.container-comtact_us {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
body[data-page-name="index_default"] .test-over_title {
  margin-bottom: 10px;
  font-size: 28px;
}
p.test-over-date span {
  font-weight: 700;
}
.test-over-flex {
  display: flex;
  flex-direction: column;
}
.test-over-flex p.test-over-date {
  order: 1;
  font-size: 17px;
  color: #555 !important;
}
.test-over-flex p.test-over-date span.packet_name {
  font-weight: 700;
  margin: 10px auto 10px;
}
.test-over-flex p.test-over-text {
  order: 2;
  font: 400 17px "Roboto", sans-serif;
  color: #181818 !important;
  margin-top: 35px;
  font-style: italic !important;
}
.test-over_wrapper .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item_wrapper .item p.packet_text span {
  font-weight: 700;
}
.item_wrapper .item p.packet_text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 1300px) {
  .test-over_wrapper .item {
    min-height: 350px;
  }
}
@media (max-width: 991px) {
  .test-over_wrapper .item {
    margin-bottom: 15px;
  }

  .test-over_wrapper .packet_price {
    font-size: 18px;
  }
  .category .form-group.row.subcats_imgs {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .test-over_wrapper .item {
    min-height: 280px;
  }
  .flex_center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .category .form-group.row.subcats_imgs {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 20px;
  }
}
@media (max-width: 480px) {
  body[data-page-name="index_default"] .test-over_title {
    font-size: 20px;
  }
  .test-over-flex p.test-over-date,
  .test-over-flex p.test-over-text {
    font: 400 13px "Roboto", sans-serif;
  }
}
@media (max-width: 991px) {
  body[data-page-name="create_account"] div.right_content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.play-video:before {
  content: " ";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 15px solid #fff;
  top: 40%;
  left: 45%;
  z-index: 2;
  cursor: pointer;
  opacity: 0.7;
}
.prod_attributes .selectize-dropdown-content .option.unselectable {
  pointer-events: none;
  color: #aaa;
  display: block;
  padding: 5px 12px;
  max-width: 100%;
  line-height: 1;
  text-align: left;
}
.prod_attributes .attribute_unselectable {
  pointer-events: none;
}
img.img-responsive + .name{
    margin-top: 12px;
}

.networks-container {
    margin-top: 5px;
}

#filters_box .filter_box_in .attrib_divs.attrib_divs_mobil::-webkit-scrollbar{
    width: 4px;
    height: 8px;
    border-radius: 5px;
    background-color: #F6F6F6;
}

#filters_box .filter_box_in .attrib_divs.attrib_divs_mobil::-webkit-scrollbar-thumb {
    background: #E2E2E2;
    border-radius: 5px;
}

.attrib_divs.attrib_divs_mobil {
  max-height: 130px;
  overflow-y: scroll;
  padding-bottom: 10px;
  display: block;
}
.btn-filter-group-brands.btn-filter-desktop,
.btn-filter-group-brands.btn-filter-desktop.btn-filter-desktop-none {
    margin-top: 20px;
}

.btn-filter-hide-none {
  display: none;
}

.btn-filter-desktop {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #979797;
  border: none;
  background-color: #fff;
  padding-left: 0;
  margin-top: 10px;
  cursor: pointer;
  padding: 0 0 0px 0;
}

.btn-filter-desktop-none {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #979797;
  border: none;
  background-color: #fff;
  padding-left: 0;
  margin-top: 10px;
  cursor: pointer;
  padding: 0 0 0px 0;
}

.btn-filter-desktop.btn-filter-desktop-none {
  display: none;
}


/*product info page -> attributes -> list with images*/
.prod_attributes_div .attributes_list.color_attributes-item img {
  height: 40px;
}
.attributes_list.color_attributes-item {
  cursor: pointer;
  margin-right: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 3px solid transparent;
  padding: 5px;
}
.attributes_list.color_attributes-item:hover {
  border-color: #f5f5f5;
}
.attributes_list.color_attributes-item.active {
  border-color: #6EC642;
}
.attribute-description {
  font-weight: normal;
}
.attribute-description-price {
  font-weight: 700;
}
.attributes_list.color_attributes-item img {
  /*border: 1px solid #ddd;*/
  margin-right: 10px;
  object-fit: contain;
}
.attributes_list .attribute-description span {
  padding-right: 10px;
}
.attributes_list .attribute_buttons {
  margin-left: auto;
}
.attributes_list.color_attributes-item .attribute_buttons {
  visibility: hidden;
}
.attributes_list.color_attributes-item:hover .attribute_buttons {
  visibility: visible;
}
.btn_popup-cart {
  min-width: fit-content;
  white-space: nowrap;
  padding: 0 5px;
}
.attributes_list_type .disabled-attribute-text {
  margin: auto 5px auto auto;
}
/*END product info page -> attributes -> list with images*/
.buy_one_click_callback,
.buy_one_click,
.callback_block {
  cursor: pointer;
}
body[data-page-name="account_history"] .table#account_history_table > thead > tr > th.sum-account-ttn {
  max-width: 60px;
}
td.text-center.sum-account-ttn {
  padding: 20px;
}
/*----------------------------------------Registration Validation----------------------------------------*/
form[name='create_account'] .form-group {
  position: relative;
}
form[name='create_account'] .error_icon {
  position: absolute;
  display: none;
  font-size: 9px;
  right: 10px;
  top: calc(50% - 6px);
  z-index: 10;
}
form[name='create_account'] .error_field .error_icon {
  display: block !important;
}
form[name='create_account'] .error_icon svg {
  width: 12px;
  height: 12px;
  font-size: 11px;
  fill: #f30727;
}
form[name='create_account'] input,
form[name='create_account'] .selectize-input {
  transition: all 0.2s;
}
form[name='create_account'] .error_field>input,
form[name='create_account'] .error_field>span>input,
form[name='create_account'] .error_field .selectize-input {
  border: solid 2px rgba(243, 7, 39, 0.2) !important;
  background: #fef2f4 !important;
}
form[name='create_account'] .error_icon i {
  position: absolute;
  display: none;
  width: max-content;
  max-width: 240px;
  padding: 4px 10px 5px;
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: #5e4200;
  background: #fff7cb;
  border: 2px solid #ffec8e;
  border-radius: 5px;
  top: -5px;
  right: -10px;
  transform: translateY(-100%);
  user-select: none;
}
form[name='create_account'] .error_icon i:before, form[name='create_account'] .error_icon i:after {
  content: '';
  position: absolute;
  right: 9px;
  bottom: -11px;
  border: 5px solid transparent;
  border-top: 6px solid #ffec8e;
}
form[name='create_account'] .error_icon i:after {
  border-top: 5px solid #ffec8e;
  bottom: -10px;
}
form[name='create_account'] .form-group:hover .error_icon i {
  display: block;
}
.error-msg_svg,
.success-msg_svg {
  width: 22px;
  height: 22px;
}
.pensil_svg {
  position: absolute;
  margin: 6px;
  width: 35px;
  cursor: pointer;
  opacity: 0;
  height: 35px;
  right: 0;
  top: 0;
  z-index: 100;
}
.pensil_svg:hover {
  opacity: 100;
}
.pensil_info_svg {
  position: absolute;
  margin: 6px;
  width: 32px;
  cursor: pointer;
  opacity: 0;
  height: 35px;
  right: 0;
  top: -10px;
  z-index: 100;
}
.pensil_info_svg:hover {
  opacity: 100;
}
.form-group.telephone_first_checks .iti [name="billing_telephone"],
.form-group.telephone_first_checks .iti [name="telephone"] {
  border: 1px solid #ccc !important;
  background: none !important;
}
.form-group.telephone_first_checks .error_icon {
  display: none !important;
}
.div_list_product_info {
  flex-direction: column;
}
.box-category.accordion li:first-of-type .like_a.active,
.box-category.accordion li:first-of-type a:hover {
  border-radius: 7px 7px 0 0;
}
.box-category.accordion li:last-of-type .like_a.active,
.box-category.accordion li:last-of-type a:hover {
  border-radius: 0 0 7px 7px;
}
.product_list a .product-modal-button {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 28px;
  transition: 0.1s ease-in;
}
.product_list a .product-modal-button:hover {
  font-size: 30px;
}
.product-info_product-name {
  position: relative;
  min-height: 30px;
}

.product-info_product-name #compare_wishlist {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  align-items: center;
}
.compare_button input[type="checkbox"] + label:hover:before,
.compare_button input[type="checkbox"] + a:hover:before,
.wishlisht_button input[type="checkbox"] + label:hover:before {
  opacity: 1;
}
.compare_button input[type="checkbox"] + label:hover span,
.compare_button input[type="checkbox"] + a:hover span,
.wishlisht_button input[type="checkbox"] + label:hover span {
  opacity: 1;
}
/*-------------------------ARTICLES AUTHOR-------------------------*/
[data-page-name="articles_by_author"] .author_block .author_block_header {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
[data-page-name="articles_by_author"] .author_block .author_block_avatar {
  display: inline-block;
  width: 75px;
  height: 75px;
  margin-right: 20px;
}
[data-page-name="articles_by_author"] .author_block .author_block_avatar img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
[data-page-name="articles_by_author"] .article_info_text-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -20px;
}
[data-page-name="articles_by_author"] .new_blog_article {
  width: 32%;
  height: 340px;
  border-radius: 5px;
  border: solid 1px #eee;
  background-color: #fff;
  overflow: hidden;
  transition: all .3s;
  margin: 0 5px 10px;
}
[data-page-name="articles_by_author"]  .new_blog_article:hover {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_img {
  height: 140px;
  display: block;
  overflow: hidden;
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_article_bottom {
  padding: 20px;
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_date_view {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_img img {
  max-width: 100%;
  height: auto;
  width: 100%;
  margin: 0;
  transition: all .3s;
  transform: scale(1);
}
[data-page-name="articles_by_author"] .new_blog_article:hover .new_blog_img img {
  transform: scale(1.15);
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_date_view > span.new_blog_date {
  height: 15px;
  font-weight: 700;
  font-size: 15px;
  color: #999;
}
[data-page-name="articles_by_author"] .new_blog_article h5 a:hover, .new_blog_article:hover h5 > a {
  text-decoration: underline;
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_date_view > span.new_blog_view {
  color: #555;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
[data-page-name="articles_by_author"] .new_blog_article .new_blog_date_view > span.new_blog_view img {
  margin: 5px 5px 5px 0;
}
[data-page-name="articles_by_author"] .new_blog_article h5 a {
  font-weight: 500;
  font-size: 15px;
  color: #333;
  transition: all .3s;
}
[data-page-name="articles_by_author"] .new_blog_article p, .new_col_right .article_info_text .new_blog_article p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.38;
  color: rgba(85, 85, 85, 0.8);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-page-name="article_info"] .author_block {
  display: flex;
  justify-content: end;
  align-items: center;
}
[data-page-name="article_info"] .author_block img {
  width: 36px;
  height: 36px!important;
  border-radius: 50%;
  margin: 0 10px 0 0!important;
  object-fit: cover;
}
.maintenance_admin_alert {
  position: relative;
  width: 100%;
  padding: 8px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  background-color: #c43535;
  color: #f2f2f2;
}
.maintenance_admin_alert a {
  font-size: 14px;
  line-height: 1.3;
  color: #f2f2f2;
  text-decoration: underline;
}

.articles-wrapper {
  margin-top: 15px;
}

.products-wrapper:not(:has(.product)) {
  display: none;
}

.articles-wrapper .white-rounded-box,
.products-wrapper .white-rounded-box {
  padding: 0;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px 0 rgba(0,0,0,.05);
}

.articles-wrapper .like_h2,
.products-wrapper .like_h2 {
  margin: 0;
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .05em;
  opacity: .6;
  text-transform: none;
}

.products-wrapper .row_catalog_products {
  padding: 15px 15px 0;
  margin: 0;
}

.product-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  width: 160px;
  padding: 0 4px;
  margin: 0;
  border: 1px solid var(--sm-btn-color);
  background-color: var(--sm-btn-color);
  border-radius: var(--radius-m);
  color: #fff;
  font-size: 16px;
}

@media (min-width: 1600px) {
  .product-qty {
    height: 56px;
  }
}

.product-qty button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.product-qty svg {
  display: block;
  pointer-events: none;
}

.product-qty-group {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.product-qty-group span {
  display: inline-block;
  margin-left: 2px;
}

.product-qty input {
  width: 1rem;
  height: 28px;
  padding: 0;
  border: none;
  text-align: center;
  background-color: transparent;
  -moz-appearance: textfield;
}

.product-qty .btn {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: transparent;
  color: #fff;
  border-color: var(--sm-btn-color);
}

.product-qty .btn:focus {
  border-color: var(--sm-btn-color);
  outline: none;
}

.product-qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-qty .dec-qty svg {
  font-size: unset;
}

.product-qty button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  background-color: #F0F0F0;
  color: #000;
}

.product-qty button.btn svg {
  width: 40px;
  height: 40px;
}

/* mainpage-categories-tabs start */
.mainpage-categories-tabs .nav-tabs li span.count {
  opacity: 0.7;
  font-size: 13px;
  color: #4c4c4c;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .05em;
  margin-left: 5px;
}

.mainpage-categories-tabs .owl-carousel .owl-item {
  display: block;
}

.white-rounded-box.p_tabs.mainpage-categories-tabs .tab-content {
  position: relative;
  padding: 0;
  overflow: visible;
  overflow-x: clip;
}

.white-rounded-box.p_tabs.mainpage-categories-tabs .tab-pane {
  position: fixed;
}

.white-rounded-box.p_tabs.mainpage-categories-tabs .tab-pane.active {
  position: relative;
}

.p_tabs .content {
  padding: 0;
}

.p_tabs .tab-pane {
  padding: 0;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.p_tabs .content .char-left {
  width: 30%;
  padding: 5px 0;
  border-bottom: 0;
  position: relative;
}

.p_tabs .content .char-left > span {
  padding-right: 15px;
  background: #fff;
  position: relative;
}

.p_tabs .content .char-left::before {
  content: '';
  display: inline-block;
  width: calc(100% - 20px);
  height: 1px;
  background: #eee;
  position: absolute;
  left: 0;
  top: 13px;
}

.p_tabs .content .char-right {
  padding: 5px 0;
  border-bottom: 0;
}

.p_tabs .nav-tabs .tablinks,
.p_tabs .nav-tabs {
  margin: 0;
  text-align: center;
  display: block;
  position: relative;
  user-select: none;
}

.p_tabs .nav-tabs > li {
  float: unset;
  margin-bottom: 0;
  display: inline-block;
}

.p_tabs .nav-tabs li .tablinks {
  cursor: pointer;
  margin: 0 30px;
  padding: 12px 0;
  font-size: 13px;
  color: var(--sm-text-color);
  opacity: 0.8;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
  transition: all 0.3s;
  border-radius: 0;
  background: transparent;
  border-bottom: 3px solid transparent !important;
  border-top: 3px solid transparent !important;
}

.p_tabs .nav-tabs > li > .tablinks .nobold,
.p_tabs .nav-tabs > li > a .nobold {
  font-weight: 400;
  font-size: 13px;
}

.articles-wrapper .news {
  margin: 0;
}

.articles-wrapper .row_news_customer_reviews {
  margin: 0;
}

#owl-carousel-articles {
  background-color: unset;
  background: unset;
  padding-bottom: 0;
}

#owl-carousel-articles .news_block_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#owl-carousel-articles .news_block_img {
  padding: 0;
  width: unset;
}

#owl-carousel-articles h5 {
  height: 35px;
}

#owl-carousel-articles p {
  margin: 0;
}

.form_enter .g-recaptcha {
  padding-bottom: var(--gap-m);
}

.form_enter .g-recaptcha:empty {
  display: none;
}

#modal_getLoginForm .modal-content {
  width: 344px;
}

#QuickBuyForm .g-recaptcha {
  padding-bottom: 10px;
  padding-left: 0px;
  margin-left: -17px;
}

#QuickBuyForm input.form-control {
  width: 304px;
  margin-left: -17px;
}
#modal_QuickBuy h1 {
  margin-inline: 15px;
  margin-bottom: 30px;
}

.contact_us_btn {
  font-size: 16px;
  background: var(--sm-btn-color);
  color: #fff;
  border-color: var(--sm-btn-color);
  line-height: normal;
}
.contact_us_btn:hover {
  background-color: #45a049;
  color: #fff;
  border-color: #45a049;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.modal-message {
  font-weight: bold;
  font-size: 1.5em;
  padding: 15px 20px;
  border-radius: 10px;
  display: block;
  margin: 20px auto;
  width: fit-content;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}
.modal-message.modal-error-message {
  color: #dc3545;
  background-color: #f8d7da;
  border: 3px solid #dc3545;
  animation: shake-error-modal 0.5s;
}

.modal-message.modal-succes-message {
  color: #fcfdfd;
  background-color: #219940;
  border: 3px solid #1f784d;
}

.modal-error-message::before {
  content: '⚠️';
  font-size: 1.5em;
  margin-right: 10px;
}

.modal-succes-message::before {
  content: '✔️';
  font-size: 1.5em;
  margin-right: 10px;
}

@keyframes shake-error-modal {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-wrap {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  background-color: #fff;
}

.article img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

.article .name {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.article .date {
  font-size: 0.9em;
  color: #888;
}

.tags a {
  display: inline-block;
  margin: 5px;
  font-size: 0.8em;
  color: #007bff;
  text-decoration: none;
}

.tags a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

input[name=password] {
  -webkit-text-security: disc;
  text-security: disc;
}


/* Cart coupon data */
.modal_coupon_block {
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: end;
}

.coupon-toggle-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  justify-content: end;
  font-size: 13px;
  transition: color .3s;
}

.coupon-toggle-container input {
  margin: 0;
}

.coupon-checkbox {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.coupon-toggle-label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

.modal_set_coupon {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 5px;
  margin-top: 10px;
  max-height: 0;
  overflow: clip;
  transition: all .3s ease;
}

.modal_set_coupon.active {
  height: auto;
  max-height: 200px;
}

.modal_set_coupon a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

#modal_show_coupon {
  cursor: pointer;
}

#modal_show_coupon:checked {
  display: block;
  background-color: #ffd400 !important;
  accent-color: #ffd400;
  border: solid 2px #ffd400;
  background-position: center;
  background-size: 10px;
}

.modal_set_coupon .apply_coupon_btn {
  display: flex;
  width: 120px;
  justify-content: center;
  align-items: center;
  height: 30px;
  background:#1283e4;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  border-radius: 4px;
  outline: none;
  border: none;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}

.modal_set_coupon .coupon_input {
  height: 30px;
  font-size: 13px;
}

.modal_set_coupon .coupon_text {
  position: relative;
  display: inline-flex;
  justify-content: end;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin: 0;
}

.modal_set_coupon .coupon_text svg {
  width: 10px;
  height: 10px;
  opacity: .5;
}


.modal_coupon_block .valid_coupon {
  color: green;
  margin-top: 5px;
}

.modal_coupon_block .coupon_response_invalid {
  color: red;
  margin-top: 5px;
}

.modal_coupon_block .valid_coupon{
  padding: 7px 10px 6px;
  border-radius:5px;
  box-shadow: 0 2px 5px 0 rgba(24, 191, 73, .1);
  border: 2px solid rgba(24, 191, 73, .2);
  background: rgba(24, 191, 73, .05);
  color: #41484e;
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  margin: 10px 0 0;
  display: flex;
  justify-content: space-between;
}

#modal_cart_popup .action_btn #monoCheckoutButton,
#modal_cart_popup .action_btn button {
  height: 30px;
  font-size: 13px;
}

#modal_cart_popup .action_btn #monoCheckoutButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

/*age popup*/
body.no-scroll{
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 100vh;
}

.age-verification-overlay {
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 20%);
  z-index: 9998;
  backdrop-filter: blur(3px);
}

#age-verification-popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  position: fixed;
  width: 600px;
  z-index: 9999;
  font-family: "Raleway";
}

#age-verification-popup .close_button{
  float: right;
  margin-bottom: 56px;
  line-height:40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 21px;
}

#age-verification-popup .popup-content {
  background: #EDDABD url(/templates/default/images/popup/age-verification-popup-bg.svg) center / cover no-repeat;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: auto;
  position: relative;
}

#age-verification-popup .popup-content h2{
  font-size: 32px;
  line-height: 110%;
  margin: 0 0 8px;
  clear: both;
}

#age-verification-popup .popup-content p{
  color: #8C857D;
  line-height: 150%;
  font-size: 16px;
  margin: 0 0 56px;
}

#age-verification-popup .button-container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

#btn-age-yes,
#btn-age-no {
  height: 48px;
  border-radius: 8px;
  border: none;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  width: calc(50% - 8px);
}

#btn-age-no {
  background: #B61722;
}

#btn-age-yes {
  background: #1F784D;
}

@media(max-width: 991px){
  #age-verification-popup{
    width: calc(100% - 48px);
    background: #EDDABD url(/templates/default/images/popup/age-verification-popup-bg.svg) 33% 14% / 160% no-repeat;
  }
}

@media(max-width: 768px){
  #age-verification-popup .popup-content h2{
    font-size: 24px;
  }

  #age-verification-popup .button-container {
    flex-direction: column-reverse;
    gap: 8px;
  }

  #btn-age-yes, #btn-age-no{
    width: 100%;
  }

  #age-verification-popup{
    background: #EDDABD url(/templates/default/images/popup/age-verification-popup-bg.svg) 33% 14% / 160% no-repeat;
  }

  #age-verification-popup .popup-content p {
    margin: 0 0 32px;
  }

  #age-verification-popup .popup-content{
    padding: 16px;
  }
}