@charset "UTF-8";
* {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --main-color: #429755;
}

button {
  border: none;
  background: transparent;
  color: inherit;
}
button:focus {
  background: transparent;
}

input,
textarea {
  font-size: 16px;
  line-height: normal;
  color: #3a2623;
}
input:focus,
textarea:focus {
  border: 1px solid rgba(81, 158, 98, 0.5);
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 16px;
  line-height: normal;
  color: #3a2623;
  opacity: 0.6;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  font-size: 16px;
  line-height: normal;
  color: #3a2623;
  opacity: 0.6;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-size: 16px;
  line-height: normal;
  color: #3a2623;
  opacity: 0.6;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 16px;
  line-height: normal;
  color: #3a2623;
  opacity: 0.6;
  -ms-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button:focus {
  border: none;
  outline: none;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #3a2623;
  background: #ffffff;
}

.container {
  height: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* -----Header----- */
.header {
  border-bottom: 1px solid var(--main-color);
  background-color: #fff;
  height: 80px;
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
}

.header-menu a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu span {
  font-size: 1.1rem;
  font-weight: 300;
  margin-left: 13px;
  color: #000;
}

.header-menu span:hover {
  text-decoration: underline;
}

.header-menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu .logo-block {
  height: 100%;
  width: 250px;
  background: url("../img/waste_logo.svg") no-repeat;
  background-position: center;
}

/* Searchbar */
.searchbar-wrapper {
  position: fixed;
  top: 70px;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
}

.no-fixed-searchbar {
  position: absolute !important;
  top: 0;
}

.hide {
  display: none;
}

.searchbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 25px;
  padding: 0 20px;
}

.searchbar-another {
  margin: 5px auto 0;
}

.searchbar .searchbar-input {
  width: 100%;
  font-size: 1.1rem;
  padding-left: 30px;
  border: 1px solid silver;
  border-radius: 0;
}

.searchbar .searchbar-btn {
  padding: 13px 40px;
  border: none;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.1rem;
  margin-left: 20px;
  cursor: pointer;
}

/* -----Sidebar navigation----- */
.sidebar-nav {
  /* display: inline-block; */
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  width: 270px;
  -ms-flex-item-align: start;
      align-self: start;
  position: sticky;
  top: 100px;
  z-index: 98;
}

.main-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tablet-banners {
  display: none;
  margin-left: auto;
}

.mobile-banner2 {
  display: none;
  background-color: #7d7d7d;
  height: 100px;
  width: 320px;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}

/* Catalog & subcatalog arrow icons*/
.sidebar-nav .arrow::before,
.subcatalog-ul .arrow::before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.sidebar-nav a {
  text-decoration: none;
  position: relative;
  display: block;
  padding: 10px 25px 10px 15px;
  color: #000;
  width: 270px;
}

.mm-btn_next i.fas {
  color: rgba(0, 0, 0, 0.3);
}

.sidebar-nav a:hover {
  text-decoration: underline;
}

.sidebar-nav li {
  list-style: none;
  width: 270px;
  background-color: #fff;
}
.sidebar-nav li:not(:last-child) {
  border-bottom: 1px solid rgba(220, 220, 220, 0.8);
}

.sidebar-nav .catalog-ul li:last-child,
.subcatalog-ul li:last-child {
  border-bottom: none;
}

.catalog {
  position: relative;
}

.catalog > ul > li:first-child > a {
  background-color: var(--main-color);
  font-size: 1.2rem;
  padding-left: 8px;
  letter-spacing: 1px;
  color: #fff;
}

.subcatalog-ul li:first-child {
  border-top: 1px solid transparent;
}

.subcatalog-ul {
  position: absolute;
  display: none;
  background-color: #fff;
  top: 42px;
  left: 268px;
  z-index: 100;
  height: 91%;
  overflow: auto;
  -webkit-box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.3);
}

.subcatalog-ul li {
  overflow: visible;
}

.catalog-ul a:hover {
  background-color: var(--main-color);
  color: #fff;
}

/* Subcatalog info */
.sidebar-nav .info,
.sidebar-nav .info2 {
  background-color: #fff;
  position: absolute;
  display: none;
  left: 558px;
  top: 42px;
  z-index: 100;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  height: 91%;
}

.sidebar-nav .active {
  display: block;
}

.sidebar-nav .direct-active {
  left: 270px;
  display: block;
}

.sidebar-nav .info h5,
.sidebar-nav .info2 h5 {
  font-weight: normal;
  font-size: inherit;
}

.sidebar-nav .info span,
.sidebar-nav .info2 span {
  font-size: 13px;
  font-style: italic;
  font-weight: 200;
}

.sidebar-nav .info span.last-date,
.sidebar-nav .info span.quantity,
.sidebar-nav .info2 span.last-date,
.sidebar-nav .info2 span.quantity {
  display: block;
  margin-top: 8px;
}

/* Subnav */
.fixed-subnav {
  position: fixed;
  top: 80px;
  background-color: #fff;
  z-index: 90;
  width: 100%;
}

.fixed-subnav .container {
  padding: 0 10px;
}

.subnav li {
  list-style: none;
}

.subnav a {
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 10px 15px;
  color: #000;
}

.subnav a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.subnav ul.mddh {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 30px;
  padding-bottom: 12px;
  padding-left: 311px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  margin-top: 6px;
}

/* -----Info section----- */
.info-section {
  margin-top: 145px;
  display: inline-block;
  width: 100%;
}

/* banner-block */
.banner-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 20px;
}

.banner-block .banner {
  background-color: grey;
  /*background: url("../img/ ...") center center no-repeat;*/
  /*background-size: cover;*/
  height: 200px;
  width: 300px;
  margin: 20px;
}

/* ads */
h2.title-section {
  margin: 20px 0;
  font-weight: 600;
  font-size: 24px;
  color: #312121;
}

