@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700&display=swap&subset=cyrillic");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'PT Sans', sans-serif;
}

html {
  --ui-bg: #f2f3f4;
  --ui-sec-text: #7b8082;
  --ui-main: #079733;
  --ui-sec: #0dcafd;
  --ui-warn: #f60c5b;
}

.container {
  width: 100%;
  max-width: 100%;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
}

.flex-s-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-s-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.image-container img {
  width: 100%;
}

.header__top {
  background: var(--ui-bg);
  padding: 5px 0;
  z-index: 900;
}

.header__main {
  padding: 15px 0;
  margin: 0 -5px;
  position: relative;
  flex-wrap: nowrap;
}

.header__main > div {
  margin: 0 10px;
}

.header__logo {
  max-width: 180px;
}

.header__logo svg {
  width: 150px;
  height: auto;
}


.cart-popup {
    display: none;
    position: absolute;
    width: 300px;
    padding-top: 15px;
    border-radius: 3px;
    right: 0;
    top: calc(100% + 1px);
    z-index: 600;
    background: #ffffff;
}

.cart-popup__col {
    padding: 5px 10px;
    border: 3px solid var(--ui-sec);
    border-bottom-width: 1px;
}

.cart-popup__items {
    padding: 5px 10px;
    border-left: 3px solid var(--ui-sec);
    border-right: 3px solid var(--ui-sec);

}


.cart-pop-item {
    border-bottom: 1px solid silver;
}

.cart-pop-item:last-child {
    border: none;
}


.cart-pop-item__image {
    width: 20%;
}

.cart-pop-item__image img {
    width: 100%;
}

.cart-pop-item__title {
    width: 80%;
    padding-left: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
}

.cart-popup__actions {
    border-top: 1px solid var(--ui-sec);
    border-left: 3px solid var(--ui-sec);
    border-right: 3px solid var(--ui-sec);
    border-bottom: 3px solid var(--ui-sec);
    padding: 5px 10px;
}


.cart-popup__actions a {
    text-decoration: none;
    color: #ffffff;
    background: var(--ui-main);
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
}


@media screen and (max-width: 720px) {

    .header__main {
  flex-wrap: wrap;
}

  .header__main > * {
    margin: 0;
  }
  .header__logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__logo svg {
    width: 130px;
  }
}

