/*
  Dz home header
*/

html {
  height: 100%;
  width:100%;
}

body {
  position: relative;
  top: 0;
  height: 100%;
}
button:focus {
  outline: 0;
}

a:active, /* активная/посещенная ссылка */
a:hover,  /* при наведении */
a {
  text-decoration: none;
  color: inherit;
}

.page-hr-top {
  margin-top: 70px;
}

.header {
  background-color: #262626;
  color: white;
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
}

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

.header-menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262626;
  height: 70px;
  width: 70px;
  min-width: 70px;
  border: none;

  display: none;
}

.hamburger-menu-icon {
  display: inline-block;
  margin-top: 5px;
}

.line-menu {
  margin: 6px;
  width: 30px;
  height: 2px;
  background-color: white;
}

.header-menu {
  margin: 0;
  padding: 0;

  list-style: none;
  display: flex;
  overflow: hidden;
  white-space: nowrap;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.header-menu li {
  padding: 27px 10px 27px 10px;
  font-size:13px;
}

.header-menu li:hover {
  background-color: #414141;
  color: #ffdb11;
  text-decoration: underline;
  cursor: pointer;
}

.header-shadow-menu-list {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  list-style: none;
  margin-top: 40px;
}

.header-shadow-menu-list li {
  padding: 10px 0 10px 0;
}

.header-shadow-menu-list li:hover {
  color: #ffdb11;
  text-decoration: underline;
  cursor: pointer;
}

.phone-position {
  display: flex;
  align-items: center;
}

.header-shadow-phone-wrapper {
  font-size: 20px;
}

.header-shadow-phone-wrapper p {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 16px;
}

.header-shadow-mail-wrapper {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.header-shadow-mail-wrapper span {
  margin-left: 10px;
}

.header-shadow-phone-wrapper span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-left: 10px;
  margin-top: 3px;
}

.header-menu-footer {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-top: 5px;
}

.header-menu-footer p {
  margin: 5px 0 5px 0;
  text-decoration: underline;
}

.header-menu-footer p:hover {
  color: #ffdb11;
}

.header-social-icons {
  display: flex;
  flex-wrap: nowrap;
  cursor: pointer;
  color: #939393;
}

.header-social-icons i {
  padding: 10px;
}

.header-social-icons i:hover {
  color: white;
}

.menu-popup {
  background: #fff!important;
  display: none;
  position: fixed;
  top: -20px; left: 0; right: 0; bottom: -20px;
  z-index: 9999999999999999999999999999999999999999!important;
  overflow: auto;
}

.shadow-menu-wrapper {
  background-color: white;
}

.disable-menu {
  display: none !important;
}
.header-close-button {
  cursor: pointer;
  padding: 0 5px 0 5px;
  border: none;
  background: none;
  font-size: 30px;
  position: fixed;
  right: 35px;
  top: 20px;
}

.top-grey-line {
  border-top: 1px #e5e5e5 solid;
}

.shadow-page-for-menu {
  position: fixed;
  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;

  display: none;
}

/* Desktop */
.shadow-menu {
  padding: 20px 40px 20px 40px;
}

@media (max-width: 1200px) {
  .header-menu li {
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .active-shadow-for-page {
    display: block !important;
  }
  .header-menu-button {
    display: inline-block;
  }

  .header-menu {
    display: none;
  }
  .menu-popup {
    display: block;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .header-menu-button {
    display: inline-block;
  }

  .header-menu {
    display: none;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .shadow-menu {
    padding: 20px 0 20px 0;
  }
  .mobile-background {
    background-color: white;
  }
  .header-close-button {
    right: 30px;
  }
}
/* End header menu */

/* second header */

.second-header-buttons {
  display: flex;
  justify-content: flex-end;
}

.second-header-buttons button {
  background-color: #262626;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-left: 10px;
}

.second-header-buttons-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .second-header-buttons-wrapper {
    display: block;
  }
}

.second-header-contacts {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;

  font-size: 16px;
  margin-left: 5px;
}

.second-header-phone-description {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-style: italic;

  font-size: 10px;
}
.second-header-wrapper {
  padding-bottom: 5px;
  margin-bottom: 20px;

  box-shadow: 0 10px 10px 0 rgba(200, 200, 200, 0.7);
}

.second-header {
  padding: 25px 0 19px 0;
}
.second-header-logo {
  width: 100%;
}

.second-header-company-name {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.second-header-company-name div {
  font-weight: bold;
  font-size: 16px;
}

.second-header-company-name span {
  color: #ffdb11;
}

.second-header-links {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: bold;
  text-align: right;
}

.second-header-links ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.second-header-links li {
  text-decoration: underline;

  margin: 4px 0 4px 0;
}

.second-header-links ul li:hover {
  color: #ffdb11;
}

.second-header-bottom-line {
  width: 100%;

  border-bottom: 1px solid #ffdb11;
}

@media (max-width: 1200px) {
  .second-header-links {
    font-size: 9px;
  }
  .second-header-company-name {
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
  }

  .second-header-contacts {
    font-size: 12px;
  }

  .second-header-phone-description {
    font-size: 8px;
  }

  .second-header-links {
    font-style: 12px;
  }
}

@media (max-width: 992px) {
  .second-header-md-space {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .second-header-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .second-header-text-wrapper {
    display: none;
  }

  .second-header-wrapper .col-xl-2 {
    display: none;
  }
}

/* end second header */

/* Преимущества */

@media screen and (max-width: 768px) {
  .adv-title-img {
    max-width: 120px;
  }
}

.advantages-wrapper {
  background: url("../images/repeat_grey_bg.jpg");
  padding: 35px 0 35px 0;
}

.advantages-card {
  position: relative;
  margin-bottom: 25px;
  z-index: 9;
}

.adv-title-img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.adv-card-text {
  display: flex;
  height: 100%;
  width: 100px;
  align-items: center;
  margin-left: 55%;
}

.adv-card-content-text {
  z-index: 90;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffdb11;
}

.adv-shadow-img {
  position: absolute;
  right: 0;
  top: 0;
}

.advantages-card-white {
  height: 110px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
}

/* Конец преимуществ */

/* start manufacturers section, file - manufacturers.html */

.manf-bt-all {
  border-width: 1px;
  border-color: rgb(38, 38, 38);
  border-style: solid;
  border-radius: 6px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: rgb(38, 38, 38);
  text-align: right;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  margin-left: 5px;
}

.manf-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.manf-text {
  font-size: 22px;
  font-family: "Montserrat", "Open Sans", sans-serif;
  color: rgb(18, 18, 18);
  font-weight: bold;
  text-align: left;
}

hr {
  background-color: #ffdb11;
  width: 100%;
  height: 1px;
}

.manf-bkgr {
  margin-top: 10px;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
  width: 100%;
  max-width:1110px!important;
}

.manf-a {
  width: 100%;
  height: auto;
  margin: 10px 0 10px 0;
  border:1px solid transparent;
  transition:300ms;
}

.manf-a-mob {
  width: 100%;
  height: auto;
  margin: 10px 0 10px 0;
}

.manf-a:hover,
.manf-a-mob:hover {
  border-color:#ffdb11;

  border-radius: 6px;
}

.manf-bt-all-mob {
  border-width: 0;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  border-radius: 0;
  font-size: 0;
  font-family: "Open Sans", sans-serif;
  color: rgb(255, 255, 255);
  text-align: left;
  text-decoration: none;
  margin-right: 5px;
}

a:hover {
  text-decoration: none;
  color: unset;
}

@media (max-width: 768px) {
  .manf-a-mob {
    display: none;
    padding: 0;
    margin: 0;
  }
  .manf-bt-all {
    border-width: 0;
    border-color: #ffffff;
    border-style: solid;
    border-radius: 0;
    font-size: 0;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
  }
  .manf-bt-all-mob {
    border-width: 1px;
    border-color: rgb(38, 38, 38);
    border-style: solid;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    color: rgb(38, 38, 38);
    text-align: right;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
    margin-top: 10px;
  }
  .manf-bt {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  /* start manufacturers section, file - manufacturers.html */
}

/* end manufacturers section, file - manufacturers.html */

/* feedback */

/* start feedback section  */

.fb-bkgr {
  background-image: -moz-linear-gradient(90deg, #ffdb11 0%, #ffdb11 100%);
  background-image: -webkit-linear-gradient(90deg, #ffdb11 0%, #ffdb11 100%);
  background-image: -ms-linear-gradient(90deg, #ffdb11 0%, #ffdb11 100%);
  margin-top: 20px;
  width: 100%;
  height: auto;

  position: relative;

  padding-bottom: 50px;
  box-sizing: content-box;
}

.fb-girl {
  position: absolute;

  bottom: 0;
  background: url("/bitrix/images/baba.png") no-repeat top center / cover;
  width: 500px;
  height: 415px;
  margin-bottom: -50px;
}

.fb-input-nse {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 50px;
  margin: 10px 0;
  padding: 0 15px;
}

.fb-input-submit {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(38, 38, 38);
  width: 170px;
  height: 50px;
  color: white;
  text-align: center !important;
  cursor: pointer;
}

.fb-text {
  margin-top: 80px;
  position:relative;
  right:-60px;
}
.fb-text-wrapper-position {
  display: flex;
  justify-content: flex-end;
}

.fb-text-title {
  font-size: 22px;
  font-family: "Montserrat", "Open Sans", sans-serif;
  color: rgb(18, 18, 18);
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}

.fb-text-s {
  font-size: 12px;
  font-family: "Open Sans";
  color: rgb(18, 18, 18);
  line-height: 1.2;
  text-align: left;
  width: 230px;
}

.fb-text-m {
  display: none;
}

.fb-info {
  margin-top: 50px;
}

@media (max-width: 764px) {
  .fb-girl,
  .fb-girl-red {
    display: none;
  }

  .fb-text-title {
    font-size: 22px;
    font-family: "Montserrat", "Open Sans", sans-serif;
    color: rgb(18, 18, 18);
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
  }

  .fb-text-s {
    font-size: 13px;
    font-family: "Open Sans";
    color: rgb(18, 18, 18);
    line-height: 1.2;
    width: 100%;
    text-align: left;
  }

  .fb-text-m {
    display: inline;
  }

  .fb-bkgr {
    padding-bottom: 15px;
  }

  .fb-input-submit {
    width: 100%;
  }
  /* end feedback section  */
}

@media (max-width: 1200px) {
  /* start feedback section  */

  .fb-bkgr {
    background-image: -moz-linear-gradient(90deg, #ffdb11 0%, #ffdb11 100%);
    background-image: -webkit-linear-gradient(90deg, #ffdb11 0%, #ffdb11 100%);
    background-image: -ms-linear-gradient(90deg, #ffdb11 0%, #ffdb11 100%);
    margin-top: 20px;
    width: 100%;
    height: auto;
  }

  .fb-girl,
  .fb-girl-red {
    background: url("/bitrix/images/baba.png") no-repeat top center / cover;
    width: 500px;
    height: 400px;
    margin-left: -155px;
    margin-top: 50px !important;
  }

  .fb-text {
    display: none;
  }

  .fb-info {
    margin-top: 30px;
  }

  .fb-text-m {
    display: inline;
  }
}

/* end feedback */

/*

Popular start

*/

body a:active, /* активная/посещенная ссылка */
body a:hover,  /* при наведении */
body a {
  text-decoration: none;
  color: inherit;
}

.popular-secion {
  padding-top: 50px;
  padding-bottom: 50px;
}

.popular-preview {
  width: 100%;
  padding: 0;
  max-height:100%;
}

.popular-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 154px;
  width: 154px;
}

.popular-category-title {
  margin-top: 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  width: 100%;
  text-align:center;
}

.home-prev-button {
  margin-left: 10px;
}

.home-next-button {
  margin-right: 10px;
}

.popular-prev-button,
.popular-next-button {
  border: none;
  background: none;

  border: 1px solid #292929;
  color: #292929;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;

  margin-left: 10px;

  margin-top: 10px;
}

.xs-popular-buttons {
  display: flex;
  justify-content: flex-end;
}

.popular-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 10px;
}

.md-popular-buttons {
  display: none;
}

@media screen and (min-width: 768px) {
  .sc2 .swiper-slide {
    border-right: none !important;
  }

  .sc2 .swiper-slide:hover {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15), inset 0 0 0 1px #ffdb11;
  }

  .popular-prev-button,
  .popular-next-button {
    margin-top: 0;
  }
  .popular-category-title {
    font-size: 12px;
  }

  .md-popular-buttons {
    display: flex;
    justify-content: flex-end;
  }

  .xs-popular-buttons {
    display: none;
  }
}

@media screen and (min-width: 996px) {
  .popular-category-title {
    font-size: 12px;
  }

  .sc2 .swiper-slide {
    border-right: 1px solid #cccccc;
    line-height: 1.1em;

    height: auto !important;

    padding: 10px 25px 25px 25px;
  }
}

.sc2 {
  border-radius: 6px;
  border: 1px solid #cccccc;
  background-color: transparent;
  width: 100%;
  margin-top: 0;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.sc2 .swiper-slide {
  border-right: 1px solid #cccccc;
  line-height: 1.1em;

  height: auto !important;

  padding: 10px 15px 15px 15px;
}

.sc2 .swiper-slide div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Popular end */

/* start description */

.description {
  padding-left: 10px;
  padding-top: 40px;
  padding-bottom: 65px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
.invisibility {
  display: none;
}

.activecam {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.dpn-indentation h2 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .activecam {
    width: 100%;
    height: auto;
    margin: 15px 0 20px 0;
  }

  .invisibility {
    display: inline;
    margin-left: 15px;
  }
  .invisibility h2 {
    width: 100%;
  }
  .dpn-indentation h2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .invisibility {
    display: inline;
    margin-left: 15px;
  }
  .invisibility h2 {
    width: 100%;
  }
  .dpn-indentation h2 {
    display: none;
  }

  .activecam {
    width: 100%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;

    margin: 10px 0 15px 0;
  }
}

/* close description */

/* Start Footer home page */
.footer {
  padding: 50px 0 50px 0;
  background-color: #262626;
}
.footer-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #9d9d9d;
}

.footer-logo {
  margin-top: 10px;
  width: 230px;
}

.footer-adress {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 10px;
}

.footer-contacts {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #ffffff;
}

.footer-mail {
  margin-top: 10px;
}

.footer-free-call {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 12px;
  color: #9d9d9d;
  margin-left: 15px;
}

.footer-links-wrapper {
  border-left: 1px solid #9d9d9d;
  color: #9d9d9d;

  display: flex;
  justify-content: space-between;
  padding-left: 80px;
}

.footer-links-title {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #ffffff;
  display: inline;
  border-bottom: 1px solid #ffdb11;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;

  font-family: "Open Sans", sans-serif;
  color: #c9c9c9;
  font-size: 13px;

  margin-top: 15px;
}

.footer-links-list li {
  padding: 4px 0 4px 0;
}

.footer-links-list li:hover {
  color: white;
}

.footer-position-flex {
  display: flex;
}

.footer-position-flex ul {
  width: 100%;
}

.footer-first-list {
  padding-right: 10px;
}

.footer-copiraiting {
  display: flex;
  justify-content: space-between;

  color: #9d9d9d;
  margin-top: 50px;

  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}

.footer-underlist-style {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-links-wrapper {
    padding-left: 0;
    border: none;
    margin-top: 50px;
  }

  .footer-first-list {
    padding-right: 80px;
  }

  .footer-float-logo {
    display: flex;
  }

  .footer-adress {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .footer-first-list {
    padding-right: 0;
  }
  .footer-position-flex {
    flex-direction: column;
  }
  .footer-copiraiting {
    flex-direction: column-reverse;
    margin-top: 20px;
  }

  .footer-company-name {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-float-logo {
    flex-direction: column;
  }

  .footer-first-list {
    padding-right: 0;
  }

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

  .footer-links-wrapper {
    flex-direction: column;
  }

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

  .footer-links-wrapper {
    margin-top: 0;
  }

  .footer-info-block,
  .footer-catalog-block {
    margin-top: 30px;
  }

  .footer-copiraiting {
    flex-direction: column-reverse;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer-links-list {
    font-size: 16px;
  }
}
/*End Footer home page */

/* Catalog menu and slider */
.catalog-nav-separator {
  height: 1px;

  background-color: #cccccc;
  margin: 10px 15px;
}

.catalog-nav-all-manf {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0 15px 15px 15px;
  width: calc(100% - 30px);
  padding: 10px 13px 10px 13px;

  border-radius: 6px;
  background-color: #ffdb11;
  border: none;

  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.catalog-nav-all-manf img {
  margin-right: 10px;
  width: 15px;
}
.catalog-filters-wrapper2 .section_menu_search{
  margin-bottom: 12px;
}
.catalog-menu-button {
  text-align: left;
  border-radius: 6px;
  background-color: rgb(38, 38, 38);
  color: white;
  width: 100%;
  text-align: left;

  padding-left: 20px;
  border: none;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;

  height: 50px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.catalog-filters-wrapper2 .catalog-menu-button{
  margin-top: 0;
}

.catalog-menu-button img {
  font-size: 18px;
  color: #ffdb11;
  margin-right: 15px;
}

.catalog-search {
  margin-top: 20px;
  display: flex;
  height: 50px;
  background-color: #efefef;
  border-radius: 6px;
}
.catalog-to-nalik label span span{
  line-height: 17px;
}

.catalog-search input:focus {
  outline: none;
  border: 1px solid #ffdb11;
  border-right: none;
  padding-left: 19px;
}

.catalog-search input {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding-left: 20px;
  width: 100%;
  border-radius: 6px;
  border: none;
  background-color: #efefef;
}

.catalog-search button {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  width: 170px;
  border-radius: 6px;
  background-color: #FFC700;
  color: black;
  border: none;
}

/* slider */
.sc1 {
  margin-top: 20px;
  width: 100%;
  min-height: 50px;
  background-color: rgb(114, 114, 114);
}

.swiper-button-prev,
.swiper-button-next {
  background-color: white;
  padding: 0 20px 0 20px;
  border-radius: 6px;
}

.sc1 .swiper-slide img {
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: rgba(0,0,0,0.8) !important;
  border:2px solid #fff!important;
  width:10px!important;
  height:10px!important;
}

.swiper-pagination-bullet-active {
  background-color: #000 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: black;
  font-size: 18px !important;
}

.sc1 .swiper-slide > div {
  position: absolute;
  top: 40px;
  right: 0;

  padding-right: 40px;

  width: 40%;
  height: 100%;
}

.sc1 .swiper-slide > div > h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.sc1 .swiper-slide > div > span {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.sc1 .swiper-slide > div > p {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 12px;
  margin-top: 10px;
}

@media screen and (max-width: 576px) {
  .sc1 .swiper-slide > div > h4 {
    position: absolute;
    top: 3px;
    font-size: 16px;
  }

  .sc1 .swiper-slide > div > span {
    font-size: 9px;
  }

  .sc1 .swiper-slide > div > p {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sc1 .swiper-slide > div > p {
    position: absolute;
    bottom: 25px;
    color: white;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 20px;
  }

  .sc1 .swiper-slide > div > span {
    position: absolute;
    bottom: 55px;
    color: white;
    margin-top: 10%;
    margin-left: 20px;
  }

  .sc1 .swiper-slide > div {
    top: 5px;

    padding-right: 5px;

    width: 60%;
    height: 100%;
  }
}
/* end slider */
.cards-sale-slider {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow: hidden;
  /*overflow-x: scroll;*/
  margin-top: 20px;
  padding-bottom: 66px;
}



.cards-sale-card {
  position: relative;
  color: white;
}

.cards-sale-card img {
  width: 220px;
}

.card-sale-text-wrapper {
  margin-left: 10px;
  position: absolute;
  bottom: 0;
  padding: 8px;
}
.cards-sale-card p {
  margin: 0;

  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.cards-sale-card h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.cards-sale-card span {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .cards-sale-card img {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .cards-sale-card img {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .cards-sale-card {
    margin-right: 20px;
  }

  .cards-sale-card img {
    width: 250px;
  }
}

/* Catalog end */

.asd-page-title {
  font-family: "Montserrat", "Segoe UI", Tahoma, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* Может понравиться */

.like-you-section {
  padding-top: 50px;
}

.popular-prev-button,
.popular-next-button {
  border: none;
  background: none;

  border: 1px solid #292929;
  color: #292929;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;

  margin-left: 10px;

  margin-top: 10px;
}

.xs-popular-buttons {
  display: flex;
  justify-content: flex-end;
}

.popular-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 10px;
}

.md-popular-buttons {
  display: none;
}

@media screen and (min-width: 768px) {
  .popular-prev-button,
  .popular-next-button {
    margin-top: 0;
  }
  .popular-category-title {
    font-size: 12px;
  }

  .md-popular-buttons {
    display: flex;
    justify-content: flex-end;
  }

  .xs-popular-buttons {
    display: none;
  }
}

@media screen and (min-width: 996px) {
  .popular-category-title {
    font-size: 10px;
  }
}

.sc3 {
  border-radius: 6px;

  background-color: transparent;
  width: 100%;
  margin-top: 0;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 0 !important;
}
.sc3 .swiper-slide {
  line-height: 1.1em;

  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
}

.scLikeYou {
  padding: 20px !important;
}

.scLikeYou .swiper-slide:hover {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15), inset 0 0 0 1px #ffdb11;
}
.scLikeYou .swiper-slide {
  line-height: 1.1em;

  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
}

.product-card-price-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-cart-icon,
.product-cart-icon .btn-to-basket {
  background-color: #ffc700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.product-cart-icon .btn-to-basket {
  width: 100%;
}

.product-cart-icon img {
  width: 17px;
}

.product-card-price-wrapper {
  margin-left: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  color: #121212;
  font-weight: 400;
}

.product-card-price {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.product-card-type {
  background-color: #ffc700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #121212;
  font-weight: 400;

  padding: 6px 0 6px 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  position: relative;
}
.product-card-header-icons-wrapper {
  position: absolute;
  right: 5px;
  top: 5px;
}

.product-card {
  padding-top: 10px;
}

.product-card-header-icons-wrapper img {
  margin-right: 10px;
}

.product-card-preview-wrapper {
  width: 100%;
  max-height: 300px;

  display: flex;
  justify-content: center;

  padding: 10px 20px 20px 20px;
  height: 155px;
  position: relative;
}

.product-card-preview-wrapper a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-card-preview-wrapper img {
  width: auto;
  max-width: 100%;
  height: 155px;
  object-fit: contain;
}

.product-card-text-coupon {
  position: absolute;
  right: 0;
  top: 10px;
  background: #f00000;
  z-index: 5;
  height: 26px;
  line-height: 26px;
  padding: 0 23px 0 13px;
  font-weight: bold;
  font-size: 11px;
  color: #fff;
}

.product-card-preview-wrapper .product-card-text-coupon,
.product-row-preview-image-wrapper .product-card-text-coupon {
  padding: 0 10px;
  white-space: nowrap;
}

.product-row-preview-image-wrapper .product-card-text-coupon {
  right: -30px;
}

.product-card-text-coupon:before, .product-card-text-coupon:after {
  position: absolute;
  right: 100%;
  content: "";
  border-left: 8px solid transparent;
}

.product-card-text-coupon:before {
  top: 0;
  border-top: 13px solid #f00000;
}

.product-card-text-coupon:after {
  bottom: 0;
  border-bottom: 13px solid #f00000;
}

.product-card-title {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: #121212;
  font-weight: 400;
}

.product-card-text-wrapper {
  padding: 15px;
}

.product-card-article {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #121212;
  font-weight: 700;
}

.product-card-article-value {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #121212;
  font-weight: 400;
}

.product-card-description {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #121212;
  font-weight: 400;
  margin-top: 8px;

  display: none;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .product-card:hover .product-card-description {
    display: block;
  }
}

.line-clamp-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Конец может понравиться */

/* HOT SECTION */

.sc4 {
  border-radius: 6px;

  background-color: transparent;
  width: 100%;
  margin-top: 0;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 0 !important;
}
.sc4 .swiper-slide {
  line-height: 1.1em;
  background-color: rgb(255, 255, 255);
  border: 0 none;
}


.hot-prev-button,
.hot-next-button {
  border: none;
  background: none;

  border: 1px solid #292929;
  color: #292929;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;

  margin-left: 10px;
}

.hot-product-section {
  padding-top: 20px;
  min-height: 690px;
}

.hot-tabs-buttons-wrapper button {
  background-color: white;
  border-width: 1px;
  border-color: rgb(38, 38, 38);
  border-style: solid;
  border-radius: 6px;
  margin-right: 5px;

  padding: 8px 40px;

  cursor: pointer;

  margin-top: 20px;
}

.active-hot-button {
  border: none !important;
  background-color: #ffdb11 !important;
}

#promotions,
#sellout,
#new {
  width: 100%;
}

/* END HOT SECTION */

/* Catalog page styles */

.filter-checkbox-custom {
  width: 17px;
  height: 17px;
  border: 1px solid #d1d1d1;
  background-color: #ffffff;
  margin-right: 10px;

  position: relative;
}

.filter-checkbox-custom img {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 15px;
  height: 14px;

  display: none;
}

.filter-one-filter input:checked + div > img {
  display: inline;
}

.filter-one-filter label {
  display: flex;
  align-items: center;
}
.filter-one-filter input {
  display: none;
}

.catalog-page-catalog-wrapper {
  display: none;
  position: absolute;
  z-index: 50;
}

.catalog-page-catalog-wrapper-active {
  display: block !important;
}

/* .catalog-wrapper-index-default {
  display: none;
}

@media (min-width: 992px) {
  .catalog-wrapper-index-default {
    display: block !important;
  }
} */

.catalog-filters-wrapper {
  display: none;
}

.catalog-filtes {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
}

.catalog-page-catalog-wrapper {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .catalog-filters-wrapper {
    display: block;
  }

  .catalog-page-catalog-wrapper {
    width: auto;
  }
}

.navigation-wrapper {
  margin: 20px 0 20px 0;
}

.catalog-filtes {
  padding: 20px 0 20px 0;
}

.price-filter {
  padding: 0 20px 20px 20px;
}

.catalog-filtes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-filtes > ul {
  border-bottom: 1px solid #c7c7c7;
}

.filter-drop {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 6px 20px 6px 20px;
}

.filter-drop-wrapper {
  border-top: 1px solid #c7c7c7;

  overflow: hidden;
}

.filter-drop-checkboxs {
  margin: 10px 20px;

  border-radius: 6px;
  background-color: #efefef;
  display: none;
}

.filter-drop-all {
  margin: 10px 20px;
  padding: 10px 15px 0 15px;
  border-radius: 6px;
  background-color: #efefef;
  display: none;

  font-family: "Open Sans", sans-serif;
  font-size: 12px;

    max-height: 310px;
    overflow: hidden;
    overflow-y: auto;
}

.filter-one-filter {
  display: flex;
  align-items: center;
}

.filter-one-filter input {
  margin-right: 10px;
}
.filter-one-filter label {
  width: 100%;
  padding: 2px 0 2px 0;
}

.active-fil {
  display: block !important;
}

.filters-clear-all-wrapper {
  display: flex;
  justify-content: center;
}

.js-clear-sliders {
  cursor: pointer;
  margin: 20px 0 0 0;
  background-color: transparent;

  border-radius: 6px;
  border: 1px solid #898989;

  padding: 7px 20px 7px 20px;

  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #898989;

  display: flex;
  align-items: center;
}

.js-clear-sliders i {
  margin-right: 5px;
}

.pop-up-filter-show {
  position: absolute;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
  z-index: 30;

  top: 0;
  margin-left: 50%;
  padding: 5px;

  display: none;
}

.pop-up-filter-show span {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
  padding: 10px;
}

.pop-up-filter-show button {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background-color: #ffdb11;

  cursor: pointer;
}

/* price slider */

.filter-price__slider {
  margin-bottom: 20px;
  margin-top: 20px;
}
.filter-price__slider.noUi-horizontal {
  height: 10px;
  background-color: #efefef;
  border: none;
  box-shadow: none;
}
.filter-price__slider .noUi-connect {
  background-color: #ffdb11;
}
.filter-price__slider .noUi-handle-lower {
  right: -10px !important;
}
.filter-price__slider .noUi-handle-upper {
  right: 0 !important;
}
.filter-price__slider .noUi-handle {
  width: 11px;
  height: 22px;
  border-radius: 30%;
  background: #262626;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  top: -6px;
}
.filter-price__slider .noUi-handle::after,
.filter-price__slider .noUi-handle::before {
  display: none;
  width: auto;
  height: auto;
  background: transparent;
  left: auto;
  top: auto;
}
.filter-price__slider .noUi-handle.noUi-handle-lower::before,
.filter-price__slider .noUi-handle.noUi-handle-upper::before {
  display: block;
  font-size: 12px;
  top: -14px;
  color: #565b61;
}

.filter-price__field {
  width: 80px;
  border-radius: 6px;
  border: solid 1px #c7c7c7;
  padding: 8px 10px;
  text-align: center;

  margin: 0 5px 0 5px;
}

/* end price slider */

.catalog-filtes {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;

  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.catalog-filter-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

/*Sort row */

.catalog-sort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #121212;
  margin-top: 16px;
}
.sect-items ~ #smart-title-search{
  margin-top: -55px;
}
.catalog-sort-row select {
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 5px;

  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;

  padding-right: 22px;
  padding-left: 5px;

  background: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg>');
  background-size: 12px;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: 8px;
}
.catalog-bread-row .navigation-wrapper{
  margin: 10px 0 10px 0;
}
.catalog-filter-button-md {
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 10px;

  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;

  padding-right: 44px;
  padding-left: 22px;

  background: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg>');
  background-size: 12px;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: 13px;
}

.catalog-filter-button-md i {
  margin-right: 5px;
}

.catalog-sort-span {
  display: flex;
  align-items: center;
  padding-right: 10px;

  font-weight: 600;
}
.catalog-sort-per-page-select-wrapper {
  display: flex;
  flex-direction: column;
}

.catalog-per-view-buttons {
  background: transparent;
  border-radius: 4px;
  padding: 4px 10px;
  border: 1px solid #c7c7c7;
  text-decoration: underline;
  cursor: pointer;
}

.catalog-per-view-buttons-active {
  color: #ffс700 !important;
  text-decoration: none;
}

.catalog-cards-view-style-wrapper {
  display: flex;
}

.catalog-cards-view-style-wrapper button {
  background: transparent;
  border-radius: 4px;
  padding: 0;
  border: 1px solid #c7c7c7;
  margin-left: 5px;
  cursor: pointer;
  width: 44px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catalog-cards-view-style-wrapper button svg{
  width:17px;
}
#svg_column {
  fill: #c7c7c7;
}

#svg_row {
  fill: #ffc700;
}

@media screen and (min-width: 992px) {
  .catalog-filter-button-md {
    display: none;
  }

  .catalog-sort-per-page-select-wrapper {
    flex-direction: row;
  }
}

@media screen and (max-width: 992px) {
  .catalog-sort-per-page {
    margin-top: -25px;
  }
  .catalog-sort-row {
    margin-top: 15px;
  }
  .catalog-sort-row select {
    margin-top: 5px;
  }
}

@media screen and (max-width: 768px) {
  .catalog-sort-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-cards-view-style-wrapper {
    display: none;
  }

  .catalog-sort-per-page {
    display: flex;
    flex-direction: row;

    margin-top: 10px;
  }

  .catalog-per-view-buttons-wrapper {
    margin-top: 10px;
  }
}
/* End sort row */

/* Cards catalog */

.catalog-product-card {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
  padding-bottom: 10px;
  margin-top: 20px;
  min-height: 440px;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .catalog-product-card:hover {
    z-index: 80;
    position: relative;
    left: initial;
    right: initial;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15), inset 0 0 0 1px #ffdb11;
      /*height: 560px;*/
  }
  .catalog-product-card:hover .product-card-description {
    display: block;
  }
}

.catalog-product-card .product-card-text-wrapper {
  min-height:220px;
}

/* end cards catalog */

.product-row-type {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);

  margin-top: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  align-items: stretch;
  padding: 10px;

  position: relative;
}

.product-row-text {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #121212;
  font-weight: 400;
  margin: 0;
  margin-top: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  max-width: 200px;
}

.product-row-title {
  margin-bottom: 2px;
}

.product-row-type-sale {
  position: absolute;
  top: 20px;
  left: 0;

  background-color: #ffdb11;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #121212;
  font-weight: 400;

  padding: 6px 20px 6px 20px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: 5;
}

.product-row-buy-section {
  border-radius: 6px;
  border: 1px solid #c9c9c9;
  padding: 10px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  position: relative;
}

.product-row-buy-section button {
  background-color: #ffdb11;
  border: none;
  border-radius: 6px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  white-space: nowrap;

  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.catalog-show-more-product {
  width: 100%;
  display: flex;
  justify-content: center;
}

.catalog-show-more-product button {
  background-color: transparent;
  padding: 10px 25px;
  border-width: 2px;
  border-color: #ffdb11;
  border-style: solid;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.catalog-nav-pagination {
  margin-top: 20px;
}
.catalog-nav-pagination-news {
  text-align: center;
}
.catalog-nav-pagination-news .catalog-pagination-wrapper {
  display: inline-flex;
  float: left;
  margin-top: 5px !important;
}
.catalog-nav-pagination-news .catalog-show-more-product {
  display: inline-flex;
}

.catalog-pagination-pages-numbers {
  display: flex;

  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;

  padding: 0 15px;
}

.catalog-pagination-pages-numbers div {
  padding: 5px 10px;
  text-decoration: underline;
}

.fa-user-arrow-hover:hover {
  color: #ffdb11;
  cursor: pointer;
}

#catalog-active-page {
  border: 1px #c7c7c7 solid;
  border-radius: 6px;
  text-decoration: none !important;
  color: #ffdb11;
}

@media screen and (min-width: 768px) {
  .catalog-show-more-product {
    width: auto;
  }

  .catalog-pagination-wrapper {
    margin: 0 !important;
  }
}

.catalog-pagination-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-pagination-wrapper i {
  font-size: 22px;
}

.product-row-buy-section button img {
  margin-right: 10px;
  width: 16px;
}
.catalog-products-row-wrapper {
}

.product-row-icons-wrapper {
  position: absolute;
  top: 10px;
  left: 15px;
}

.product-row-price-wrapper {
  margin: 0;
  margin-bottom: 10px;
}

.product-row-price-wrapper span {
  font-size: 16px;
}

.product-row-desc {
  font-size: 12px !important;
}

.product-row-preview-image-wrapper {
  display: flex;
  align-items: center;
  max-width: 170px;
  padding-left: 10px;
  position: relative;
}

.product-row-icons-wrapper img {
  margin-right: 7px;
}
/*.catalog-product-cards-wrapper {
  display: none;
}

@media screen and (max-width: 768px) {
  .catalog-products-row-wrapper {
    display: none !important;
  }
  .catalog-product-cards-wrapper {
    display: block !important;
  }
}*/

/* End Catalog page styles */

/* Navigation on page */

.page-navigation:first-child {
  margin: 0;
  margin-right: 7px;
}
.page-navigation-active {
  color: #ffdb11 !important;
  text-decoration: underline;
}

.page-navigation {
  font-size: 14px;
  color: rgb(87, 87, 87);
  line-height: 1.2;
  text-align: left;
  margin: 0 7px;
}

.page-navigation:hover {
  color: #ffdb11;
  text-decoration: underline;
}

/* Navigation on page end */

/* Product card styles */

/* last-see-product */

.last-see-product {
  background-color: #efefef;
  margin-top: 50px;
  padding: 30px 0 10px 0;

  min-height: 650px;

  position: relative;
}
@media screen and (min-width: 768px) {
  .last-see-product {
    min-height: auto;
    height: auto;
  }
}

@media screen and (min-width: 992px) {
  .last-see-product {
    background-color: #efefef;
    margin-top: 50px;
    padding: 30px 0 10px 0;
    position: relative;
  }
  .like-you-section {
    min-height: 610px;
  }
}

.product-page-margin {
  margin-top: 0;
}

.product-page-show-all-button {
  color: black;
  border-radius: 6px;
  background-color: rgb(255, 219, 17);
  border: none;
  border-radius: 6px;
  padding: 15px 35px;

  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;

  margin-top: 10px;

  display: none;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;

  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .product-page-show-all-button {
    display: inline-block;
  }
}

/*last-see-product end */

/* Product buy too */

.product-buy-too-section {
  padding: 0;
  padding-top: 20px;
}

@media screen and (min-width: 576px) {
  .product-buy-too-section {
    padding: 35px 30px;
  }
}

.buy-too-slider-wrapper {
  box-shadow: 0 5px 20px rgba(2, 4, 5, 0.15);
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
  padding: 35px 30px 10px 30px;
}

.buy-too-slider {
  display: flex;
  align-items: center;

  margin-top: 25px;

  overflow-x: scroll;
  padding: 15px 15px 20px 15px;
}

.buy-too-slider i {
  margin: 0 20px;
}

.buy-too-slider .swiper-slide {
  width: 230px;

  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
}

.buy-too-slider .swiper-slide:hover {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15), inset 0 0 0 1px #ffdb11;
}

.buy-too-sum {
  box-shadow: 0 5px 20px rgba(2, 4, 5, 0.15);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #ffffff;

  position: relative;

  padding: 100px 20px;

  display: flex;

  justify-content: center;
  align-items: center;
}

.buy-too-sum-desc {
  color: #1d1d1d;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.buy-too-sum-sale {
  color: #575757;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;

  margin: 0;

  margin-top: 15px;
}
.buy-too-sum-sale > span {
  color: #f2a40c;
  text-decoration: underline;
}

.buy-too-cart-button {
  display: flex;
  align-items: center;
  border: none;

  padding: 13px 20px;
  border-radius: 6px;
  background-color: #ffdb11;

  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;

  margin-top: 30px;
}

.buy-too-cart-button img {
  margin-right: 10px;
  width: 16px;
}

.buy-too-eq-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 20px;

  font-size: 14px;
}

.buy-too-sum-help {
  position: absolute;
  display: flex;
  align-items: center;
  right: 15px;
  top: 15px;

  color: #f2a40c;

  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.buy-too-sum-help-icon-wrapper {
  border-radius: 100%;
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #f2a40c;
  padding: 3px;
  margin-left: 6px;
  font-size: 8px;
}

.buy-too-last-card-space {
  width: 50px;
  height: 50px;
  background-color: red;
}

@media screen and (max-width: 767px) {
  .buy-too-sum {
    flex-direction: column;

    padding: 60px 0 60px;
  }

  .buy-too-eq-wrapper {
    margin: 0;
    margin-bottom: 30px;
  }

  .buy-too-sum-help {
    right: 15px;
    top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .buy-too-sum-help {
    right: 15px;
    top: 30px;
  }
  .buy-too-sum-text-wrapper {
    display: flex;
    align-items: flex-end;
  }

  .buy-too-sum {
    align-items: flex-end;
  }

  .buy-too-sum-sale {
    margin: 0 20px 0 20px;
  }
}

@media screen and (min-width: 992px) {
  .buy-too-sum-help {
    right: 15px;
    top: 30px;
  }
  .buy-too-sum-text-wrapper {
    display: block;
  }

  .buy-too-sum-sale {
    margin: 0;
    margin-top: 15px;
  }

  .buy-too-sum {
    align-items: center;
  }
}
/*Product buy too end */

/* Product page card top */

.product-page-card-wrapper {
  box-shadow: 0 5px 20px rgba(2, 4, 5, 0.15);
  border-radius: 6px;
  background-color: #ffffff;
  padding: 20px;
}

.product-page-card-header-title {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.product-page-title-icons-wrapper {
  padding: 5px 20px 5px 5px;
  display: flex;

  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;

  color: #121212;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;

  margin-top: 20px;
}

.product-page-title-icons-wrapper div {
  cursor: pointer;
}

.product-page-title-icons-wrapper img {
  height: 18px;

  margin-right: 5px;
  margin-left: 15px;
}

.product-page-title-icons-wrapper span {
  display: none;
}

.product-page-card-desc {
  display: flex;
  flex-direction: column;
  margin-top: 10px;

  color: #575757;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.product-page-card-desc span {
  margin-top: 2px;
  color: #1d1d1d;
}

@media screen and (min-width: 768px) {
  .product-page-title-icons-wrapper span {
    display: none;
  }
  .product-page-card-header-title {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .product-page-card-desc span {
    margin-right: 20px;
  }

  .product-page-title-icons-wrapper {
    margin-top: 7px;
  }
  .product-page-card-desc {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .product-page-title-icons-wrapper span {
    display: inline;
  }
}

.product-page-card-scroll-wrapper {
  display: flex;
  flex-direction: column;

  margin-top: 30px;
}

.grow-item-wrap {
  order: 2;
}

@media screen and (min-width: 768px) {
  .product-page-card-scroll-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-page-card-scroll-wrapper > .grow-item-flex {
    flex-grow: 1;
    width: 50%;
  }
  .grow-item-wrap {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .product-page-card-scroll-wrapper {
    flex-wrap: nowrap;
    margin-top: 10px;
  }
  .product-page-card-scroll-wrapper > .grow-item-flex {
    flex-grow: 0;
  }
  .grow-item-wrap {
    flex-grow: 1;
    order: 0;
  }
}

.product-grow-slider-wrapper {
  max-width: 100%;
}

.wrapper-arrows-to-thumbs {
  position: relative;
}

.gallery-thumbs,
.gallery-top {
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.thumbs-button-swipe-fx,
.thumbs-button-swipe-fx-left {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-self: center;
}

.swiper-button-prev {
  left: -4px !important;
}
.swiper-button-next {
  right: -4px !important;
}

.thumbs-button-swipe-fx:focus,
.thumbs-button-swipe-fx-left:focus {
  outline: none;
  border: none;
}

.thumbs-button-swipe-fx {
  right: 0;
}

.swiper-slide-product-top {
  display: flex;
  justify-content: center;
}
.gallery-top {
  height: 80%;
  width: 100%;
}
.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  position: relative;
  margin: 20px 20px 0 20px !important;
}
.gallery-thumbs img {
  width: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  height: 75px;
}
.gallery-thumbs .swiper-slide-product-top {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #b9b9b9;
  background-color: #ffffff;
}
.gallery-thumbs .swiper-slide-thumb-active {
  border: 1px solid #121212;
  width: auto;
}

.product-page-top-price {
  width: 100%;
  border-radius: 6px;
  background-color: #efefef;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .product-page-top-price {
    margin-top: 0;
    margin-left: 20px;
    width: calc(100% - 20px);
  }

  .product-page-swiper-scroll-wrapper {
    max-width: 350px;
  }
}

.product-page-swiper-scroll-wrapper {
  position: relative;
}

.product-show-full-image {
  position: absolute;
  z-index: 40;
  width: 18px;
  height: 18px;
  top: 10px;
  left: 10px;
}

.product-show-full-image img {
  width: 100%;
}

.top-price-sum-wrapper {
  padding: 15px 10px 0 10px;
}
.top-price-buttons-wrapper {
  margin-top: 20px;

  padding: 0 10px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-card-page-buy-button {
  margin: 0;
}

@media screen and (max-width: 340px) {
  .product-card-page-buy-button {
    font-size: 12px;
  }
}

.top-price-sum-partner {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;

  color: #575757;
}
.top-price-sum-partner > span {
  color: #f2a40c;

  text-decoration: underline;
}

.top-price-sum-wrapper > h6 {
  margin: 0;
  margin-top: 30px;
  color: #1d1d1d;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .top-price-sum-wrapper > h6 {
    margin-top: 15px;
  }
}
.top-price-sum-wrapper > h4 {
  margin: 0;
  margin-top: 5px;

  color: #1d1d1d;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.product-page-card-retail {
  color: #575757;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;

  margin-top: 15px;
  margin-bottom: 5px;
}

.saving-in-product-page {
  color: #1d1d1d;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-decoration: underline;
}

.saving-in-product-page-sum {
  color: #1d1d1d;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-decoration: none !important;
}
.product-page-counter {
  display: flex;
  align-items: center;
}
.product-page-counter button {
  border: none;
  background-color: none;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #000000;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}

.product-page-counter span {
  margin-right: 12px;
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.gallery-top .swiper-slide-product-top {
  width: 100% !important;
  padding: 10px 30px;
}

@media screen and (min-width: 992px) {
  .product-page-top-price {
    margin: 0;

    min-width: 274px;
  }
}

.product-page-card-transport {
  border-radius: 6px;
  background-color: #262626;
  padding-bottom: 10px;

  margin-top: 15px;
}

.product-page-card-transport-row {
  color: white;
  display: flex;
  justify-content: space-between;

  align-items: center;

  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;

  padding: 10px 20px 0 20px;
}

.product-page-card-transport-row div {
  display: flex;

  align-items: center;
}

.product-page-card-transport-row img {
  width: 18px;
  margin-right: 10px;
}

.buy-too-sum-help-icon-wrapper-black {
  border-color: #7e7e7e;
  color: #7e7e7e;
}

.product-page-card-short-description-wrapper {
  margin-top: 20px;
}
.product-page-card-short-description-wrapper h4 {
  color: #1d1d1d;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.product-page-card-short-description-wrapper p {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.product-page-card-short-description-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-page-card-short-description-wrapper ul li {
  display: flex;
  align-items: center;
  margin: 0;
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.product-page-card-short-description-wrapper ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 8px;
  background-color: #ffdb11;

  display: block;
}

.product-page-card-desc-buttons-wrapper {
  margin-top: 15px;
  padding-top: 15px;

  border-top: 1px solid #ffdb11;

  display: flex;
  flex-wrap: wrap;
}

.product-page-card-desc-buttons-wrapper div a,
.product-page-card-desc-buttons-wrapper div span {
  padding: 15px 12px;
  border-radius: 6px;
  background-color: #efefef;

  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-right: 15px;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
}

.product-page-card-desc-buttons-active {
  border-radius: 6px;
  border: 2px solid #ffdb11;
  background-color: transparent !important;
  margin-left:auto;
}

@media screen and (min-width: 992px) {
  .product-page-card-desc-buttons-wrapper {
    margin: 15px;
    display: flex;
  }
  .product-page-card-desc-buttons-active {
    margin-right: 0 !important;
  }
  .product-page-swiper-scroll-wrapper {
    max-width: 300px;
  }

  .product-page-top-price-wrapper {
    max-width: 270px;
  }
  .product-page-card-short-description-wrapper {
    padding: 0 15px;
  }
}

@media screen and (min-width: 1200px) {
  .product-page-swiper-scroll-wrapper {
    max-width: 350px;
  }
}

.fb-girl-red {
  background-image: url("../images/fb_girl_red.png");
  width: 500px;
  height: 415px;
  background-repeat: no-repeat;
  margin-top: -15px;
}

.product-card-text-flex {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .product-card-text-flex {
    flex-direction: row;
  }
  .product-page-card-short-description-wrapper {
    max-width: 50%;
    margin-right: 15px;
  }

  .product-page-card-desc-buttons-wrapper {
    display: flex;
    height: 100px;
  }
}
@media screen and (min-width: 992px) {
  .product-card-text-flex {
    flex-direction: column;
  }
  .product-page-card-short-description-wrapper {
    max-width: 100%;
  }

  .product-page-card-desc-buttons-wrapper {
    display: flex;
    height: auto;
  }
}

.swiper-button-white {
  background-color: transparent !important;
  padding: 0 !important;
}

.swiper-button-white::after {
  color: black !important;
}

.swiper-button-white:hover::after {
  color: #ffdb11 !important;
}

/* Tabs */

.product-page-tab-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

.product-page-tab-wrapper ul li {
  display: flex;
  align-items: center;
  margin: 0;

  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.product-page-tab-wrapper ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 8px;
  background-color: #ffdb11;

  display: block;
}

.product-page-tab-wrapper div {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;

  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;

  padding: 30px 10px;

  /*display: none;*/
}

.product-page-tabs-button {
  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background-color: #efefef;
  width: 100%;

  color: #575757;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;

  padding: 15px 0;
  margin-bottom: 10px;

  position: relative;
}

.product-page-tabs-button-active {
  color: #1d1d1d;

  background-color: #ffffff;
}

.product-page-tabs-button-active::before {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #ffdb11;
  width: 80%;
}

.product-page-tabs-button-wrapper {
  margin-top: 20px;
}

@media screen and (min-width: 576px) {
  .product-page-tab-wrapper ul {
    display: flex;
    flex-wrap: wrap;
  }

  .product-page-tab-wrapper ul > li {
    margin-right: 15px;
  }
}

@media screen and (min-width: 768px) {
  .product-page-tabs-button-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .product-page-tabs-button {
    width: 40%;
    margin-right: 10px;
  }
}

@media screen and (min-width: 992px) {
  .product-page-tabs-button-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }

  .product-page-tabs-button {
    width: auto;
    padding: 15px 20px;
    margin-right: 10px;
    margin-bottom: -1px;

    background-color: transparent;
    border: none;
  }

  .product-page-tabs-button-active {
    border: 1px solid #c7c7c7;
    border-bottom: none;
    background-color: white;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;

    box-sizing: border-box;
  }
}

/* Tabs end */

/* Product page card top end */
/* Product page end */

/* Chosen page */

.chosen-section {
  padding-bottom: 50px;
  margin-bottom: 50px;

  border-bottom: 1px solid #ffdb11;
}

.chosen-row-bg {
  background-color: #efefef;
}
.chosen-row-text {
  color: #898989;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 0;
}

.chosen-card-wrapper {
  border-radius: 6px;
  border: 1px solid #c7c7c7;

  margin-top: 10px;
}

.chosen-card-icons-wrapper {
  display: flex;
}

.chosen-card-icons-wrapper img {
  width: 19px;
  margin-left: 15px;
}

.chosen-card-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chosen-card-image-wrapper > img {
  width: 100px;
  margin: 15px 0 15px 10px;

  max-width: 97px;
}

.chosen-card-price,
.chosen-card-sale {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.chosen-card-name span {
  color: #898989;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.chosen-card-name h6 {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.chosen-card-price {
  display: flex;
  align-items: center;
}
.chosen-card-price span {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;

  margin: 0 12px;
}
.chosen-card-price button {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: none;
  border: none;

  border-radius: 6px;
  width: 24px;
  height: 24px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;

  color: #121212;

  font-size: 10px;
}

.chosen-card-last-price span {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.chosen-card-last-price div {
  border-radius: 6px;
  background-color: #ffdb11;

  padding: 5px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 20px;
}

.chosen-card-last-price div img {
  width: 16px;
}

.chosen-card-last-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chosen-card-delete {
  position: absolute;
  right: 10px;
  top: 10px;
}

.chosen-back-to-product {
  border-radius: 6px;
  border: 1px solid #121212;

  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;

  margin-top: 20px;

  background-color: transparent;

  padding: 10px 35px;

  cursor: pointer;
}

.chosen-header-container-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 20px;
}

.chosen-header-buttons-wrapper {
  display: flex;
}

.chosen-header-container-wrapper h2 {
  margin: 0;
  color: #121212;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.chosen-header-button-print {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;

  display: flex;
  align-items: center;

  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;

  padding: 8px 22px;

  margin-right: 20px;
}

.chosen-header-button-print > img {
  margin-right: 8px;
}

.chosen-header-button-clear {
  color: #898989;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;

  display: flex;
  align-items: center;

  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background-color: #ffffff;

  padding: 8px 22px;
}

.chosen-header-button-clear img {
  margin-right: 8px;
}

/* order form */
.orderform-info-comment {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  border: 1px solid #cccccc;
  height: 130px;
  margin-bottom: 40px;
  margin-top: 10px;
  padding: 10px 15px;
}

.orderform-info {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  border: 1px solid #cccccc;
  height: 50px;
  margin: 10px 0;
  padding: 0 15px;
}

.orderform-info-2 {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 530px;
  border: 1px solid #cccccc;
  height: 50px;
  margin: 10px 0 10px 7px;
  padding: 0 15px;
}

.orderform-info-3 {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 49%;
  border: 1px solid #cccccc;
  height: 50px;
  padding: 0 15px;
}

.orderform-info-select-1 {
  background: url(../images/select-arrow.png) no-repeat right #ddd;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  border: 1px solid #cccccc;
  height: 50px;
  margin: 10px 0;
  padding: 0 15px;
  -webkit-appearance: none;
}

.orderform-label {
  margin: 0 4px 0 3px;
  font-size:12px;
}

.pickup-text {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgb(18, 18, 18);
  line-height: 1.2;
  text-align: left;
}

.ways {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(18, 18, 18);
  text-align: left;
  margin-top: 26px;
}

.total-text {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: rgb(18, 18, 18);
  font-weight: 700;
  text-align: right;
  margin-bottom: 15px;
}

.personal-processing-text {
  font-size: 13px;
  font-weight: 100;
  font-family: "Open Sans";
  color: rgb(137, 137, 137);
  text-align: left;
  margin: 20px 0 15px 0;
}

.orderform-info-block-2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.radio-style {
  position: relative;
  height: 15px;
  width: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.ch10 {
  margin-right: 20px;
}

.radio-style {
  border: 0;
}

.radio-style::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid rgb(137, 137, 137);
  margin-top: 3px;
}

.radio-style:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffdb11;
  transform: translate(-50%, -50%);
  visibility: visible;
  margin-top: 3px;
}

.orderform-info-select-2 {
  background: url(../images/select-arrow.png) no-repeat right #ddd;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  width: 220px;
  border: 1px solid #cccccc;
  height: 50px;
  margin: 10px 0;
  padding: 0 15px;
  -webkit-appearance: none;
}

@media (max-width: 768px) {
  .orderform-label {
    width: calc(100% - 35px);
  }
}

@media (max-width: 576px) {
  .orderform-info-block-2 {
    flex-direction: column;
  }

  .orderform-info-3 {
    width: 100%;
    margin-top: 10px;
  }
  .orderform-info-2 {
    margin: 0;
    width: 100%;
  }

  .orderform-info-select-2 {
    width: 100%;
  }

  .orderform-info {
    margin-bottom: 0;
  }
}

#basket-page-is-here {
  color: #898989;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  background-color: transparent;
  padding-left: 20px;
}

.basket-back-to-product {
  border-radius: 6px;
  border: 1px solid #121212;

  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;

  background-color: transparent;

  padding: 10px 35px;

  cursor: pointer;
}

.basket-checkout-button {
  border: none;
  border-radius: 6px;
  background-color: #ffdb11;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 35px;
  color: #121212;
  cursor: pointer;
}

@media (max-width: 320px) {
  .basket-checkout-button {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.order-asd-title {
  margin-top: 30px;
}

/* end order form */

/* End Chosen page */

/* compare page */
.compare-table td {
  border: 1px solid #c7c7c7;

  padding: 10px 25px;

  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.compare-table tr td:first-child {
  background-color: #efefef;
}

.compare-product-table-card {
  padding: 10px;
  width: 250px;
}

.compare-product-table-card .product-cart-icon {
  border-radius: 6px;
}

/* end compare page */

/* Aside block */

.aside-drop-menu {
  position: fixed;
  right: 0;

  top: 25%;
  z-index: 91;
}

.aside-drop-menu > div {
  display: flex;
}

.aside-tab-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.aside-tab-buttons-wrapper > div {
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 4, 5, 0.15);
  border-radius: 6px 0 0 6px;
  background-color: #ffffff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
}

.aside-tab-pages-wrapper {
  width: 850px;
  padding: 20px 30px 30px 30px;

  box-shadow: 0 8px 20px rgba(2, 4, 5, 0.15);
  border-radius: 6px 0 0 6px;
  background-color: #ffffff;
}

.basket_head_list,
.head_wish,
.head_compare {
  background:#fff!important;
  overflow:auto!important;
  margin:15px -15px 0 -15px!important;
}

.basket_head_list > .row,
.head_wish > .row,
.head_compare > .row {
  margin:0 0 15px 0!important;
}

.head_wish .aside-row-product,
.head_compare .aside-row-product {
  padding:0 15px!important;
}

.head_basket {
 
}

.aside-icon-button-wrapper {
  position: relative;
}

.aside-icon-button-wrapper > div {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #ffdb11;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;

  color: #262626;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;

  top: -6px;
  right: -9px;
}

.aside-tab-button-active {
  width: 70px !important;
}

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

.aside-page-header > div {
  display: flex;
  align-items: center;
}

.aside-go-to {
  color: #121212;
  margin-left: 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}

.aside-row-grey {
  margin: 15px 0 0 0;
  background-color: #efefef;
  padding: 8px;

  color: #898989;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.aside-row-product {
  margin: 0;
  margin-top: 10px;

  box-shadow: 0 2px 20px rgba(2, 4, 5, 0.1);
  border-radius: 6px;
  border: 1px solid #c7c7c7;

  position: relative;

  padding: 15px;
}

.aside-image-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aside-image-preview img {
  width: 100%;
}

.aside-product-page-counter img {
  width: 8px;
}

.aside-product-page-counter button {
  width: 25px;
  height: 25px;
}

.aside-delete-button {
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 16px;
}

.aside-product-subtitle {
  color: #898989;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  margin: 0;
}

.aside-product-title {
  margin: 0;
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.aside-product-price {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.nopaddingleft {
  padding-left: 0 !important;
  margin: 0 !important;
}

.aside-like-compare-wrapper {
  top: auto;
  bottom: 10px;
}
.aside-price-all-fn {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;

  text-align: end;

  margin-top: 14px;
  margin-right: 85px;
}

.aside-price-all-fn > span {
  margin-right: 50px;
}

.aside-submit-buttons-wrapper {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}

/* pages aside */

#aside-page-basket {
  display: none;
}

#aside-page-chosen {
  display: none;
}

#aside-page-compare {
  display: none;
}

.aside-tab-pages-wrapper {
  display: none;
}

.aside-chosen-lastprice-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aside-chosen-lastprice-wrapper button {
  border-radius: 6px;
  background-color: #ffdb11;

  border: none;
  height: 28px;
  width: 28px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;

  margin-right: 10px;
}

.aside-product-subtitle img {
  padding-bottom: 5px;
}

.aside-chosen-count {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

/* End aside block */

/* New catalog menu Fix 0.1 */

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .new-catalog-slider-section {
    min-height: 555px;
  }
}

@media screen and (max-width: 991px) {
  .new-catalog-menu-wrapper {
    display: none;
  }

  .new-sub-menu {
    display: none !important;
  }
}

.new-catalog-menu-wrapper_unactive {
  display: none;
}

.new-catalog-menu-wrapper_active {
  display: block !important;
}

.new-catalog-menu-wrapper div {
  display: flex;
  align-items: center;
}

.new-catalog-menu-wrapper {
  z-index: 99;
  position: absolute;
  width: calc(100% - 30px);
}
.catalog-filters-wrapper .new-catalog-menu-wrapper {
  z-index: 99;
  position: absolute;
  width: 100%;
}

.new-main-menu-wrapper,
.new-sub-menu {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;

  margin: 0;
  padding: 0;
  list-style: none;

  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
  color: #212529;
}
.new-main-menu-wrapper {
  padding-bottom: 1px;
}

.new-main-menu-wrapper li {
  padding: 10px 15px 10px 15px;
}

.new-main-menu-wrapper li:hover {
  background-color: #ffdb11;
  box-shadow: 0 8px 20px 0 rgba(2, 4, 5, 0.15);
  border-radius: 6px;
}


.new-catalog-icon {
  width: auto;
  border-radius: 0;
  margin-right: 8px;
}
.new-has-sub-menu {
  position: relative;
}

.new-has-sub-menu li.new-has-sub-menu {
  padding: 8px 15px !important;
  page-break-inside: avoid;
  break-inside: avoid;
}

.new-sub-menu {
  min-width: 250px;
  border-radius: 6px;
  z-index: 100;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(calc(100%));
}

.new-has-sub-menu:hover > .new-sub-menu {
  display: block;
}

/* New catalog menu end */


/**
  fix tmz
 */


#product-page-tab-2{
  float: left;
}
#product-page-tab-2 .column-li1{
  float: left;
}
.product-page-tab-wrapper ul {
  display: block;
  width: 47%;
  float: left;
  margin: 0 0 0 14px;
  border-right: 1px solid #c7c7c7;
}

.product-page-tab-wrapper ul:nth-child(2n) {
  border-right: none;
}

@media screen and (max-width: 700px) {
  .cards-sale-slider{
    display: block;

  }
  .cards-sale-slider a{
    width: 49% !important;
    float: left;
    margin: 0 1% 1% 0;
  }
  .cards-sale-slider a .cards-sale-card{
    width: 100% !important;
    margin: 0 !important;
  }
  .cards-sale-slider a img{
    width: 100% !important;
  }
  .cards-sale-card h5{
    font-size: 12px;
  }
  .cards-sale-card p{
    font-size: 12px;
  }
  .cards-sale-card span{
    font-size: 14px;
  }
}


/* LAST CSS */


hr {
  border: 0;
}

.fs-22 {
  font-size: 22px;
}

.list-accent {
  list-style: none;
  padding-left: 0;
}

.list-accent li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.list-accent li:last-child {
  margin-bottom: 0;
}

.list-accent li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #ffdb11;
  border-radius: 50%;
}

.fb-textarea-nse {
  border: 0;
  border-radius: 6px;
  background-color: white;
  width: 100%;
  padding: 10px 15px;
  margin: 10px 0;
}

.modal-header {
  border-bottom: 0;
  padding: 2rem 40px 0;
}

.modal-body {
  padding: 1rem 40px 40px;
}

.button-accent {
  display: inline-block;
  background-color: #ffdb11;
  padding: 10px 25px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.button-accent:hover {
  background-color: #f7d100;
}

.button-outline-accent {
  display: inline-block;
  background-color: transparent;
  padding: 10px 25px;
  border: 2px solid #ffdb11;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.button-outline-accent:hover {
  background-color: #ffdb11;
}

/*.stretched-link::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  z-index: 1;*/
/*  pointer-events: auto;*/
/*}*/

.select {
  border-radius: 6px;
  border: 1px solid #cccccc;
  padding: 7px;
}

.form-field {
  border-radius: 6px;
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #cccccc;
  padding: 12px 15px;
}

.form-field__wrap {
  position: relative;
  display: block;
}

.form-field__note {
  position: absolute;
  top: 0;
  left: -10px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.7);
}

.upload-files__input:focus ~ .upload-files__label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.15);
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.15);
}

.upload-files__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  background-color: #efefef;
  border-radius: 6px;
  font-size: 14px;
}

.upload-files__descr {
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: auto;
  padding: 0 15px;
}

.upload-files__btn {
  background-color: #262626;
  border-radius: 6px;
  color: #ffffff;
  padding: 10px 25px;
}

.search-alt {
  position: relative;
}

.search-alt__field {
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: #efefef;
  padding: 7px 15px;
}

.search-alt__btn {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 7px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.page-header {
  border-bottom: 1px solid #ffdb11;
  padding-bottom: 24px;
  margin-bottom: 36px;
}

.page-header h1,
.page-header .h1 {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 0;
}

.text-content {
  font-family: "Open Sans", sans-serif;
}

.text-content h2,
.text-content .h2 {
  font-size: 16px;
  font-weight: bold;
}

.detail-news-text-content {
  padding: 0 60px;
}

.detail-news-text-content img:not(.detail_picture) {
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.dropdown-select .dropdown-menu {
  max-height: 400px;
  overflow-y: auto;
}

.dropdown-select .dropdown-header {
  color: #ffdb11;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.dropdown-select .dropdown-header::after {
  content: '';
  height: 1px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #ffdb11;
  margin-left: 5px;
}

.dropdown-select .dropdown-item:hover {
  background-color: #ffdb11;
}

.managers-list {
  border-top: 1px solid #ffdb11;
  border-bottom: 1px solid #ffdb11;
}

.managers-list__item {
  padding: 25px 0;
}

.managers-list__item:not(:last-child) {
  border-bottom: 1px solid #ffdb11;
}

.managers-list__item .fa-telegram {
  color: #039be5;
}

.managers-list__item .fa-whatsapp {
  color: #4caf50;
}

.letters-list {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  margin-left: -10px;
  margin-bottom: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.letters-list li {
  margin-left: 10px;
  margin-bottom: 10px;
}

.letters-list li a.active {
  background-color: #ffdb11;
  border-color: #ffdb11;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}

.letters-list a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #c7c7c7;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.letters-list a:hover {
  background-color: #ffdb11;
  border-color: #ffdb11;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}

.brands-list__item {
  display: block;
  border-radius: 6px;
  border: 1px solid #c7c7c7;
  text-align: center;
  padding: 10px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.brands-list__item:hover {
  border-color: #ffdb11;
}

.brands-list__item-title {
  color: #017399;
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .brands-list .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.special-item {
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  font-family: "Open Sans", sans-serif;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.special-item:hover {
  border-color: #ffdb11;
  cursor: pointer;
}

.special-item:hover .special-item__dates {
  background-color: #ffdb11;
}

/*.special-item:hover .special-item__descr {*/
/*  display: block;*/
/*}*/

.special-item__img {
  border-radius: 6px 6px 0 0;
  width: 100%;
}

.special-item__content {
  padding: 20px;
}

.special-item__dates {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  padding: 5px 20px 5px 0;
  border-radius: 0 6px 6px 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.special-item__dates::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 20px;
  background-color: inherit;
}

.special-item__title {
  font-size: 18px;
  font-weight: bold;
}

.special-item__descr {
  font-size: 14px;
  color: #575757;

}

.special-item__descr p {
  display: none;
}

.special-item__note {
  border-top: 1px solid #c7c7c7;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.new-item {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  position: relative;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.new-item-img-link {
  position: relative;
  display: block;
  overflow: hidden;
  height: auto;
  width: 100%;
}

.new-item__descr p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-item:hover {
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}

.new-item__img {
  border-radius: 6px 0 0 6px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  max-height: 208px;
}

.new-item__content {
  padding: 20px 20px 20px 0;
}

.new-item__title {
  font-size: 16px;
  font-weight: bold;
}

.new-item__link {
  font-size: 15px;
  color: #ffdb11;
  text-decoration: underline;
  font-weight: bold;
}

.new-item__link:hover {
  color: #ffdb11;
  text-decoration: none;
}

@media (max-width: 767px) {
  .new-item__content {
    padding: 20px;
  }
  .new-item__img {
    border-radius: 6px 6px 0 0;
  }
}

.news-aside {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
}

.news-aside h2,
.news-aside .h2 {
  font-size: 16px;
  font-weight: bold;
}

.news-aside__item {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.news-aside__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-aside__item-content {
  padding: 15px;
}

.news-aside__item-date {
  font-size: 13px;
}

.news-aside__item-title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.features h2,
.features .h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 45px;
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.features__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
}

.features__item-content {
  font-family: "Open Sans", sans-serif;
}

.features__item-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
}

.features__item-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background-color: #ffdb11;
  margin-top: 10px;
}

.features__item-descr {
  font-size: 14px;
  color: #575757;
}

.additional h2,
.additional .h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.additional__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  border-radius: 10px;
  padding: 40px 60px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  background:url(../images/plus.png) no-repeat 10px 50%;
}

@media (max-width: 767px) {
  .additional__item {
    padding: 40px 20px 40px 50px;
    background-size: 30px;
  }
}

.steps h2,
.steps .h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 45px;
}

.steps__item {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 30px;
}

.steps__item:last-child .steps__item-number .fa-xs {
  display: none;
}

.steps__item-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffdb11;
  margin-bottom: 8px;
}

.steps__item-number .fa-xs {
  font-size: 0.5em;
}

.steps__item-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
}

.steps__item-descr {
  font-size: 14px;
  color: #575757;
}

@media (min-width: 992px) {
  .steps__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.clients h2,
.clients .h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 32px;
}

.calculator h2,
.calculator .h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.calculator h2 img,
.calculator .h2 img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}

.calculator__wrap {
  padding: 30px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.calculator__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.calculator__note {
  color: #f2a40c;
  line-height: 1.2;
}

.calculator legend {
  font-size: 14px;
  font-weight: 600;
}

.calculator__thead {
  background-color: #efefef;
  font-size: 14px;
  color: #575757;
  padding: 10px 15px;
}

.calculator__tr {
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.calculator__tr .chosen-card-image-wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.calculator__tr .chosen-card-image-wrapper img {
  margin: 0 16px 0 0;
}

.calculator__tr .chosen-card-price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.calculator__result {
  background-color: #efefef;
  border-radius: 6px;
  padding: 20px;
}

.calculator__result b {
  font-size: 22px;
}

@media (max-width: 575px) {
  .calculator__wrap {
    padding: 15px;
  }
  .calculator__thead {
    display: none;
  }
  .calculator__tr {
    padding: 10px;
  }
  .calculator__tr .chosen-card-image-wrapper img {
    width: 45px;
    margin-right: 10px;
  }
}
.news_detail_slider {
  height: 320px;
}
/*.news_detail_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_detail_slider .detail_picture {

}*/
.new-item__views .eye {
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url(../images/eye.png);
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 3px;
}
.news_detail-prev-button,
.news_detail-next-button {
  background-color: #efefef;
}
.news_detail-prev-button.swiper-button-prev,
.swiper-container-rtl .news_detail-next-button.swiper-button-next {
  left: -60px !important;
}
.news_detail-next-button.swiper-button-next,
.swiper-container-rtl .news_detail-prev-button.swiper-button-prev {
  right: -60px !important;
}
.news_detail_slider-wrapper {
  position: relative;
}
@media (max-width: 600px) {
  .news_detail-prev-button.swiper-button-prev,
  .swiper-container-rtl .news_detail-next-button.swiper-button-next {
    left: 5px !important;
  }
  .news_detail-next-button.swiper-button-next,
  .swiper-container-rtl .news_detail-prev-button.swiper-button-prev {
    right: 5px !important;
  }
  .detail-news-text-content {
    padding: 0;
  }
}
.calculator__tr .price {
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
}
.calculation label {
  margin: 0;
}
.calculation input {
  font-weight: 700;
  text-align: center;
  border: 0;
  height: 100%;
  width: 100%;
  max-width: 30px;
}



/*  Calc */

.price_calc_block {
  width: 100%;
}

.price_list_block_header {
  font-size: 200%;
  background-image: url(../images/calc/icon_price.svg);
  background-position: left 10px;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding-left: 50px;
  height: 117px;
  color: #4a4a4a;
}

.price_calc_block_header {
  background-image: url(../images/calculator.png);
  background-position: left 10px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 50px;
  height: 70px;
  padding-top: 15px;
  color: #4a4a4a;
}

.price_calc_block_text {
  font-size: 200%;
}

.price_calc_block_text h2 {
  margin-bottom: 0;
}

.price_calc_block_rem {
  font-size: 88%;
  margin-top: 18px;
}

.price_list_pad {
  width: 100%;
  min-height: 625px;
  border-radius: 10px;
  border: solid 2px #2ecc71;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.price_list_line {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  border-bottom: solid 1px rgba(155, 155, 155, 0.2);
}

.price_list_line:last-child {
  border-bottom: none;
}

.price_list_name {
  text-align: left;
  height: 52px;
  line-height: 52px;
  font-size: 90%;
  color: #4a4a4a;
}

.price_list_price {
  text-align: right;
  height: 52px;
  line-height: 52px;
  font-size: 90%;
  color: #2ecc71;
}

.price_excel {
  display: block;
  color: #2ecc71;
  background-image: url(../images/calc/icon_excel.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 37px auto;
  padding-left: 50px;
  margin-top: 20px;
}

.price_calc_pad {
  width: 100%;
  min-height: 625px;
  border-radius: 10px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
  padding: 40px;
}


.price_calc_header {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.price_calc_text {
  width: 40%;
  color: #494949;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.price_calc_rem {
  width: 58%;
  text-align: right;
}

.price_calc_rem_text {
  display: inline-block;
  color: #f2a40c;
  font-size: 87%;
  text-align: left;
  padding-left: 31px;
  background-image: url(../images/calc/icon_i2.svg);
  background-position: left 4px;
  background-repeat: no-repeat;
  background-size: 19px auto;
}

.price_calc_main_params {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-top: 10px;
}

.price_calc_system {
  width: 30%;
}

.price_calc_quality {
  width: 68%;
}

.price_calc_system_label {
  font-size: 87%;
  color: #4a4a4a;
}

.price_calc_col_name {
  height: 20px;
  line-height: 20px;
}

.help_button {
  display: inline-block;
  width: 14px;
  height: 20px;
  line-height: 20px;
  background-image: url(../images/calc/icon_help.svg);
  background-position: left 4px;
  background-repeat: no-repeat;
  background-size: 14px auto;
  margin-left: 6px;
  cursor: pointer;
}

.help_button_grey {
  display: inline-block;
  width: 14px;
  height: 20px;
  line-height: 20px;
  background-image: url(../images/calc/icon_help_grey.svg);
  background-position: left 4px;
  background-repeat: no-repeat;
  background-size: 14px auto;
  margin-left: 6px;
  cursor: pointer;
}

.price_calc_col_names {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #e7e7e7;

  background-color: #efefef;
  font-size: 14px;
  color: #575757;
  padding: 10px 15px;
}

.price_calc_col_param {
  width: 300px;
}

.price_calc_col_q {

}

.price_calc_col_price {
  width: 150px;
}

.price_calc_out_cams {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;


  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.price_calc_out_cams_param {
  height: 45px;
  background-image: url(../images/calc/security-cameras-1.png);
  /*background-image: url(../images/calc/icon_cam_out.svg);*/
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 65px auto;
  padding-left: 100px;
  display: inline-block;
  padding-right: 5px;
}

.price_calc_out_cams_text {
  color: #4a4a4a;
  font-size: 87%;
  padding-top: 5px;
}

.price_calc_out_cams_subtext {
  color: #a6a6a6;
  font-size: 68%;
  padding-top: 3px;
}


.price_calc_in_cams {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.price_calc_in_cams_param {
  height: 45px;
  background-image: url(../images/calc/security-cameras-2.png);
  /*background-image: url(../images/calc/icon_cam_in.svg);*/
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 65px auto;
  padding-left: 100px;
  display: inline-block;
  padding-right: 5px;
}

.price_calc_in_cams_text {
  color: #4a4a4a;
  font-size: 87%;
}

.price_calc_in_cams_subtext {
  color: #a6a6a6;
  font-size: 68%;
  padding-top: 3px;
}


.price_calc_days {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.price_calc_days_param {
  height: 65px;
  background-image: url(../images/calc/cloudstorage.webp);
  /*background-image: url(../images/calc/icon_film.svg);*/
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 56px auto;
  padding-left: 100px;
  display: inline-block;
  padding-right: 5px;
}

.price_calc_days_text {
  color: #4a4a4a;
  font-size: 87%;
  padding-top: 5px;
}

.price_calc_days_subtext {
  color: #a6a6a6;
  font-size: 68%;
  padding-top: 3px;
}


.price_calc_bottom_params {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-top: 10px;
}

.price_calc_diff {
  width: 50%;
  padding-top: 10px;
  color: #4a4a4a;
}

.price_calc_total {
  width: 48%;
  text-align: right;
}

.price_calc_block_q {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.price_calc_q_minus {
  line-height: 32px;
  height: 32px;
  width: 24px;
  background-image: url(../images/calc/icon_minus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  cursor: pointer;
}

.price_calc_q_plus {
  line-height: 32px;
  height: 32px;
  width: 24px;
  background-image: url(../images/calc/icon_plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  cursor: pointer;
}

.price_calc_q_value {
  line-height: 32px;
  height: 32px;
  width: 70px;
  text-align: center;
  color: #494949;
  font-size: 150%;
}

.price_calc_price {
  color: #212529;
  font-size: 150%;
  font-weight: 600;
}

.price_calc_total_block {
  border-radius: 10px;
  background-color: #f3f3f3;
  float: right;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.price_calc_total_text {
  font-size: 87%;
  color: #212529;
}

.price_calc_total_summline {
  font-size: 180%;
  color: #212529;
}

#price_calc_total_summ {
  font-weight: 700;
}

#price_calc_total_individ {
  font-size: 60%;
}

.price_calc_bottom {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  margin-top: 10px;
}

.price_calc_bottom_left {
  width: 40%;
}

.price_calc_bottom_right {
  width: 58%;
  text-align: right;
  color: #4a4a4a;
  font-weight: 700;
  font-size: 115%;
}

.price_calc_button {
  border-radius: 2px;
  background-color: #ffdb11;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  color: #212529;
  font-size: 14px;
  float: left;
  cursor: pointer;
}


.black_checkbox {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  padding-left: 25px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  cursor: pointer;
  color: #5a5a5a;
  font-size: 90%;
  margin-right: 21px;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.black_checkbox.checkbox_unchecked {
  background-image: url(../images/calc/ico_unchecked.svg);
}

.black_checkbox.checkbox_checked {
  background-image: url(../images/calc/ico_checked.svg);
}

#window_overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.8);
}

#window_help_block {
  left: 0;
  top: 0;
  display: none;
  position: absolute;
  z-index: 10000;
  width: 280px;
  background: #ffffff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #c1d3d2;
  border-radius: 4px;
}

#window_help_arrow {
  position: relative;
  top: -9px;
  left: 22px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-top: solid 1px #c1d3d2;
  border-left: solid 1px #c1d3d2;

  -moz-transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  -o-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  transform: rotate(45deg);
}

#window_help_body {
  padding: 16px;
  padding-top: 0;
  color: #4a4a4a;
  font-size: 75%;
}

.window_help_buttons {
  width: 100%;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;


  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  padding: 16px;
}


#window_help_details {
  border-radius: 2px;
  background-color: #2ecc71;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  color: #ffffff;
  font-size: 80%;
  font-weight: 700;
  float: left;
  cursor: pointer;
}

#window_help_details:hover {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.5);
}

#window_help_close {
  width: 24px;
  height: 24px;
  background-image: url(../images/calc/icon_close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  cursor: pointer;
}


/* Ð¾ÐºÐ½Ð° */
.window_body {
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  max-height: 80vh;
  padding-right: 30px;
}

@media all and (min-width: 1px)and (max-width: 640px) {

  .top_center {
    height: 240px;
  }

  .top_block_grey {
    height: 240px;
  }

  .top_content {
    top: 220px;
  }

  .top_block_grey {
    display: none;
  }

  .top_block_pic {
    height: 240px;
    width: 100%;
    background-position: center top;
  }

  .top_content_header {
    font-size: 190%;
  }

  .top_content_anons {
    font-size: 90%;
    width: 100%;
    margin-top: 25px;
  }

  .top_content_anons_break {
    content: none;
    display: none;
  }

  .top_content_text {
    padding: 20px;
    padding-top: 30px;
    width: 100%;
  }

  .top_content_button_get {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .top_content_button_calc {
    width: 100%;
  }

  .top_content_buttons {
    margin-top: 40px;
  }

  .block_padding {
    padding: 20px 0;
  }

  .different_block {
    margin-top: 640px;
  }

  .different_item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .different_icon {
    width: 100%;
    height: 60px;
    background-position: top left;
  }

  .different_text {
    width: 100%;
    padding-left: 0;
  }

  .different_header {
    font-size: 200%;
    text-align: left;
  }

  .different_container {
    margin-top: 40px;
  }

  .different_item {
    width: 100%;
  }

  .different_item_hide {
    display: none;
  }

  .standard_block {
    margin-top: 0;
  }

  .standard_header {
    font-size: 200%;
    text-align: left;
  }

  .standard_checkbox_container {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .standard_checkbox_item {
    width: 100%;
    margin: 0;
    font-size: 120%;
  }

  .standard_item {
    width: 100%;
    margin-bottom: 20px;
  }

  .standard_other_button {
    width: 280px;
    font-size: 100%;
    background-image: none;
    margin-top: 0;
  }

  .order_container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .order_buttons_block {
    width: 100%;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    margin-left: 0;
  }

  .order_ques_button {
    width: 100%;
  }

  .order_setup_block {
    width: 100%;
  }

  .order_text {
    width: 100%;
  }

  .price_header {
    font-size: 180%;
    text-align: left;
  }

  .price_list_block {
    width: 100%;
    margin-bottom: 20px;
  }

  .price_list_block_header {
    font-size: 120%;
    height: auto;
  }

  .price_list_pad {
    min-height: auto;
    padding: 20px;
    border-radius: 0;
    border-right: none;
    border-left: none;
  }

  .price_list_line {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price_list_name {
    height: auto;
    line-height: 120%;
    width: 65%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .price_list_price {
    height: auto;
    line-height: 120%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .price_calc_block {
    width: 100%;
    margin-top: 40px;
  }

  .price_calc_block_header {
    height: auto;
  }

  .price_calc_block_rem {
    margin-top: 10px;
  }

  .price_calc_header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price_calc_text {
    width: 100%;
  }

  .price_calc_rem {
    width: 100%;
    font-size: 100%;
  }

  .price_calc_pad {
    padding: 20px 0;
    border: none;
    box-shadow: none;
  }

  .price_calc_main_params {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price_calc_system {
    width: 100%;
  }

  .price_calc_quality {
    width: 100%;
  }

  .price_calc_out_cams, .price_calc_in_cams, .price_calc_days, .price_calc_bottom_params, .price_calc_bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price_calc_col_param {
    width: 100%;
  }

  .hide_mobile {
    display: none;
  }

  .price_calc_col_price {
    text-align: right;
  }

  .price_calc_diff {
    width: 100%;
  }

  .price_calc_total, .price_calc_total_block {
    width: 100%;
  }

  .price_calc_bottom_left {
    width: 100%;
  }

  .price_calc_bottom_right {
    width: 100%;
    text-align: left;
  }

  .steps_back {
    padding-top: 20px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;;
  }

  .steps_block {
    margin-top: 40px;
  }

  .steps_img_block {
    margin-top: 20px;
    padding-left: 0;
  }

  .steps_header {
    font-size: 180%;
  }

  .steps_img_block_hor {
    display: none;
  }

  .steps_img_block_vert {
    display: block;
  }

  .steps_rem_block {
    float: left;
    text-align: left;
  }

  .facts_header {
    font-size: 200%;
  }

  .facts_container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .facts_item_top {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .facts_item_bottom {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .facts_item_hide {
    display: none;
  }


  .order_container {
    padding: 20px;
  }

  .order_setup_button {
    margin: 0;
  }

  .order_setup_button {
    width: auto;
  }

  .order_setup_text_big {
    font-size: 150%;
  }

  .moscow_back {
    box-shadow:0 0 0 2000px rgba(0, 0, 0, 0.6) inset;
  }

  .moscow_header {
    font-size: 100%;
  }

  #contact_map_area {
    height: 400px;
  }

  #window_help_block {
    width: calc(100% - 40px);
  }

  #window_call {
    position: absolute;
    top: 20px;
    left: 5%;
  }

  .window_call_top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .window_call_logo {
    width: 100%;
  }

  .window_call_header {
    font-size: 120%;
  }

  #window_order {
    position: absolute;
    top: 20px;
    left: 5%;
  }

  .window_order_top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .window_order_logo {
    width: 100%;
  }

  .window_order_header {
    font-size: 120%;
  }

  .window_order_label {
    margin-top: 6px;
    font-size: 90%;
  }

  .window_order_input {
    height: 36px;
    line-height: 36px;
    padding-left: 12px;
  }

  .window_order_checkbox {
    margin-top: 16px;
  }

  #window_calc {
    position: absolute;
    top: 20px;
    left: 5%;
  }

  .window_calc_top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .window_calc_logo {
    width: 100%;
  }

  .window_calc_header {
    font-size: 120%;
  }

  .window_calc_label {
    margin-top: 6px;
    font-size: 90%;
  }

  .window_calc_input {
    height: 36px;
    line-height: 36px;
    padding-left: 12px;
  }

}


@media all and (min-width: 641px)and (max-width: 768px) {

  .different_item {
    width: 48%;
  }

  .standard_item {
    width: 48%;
  }

  .top_block_grey {
    display: none;
  }

  .top_block_pic {
    width: 100%;
  }

  .top_content_header {
    font-size: 280%;
  }

  .top_content_anons {
    font-size: 120%;
    width: 50%;
    margin-top: 25px;
  }

  .different_header {
    font-size: 280%;
  }

  .different_head {
    font-size: 150%;
  }

  .order_container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
  }

  .order_buttons_block {
    width: 100%;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .order_text {
    width: 100%;
    margin-bottom: 40px;
  }

  .price_list_block {
    width: 100%;
    margin-bottom: 20px;
  }

  .price_calc_block {
    width: 100%;
    margin-top: 40px;
  }

  .moscow_header {
    font-size: 200%;
  }
}

@media all and (min-width: 769px)and (max-width: 960px) {

  .different_item {
    width: 48%;
  }

  .top_block_grey {
    display: none;
  }

  .top_block_pic {
    width: 100%;
  }

  .top_content_header {
    font-size: 300%;
  }

  .top_content_anons {
    font-size: 120%;
    width: 75%;
    margin-top: 25px;
  }

  .standard_item {
    width: 48%;
  }

  .order_container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
  }

  .order_buttons_block {
    width: 100%;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .order_text {
    width: 100%;
    margin-bottom: 40px;
  }

  .price_list_block {
    width: 100%;
    margin-bottom: 20px;
  }

  .price_calc_block {
    width: 100%;
    margin-top: 40px;
  }

  .moscow_header {
    font-size: 240%;
  }
}


@media all and (min-width: 961px)and (max-width: 1200px) {

  .different_item {
    width: 48%;
  }

  .standard_item {
    width: 48%;
    margin-bottom: 40px;
  }

  .order_container {
    padding: 20px;
  }

  .order_buttons_block {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price_list_block {
    width: 100%;
    margin-bottom: 20px;
  }

  .price_calc_block {
    width: 100%;
    margin-top: 40px;
  }

  .moscow_header {
    font-size: 280%;
  }
}


@media all and (min-width: 1201px)and (max-width: 1504px) {

  .order_container {
    padding: 20px;
  }

}

.modal-content .alx_feed_back form {
  max-width: 320px;
  margin: auto !important;
}

.modal-content .afbf_submit_block {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.modal-header .modal-title {
  margin-left: auto;
  margin-right: -20px;
}
.modal-dialog {
  top: 15%;
}
.btn_all_check {
	cursor: pointer;
	color: grey;
	font-size: 13px;
	padding: 0;
	display: inline-block;
	line-height: 13px;
}
.btn_all_check span{
	color: grey;
	font-size: 13px;
	border-bottom: 1px dashed grey;
	display: inline-block;
	line-height: 13px;
}
.btn_all_check b{
	font-weight: normal;color: red;
	font-size: 13px;
	display: inline-block;
	line-height: 13px;
}
.order_success {
  margin:40px auto 0 auto !important;
}

.afbf_success_block._without-popup .afbf_mess_ok {
  text-align: center !important;
  padding: 0 30px !important;
}
.afbf_success_block._without-popup .afbf_mess_ok .mess {
  display: flex !important;
}
.afbf_success_block._without-popup  {
  text-align: center;
}
.afbf_error_block {
  margin-bottom: 10px;
}
.modal-content .afbf_error_block {
  max-width: 320px !important;
  margin: 0 auto 10px !important;
}
.err-row {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  padding:30px 0 100px 0;
}
.err-col-1 {
  width:calc(100% - 490px);
}
.err-col-2 {
  width:490px;
}
.cls-1 {
  fill:#FFDC00;
  fill-rule:evenodd;
}
.err-col-1 svg {
  width:88%;
  margin:0 auto;
  display:block;
}
.err-cont {
  text-align:center;
}
.err-title {
  font-size:44px;
  font-weight:500;
  margin-bottom:5px;
  line-height:1;
}
.err-subtitle {
  text-transform:uppercase;
  margin-bottom:20px;
  font-size:20px;
}
.err-text {
  font-size:14px;
  margin-bottom:20px;
}
.err-do {
  font-size:14px;
}
.err-do-main {
  background:#ffdb11;
  font-size:13px;
  font-weight:600;
  width:175px;
  text-align:center;
  border-radius:6px;
  display:inline-block;
  line-height:40px;
  transition:300ms;
}
.err-do-main:hover {
  background:#262626;
  color:#ffdb11;
}
.err-do-back {
  color:#ffdb11;
}
@media screen and (max-width:991px) {
  .err-col-1 {
    display:none;
  }
  .err-col-2 {
    width:100%;
  }
  .err-row {
    padding:5px 0 40px 0;
  }
  .cards-sale-slider {
    padding-bottom:20px;
  }
}
.sect-items {
  display:flex;
  flex-wrap:wrap;
  margin:-5px;
  padding-bottom:50px;
}
.sect-item {
  width:20%;
  padding:5px;
}
.sect-item-2 {
  width:25%;
}
.sect-item-box {
  height:100%;
  border:1px solid #dcdcdc;
  border-radius:6px;
  transition:300ms;
}
.sect-item-image {
  height:150px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.sect-item-image a {
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}
.sect-item-image img {
  max-width:70%;
  max-height:70%;
  display:block;
  margin:0 auto;
}
.sect-item-title {
  padding:0 10px 20px 10px;
  font-size:14px;
  font-weight:600;
  line-height:1.2;
  text-align:center;
}
.sect-item-box:hover {
  border-color:#FFDC00;
}
@media(max-width:1100px) {
  .sect-item {
    width:33.33%;
  }
}
@media(max-width:767px) {
  .sect-item {
    width:50%;
  }
}
@media(max-width:400px) {
  .sect-item {
    width:100%;
  }
}
.cat-descr {
  padding:0 0 50px 0;
}
.fup {
  background:rgba(0,0,0,0.6);
  width:50px;
  height:50px;
  border-radius:50px;
  position:fixed;
  bottom:100px; right:20px;
  z-index:99999;
  color:#fff;
  font-size:22px;
  text-align:center;
  line-height:50px;
  cursor:pointer;
  transition:300ms;
  display:none;
}
.fup:hover {
  background:rgba(0,0,0,0.9);
}
.hot-product-section .product-card {
  height:100%;
}
.hot-product-section .product-card-text-wrapper,
.like-you-section .product-card-text-wrapper {
  height:183px;
}
.filter-one-filter input:checked + div {
  background:#dcdcdc;
}
.bcats {
  margin:10px 0 0 0;
  justify-content:flex-end;
  display:none;
}
.fast-window {
  background:rgba(0,0,0,0.7);
  width:100%;
  height:100%;
  position:fixed;
  top:0; left:0;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:auto;
  z-index:-1;
  opacity:0;
  transition:800ms;
}
.fast-window.active {
  z-index:999999;
  opacity:1;
}
.fast-background {
  width:100%;
  height:100%;
  position:absolute;
  top:0; left:0;
}
.fast-box {
  background:#fff;
  padding:30px;
  width:400px;
  max-width:96%;
  margin:0 auto;
  position:relative;
  border-radius:5px;
}
.fast-box-close {
  font-size:22px;
  position:absolute;
  top:12px; right:12px;
  cursor:pointer;
}
.fast-form-title {
  font-size:25px;
  font-weight:500;
  margin-bottom:20px;
}
.fast-form-labels {
  margin-bottom:22px;
}
.fast-form-label {
  margin-bottom:15px;
}
.fast-form-label > label {
  font-size:14px;
  display:block;
  margin-bottom:5px;
}
.fast-form-label > input,
.fast-form-label > textarea {
  border:1px solid #dcdcdc;
  height:40px;
  padding:0 10px;
  background:#fbfbfb;
  width:100%;
  display:block;
  font-size:13px;
}
.fast-form-label > textarea {
  height:80px;
  resize:none;
  padding:7px 10px;
}
.fast-form-btn,
.custom-btn {
  background:#ffdb11;
  border-radius:5px;
  border:none;
  padding:10px 22px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}
.fast-form-label > label > i {
  color:red;
  font-style:normal;
}
.product-fast {
  margin:22px 0 30px 10px;
  display:flex;
  justify-content:center;
}
.chosen-header-button-fast {
  margin-right:20px;
}
.aside-product-page-counter button {
  cursor:pointer;
}
.req {
  color:red;
  font-style:normal;
}
.total-dsumm {
  text-align:right;
  font-size:14px;
  font-weight:bold;
  margin:-4px 0 15px 0;
  display:none;
}
.n-link {
  color:#e0c110!important;
  font-weight:bold;
}
.comp-tabs {
  display:flex;
  flex-wrap:wrap;
  border-bottom:1px solid #dcdcdc;
  margin-bottom:20px;
  width:100%;
}
.comp-tabs-item {
  width:200px;
  border:1px solid #dcdcdc;
  margin-right:15px;
  line-height:40px;
  text-align:center;
  padding:0 20px;
  font-size:14px;
  font-weight:bold;
  border-radius:5px 5px 0 0;
  border-bottom:none;
  cursor:pointer;
  transition:300ms;
}
.comp-tabs-item.active {
  background:#FFDB11;
  border-color:#FFDB11;
}
@media(max-width:500px) {
  .comp-tabs-item {
    width:100%;
    margin:0 0 10px 0;
    border-radius:5px;
    border:1px solid #dcdcdc;
  }
  .comp-tabs {
    border:none;
  }
}
.header {
  position: fixed;
  top:0;
}
@media(min-width:100px) {
  .header-fixed {
    position:fixed!important;
    top:0!important; left:0;
    width:100%;
    z-index:9998;
    box-shadow:2px 2px 10px rgba(0,0,0,0.17);
  }
  .header-fixed .header {
    position:static;
  }
}
@media(max-width:1500px) {
  .basket_head_list {
    height:200px!important;
  }
  .head_wish,
  .head_compare {
    height:250px!important;
  }
}
/*.bx_filter .bx_filter_input_checkbox .bx_filter_param_text:hover {
  text-decoration:underline!important;
}*/
.flexed {
  display:flex;
  flex-wrap:wrap;
}
.hn {
  display:none;
  width:100%;
  color:#fff;
  margin-top:-4px;
  padding-right:10px;
}
.hn a {
  color:#fff;
}
.hn-phone {
  align-items:center;
  justify-content:flex-end;
}
.hn-phone > i {
  font-size:12px;
  margin-right:6px;
}
.hn-phone > span {
  font-size:14px;
  font-weight:bold;
}
.hn-callback {
  font-size:11px;
  justify-content:flex-end;
}
.hn-callback a {
  text-decoration:underline;
}
.hn-callback a:hover {
  text-decoration:none;
}
.header-fixed .hn {
  display:block;
}
.basket_wrap {
  margin-top:40px;
}
@media(max-width:500px) {
  .bcats {
    width:100%;
  }
  .bcats select {
    display:block;
    width:100%;
  }
}
.bx_filter .bx_filter_popup_result a {
  padding: 10px 20px!important;
  color: #000!important;
  text-shadow: none!important;
  display: inline-block!important;
}
.chosen-section::-webkit-scrollbar {width: 10px; height: 10px;} 
.chosen-section::-webkit-scrollbar-track-piece {background-color: transparent; -webkit-border-radius: 5px;} 
.chosen-section::-webkit-scrollbar-thumb:vertical {height: 10px; background-color: #ffdb11; -webkit-border-radius: 5px;} 
.chosen-section::-webkit-scrollbar-thumb:horizontal {width: 10px; background-color: #ffdb11; -webkit-border-radius: 5px;}

.bx_filter .bx_filter_param_label {
  position:static!important;
}
.xs-btext {
  font-size:13px;
  margin:-10px 0 0 25px!important;
}
/*label[data-role*="label_arrFilter_77"]:not(.xs-label) {
  margin-bottom:-21px!important;
}*/
.xs-btext:hover {
  text-decoration:underline!important;
}
body label[data-role*="label_arrFilter_77"]:nth-child(-n+10) {
  display:block;
}
.product-row-preview-image-wrapper img {
  max-height:170px;
}
.product-row-preview-image-wrapper {
  width:170px;
  justify-content:center;
}
@keyframes pulse {
    0% {
      transform:scale(0.9);
    }
    70% {
      transform:scale(1);
    }
    100% {
       transform:scale(0.9);
    }
}
.slider-col {
  height:0;
  overflow:hidden;
}
.flex {
  display:flex;
  flex-wrap:wrap;
}
.ps-form {
  max-width:650px;
  padding:30px 0 55px 0;
}
.ps-form-labels {
  margin-bottom:30px;
}
.ps-form-label {
  align-items:center;
  margin-bottom:25px;
}
.ps-form-label:last-child {
  margin-bottom:0;
}
.ps-form-label-text {
  width:200px;
}
.ps-form-label-input {
  width:calc(100% - 200px);
}
.ps-form-label-input input,
.ps-form-label-input select,
.ps-form-label-input textarea {
  width:100%;
  display:block;
  height:40px;
  background:#fbfbfb;
  border-radius:5px;
  border:1px solid #dcdcdc;
  padding:0 12px;
  transition:300ms;
}
.ps-form-label-input textarea {
  height:100px;
  padding:10px 12px;
  resize:none;
}
.ps-form-btn {
  background:#FFDB11;
  margin-left:200px;
  cursor:pointer;
}
.ps-form-label-input input:focus,
.ps-form-label-input textarea:focus {
  background:#fff;
  border-color:#000;
}
@media(max-width:767px) {
  .ps-form-label-text,
  .ps-form-label-input {
    width:100%;
  }
  .ps-form-label-text {
    margin-bottom:10px;
  }
  .ps-form-btn {
    margin:0;
  }
}
.sect-items.sect-items-2 .sect-item.sect-item-2{
  margin-bottom: 12px;
}
.success-box {
  border:2px solid green;
  padding:25px;
  text-align:center;
  font-size:18px;
  font-weight:bold;
  line-height:1.4;
  color:green;
  margin:10px 0 80px 0;
}
.catalog-search {
  position:relative;
}
.search-list {
  background:#fff;
  border-radius:6px;
  box-shadow:3px 3px 15px rgba(0,0,0,0.17);
  position:absolute;
  top:calc(100% + 5px);
  left:0;
  z-index:9997;
  margin:0;
  padding:0;
  max-height:300px;
  overflow:auto;
  display:none;
  width:100%;
}
.search-list > li {
  border-bottom:1px solid #dcdcdc;
  list-style:none;
  margin:0;
  padding:0;
}
.search-list > li:last-child {
  border-bottom:none;
}
.search-list > li > a {
  padding:12px 15px;
  display:block;
  text-decoration:none!important;
  font-size:13px;
}
.search-list > li > a:hover {
  background:#f2f2f2;
}
.search-list::-webkit-scrollbar {width: 5px; height: 5px;} 
.search-list::-webkit-scrollbar-track-piece {background-color: transparent; -webkit-border-radius: 5px;} 
.search-list::-webkit-scrollbar-thumb:vertical {height: 5px; background-color: #ffdb11; -webkit-border-radius: 5px;} 
.search-list::-webkit-scrollbar-thumb:horizontal {width: 5px; background-color: #ffdb11; -webkit-border-radius: 5px;}
.search-load {
  display:block;
  max-width:150px;
  margin:0 auto;
}
.hot-product-section,
.like-you-section {
  min-height:1px!important;
}
.sc4 .swiper-slide {
  margin-bottom:30px!important;
}
.like-you-section {
  padding-bottom:30px;
}
.underliner:hover {
  text-decoration:underline;
}
.x-exist {
  background:#ffdb11!important;
}
.x-exist div[class*="wrap_"] {
  background:#fff!important;
}
span[data-role*="count_arrFilter_"],
.cat-num {
  color:#af981b;
}
div.catalog-nav-pagination {
  justify-content:center!important;
  margin:0 0 15px 0!important;
}
.catalog-pagination-pages-numbers div {
  padding:5px 13px!important;
}
.catalog-pagination-pages-numbers {
  font-size:17px!important;
}
/*.header-menu li a[href="/stock/"] {
  color:red;
  font-weight:bold;
}*/
.fast-form-title {
  display:none!important;
}
.main-user-consent-request {
  font-size:13px;
}
.ab-row {
  margin:-10px -20px;
}
.ab-col {
  padding:10px 20px;
}
.swiper-button-disabled {
  display:none!important;
}
.fancybox-nav span {
  visibility:visible!important;
}
.dis {
  cursor:default!important;
  opacity:0.25!important;
}
.xs-text a {
  color:#ffdb11!important;
}
.xs-test a:hover {
  text-decoration:underline!important;
}
.catalog-menu-button i {
  color:#ffdb11;
  font-style:normal;
  font-size:25px;
  position:relative;
  top:-2px;
  width:35px;
  display:none;
}
.product-page-card-desc a {
  color:#ffdb11!important;
}
.product-page-card-desc a:hover {
  text-decoration:underline!important;
}
.form-error .form-field,
.errored {
  border-color:red;
  box-shadow:inset 0 0 0 1px red;
}
.form-error .afbf_error_text {
  display:block;
}
.afbf_error_text {
  color:red;
  font-size:13px;
}
.news-aside {
  transition:300ms;
}
.aside-fixed {
  width:350px;
  position:fixed;
  top:100px;
  z-index:1000;
}
@media screen and (max-width:991px) {
  .chosen-card-wrapper .row > * {
    width:100%;
    flex:0 100%;
    max-width:100%;
    line-height:normal;
  }
  .chosen-card-image-wrapper {
    max-width:200px;
    margin:0 auto;
  }
  .chosen-card-wrapper .row > *:nth-child(n+3) {
    position:relative;
    padding:0 0 0 120px;
    margin-bottom:12px;
  }
  .chosen-card-wrapper .row > *:nth-child(n+3):before {
    content:attr(data-label);
    position:absolute;
    top:-1px; left:10px;
    font-size:12px;
  }
  .chosen-card-wrapper .row > *:first-child {
    margin-bottom:0;
  }
  .chosen-card-wrapper .row .chosen-card-name {
    line-height:normal;
  }
  .chosen-card-wrapper .row > *:nth-child(3):before {
    top:2px;
  }
  .chosen-card-wrapper .row > *:nth-child(2) {
  margin-bottom:15px;
  }
  .chosen-card-delete {
    width:auto!important;
  }
  .chosen-row-bg {
    display:none!important;
  }
  .manf-bkgr {
    max-width:510px!important;
  }
}
@media screen and (max-width:768px) {
  .hot-tabs-buttons-wrapper {
    display:flex;
    flex-wrap:wrap;
    width:100%;
  }
  .hot-tabs-buttons-wrapper > button {
    width:100%;
    margin:12px 0 0 0!important;
  }
  .hot-tabs-buttons-wrapper > button:last-child {
    margin-bottom:0!important;
  }
  .hot-product-section .d-flex.col-10 {
    width:100%;
    flex:0 0 100%;
    max-width:100%;
  }
  .product-page-tab-wrapper ul {
    width:100%;
    border:none;
    margin-left:0!important;
  }
  .product-page-tab-wrapper .product_prop_value {
    float:left;
    width:100%;
  }
  .catalog-sort-row {
    flex-direction:row;
    align-items:flex-end;
  }
  .catalog-per-view-buttons-wrapper {
    margin-top:0!important;
    display:flex;
  }
  .catalog-per-view-buttons-wrapper > a {
    margin-right:7px;
  }
  .catalog-per-view-buttons-wrapper > a:last-child {
    margin-right:0;
  }
}
@media screen and (max-width:575px) {
  .catalog-product-cards-wrapper .catalog-list > div {
    width:50%!important;
    flex:0 0 50%!important;
    max-width:50%!important;
    padding:8px;
  }
  .catalog-product-cards-wrapper .catalog-list {
    margin:0 -8px;
  }
  .product-card-price-wrapper {
    flex-wrap:wrap;
    margin:0 15px 10px 15px!important;
  }
  .product-card-price-wrapper > div {
    width:100%;
  }
  .product-card-price-wrapper a {
    width:100%;
    height:40px;
    margin-top:10px;
    border-radius:10px!important;
  }
  .product-card-preview-wrapper,
  .product-card-preview-wrapper img {
    height:100px!important;
  }
  .product-card-preview-wrapper {
    align-items:center;
  }
  .product-cart-icon {
    background:none!important;
    border-radius:0!important;
  }
  a.product-cart-icon {
    background:#ffdb11!important;
  }
  .product-cart-icon a {
    background:#ffdb11!important;
  }
  .product-card-price-wrapper {
    margin-top:12px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top:auto!important;
    margin-top:0!important;
    bottom:10px;
    zoom:0.8;
  }
  .h1, h1 {
    font-size:1.7rem!important;
  }
  .h2, h2 {
    font-size:1.2rem!important;
  }
  .cs-img {
    width:100%!important;
    flex:0 0 100%!important;
    max-width:100%!important;
  }
  .cs-img img {
    width:100%!important;
    height:auto!important;
  }
  .product-card-text-wrapper > * {
    display:none;
  }
  .product-card-text-wrapper > a,
  .product-card-text-wrapper > div {
    display:block;
  }
  /*.product-card-title {*/
  /*  height:auto!important;*/
  /*}*/
  .product-card-text-wrapper {
    min-height:1px!important;
    padding-bottom:10px!important;
    height:auto!important;
  }
  .catalog-product-card {
    min-height:1px!important;
  }
  /*.hot-product-section .swiper-wrapper {
    flex-wrap:wrap;
    margin:-8px;
    width:auto!important;
  }*/
  /*.hot-product-section .xs-popular-buttons {
    display:none!important;
  }*/
  /*.hot-product-section .swiper-wrapper > div {
    width:calc(50% - 16px);
    margin:8px!important;
    box-shadow:none!important;
  }*/
  /*.hot-product-section .swiper-wrapper .product-card-type {
    width:auto;
    font-size:12px;
    padding-left:5px;
    padding-right:5px;
    top:0;
  }*/
}
@media(max-width:550px) {
  .chosen-header-container-wrapper,
  .chosen-header-buttons-wrapper,
  .bs-flex {
    flex-wrap:wrap;
  }
  .chosen-header-container-wrapper > * {
    width:100%;
  }
  .chosen-header-container-wrapper > h2 {
    margin-bottom:15px!important;
  }
  .chosen-header-buttons-wrapper > a,
  .bs-flex > a {
    width:100%;
    margin:0 0 12px 0;
  }
  .chosen-header-buttons-wrapper > a {
    text-align:center;
  }
  .chosen-header-button-clear {
    justify-content:center;
  }
  .bs-flex > a {
    text-align:center;
  }
  .bs-flex > a > button {
    width:100%;
    padding:10px 35px;
    font-size:13px;
    font-weight:600;
  }
  .chosen-header-buttons-wrapper > a:last-child,
  .bs-flex > a:last-child {
    margin-bottom:0;
  }
  a[href*="?print=Y"] {
    position: relative;
  }
  .manf-bkgr {
    margin:0 15px!important;
    width:auto!important;
  }
}
@media(max-width:350px) {
  .catalog-product-cards-wrapper .catalog-list > div {
    width:100%!important;
    flex:0 0 100%!important;
    max-width:100%!important;
  }
}
.whatsapp {
  position:fixed;
  left:20px; bottom:50px;
  z-index:500;
  display:block;
}
.whatsapp span {
  background:rgba(0,0,0,0.9);
  border-radius:5px;
  padding:5px 15px;
  color:#fff;
  position:absolute;
  bottom:calc(100% + 10px);
  left:0;
  white-space:nowrap;
  opacity:0;
  z-index:-1;
  transition:300ms;
}
.whatsapp img {
  display:block;
  width:70px;
  transition:300ms;
}
.whatsapp img:hover {
  transform:scale(0.89);
}
.whatsapp img:hover + span {
  opacity:1;
  z-index:1;
}
.whatsapp i {
  background:rgba(80,201,93,0.8);
  border-radius:5px;
  padding:3px 10px;
  color:#fff;
  position:absolute;
  top:calc(100% + 5px);
  left:-10px;
  font-weight:bold;
  white-space:nowrap;
  font-style:normal;
  transition:300ms;
}
.whatsapp img:hover + span + i {
  background:rgba(80,201,93,1);
}
@media(max-width:768px) {
  .whatsapp {
    left:15px; bottom:35px;
  }
  .whatsapp img {
    width:50px;
  }
  .whatsapp span {
    display:none;
  }
  .whatsapp i {
    font-size:11px;
    padding:2px 5px;
    left:-8px;
  }
}
.gallery-top .swiper-pagination {
  display:none;
}
.navigation-wrapper,
.navigation-wrapper li {
  list-style:none;
}
.navigation-wrapper {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  margin-left:0!important;
  margin-right:0!important;
  padding:0!important;
}
.page-navigation {
  margin:0!important;
}
.nav-arrow {
  margin:0 7px;
  position:relative;
  bottom:-1px;
}
.chosen-card-wrapper .chosen-card-icons-wrapper {
  display:none!important;
}
@media print {
  .aside-drop-menu,
  .whatsapp {
    display:none!important;
  }
}
a[href*="//scroogefrog.com"] {
  display:none!important;
}
#popup_addbasket {
  width:auto!important;
  height:auto!important;
}
@media(max-width:440px) {
  #popup_addbasket {
    padding:25px!important;
  }
}
#product-page-tab-2 .column-li1 {
  width:100%;
}

/*#webform-contact-us [name='web_form_submit'] {
  border-style: none;
  border-radius: 6px;
  background-color: rgb(38, 38, 38);
  width: 170px;
  height: 50px;
  color: white;
  text-align: center !important;
  cursor: pointer;
}*/

#form-contact-us {
}

.form_failed {
  border-color: red;
  box-shadow: inset 0 0 0 1px red;
}

.form-contact-us__mobile{
  display: none;
}

@media screen and (max-width: 750px) {
  .form-contact-us__mobile {
    display: block;
  }
  .form-contact-us__desktop{
    display: none;
  }
}

input[type=checkbox], input[type=radio] {
  outline: none!important;
}

@media screen and (max-width: 576px) {
  .product-card-text-coupon {
    font-size: 8px;
  }
}

.search-sort {
  margin:20px 0 0 0;
}
.searcher .catalog-nav-pagination {
  margin-top:35px!important;
}
.searcher .catalog-product-cards-wrapper {
  margin-bottom:0!important;
}
.searcher .catalog-product-cards-wrapper .col-9 {
  width:33.33%;
  flex:0 0 33.33%;
  max-width:33.33%;
}
.searchnew {
  min-height: 550px;
  margin-bottom: 50px;
}
.hot-product-section .swiper-button-disabled {
  display: flex!important;
}
.hot-product-section .xs-popular-buttons {
  display: none;
}
.fhide {
  display: none!important;
}
.fshow {
  display: block!important;
}
.hidden {
  display: none;
}
.product-row-type .product-row-preview-image-wrapper .product-card-text-coupon {
  top: auto;
  bottom: 0;
  right: -10px;
}
.swiper-slide {
  position: relative;
}
.slink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
}
@media(max-width: 780px){
  .catalog-filters-wrapper2 .catalog-filters-wrapper{
    width:100%;
  }
}