.activity {
  font-weight: 600;
  color: #235281;
  text-decoration: none;
}

.activity:hover {
  text-decoration: underline;
}

.location {
  font-weight: 400;
}

.category {
  color: #008e3e;
  font-weight: normal;
}

.location sup {
  font-style: italic;
}

.ads,
.business-cards {
  padding: 0 20px;
  margin-left: 10px;
}

/* business-cards */
.business-card-item {
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.business-card-item a {
  font-weight: 600;
  color: #004a80;
  text-decoration: none;
}

.business-cards {
  margin-top: 36px;
}

.business-card-item a:hover {
  text-decoration: underline;
}

.business-card-item sup {
  font-style: italic;
}

.business-card-item p.business-p {
  margin-bottom: 0px;
}

/* -----Footer----- */
.footer {
  padding: 50px 0;
  border-top: 1px solid var(--main-color);
  margin-top: 50px;
}

.footer .flex-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer input {
  width: 200px;
}

.subscribe-block1 {
  border: 1px solid var(--main-color);
  padding: 10px;
  min-height: 180px;
  max-width: 272px;
}

.subscribe-block1 p {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.form-item {
  margin-bottom: 10px;
}

.subscribe-block1 input {
  width: 95%;
  font-size: 13px;
  border: 1px solid var(--main-color);
  padding: 3px 8px;
}

.subscribe-block1 button {
  background-color: #56bb43;
  border: none;
  padding: 5px 10px;
  color: #fff;
  margin-top: 5px;
}

.subscribe-block2 {
  border: 2px solid #7ca534;
  padding: 0 10px;
  background-color: #e4f5c9;
  max-width: 272px;
}

.subscribe-block2 .form-item {
  margin-top: 8px;
}

.subscribe-block2 .form-item:first-child {
  margin-top: 0;
}

.subscribe-block2 .form-item:nth-child(2) {
  margin-top: 5px;
}

.subscribe-block2 .form-item:nth-child(2) a {
  font-size: 14px;
  font-weight: 900;
  color: #000;
}

.subscribe-block2 .form-item:last-child a {
  font-size: 11px;
  color: #000;
}

.subscribe-block2 input {
  border: 1px solid #7ca534;
  padding: 1px 0;
  width: 100%;
}

.social-links.tablet-show {
  display: none;
}

.subscribe-block2 button {
  background-color: #7ca534;
  border: 1px solid #4e6822;
  color: #fff;
  padding: 2px 12px;
  font-size: 12px;
}

.subscribe-block2 p {
  font-size: 11px;
}

.subscribe-block2 .subscribe-count {
  letter-spacing: 1px;
  text-align: right;
  margin-right: 15px;
  line-height: 0.8;
}

.subscribe-block2 .subscribe-count span {
  letter-spacing: normal;
  display: block;
}

.subscribe-block2 .form-item:nth-child(4),
.subscribe-block2 .form-item:nth-child(5) {
  display: inline-block;
}

.subscribe-block2 .form-item:last-child {
  text-align: center;
}

/* Footer-news */
.footer-news {
  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;
  height: 100%;
}

.footer-news .news-links a {
  text-align: center;
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}

.footer-news .news-links a:first-child {
  margin-bottom: 10px;
}

.footer-news .news-links a:last-child {
  margin-top: 10px;
}

.footer-news .news-icon {
  padding-left: 15px;
}

.footer-news a:hover {
  text-decoration: underline;
}

/* Footer info */
.footer-info .footer-nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.footer-info .footer-nav li {
  text-align: center;
  margin-bottom: 20px;
  list-style: none;
}

.footer-nav ul {
  padding: 0;
}

.footer-info .social-links li {
  list-style: none;
  margin: 5px;
}

.footer-info .social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .warning {
  text-align: center;
}

.footer .warning span {
  color: #56bb43;
  font-weight: 900;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Tablet */
/* back-drop */
#back-drop {
  width: 100%;
  height: 100%;
  z-index: 95;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
}

.mCSB_scrollTools {
  width: 20px;
  background-color: lightgrey;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 18px;
  background-color: white;
  border-radius: 0;
}

.mCSB_inside > .mCSB_container {
  margin-right: 20px;
}

.mCSB_draggerRail {
  display: none;
}

.title-nav {
  background-color: #429755;
  color: white;
  padding: 10px 15px 10px 15px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  display: block;
}

a.mm-navbar__title {
  color: #fff !important;
  background-color: #429755;
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn,
.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

a.mm-navbar__title {
  color: #fff !important;
  background-color: #429755;
}

.sidebar-nav a {
  width: 100%;
  font-size: 14px;
}

.sidebar-nav a i {
  float: right;
}

.text-logo.search-btn img {
  width: 27px;
}

.sidebar-nav ul {
  margin: 0;
  padding: 0;
}

.dropdown-toggle::after {
  /* right: -2px; */
  display: inline-block;
  font-size: 0px;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 12px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
}

.dropdown-menu {
  -webkit-transform: translate(0, 39px) !important;
      -ms-transform: translate(0, 39px) !important;
          transform: translate(0, 39px) !important;
}

.btn.lang {
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 7px 15px;
  color: #000;
  min-width: 80px;
  border-radius: 0;
}

.btn.lang:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.lang:hover {
  color: #fff;
  background-color: #429755;
}

.btn.lang:hover {
  color: #fff;
  background-color: #429755;
}

.mobile-banner {
  display: none;
}

.mobile-banner {
  margin-top: 40px;
}

.mobile-banner img {
  display: block;
  margin: 10px auto;
  height: 50px;
}

#menu:not(.mm-menu),
#mm-menu:not(.mm-menu) {
  display: none !important;
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn,
.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: #429755;
  color: #ffffff;
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn i.fas {
  color: #ffffff;
}

.mm-listitem__btn:hover i.fas {
  color: rgba(0, 0, 0, 0.7) !important;
}

.mm-listitem__btn:hover,
.mm-listitem__text:hover {
  color: rgba(0, 0, 0, 0.7) !important;
  background: #bcf0bb !important;
}

/*CONTENT*/
.content {
  margin-top: 20px;
}

.content__mddh {
  padding-left: 0px !important;
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.content__ads {
  position: relative;
  z-index: 2;
}

.nofixed-subnav,
.nofixed-header {
  position: static !important;
  z-index: 1 !important;
}

.crumbs__link {
  list-style-type: none;
  display: inline;
}

.crumbs__link:not(:last-of-type)::after {
  content: ">";
  margin: 0 10px;
}

.crumbs__link a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.crumbs__inner {
  position: relative;
  font-family: "Open Sans", sans-serif;
  padding-left: 0;
}

.crumbs__home img {
  -webkit-transform: translateY(-3.5px);
      -ms-transform: translateY(-3.5px);
          transform: translateY(-3.5px);
  width: 22px;
  height: 22px;
}

.page-title {
  font-size: 22px;
  margin: 10px 0 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.page-inner__sup {
  font-style: italic;
  font-size: 0.65em;
}

.content__show {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.content__ads--block {
  background-color: gray;
  max-width: 160px;
}
@media screen and (min-width: 992px) {
  .content__ads--block {
    height: 550px;
  }
}
@media screen and (min-width: 1100px) {
  .content__ads--block {
    height: 600px;
  }
}

.content__ads--block a {
  width: 100%;
  height: 100%;
  display: block;
}

.sticky-lg-top {
  top: 30px !important;
  position: sticky !important;
  z-index: 1;
}

/*.content__ads--block-2 {*/
/*    background-color: #808080FF;*/
/*    !*width: 100%;*!*/
/*    max-width: 160px;*/
/*    height: 600px;*/
/*    margin-top: 20px;*/
/*}*/
.sticky-top {
  top: 40px;
  z-index: 1;
}

/* Визитки*/
.busines-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.busines-cards_prestizh-block {
  background-color: rgb(252, 252, 163);
  padding: 20px 0;
  margin: 20px 0 30px;
}

.advert {
  background-color: #b6fccb !important;
}

.busines-cards_prestizh-block_title {
  text-align: center;
}

.busines-cards_free-cards {
  margin: 30px 0;
}

.pagination a {
  color: #004a80;
  padding: 0 7px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.page-item-arrow {
  padding: 0 20px;
}

.pagination--active a {
  cursor: default;
  pointer-events: none;
  color: #000;
}

/*FOOTER*/
/*.footer__content {*/
/*    display: flex;*/
/*    justify-content: space-around;*/
/*    align-items: center;*/
/*}*/
/*.footer__content--item{*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    width: 100%;*/
/*    max-width: 668px;*/
/*}*/
.footer__content--list {
  list-style: none;
}

.footer__content--list a {
  text-decoration: none;
  color: #000;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 17px;
}

.footer__content--list a:hover {
  text-decoration: underline;
}

.footer__content--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 180px;
}

.footer__content--social li {
  list-style: none;
}

.footer__warn {
  padding-top: 40px;
  font-family: sans-serif;
  width: 100%;
  max-width: 65rem;
  margin: 0 auto;
}

.footer__warn span {
  font-weight: 600 !important;
  font-family: sans-serif !important;
}

.w-100 {
  margin: 0;
}

.btn-up {
  padding: 10px 12px 15px;
  background-color: #badbc2;
  position: fixed;
  bottom: 50px;
  right: auto;
  left: 20px;
  text-decoration: none;
  z-index: 20;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
  opacity: 0;
}
@media screen and (min-width: 576px) {
  .btn-up {
    left: 50px;
  }
}

.btn-up.active--btn {
  opacity: 1;
}
.btn-up.active--btn:focus {
  background-color: #cdfdcd;
}

#mm-menu {
  opacity: 0;
  visibility: hidden;
}

.mm-searchfield__input,
.mm-menu {
  font-family: "Open Sans", sans-serif;
}

.mm-listitem__text {
  white-space: normal;
}

.weight-bold {
  font-weight: 700 !important;
  margin: 0;
  padding: 0;
}

/*SORT*/
.content__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sort-active {
  color: #000;
  text-decoration: none;
}

.sort-active:hover {
  color: #000;
  cursor: default;
}

.sort__link {
  position: relative;
}

.tooltip__show {
  position: relative;
  cursor: pointer;
  top: -10px;
}

.tooltip__show--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #008e3e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.tooltip__desc {
  position: absolute;
  padding: 2px 5px;
  border-radius: 2px;
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  z-index: 3;
  display: none;
  width: 350px;
  cursor: default;
}
.tooltip__desc.active {
  display: block;
}

.tooltip__top .tooltip__desc {
  left: 50%;
  -webkit-transform: translate(-10%, 0);
      -ms-transform: translate(-10%, 0);
          transform: translate(-10%, 0);
  bottom: 100%;
  margin-bottom: 10px;
}

.tooltip__desc:after {
  content: "";
  position: absolute;
  border: 0 solid transparent;
}

.tooltip__top .tooltip__desc:after {
  left: 10%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 100%;
  border-width: 10px 10px 0 10px;
  border-top-color: #ccc;
}

/*SORT BLOCK MOB*/
.sort__block--mob {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sort__mob--header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}

.sort__mob--current {
  font-size: 18px;
  line-height: 24px;
  padding: 8px;
}

.sort__mob--icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 15px;
  margin-left: 10px;
  -webkit-transition: -webkit-transform 50ms linear;
  transition: -webkit-transform 50ms linear;
  -o-transition: transform 50ms linear;
  transition: transform 50ms linear;
  transition: transform 50ms linear, -webkit-transform 50ms linear;
}

.sort__mob--icon img {
  max-width: 100%;
}

.sort__mob--body {
  background-color: #ffffff;
  display: none;
}

.sort__block--mob.is-active .sort__mob--body {
  display: block;
}

.sort__mob--item {
  line-height: 24px;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
}

.sort__mob--item:hover {
  background-color: #f2f2f2;
}

.sort__mob--item a {
  text-decoration: none;
  color: #312121;
}

/*content block logo*/
.content__block--logo {
  width: 100%;
  max-width: 250px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  border: 2px solid rgba(125, 125, 125, 0.5);
}

.content__block--logo img {
  max-width: 100%;
}

.content__block--text-margin0 p {
  margin: 0;
}
.content__block--text-margin0 .text-medium {
  font-weight: 600;
  margin-right: 3px;
  display: inline;
}
@media screen and (min-width: 768px) {
  .content__block--text-margin0 .text-medium {
    width: calc(25% - 3px);
  }
}
.content__block--text-margin0 .text-right {
  display: inline;
}
@media screen and (min-width: 768px) {
  .content__block--text-margin0 .text-right {
    width: 75%;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

/*contact information*/
.alert {
  padding: 0.5rem 1rem;
}

.content__block--cont {
  background-color: #b6fccb;
}

.content__block--cont a {
  text-decoration: none;
}

.cont__information--mail button {
  color: #0d6efd;
}

.cont__information,
.cont__site {
  padding: 20px 40px;
}

.cont__information--title {
  font-weight: 600;
}

.cont__information--number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*addwish*/
.addwish {
  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;
}

.addwish__text {
  font-weight: 700;
  cursor: pointer;
}

/*content block ad*/
.content__ad--title,
.content__share--title {
  font-weight: 700;
}

.content__ad--item {
  list-style: none;
  padding: 0;
  line-height: 30px;
}

.content__ad--link a {
  text-decoration: none;
  color: #235281;
  font-weight: 600;
}

.content__ad--type {
  color: #008e3e;
}

.content__ad--type sup {
  font-style: italic;
}

/*content block share*/
.content__share--social {
  letter-spacing: 20px;
}

/*contact modal*/
.cont__feedback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 242, 248, 0.6);
  z-index: 100;
}

.cont__feedback--modal {
  max-width: 370px;
}

.cont__modal--form {
  width: 100%;
}

.modal-header .btn-close {
  margin: 0 0 0 10px;
}
.modal-content {
  padding: 10px 20px;
}
.modal-content .btn {
  padding: 0.3rem 0.5rem;
}
@media screen and (min-width: 480px) {
  .modal-content .btn {
    padding: 0.375rem 1.2rem;
  }
}
.modal-content h5 {
  font-size: 1rem;
}
@media screen and (min-width: 480px) {
  .modal-content h5 {
    font-size: 1.25rem;
  }
}
.modal-footer {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cont__modal--input {
  position: relative;
  margin-bottom: 15px;
}

.cont__modal--input input {
  height: 35px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 8px;
}
.cont__modal--input input:focus {
  border: 1px solid rgba(81, 158, 98, 0.5);
}

.cont__modal--textarea {
  position: relative;
}

.cont__modal--placeholder {
  opacity: 0.6;
  position: absolute;
  left: 5px;
  top: 7px;
  pointer-events: none;
  padding-left: 5px;
  background: transparent;
  -webkit-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.cont__modal--textarea textarea {
  width: 100%;
  resize: none;
  height: 120px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cont__modal--textarea textarea:focus {
  border: 1px solid rgba(81, 158, 98, 0.5);
}

@media screen and (max-width: 1100px) {
  .subscribe-block2 .subscribe-count {
    margin-right: 7px;
  }
  .subscribe-block2 button {
    padding: 2px 7px;
  }
  .sticky-lg-top {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .subnav a {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .mobile-banner2 {
    display: block;
  }
  .content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .content__ads--block {
    height: 50px;
    max-width: 300px;
    margin: 0px auto 20px;
    width: 100%;
  }
  .content__ads--block-2 {
    display: none;
  }
  .footer-nav ul,
.footer-info .footer-nav ul li:last-child {
    margin-bottom: 0;
  }
  .social-links.tablet-show ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
  .social-links.tablet-show ul li {
    list-style: none;
    margin-right: 20px;
  }
  .tablet-none {
    display: none;
  }
  .footer-info .footer-nav ul li {
    text-align: left;
  }
  .news-icon {
    position: relative;
    top: -20px;
  }
  .footer-news .news-links a {
    text-align: left;
  }
  .subscribe-block1 {
    min-height: 173px;
  }
  .sidebar-nav {
    position: static;
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
            box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
    width: 45%;
    z-index: 1;
  }
  .warning {
    margin-top: 20px;
  }
  .banner-block {
    display: none;
  }
  .tablet-banners {
    display: block;
    width: 46%;
  }
  .mob-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
  }
  .tablet-banners a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin-bottom: 30px;
  }
  .tablet-banners a img {
    width: 340px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .subnav a {
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 10px 15px;
    color: #000;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .social-links.tablet-show {
    display: block;
  }
  .header {
    height: 90px;
  }
  .header-menu span {
    display: none;
  }
  .searchbar-wrapper {
    top: 89px;
  }
  .no-fixed-searchbar {
    top: 0;
  }
  .searchbar-wrapper .searchbar {
    margin: 0;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .searchbar-another {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .main-block {
    display: block;
    padding: 190px 0 0 0;
  }
  .mobile-menu-catalog ul li:last-child,
.mobile-menu-subcatalog ul div li:last-child {
    margin-bottom: 40px;
  }
  .fixed-subnav {
    position: absolute;
    padding: 0px 0;
    top: 90px;
  }
  .fixed-subnav .subnav ul {
    padding: 20px 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .subnav ul li {
    margin: 0 10px;
  }
  .sidebar-nav a {
    width: 100%;
    padding: 15px 40px 15px 20px;
  }
  .sidebar-nav .arrow::before {
    right: 30px;
  }
  .sidebar-nav li {
    width: 100%;
  }
  .sidebar-nav .catalog-ul li:last-child {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
  }
  .info-section {
    margin-top: 10px;
    float: none;
  }
  .ads,
.business-cards {
    margin-left: 0;
  }
  .banner-block {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .banner-block .banner {
    width: 300px;
  }
  .footer .flex-footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-info {
    margin-top: 30px;
  }
  /* Menu popup */
  .mobile-menu-catalog,
.mobile-menu-subcatalog {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 150;
    overflow: scroll;
  }
  .mobile-menu-subcatalog .subtitle {
    padding: 10px;
  }
  .mobile-menu-subcatalog .subtitle a {
    display: inline-block;
    background-color: #55c56e;
    color: #fff;
    padding: 8px;
    font-size: 1.1rem;
    margin-left: 30px;
  }
  .mobile-menu-catalog .title a,
.mobile-menu-subcatalog .title a {
    background-color: var(--main-color);
    color: #fff;
    padding: 8px;
    display: inline-block;
    font-size: 1.1rem;
    margin-left: 15px;
  }
  .mobile-menu-catalog .title,
.mobile-menu-subcatalog .title {
    padding: 10px;
  }
  .mobile-menu-catalog .title .close-btn,
.mobile-menu-subcatalog .title .close-btn {
    font-size: 2rem;
    position: absolute;
    right: 20px;
    top: 8px;
    font-weight: 200;
    color: var(--main-color);
    cursor: pointer;
  }
  .mobile-menu-container {
    height: 100%;
    width: 100%;
  }
  .mobile-menu-catalog a,
.mobile-menu-subcatalog a {
    display: block;
    text-decoration: none;
    color: #000;
  }
  .mobile-menu-catalog li,
.mobile-menu-subcatalog li {
    list-style: none;
  }
  .mobile-menu-catalog ul li,
.mobile-menu-subcatalog ul li {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
    background-color: #fff;
  }
  .mobile-menu-catalog ul li a {
    padding: 15px 40px 15px 40px;
    position: relative;
  }
  .mobile-menu-subcatalog ul li a {
    position: relative;
    padding: 15px 40px 15px 60px;
  }
  .mobile-menu-catalog .arrow::before,
.mobile-menu-subcatalog .arrow::before {
    right: 30px;
  }
  .mobile-menu-catalog .title .arrow-back,
.mobile-menu-subcatalog .title .arrow-back,
.mobile-menu-catalog .subtitle .arrow-back,
.mobile-menu-subcatalog .subtitle .arrow-back {
    position: relative;
    left: 5px;
  }
  .mobile-menu-catalog .title .arrow-back:before,
.mobile-menu-subcatalog .title .arrow-back:before,
.mobile-menu-catalog .subtitle .arrow-back:before,
.mobile-menu-subcatalog .subtitle .arrow-back:before {
    position: absolute;
    top: 10%;
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    -webkit-transform: rotate(-135deg) translateY(-50%);
        -ms-transform: rotate(-135deg) translateY(-50%);
            transform: rotate(-135deg) translateY(-50%);
  }
  .mobile-menu-catalog .subtitle .arrow-back,
.mobile-menu-subcatalog .subtitle .arrow-back {
    left: 20px;
  }
  .mobile-menu-info,
.mobile-menu-info2,
.mobile-menu-info3 {
    position: fixed;
    z-index: 200;
    top: 120px;
    background-color: #fff;
    width: 100%;
    height: 100%;
  }
  .mobile-menu-info h5,
.mobile-menu-info2 h5,
.mobile-menu-info3 h5 {
    display: inline-block;
  }
  .mobile-menu-info a,
.mobile-menu-info2 a,
.mobile-menu-info3 a {
    text-decoration: none;
    color: #000;
  }
  .mobile-menu-info .quantity,
.mobile-menu-info2 .quantity,
.mobile-menu-info3 .quantity {
    display: block;
  }
  .mobile-menu-info li,
.mobile-menu-info2 li,
.mobile-menu-info3 li {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
    line-height: 1.6;
  }
  .mobile-menu-info .info li:first-child {
    padding: 10px;
    font-size: 1.1rem;
  }
  .mobile-menu-info .info li.title a,
.mobile-menu-info .info2 li.title a,
.mobile-menu-info2 .info li.title a,
.mobile-menu-info2 .info2 li.title a,
.mobile-menu-info3 .info li.title a,
.mobile-menu-info3 .info2 li.title a {
    background-color: #67dc81;
    display: inline-block;
    color: #fff;
    line-height: normal;
    padding: 8px;
    margin-left: 50px;
  }
  .mobile-menu-info a,
.mobile-menu-info2 a,
.mobile-menu-info3 a {
    display: block;
    padding: 15px 15px 15px 70px;
  }
  .mobile-menu-info .quantity,
.mobile-menu-info .last-date,
.mobile-menu-info2 .quantity,
.mobile-menu-info2 .last-date,
.mobile-menu-info3 .quantity,
.mobile-menu-info3 .last-date {
    font-style: italic;
    font-weight: 200;
  }
  body > div.active {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .content__form--input {
    width: 250px;
  }
  .mt-20 {
    margin-top: 20px;
  }
  .content__form--input input {
    max-width: 100%;
  }
  .content__form--select {
    width: 250px;
  }
  .content__form--input__long {
    max-width: 100% !important;
  }
  .content__form--btn input {
    width: 145px;
  }
  .header {
    z-index: 2;
  }
  .mm-menu_position-bottom.mm-menu_opened,
.mm-menu_position-front.mm-menu_opened,
.mm-menu_position-top.mm-menu_opened {
    z-index: 5;
  }
  .subscribe-block2,
.subscribe-block1 {
    margin-right: auto;
    margin-left: auto;
  }
  .tablet-none {
    display: block;
  }
  .tablet-show {
    display: none;
  }
  .tablet-banners {
    display: none;
  }
  .sidebar-nav {
    width: 100%;
  }
  .mobile-banner {
    display: block;
  }
  .mobile-banner img {
    display: block;
  }
  .btn.lang,
.subnav a,
.title-nav {
    font-size: 14px;
  }
  .footer-news {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-nav ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-links ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__content--item {
    line-height: 2.5;
  }
  .sort__block--mob {
    display: block;
  }
  .content__sort {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sort__block {
    display: none !important;
  }
  .sort__title {
    font-size: 14px;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form-control::-moz-placeholder {
    font-size: 14px;
  }
  .form-control:-ms-input-placeholder {
    font-size: 14px;
  }
  .form-control::-ms-input-placeholder {
    font-size: 14px;
  }
  .form-control::placeholder {
    font-size: 14px;
  }
  .form-select {
    font-size: 14px !important;
    padding: 0.375rem 1.75rem 0.375rem 0.4rem !important;
  }
  .tooltip__desc p {
    font-size: 12px;
  }
  .tooltip__top .tooltip__desc {
    left: 50%;
    -webkit-transform: translate(-80%, 0);
        -ms-transform: translate(-80%, 0);
            transform: translate(-80%, 0);
    bottom: 100%;
    margin-bottom: 10px;
  }
  .tooltip__top .tooltip__desc:after {
    left: 80%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 100%;
    border-width: 10px 10px 0 10px;
    border-top-color: #ccc;
  }
  .form-select {
    line-height: 1.7 !important;
  }
}
@media (max-width: 576px) {
  .content__search {
    display: none;
  }
  .form-select {
    line-height: 1.9 !important;
  }
  .content__show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    cursor: pointer;
  }
  .content__show span {
    margin-right: 15px;
  }
  .show-from {
    display: block;
  }
  .w-100 {
    display: none;
  }
  .content__form {
    padding-top: 40px;
  }
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__content--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .crumbs__home img {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    width: 18px;
    height: 18px;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 13px;
  }
  .form-control::-moz-placeholder {
    font-size: 13px;
  }
  .form-control:-ms-input-placeholder {
    font-size: 13px;
  }
  .form-control::-ms-input-placeholder {
    font-size: 13px;
  }
  .form-control::placeholder {
    font-size: 13px;
  }
  .form-select {
    font-size: 13px !important;
    padding: 0.375rem 1.75rem 0.375rem 0.4rem !important;
  }
  .tooltip__desc {
    width: 300px;
  }
  .tooltip__desc p {
    font-size: 11px;
  }
  .ps-xs-1 {
    padding: 0 10px !important;
  }
  .sort__mob--current {
    font-size: 16px;
  }
  .sort__mob--item {
    font-size: 12px;
  }
  .content__block--desc {
    margin-top: 10px;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /*.cont__feedback--modal {*/
  /*  top: 90%;*/
  /*  left: 90%;*/
  /*  transform: translate(-90%, -90%);*/
  /*}*/
}
/* -----Mobile----- */
@media (max-width: 767px) {
  .content__mddh {
    padding-left: 0px !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .subnav .mddh .dropdown li a {
    border: 0;
  }
  .dropdown-menu.show {
    border-radius: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    top: -43px !important;
    left: 83px !important;
    min-width: inherit;
    padding: 2px 0;
  }
  .dropdown-menu .dropdown-item {
    padding: 8px;
  }
  .header-menu span {
    display: none;
  }
  .header-menu .logo-block {
    width: 90px;
    background: url("../img/waste_logo_mobile.svg") no-repeat;
    background-position: center center;
  }
  .searchbar .searchbar-btn {
    margin-left: 0;
    padding: 13px 20px;
  }
  .btn.lang.show:after {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .main-block {
    display: block;
    padding: 160px 0 0 0;
  }
  .fixed-subnav {
    position: absolute;
    padding: 0;
    top: 80px;
  }
  .fixed-subnav .subnav ul.mddh {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .subnav ul li {
    margin: 0 10px;
  }
  .sidebar-nav {
    position: static;
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
            box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
    width: 100%;
  }
  .sidebar-nav a {
    width: 100%;
    padding: 15px 40px 15px 20px;
  }
  .sidebar-nav .arrow::before {
    right: 30px;
  }
  .ads h2 {
    margin: 20px 0;
  }
  .business-cards h2 {
    margin: 50px 0 20px 0;
  }
  .sidebar-nav li {
    width: 100%;
  }
  .sidebar-nav li:first-child {
    margin-top: 10px;
  }
  .sidebar-nav .catalog-ul li:last-child {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
  }
  .info-section {
    margin-top: 13px;
    float: none;
  }
  .ads,
.business-cards {
    margin-left: 0;
  }
  .banner-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: none;
  }
  .banner-block .banner {
    width: 300px;
  }
  .footer .flex-footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0;
  }
  .flex-footer > * {
    margin-bottom: 30px;
  }
  .footer-info .footer-nav ul li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
  }
  .footer-info .social-links ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* Menu popup */
  .mobile-menu-catalog,
.mobile-menu-subcatalog {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 150;
    overflow: scroll;
  }
  .mobile-menu-subcatalog .subtitle {
    padding: 10px;
  }
  .mobile-menu-subcatalog .subtitle a {
    display: inline-block;
    background-color: #55c56e;
    color: #fff;
    padding: 8px;
    font-size: 1.1rem;
    margin-left: 30px;
  }
  .mobile-menu-catalog .title a,
.mobile-menu-subcatalog .title a {
    background-color: var(--main-color);
    color: #fff;
    padding: 8px;
    display: inline-block;
    font-size: 1.1rem;
    margin-left: 15px;
  }
  .mobile-menu-catalog .title,
.mobile-menu-subcatalog .title {
    padding: 10px;
  }
  .mobile-menu-catalog .title .close-btn,
.mobile-menu-subcatalog .title .close-btn {
    font-size: 2rem;
    position: absolute;
    right: 20px;
    top: 8px;
    font-weight: 200;
    color: var(--main-color);
    cursor: pointer;
  }
  .mobile-menu-container {
    height: 100%;
    width: 100%;
  }
  .mobile-menu-catalog a,
.mobile-menu-subcatalog a {
    display: block;
    text-decoration: none;
    color: #000;
  }
  .mobile-menu-catalog li,
.mobile-menu-subcatalog li {
    list-style: none;
  }
  .mobile-menu-catalog ul li,
.mobile-menu-subcatalog ul li {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
    background-color: #fff;
  }
  .mobile-menu-catalog ul li:last-child,
.mobile-menu-subcatalog ul div li:last-child {
    margin-bottom: 40px;
  }
  .mobile-menu-catalog ul li a {
    padding: 15px 40px 15px 40px;
    position: relative;
  }
  .mobile-menu-subcatalog ul li a {
    position: relative;
    padding: 15px 40px 15px 60px;
  }
  .mobile-menu-catalog .arrow::before,
.mobile-menu-subcatalog .arrow::before {
    right: 30px;
  }
  .mobile-menu-catalog .title .arrow-back,
.mobile-menu-subcatalog .title .arrow-back,
.mobile-menu-catalog .subtitle .arrow-back,
.mobile-menu-subcatalog .subtitle .arrow-back {
    position: relative;
    left: 5px;
  }
  .mobile-menu-catalog .title .arrow-back:before,
.mobile-menu-subcatalog .title .arrow-back:before,
.mobile-menu-catalog .subtitle .arrow-back:before,
.mobile-menu-subcatalog .subtitle .arrow-back:before {
    position: absolute;
    top: 10%;
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    -webkit-transform: rotate(-135deg) translateY(-50%);
        -ms-transform: rotate(-135deg) translateY(-50%);
            transform: rotate(-135deg) translateY(-50%);
  }
  .mobile-menu-catalog .subtitle .arrow-back,
.mobile-menu-subcatalog .subtitle .arrow-back {
    left: 20px;
  }
  .mobile-menu-info,
.mobile-menu-info2,
.mobile-menu-info3 {
    position: fixed;
    z-index: 200;
    top: 120px;
    background-color: #fff;
    width: 100%;
    height: 100%;
  }
  .mobile-menu-info h5,
.mobile-menu-info2 h5,
.mobile-menu-info3 h5 {
    display: inline-block;
  }
  .mobile-menu-info a,
.mobile-menu-info2 a,
.mobile-menu-info3 a {
    text-decoration: none;
    color: #000;
  }
  .mobile-menu-info .quantity,
.mobile-menu-info2 .quantity,
.mobile-menu-info3 .quantity {
    display: block;
  }
  .mobile-menu-info li,
.mobile-menu-info2 li,
.mobile-menu-info3 li {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
    line-height: 1.6;
  }
  .mobile-menu-info .info li:first-child {
    padding: 10px;
    font-size: 1.1rem;
  }
  .mobile-menu-info .info li.title a,
.mobile-menu-info .info2 li.title a,
.mobile-menu-info2 .info li.title a,
.mobile-menu-info2 .info2 li.title a,
.mobile-menu-info3 .info li.title a,
.mobile-menu-info3 .info2 li.title a {
    background-color: #67dc81;
    display: inline-block;
    color: #fff;
    line-height: normal;
    padding: 8px;
    margin-left: 50px;
  }
  .mobile-menu-info a,
.mobile-menu-info2 a,
.mobile-menu-info3 a {
    display: block;
    padding: 15px 15px 15px 70px;
  }
  .mobile-menu-info .quantity,
.mobile-menu-info .last-date,
.mobile-menu-info2 .quantity,
.mobile-menu-info2 .last-date,
.mobile-menu-info3 .quantity,
.mobile-menu-info3 .last-date {
    font-style: italic;
    font-weight: 200;
  }
  body > div.active {
    display: block;
  }
  #menu {
    display: none;
  }
  #mm-menu {
    visibility: visible;
    opacity: 1;
  }
  .tooltip__top .tooltip__desc {
    left: 50%;
    -webkit-transform: translate(-35%, 0);
        -ms-transform: translate(-35%, 0);
            transform: translate(-35%, 0);
    bottom: 100%;
    margin-bottom: 10px;
    line-height: 18px;
  }
  .tooltip__top .tooltip__desc:after {
    left: 35%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 100%;
    border-width: 10px 10px 0 10px;
    border-top-color: #ccc;
  }
}
@media (max-width: 520px) {
  .page-title {
    margin: 10px 0 40px 0;
    font-size: 18px;
  }
  .crumbs__inner {
    margin: 20px 0;
  }
  .crumbs__link a {
    font-size: 16px;
  }
  .subnav .mddh li:not(:first-child) {
    min-width: 135px;
  }
  #subnov-pn {
    padding: 10px 90px;
  }
  .subnav .mddh .dropdown li:not(:first-child) {
    min-width: auto;
  }
  .subnav .mddh li:not(:first-child) a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subnav .mddh a {
    border: 1px solid rgba(220, 220, 220, 0.8);
  }
  .subscribe-block1,
.subscribe-block2 {
    width: 224px;
    margin: 0 auto;
  }
  .footer .flex-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .form-item button {
    width: 100px;
    font-size: 10px;
  }
  .subscribe-block2 .subscribe-count {
    margin-right: 3px;
  }
}
@media screen and (max-width: 350px) {
  .mw-mob {
    max-width: 280px;
  }
  .tooltip__top .tooltip__desc {
    left: 50%;
    -webkit-transform: translate(-35%, 0);
        -ms-transform: translate(-35%, 0);
            transform: translate(-35%, 0);
    bottom: 100%;
    margin-bottom: 10px;
    line-height: 18px;
  }
  .tooltip__top .tooltip__desc:after {
    left: 35%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 100%;
    border-width: 10px 10px 0 10px;
    border-top-color: #ccc;
  }
  .cont__information,
.cont__site {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 325px) {
  .tooltip__top .tooltip__desc {
    left: 50%;
    -webkit-transform: translate(-38%, 0);
        -ms-transform: translate(-38%, 0);
            transform: translate(-38%, 0);
    bottom: 100%;
    margin-bottom: 10px;
    line-height: 18px;
  }
  .tooltip__top .tooltip__desc:after {
    left: 38%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 100%;
    border-width: 10px 10px 0 10px;
    border-top-color: #ccc;
  }
}
.change-position {
  bottom: 395px;
}

/* Menu active mode */
a.active {
  background-color: var(--main-color);
  color: white;
}

a.active + ul {
  display: block;
}

.catalog-ul .active .arrow:before {
  border-color: white;
}

.mobile-menu-catalog,
.mobile-menu-subcatalog,
.mobile-menu-info,
.mobile-menu-info2,
.mobile-menu-info3 {
  display: none;
}

@media (max-width: 320px) {
  .searchbar .searchbar-input {
    padding-left: 10px;
  }
  .mobile-banner2 {
    max-width: 320px;
    width: 100%;
    height: 50px;
  }
}
@media (min-width: 945px) {
  .mobile-banner2 {
    width: 728px;
    height: 90px;
  }
}
@media (min-width: 1185px) {
  .mobile-banner2 {
    width: 970px;
    height: 90px;
  }
}
.btn {
  padding: 0.375rem 1.2rem;
  border-radius: 0;
}

.slider-ann {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .slider-ann {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.slider-ann-for {
  margin-bottom: 20px;
  width: 100%;
}
.slider-ann-for .slick-list {
  height: 450px;
}
@media screen and (min-width: 480px) {
  .slider-ann-for .slick-list {
    height: 450px;
  }
}
@media screen and (min-width: 520px) {
  .slider-ann-for .slick-list {
    height: 450px;
  }
}
@media screen and (min-width: 576px) {
  .slider-ann-for .slick-list {
    height: 600px;
  }
}
@media screen and (min-width: 768px) {
  .slider-ann-for .slick-list {
    padding-bottom: 40px;
    height: auto;
  }
}
@media screen and (min-width: 1100px) {
  .slider-ann-for {
    margin-bottom: 0;
    width: calc(100% - 170px);
  }
}
.slider-ann-for-item {
  position: relative;
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 576px) {
  .slider-ann-for-item {
    height: 550px;
    min-width: 550px;
  }
}
@media screen and (min-width: 1100px) {
  .slider-ann-for-item {
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
            box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
    height: 600px;
  }
}
.slider-ann-for-img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 50%;
}
.slider-ann-for-img::after {
  content: "";
  position: absolute;
  top: auto;
  left: auto;
  bottom: 10px;
  right: 10px;
  width: 92px;
  height: 20px;
  background: url("../img/water-mark.png") no-repeat;
}
.slider-ann-for-img img {
  display: block;
  width: 100%;
  height: auto;
}
.slider-ann-for-img-bg {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.slider-ann-for-img-bg img {
  width: 100%;
  height: 100%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  display: block;
}
.slider-ann-for-text {
  margin: 15px 0 30px;
}
@media screen and (min-width: 1100px) {
  .slider-ann-for-text {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 100%;
  }
}
.slider-ann-nav {
  -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.09);
  background: #ffffff;
  position: relative;
  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;
  padding: 10px 40px;
}
@media screen and (min-width: 1100px) {
  .slider-ann-nav {
    padding: 40px 0;
  }
}
.slider-ann-nav-wrapper {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .slider-ann-nav-wrapper {
    width: 140px;
    margin-left: 30px;
    height: 600px;
  }
}
.slider-ann-nav .slick-vertical .slick-slide.slider-ann-nav-item {
  height: 100px;
}
.slider-ann-nav-item {
  width: 140px;
  height: 100px;
}
@media screen and (min-width: 1100px) {
  .slider-ann-nav-item {
    padding: 10px 25px;
  }
}
.slider-ann-nav-item.slick-current {
  opacity: 0.5;
}
.slider-ann-nav-item-img {
  width: 80px;
  height: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
}
.slider-ann-nav .slick-arrow {
  position: absolute;
  top: 32.5px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: 3;
  width: 35px;
  height: 35px;
}
.slider-ann-nav .slick-arrow:focus .icon-down-open, .slider-ann-nav .slick-arrow:focus .icon-up-open, .slider-ann-nav .slick-arrow:hover .icon-down-open, .slider-ann-nav .slick-arrow:hover .icon-up-open {
  color: #519e62;
}
.slider-ann-nav .slick-arrow::before {
  display: none;
}
.slider-ann-nav .slick-arrow .icon-down-open, .slider-ann-nav .slick-arrow .icon-up-open {
  font-size: 24px;
  color: #aaaaaa;
}
.slider-ann-nav .slick-prev {
  left: 5px;
}
@media screen and (min-width: 1100px) {
  .slider-ann-nav .slick-prev {
    left: 50%;
    top: 5px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.slider-ann-nav .slick-next {
  right: 5px;
}
@media screen and (min-width: 1100px) {
  .slider-ann-nav .slick-next {
    left: 50%;
    bottom: 5px;
    top: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.youtube__block {
  padding-top: 56.25%;
  position: relative;
}
.youtube__block iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.error {
  font-size: 12px;
  color: #ff0000;
}