.main-nav {
  position: absolute;
  left: 0;
  top: calc(100% - 10px);
  width: 100%;
  background: #ffffff;
  padding: 30px 40px;
  z-index: 600;
  border: 3px solid var(--ui-sec);
  margin: 0;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@keyframes fadeDrop {
    from {
        opacity: 0;
        transform: translateY(-25%);
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

.main-nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  animation-fill-mode: backwards;
  animation: fadeDrop 0.3s ease;
}

.main-nav__informer {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  max-width: 30px;
}

.main-nav__informer img {
  width: 100%;
}

.nav {
  width: calc(100% / 3 - 30px);
  margin: 15px 0;
}

.nav__item {
  list-style: none;
}

.nav__item:first-child {
  font-weight: 600;
  font-size: 20px;
}

.nav__link {
  text-decoration: none;
  color: #000000;
}

@media screen and (max-width: 720px) {
  .main-nav {
    max-height: 70vh;
    overflow-y: scroll;
  }
  .main-nav__informer {
    display: block;
    -webkit-animation: slide-down .5s infinite;
            animation: slide-down .5s infinite;
  }
  .nav {
    width: 100%;
  }
  .factory-callback .fact-about-content__title {
      font-size: 20px;
  }
  .fact-about {
      background: #ffffff !important;
  }
}

.header-informer {
  font-size: 12px;
  color: var(--ui-sec-text);
  text-decoration: none;
}

.header-informer a {
    text-decoration: none;
    color: inherit;
}

.header-informer > span {
  vertical-align: middle;
}

.header-informer__ico {
    font-size: 18px;
    color: var(--ui-sec);
}

.header-informer svg {
  width: 20px;
  height: auto;
  fill: var(--ui-main);
}

.header-informer_other-nav {
    display: none;
    position: relative;
}
.header-informer__drop {
    display: none;
    position: absolute;
    border: 2px solid var(--ui-main);
    background: #ffffff;
    padding: 5px;
    right: 5px;
    top: 100%;
    z-index: 600;
    width: max-content;
    max-width: 300px;
}

.header-informer__drop.active {
    display: block;
}

.other-nav__item {
    list-style-type: none;
}
.other-nav__item {
    display: block;
    padding: 5px 10px;
}


@media screen and (max-width: 720px) {
    .header-informer_other-nav {
        display: block;
        order: 3;
    }
  .header-informer_email {
    display: none;
  }
  .header-informer_location {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .header-informer_help {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header-informer_phone {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header-informer:not(.header-informer_phone) .header-informer__desc {
    display: none;
  }
}

.imit-border {
  background: -webkit-gradient(linear, left top, right top, from(var(--ui-main)), to(var(--ui-sec)));
  background: linear-gradient(90deg, var(--ui-main), var(--ui-sec));
  padding: 4px;
}

.imit-border > div {
  background: #ffffff;
}

.imit-border-reverse {
  background: -webkit-gradient(linear, left top, right top, from(var(--ui-sec)), to(var(--ui-main)));
  background: linear-gradient(90deg, var(--ui-sec), var(--ui-main));
  padding: 4px;
}

.imit-border-reverse > div {
  background: #ffffff;
}

.nav-drop {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  border: 3px solid var(--ui-sec);
  border-radius: 3px;
}

.nav-drop.active {
  /*background: var(--ui-sec);*/
}

.nav-drop.active::before {
  content: '';
  display: block;
  position: absolute;
  left: -3px;
  top: 100%;
  background: #ffffff;
  height: 16px;
  width: 100%;
  z-index: 601;
  border-left: 3px solid var(--ui-sec);
  border-right: 3px solid var(--ui-sec);
}

.nav-drop__title {
  padding-left: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  color: var(--ui-sec);
}

.nav-drop__content {
  padding: 5px 10px;
}

.nav-drop__content > span {
  vertical-align: middle;
}

.nav-drop__title {
    vertical-align: middle;
}

.nav-drop__ico svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.v-slider {
    color: #ffffff;
    position: relative;
}

.v-slider__content {
    padding: 60px 60px;
}
.v-slider__title {
    font-size: 46px;
}
.v-slider__desc {
    font-size: 24px;
}
.v-slider__btn {
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    background: var(--ui-main);
    padding: 15px 30px;
    border-radius: 5px;
}
.v-slider__btn:hover {
    background: #0ab73f;
}

.v-slider__controls {
    color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    z-index: 500;
}
.v-slider__arrow {
    cursor: pointer;
}
.v-slider__arrow:hover {
    color: gray;
}
.user-nav {
    padding: 0 15px;
}
.user-nav__item {
    display: inline-block;
}
.user-nav__link {
    display: inline-block;
    margin: 0 5px;
    text-decoration: none;
    color: inherit;
}
.user-nav__link:hover {
    color: gray;
}

.product__sell-info {

}

.product__gallery {
    position: relative;
}

.product__gallery .product__alerts{
    position: absolute;
    right: 0;
    top: 0;
}

.shipping-info {
    margin-top: 15px;
}
.shipping-info p {
    margin: 10px 0;
}
.shipping-info i {
    margin-right: 5px;
}


@media screen and (max-width: 720px) {
    .v-slider__title {
        font-size: 24px;
    }
    .v-slider__desc {
        font-size: 18px;
    }
    .v-slider__content {
        padding: 15px 30px;
    }
    .v-slider__controls {
        top: initial;
        justify-content: flex-end;
        transform: translate(0,0);
        left: 0;
        bottom: 15px;
    }
    .user-nav-wrap {
        display: none;
    }
  .nav-drop {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .nav-drop__title {
    display: none;
  }
}

.main-search {
    border: 3px solid var(--ui-sec);
    border-radius: 3px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main-search__area {
  background: #ffffff;
}

.main-search__field {
  flex-grow: 1;
}

.main-search__btn {
  text-align: center;
  background: var(--ui-sec);
  padding: 5px 15px;
}

.main-search__btn button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.main-search__btn button svg {
  width: 20px;
  height: auto;
  fill: #ffffff;
}

@media screen and (max-width: 720px) {
  .main-search {
    display: none;
  }
}

.search-field {
  padding: 0 15px;
  font-size: 18px;
  width: 100%;
  outline: none;
  border: none;
}

.head-cart {
  display: block;
  position: relative;
}

.head-cart:hover > .cart-popup {
    display: block;
}

.head-cart__ico svg {
  width: 35px;
  height: auto;
}

.head-cart__col {
  background: var(--ui-warn);
  position: absolute;
  right: -5px;
  top: -5px;
  color: #FFFFFF;
  font-size: 12px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: block;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
}

@media screen and (max-width: 720px) {
  .head-cart {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.content-title {
  padding: 15px 0 30px 15px;
  font-size: 24px;
  font-weight: 600;
}

@media screen and (max-width: 720px) {
  .content-title {
    padding: 15px 0;
  }
}

.grid-2 {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 30px;
  -ms-grid-columns: (minmax(500px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

@media screen and (max-width: 720px) {
  .grid-2 {
    -ms-grid-columns: (minmax(100%, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.grid-3 {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 15px;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
}

.grid-4 {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.grid-5 {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.grid-6 {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 15px;
  -ms-grid-columns: (minmax(500px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.offer {
  padding: 5px;
  position: relative;
  transition: all .2s ease;
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  margin-bottom: 15px;
}

.offer__cat {
  font-weight: 500;
  padding: 5px 0;
  min-height: 50px;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.offer__image {
    text-align: center;
    display: block;
}

.read-more {
    text-decoration: none;
    color: inherit;
    background: #d9d9d9;
    padding: 5px 10px;
    border-radius: 30px;
}

.read-more:hover {
    background: #d1d1d1;
}

.offer__image img {
  height: auto;
  max-width: 100%;
}

.offer__price > span {
  vertical-align: middle;
}

.offer__reg-price {
  color: var(--ui-warn);
  font-size: 24px;
  font-weight: 600;
}

.offer__old-price {
  padding-left: 15px;
  text-decoration: line-through;
}

.offer__reviews {
  padding: 5px 0 15px 0;
}

.offer__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.offer__btn_one {
  width: calc(80% - 15px);
}

.offer__btn_cart {
  width: 20%;
}

.offer__alerts {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 10px 10px 0 10px;
}

.offer__alert {
  display: inline-block;
  background: var(--ui-main);
  color: #FFFFFF;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
}

.offer__alert_green {
  background: var(--ui-main);
}

.offer__alert_pink {
  background: #f50a68;
}

@media screen and (max-width: 720px) {
  .offer__alert {
    font-size: 12px;
  }
}

.ui-btn {
  display: inline-block;
  background: #0dcafd;
  background: #0dcafd;
  padding: 4px;
  font-style: 18px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  text-align: center;
  text-align: center;
  cursor: pointer;
}

.ui-btn:hover {
    background: linear-gradient(-90deg, var(--ui-main), var(--ui-sec));
}

.ui-btn__text {
  display: none;
  width: 100%;
  padding: 5px 0;
}

.ui-btn__layer {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 10px 0;
}

.ui-btn__layer > span {
  vertical-align: middle;
}

.ui-btn__layer svg {
  width: 25px;
  height: auto;
  margin: auto;
  vertical-align: middle;
}

.num-form__field {
  width: 100%;
  margin: 5px 0;
  padding: 15px 15px;
  background: #dfe1e1;
  border: none;
}

.num-form__btn {
  width: 100%;
}

.products_shrink {
  grid-column-gap: 15px;
  -ms-grid-columns: (minmax(100px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

@media screen and (max-width: 720px) {
  .products_shrink {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.products_shrink .offer__btn_one {
  display: none;
}

.products_shrink .offer__btn_cart {
  width: 100%;
}

.products_shrink .offer__btn_cart svg {
  display: none;
}

.products_shrink .ui-btn__text {
  display: inline-block;
}

.products.list {
  -ms-grid-columns: (minmax(1000px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
}

.products.list .offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid silver;
}

.products.list .offer__image {
  width: 30%;
}

.products.list .offer__content {
  width: 70%;
}

.products.list .offer__alerts {
  top: 15px;
}

.offer__btn_cart .ui-btn__layer {
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.modal-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 950;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  margin: auto;
  background: #ffffff;
  min-width: 300px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 1000px;
  border-radius: 5px;
}

.modal__header {
  padding: 15px;
  border-bottom: 1px solid #d9d9d9;
}

.modal__body {
  padding: 15px;
}

.modal__close {
  cursor: pointer;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.modal__close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 720px) {
  .modal {
    margin: auto 15px;
    width: 100%;
  }
}

.product__subhead {
  padding-bottom: 15px;
  font-weight: 500;
  color: gray;
}

.product__image {
  padding: 0 30px;
  text-align: center;
}

.product__image img {
  max-width: 100%;
}

.product__title {
  width: 100%;
}

.product__price > span {
  vertical-align: middle;
  font-weight: 600;
}

.product__regular-price {
  font-size: 24px;
  color: var(--ui-warn);
}

.product__old-price {
  padding-left: 15px;
  text-decoration: line-through;
  color: gray;
}

.product__alert {
  display: inline-block;
  background: var(--ui-main);
  padding: 2px 5px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 600;
}

.product__alert_warn {
  background: var(--ui-warn);
}

.product__rating {
  padding: 15px 0;
}

.product__rev-actions {
  display: inline-block;
  padding-left: 15px;
}

.product__rev-actions > a {
  color: gray;
}

.product__rev-actions > a:first-child::after {
  content: '|';
  padding: 0 10px;
  color: gray;
  display: inline-block;
}

.product__actions {
  margin-top: 30px;
  background: #ffffff;
}

.product__btn {
  width: calc(50% - 5px);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 720px) {
    .page-title {
        position: static !important;
    }
  .product__btn_oneclick {
    width: calc(80% - 15px);
    display: none;
  }
  .product__btn_addtocart {
    width: 100%;
  }
  .product .product__btn .ui-btn__layer svg {
    display: none;
  }
  .product__add-review {
    border-top: 1px solid silver;
    padding-top: 15px;
  }
}

.product-other {
  padding: 30px 15px;
}

.product-desc {
  width: 100%;
}

.product-desc__about {
  text-indent: 15px;
}

.buy-btn {
    display: inline-block;
    width: calc(50% - 5px);
    text-align: center;
    padding: 10px 0;
   font-size: 18px;
   font-weight: 500;
   border-radius: 3px;
   cursor: pointer;
   transition: all .2s ease;
}

.buy-btn__add-to-cart {
    background: #00c23d;
    border: none;
    outline: none;
    color: #ffffff;
}

.buy-btn__add-to-cart:hover {
    background: #10d64e;
}

.buy-btn__one-click {
    background: #f5f5f5;
    color: #00c23d;
}

.buy-btn__one-click:hover {
    background: #e6e6e6;
}

.go-desc {
    margin-top: 15px;
    display: inline-block;
    color: #0086e0;
}

.header-informer_phone .header-informer__desc {
    font-size: 20px;
}

@media screen and (max-width: 720px) {
    .buy-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    .nav-drop.active::before {
        height: 13px;
    }
  .product-desc__about {
    padding-bottom: 30px;
  }
}

.characteristics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dotted black;
  margin-bottom: 5px;
}

.characteristics__item > span {
  background: #ffffff;
  padding: 3px;
  margin-bottom: -1px;
}

@media screen and (max-width: 720px) {
  .characteristics__item {
    font-size: 12px;
  }
}

.product-tabs {
  width: 100%;
}

.product-tabs__item {
  width: 50%;
  text-align: center;
  display: inline-block;
  padding: 15px 0;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 20px;
  font-weight: 600;
}

.product-tabs__item::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #d9d9d9;
  position: absolute;
  left: 0;
  bottom: 0;
}

.product-tabs__item:not(.active):hover {
  background: #f1f3f3;
}

.product-tabs__item.active::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--ui-main)), to(var(--ui-sec)));
  background: linear-gradient(90deg, var(--ui-main), var(--ui-sec));
  position: absolute;
  left: 0;
  bottom: 0;
}

.tabs-content {
  padding: 25px 0;
}

.tabs-content__tab {
  display: none;
}

.tabs-content__tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review {
  margin-bottom: 15px;
}

.review__desc {
  padding: 5px 0;
}

.review__date {
  padding-left: 10px;
  color: gray;
}

.review-form {
  display: block;
  width: 100%;
}

.review-form__title {
  padding-bottom: 5px;
  display: inline-block;
}

.review-form__title b {
  color: var(--ui-warn);
}

.review-form__field, .review-form__area {
  width: 100%;
  background: #dfe1e1;
  border: none;
  outline: none;
  margin-bottom: 10px;
  padding: 10px 15px;
}

.review-form__area {
  resize: none;
}

.review-form__btn {
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.not-found {
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.not-found__container {
  position: relative;
}

.not-found__text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: tra;
          transform: tra;
  font-weight: 600;
  font-size: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.not-found__bg {
  font-size: 400px;
  color: #e5e5e5;
  font-weight: 600;
}

.cart-btn {
  width: 100%;
  display: block;
}

.order-form {
  padding: 15px 0;
}

.order-form__section {
  padding: 5px 0;
}

.order-form__flex-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-form__flex-section > div {
  width: calc(33% - 5px);
}

.order-form__lable {
  display: inline-block;
  padding-bottom: 5px;
}

.order-form__lable b {
  color: var(--ui-warn);
}

.order-form__field, .order-form__textarea {
  width: 100%;
  background: #dfe1e1;
  border: none;
  padding: 10px 15px;
}

.order-form__textarea {
  width: 100%;
  resize: none;
}

.order-form__itog {
  width: 100%;
  padding: 15px 0;
}

.order-form__final-price {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
}

.order-form__final-price span {
  color: var(--ui-warn);
}

.order-form__btn {
  width: 100%;
  cursor: pointer;
}

.order-form__informer {
  text-align: center;
  display: block;
  width: 100%;
}

.article__image img {
  width: 100%;
}

.article__date {
  padding-bottom: 30px;
  display: block;
  font-weight: 600;
  color: silver;
}

.article__title {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: 36px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 30px;
}

.article__title::before {
  content: '';
  display: block;
  width: 8px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--ui-main)), to(var(--ui-sec)));
  background: linear-gradient(0deg, var(--ui-main), var(--ui-sec));
}

.article__short {
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
}

.article__body {
  padding: 30px 0;
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid silver;
}

.cart-item__image {
  width: 20%;
  padding-right: 30px;
}

.cart-item__image img {
  width: 100%;
}

.cart-item__desc {
  width: 40%;
}

.cart-item__title {
  font-weight: 600;
}

.cart-item__title a {
    color: inherit;
    text-decoration: none;
}

.cart-item__cols > * {
  vertical-align: middle;
}

.cart-item__field {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 32px;
}

.cart-item__btn {
  font-size: 22px;
  cursor: pointer;
}

.cart-item__btn > div {
  padding: 0 15px;
}

.cart-item__remove a {
    text-decoration: none;
    color: #dc6655;
}

.cart-item__price {
  font-size: 26px;
  color: var(--ui-warn);
  font-weight: 600;
}

.cart-item__cols {
  width: 20%;
}

.cart-item__price {
  width: 15%;
}

.cart-item__remove {
  color: var(--ui-warn);
  cursor: pointer;
  font-weight: 600;
}

.cart-item-info {
  padding: 15px 0;
}

.cart-item-info__item {
  color: gray;
  list-style-type: none;
}

.cart-item-info__item span {
  color: darksilver;
  font-weight: 600;
}

.cart-summ {
  background: #f1f3f3;
  padding: 30px;
  margin: 30px 0;
}

.cart-summ__final {
  font-size: 26px;
}

.cart-summ__final span {
  color: var(--ui-warn);
}

.variations {
  display: block;
  width: 100%;
}

.variations__item {
  display: inline-block;
  background: #f1f3f3;
  padding: 5px 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.variations__item.active {
  background: #d5d5d5;
}

.stars-place {
  display: inline-block;
}

.stars-place__item {
  display: inline;
  color: var(--ui-main);
}

.stars-place__item:last-child {
  color: silver;
}

.flex-section {
  width: calc(50% - 15px);
}

@media screen and (max-width: 720px) {
    .cart-item__image img {
      width: 100% !important;
      height: auto;
    }
  .flex-section {
    width: 100%;
  }
}

.post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 15px;
}

.post__date {
  color: gray;
  padding-bottom: 15px;
}

.post__title {
  font-weight: 600;
  padding-bottom: 15px;
  font-size: 18px;
}

.post__image {
  width: calc(40% - 30px);
}

.post__image img {
  width: 100%;
  height: auto;
}

.post__content {
  width: 60%;
}

@media screen and (max-width: 720px) {
  .post__short {
    display: none;
  }
}

.post__link {
  display: inline-block;
  margin-top: 15px;
}

@media screen and (max-width: 720px) {
    .cart-item__title {
        font-size: 14px;
    }
    .post__date {
        padding-bottom: 5px;
    }
  .post__title {
    padding-bottom: 5px;
    line-height: 14px;
    font-size: 14px;
  }
  .post__link {
    margin-top: 5px;
  }
}

.breadcrumbs {
  padding: 0 15px 15px 15px;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs__item {
  display: inline-block;
}

.breadcrumbs__item:not(:last-child):after {
  content: '/';
}

.breadcrumbs__link {
  text-decoration: none;
  color: gray;
}

.future-cat__item {
  display: inline-block;
  background: #f1f3f3;
}

.future-cat__item_alert {
  color: red;
}

.future-cat__item.active {
  background: silver;
}

@media screen and (max-width: 720px) {
    .grid-5, .grid-3, .grid-4 {
         grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

  .future-cat__item {
    margin-bottom: 5px;
  }
  .wr {
      font-size: 12px;
  }
}

.future-cat__link {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 5px;
}

.page-title {
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 550;
}

.page-title > * {
  display: inline-block;
}

.page-title__informer {
  padding-left: 10px;
  color: gray;
}

@media screen and (max-width: 720px) {
  .page-title {
    border-bottom: 1px solid #f9f9f9;
    margin-bottom: 15px;
  }
  .page-title__informer {
    display: block;
    padding: 0;
  }
}

.sorting-type__item {
  display: inline-block;
  cursor: pointer;
}

.sorting-type__item:first-child::after {
  content: '|';
  display: inline-block;
  padding: 0 15px;
}

.catalog__load-more {
  padding: 30px 0;
  text-align: center;
  font-size: 22px;
  text-decoration: underline;
  cursor: pointer;
}

.catalog .products {
  padding: 15px 0;
}

@media screen and (max-width: 720px) {
  .catalog .grid-3 {
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.view-type__item {
  display: inline-block;
  padding: 0 5px;
  cursor: pointer;
}

.view-type__item.active svg {
  fill: var(--ui-warn);
}

.view-type__item svg {
  width: 30px;
  height: auto;
  fill: gray;
  pointer-events: none;
}

@media screen and (max-width: 720px) {
  .view-type {
    display: none;
  }
}

.footer {
  background: #daddde;
  padding: 60px 0;
}

.footer__copy {
  width: 100%;
  padding-top: 30px;
}

.footer h3 {
    padding-bottom: 5px;
}

.footer ul {
    margin-bottom: 10px;
}

.footer li {
    color: #777777;
    font-size: 14px;
}

.footer li a {
    color: inherit;
}

.footer h3 a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 720px) {
    .footer__content .flex-section-3 {
        width: 100%;
        margin: 10px 0;
    }
  .flex-section-3 {
    width: calc(50% - 15px);
  }
  .flex-section-4 {
    width: calc(50% - 15px);
  }
}

.footer-nav__item {
  display: block;
  color: black;
}

.footer-nav__link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  line-height: 22px;
}
.footer-contacts__item {
    list-style:none;
    margin: 5px 0;
}
.footer-contacts__item i {
    margin-right: 5px;
}

.footer-contacts__item a {
    text-decoration: none;
    color: inherit;
}

.flex-control-thumbs {
    display: flex;
}

.flex-control-thumbs li {
    display: inline-block;
}

@media screen and (max-width: 720px) {
    .breadcrumbs {
        font-size: 12px;
    }
    .page-title {
        line-height: 28px;
    }
  .footer-contacts {
    margin-top: 30px;
    width: 100%;
  }
   .offer .offer__btn_one {
    display: none;
  }
   .offer .offer__btn_cart {
    width: 100%;
  }
   .offer .offer__btn_cart svg {
    display: none;
  }
   .offer .ui-btn__text {
    display: inline-block;
  }
}

@-webkit-keyframes slide-down {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}


    .fact-about-content p {
        padding-bottom: 15px;
    }
    .r-btn {
        outline: none;
        border: none;
        cursor: pointer;
    }
    .factory-form {
        max-width: 400px;
        margin: 0 auto;
    }
    .factory-form .r-btn {
        width: 100%;
    }
    .factory-form__field {
        width: 100%;
        border: none;
        outline: none;
        border-bottom: 1px solid #f1f1f1;
        margin-bottom: 5px;
        padding: 10px 15px;
    }
    .factory-btn {
        display: inline-block;
        padding: 2px;
        background: var(--ui-sec);
        color: #ffffff;
    }
    .factory-btn:hover {
        background: #1eb4dc;
    }
    .factory-proccess img, .fact-galery img {
        width: 100%;
    }
    .factory-btn__content {
        border: 2px solid black;
        padding: 10px 15px;
        display: inline-block;
        width: 100%;
    }
    .factory-proccess {
        background: #f5f5f5;
        padding: 30px 0;
    }
    .factory-proccess__p {
        padding-bottom: 15px;
        display: inline-block;
    }
    .blue-bg .fact-about-content__title {
        background: var(--ui-sec);
        color: #ffffff;
    }
    .blue-bg .fact-about-content {
        border-color: #ffffff;
    }
    .line-title {
        width: 100%;
        padding-bottom: 30px;
        font-size: 30px;
        text-transform: uppercase;
    }
    .
    .line-title__content {
        position: relative;
    }
    .line-title__content::after {
        content: '';
        display: block;
        width: 100px;
        height: 2px;
        background: #ffffff;
        margin-top: 5px;
    }
    .advant__title {
        padding: 10px 0;
        font-size: 24px;
        text-transform: uppercase;
    }
    .flex-i-2 {
        width: calc(50% - 15px);
    }
    video {
        width: 100%;
    }
    .d-flex {
        display: flex;
        flex-wrap: wrap;
    }
    .fact-advants {
        padding: 30px 0;
    }
    .align-stretch {
        align-items: stretch;
    }
    .align-center {
        align-items: center;
    }
    .justify-space-between {
        justify-content: space-between;
    }
    .blue-bg {
        background: var(--ui-sec);
        color: #ffffff;
    }
    .flex-i-4 {
        width: calc(100% / 4 - 15px);
    }
    .fact-header {
        background: #007ea1;
        padding: 100px 0px;
        text-align: center;
        color: #ffffff;
    }
    .fact-wrap__subtitle {
        font-size: 22px;
    }
    .fact-about {
        background: url("/wp-content/themes/medtovary/assets/images/factory/about_bg.jpg") no-repeat;
    }
    .fact-about__wrap {
        padding: 100px 60px;
    }
    .fact-about-content {
        border: 2px solid black;
        text-align: center;
        padding: 0 100px 30px 100px;
    }
    .fact-about-content__title {
        background: #ffffff;
        padding: 15px;
        margin-top: -90px;
        width: max-content;
        display: inline-block;
        font-size: 34px;
        text-transform: uppercase;
    }

    @media screen and (max-width: 720px) {
        .flex-i-2, .flex-i-4 {
            width: 100%;
            padding: 15px 0;
        }
        .fact-about__wrap {
            padding: 0;
            padding: 60px 0;
        }
        .fact-about-content {
            padding: 0 15px 15px 15px;
        }
    }

@keyframes slide-down {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
/*# sourceMappingURL=main.css.map */





.mcart {
  margin: 0 auto;
  max-width: 1200px;
}

.mcart__title {
  padding-bottom: 15px;
}

.mcart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #f6f6f6;
  padding: 5px 0;
}

.mcart-item__image {
  width: 10%;
  height: auto;
}

.mcart-item__image img {
  width: 100%;
}

.mcart-item__title {
  width: 50%;
}

.mcart-item__col {
  width: 10%;
}

@media screen and (max-width: 720px) {
  .mcart-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mcart-item__image {
    width: 20%;
  }
  .mcart-item__title {
    width: 80%;
    padding-bottom: 15px;
  }
}

.mcart-delete {
  color: gray;
}

.mcart-delete:hover {
  color: silver;
}

.mcart-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mcart-content {
  width: 70%;
}

.mcart-col {
  border: 2px solid whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
}

.mcart-col__field {
  outline: none;
  cursor: default;
  max-width: 50px;
  border: none;
  text-align: center;
}

.mcart-col__minus, .mcart-col__plus {
  background: whitesmoke;
  padding: 5px 10px;
  font-size: 22px;
  cursor: pointer;
  text-align: center;
}

.mcart-col__minus:hover, .mcart-col__plus:hover {
  background: #e6e6e6;
}

.mcart-control {
  width: calc(30% - 30px);
  border: 1px solid #f6f6f6;
  padding: 15px;
}

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

.mcart-control__finaly {
  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;
  border-top: 1px solid #f6f6f6;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
}

.mcart-control__footer {
  color: gray;
}

.mdelivery-option {
  margin: 15px 0;
}

.mdelivery-option i {
  padding-bottom: 5px;
}

.mcart-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
  color: #ffffff;
}

.mcart-btn__main {
  width: 100%;
  background: #00c23d;
  color: #ffffff;
}

.mcart-btn__main:hover {
  background: #00dc45;
}

.mcart-price__current-price {
  color: #f73f64;
  font-size: 20px;
  display: block;
}

.mcart-price__old-price {
  text-decoration: line-through;
}

.mcart-price--header {
  display: none;
}

@media screen and (max-width: 720px) {
  .mcart-price {
    display: none;
    padding-bottom: 15px;
  }
  .mcart-price--header {
    display: block;
  }
  .mcart-price__current-price {
    display: inline-block;
  }
}

@media screen and (max-width: 720px) {
  .mcart-content, .mcart-control {
    width: 100%;
  }
  .mcart-col {
    margin: 0 15px;
  }
}
/*# sourceMappingURL=main.css.map */
