@import "reset.css";
@charset "UTF-8";

:root {
    --font-rob         : 'Roboto', sans-serif;
    --white-color      : #ffffff;
    --grey-color       : #414141;
    --grey-light-color : #C4C4C4;
    --orange-color     : #F06543;
    --green-color      : #23A33F;
    --green-light-color: #3DEA63;
}

html {
    display: flex;
    min-height: 100%;
    box-sizing : border-box;
    margin     : 0;
    padding    : 0;
    font-family: var(--font-rob);
    font-size  : 16px;
    color      : black;
}

body {
    position: relative;
    display: flex;
    flex: auto;
    flex-direction: column;
    width: 100%;
}

a {
    color: black;
}

a:hover,
a:focus {
    color          : black;
    text-decoration: none;
}

button,
input {
    outline: none;
}

section {
    width : 89%;
    max-width: 1920px;
    margin: 0 auto;
}
section.seo-text a{
  text-decoration: underline;
}
ul {
  margin: 0 0 25px 7px;
  list-style-type: none;
}

ul > li {
  font-size: 16px;
  line-height: 19px;
  /* text-indent: -5px; */
  text-indent: 14px;
  margin: 3px 0;
}

@media (max-width: 1023px) {
  ul > li {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  ul > li {
    font-size: 14px;
    line-height: 16px;
  }
}

ul > li:before {
  content: "-";
  margin-right: 5px;
  text-indent: -5px;
}

p {
  /* display: block; */
  margin-bottom: 25px;
  
  font-size: 16px;
  line-height: 19px;
  color: var(--grey-color);
}

@media (max-width: 1023px) {
  p {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  p {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (min-width:0) and (max-width: 1023px) {
    section {
        width: 92%;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    section {
        width: 90%;
    }
}

#container .content {
  min-height: 300px;
}

@media (max-width: 767px) {
  #container .content {
    min-height: 150px;
  }
}

/* START BREADCRUMBS */

.breadcrumbs {
    width : 89%;
    margin: 0 auto 30px;
}

@media (max-width: 1023px) {
    .breadcrumbs {
        width  : 100%;
        margin : 0 auto 0;
        padding: 0 15px;
    }
}

.breadcrumbs ul {
    display        : flex;
    flex-wrap      : wrap;
    list-style-type: none;
}

.breadcrumbs ul>li {
  text-indent: -5px;
}

.breadcrumbs li {
    margin-left : 5px;
    margin-right : 10px;
    margin-bottom: 10px;
    color        : var(--grey-color);
}

.breadcrumbs li:first-child {
    margin-left : 0;
}

.breadcrumbs li a {
    color: var(--grey-color);
}

.breadcrumbs li:before {
  content: none;
}

.breadcrumbs li:after {
    content       : "";
    display       : inline-block;
    vertical-align: middle;
    width         : 4px;
    height        : 4px;
    margin-left   : 10px;

    border-radius: 50px;
    background   : var(--green-color);
}

.breadcrumbs li:last-child a {
    color: var(--grey-light-color);
}

.breadcrumbs li:last-child:after {
    content: none;
}

/* END BREADCRUMBS */

/* START HEADER */

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

.header__top-menu-wrap {
    background: #FBFBFB;
}

@media (min-width:0) and (max-width: 1023px) {
    .header__top-menu-wrap {
        display: none;
    }
}

.header__top-menu {
    display        : flex;
    justify-content: space-between;
    /* width          : 74%; */
    width          : 89%;
    max-width      : 1920px;
    margin         : 0 auto;
    padding-top    : 15px;
}

@media (min-width:0) and (max-width: 1439px) {
    .header__top-menu {
        /* width: 85%; */
        width: 90%;
    }
}

.header__left-box {
    display        : flex;
    justify-content: space-between;
    width          : 65%;
}

@media (min-width:0) and (max-width: 1439px) {
    .header__left-box {
        width: 70%;
    }
}

.header__lang-box {
    position     : relative;
    margin-bottom: 15px;
}

@media (max-width: 1023px) {
  .header__lang-box {
    display: none;
    width: fit-content;
  }
}

.header__lang-box-mob {
  display: none;
}

@media (max-width: 1023px) {
  .header__lang-box-mob{
    display: block;
  }
}

.header__lang {
    display    : flex;
    align-items: center;
    border     : none;
    background : transparent;
    outline    : none;
    transition : all .4s;
}

@media (max-width: 1023px) {
  .header__lang-active {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .header__lang {
    font-size: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .header__lang {
    font-size: 14px;
  }
}

.header__lang:hover,
.header__lang:hover .header__lang:after {
    color: var(--orange-color);
}

.header__lang-active:after {
    content    : '\25bc';
    margin-left: 10px;
    font-size  : 10px;
}

@media (max-width: 1023px) {
  .header__lang-active:after {
    content: none;
  }
}

.header__lang img {
    width       : 27px;
    height      : 27px;
    margin-right: 10px;
}

@media (max-width: 767px) {
  .header__lang img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .header__lang img {
    width: 25px;
    height: 25px;
  }
}

.langDown-box {
    display           : none;
    position          : absolute;
    left              : -15px;
}

.header__lang-down {
    width: 92px;
    padding           : 10px 15px 10px 15px;
    background        : var(--white-color);
    -webkit-box-shadow: 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
}

@media (max-width: 1023px) {
  .header__lang-down {
      display: block;
      position: unset;
      width: 100%;
      padding-left: 0;
      box-shadow: none;
  }
}

.header__menu {
    width      : 82%;
    padding-top: 5px;
}

.header__menu ul {
    display        : flex;
    justify-content: space-between;
    list-style-type: none;
}

.header__menu li:before {
  content: none;
}

.header__menu a {
    padding-bottom: 10px;
    font-family   : var(--font-rob);
    color         : var(--grey-color);
    transition    : all .4s;
}


@media (min-width:0) and (max-width: 1439px) {
    .header__menu a {
        font-size: 14px;
    }
}

.header__menu a:hover {
    color        : var(--orange-color);
    border-bottom: 4px solid var(--orange-color);
    transition   : all .4s;
}

.header__acc-box {
    position: relative;
}

.header__acc-box a {
    display: inline-grid;
    padding-top: 5px;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .header__acc-box a {
    font-size: 14px;
  }
}

.header__user-name {
    margin-right: 20px;
}

@media (min-width:0) and (max-width: 1439px) {
    .header__user-name {
        margin-right: 10px;
        font-size   : 14px;
    }
}

.header__user-logo {
    border    : none;
    background: transparent;
    outline   : none;
}

.header__user-list {
    display           : none;
    position          : absolute;
    right             : 0;
    min-width         : 270px;
    padding           : 25px 25px 5px;
    list-style-type   : none;
    background        : var(--white-color);
    -webkit-box-shadow: 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
    z-index           : 2;
}

@media (min-width:0) and (max-width: 1439px) {
    .header__user-list {
        min-width: 260px;
    }
}

.header__user-list li {
    margin-bottom: 20px;
}

.header__user-list li:before {
  content: none;
}

.header__user-list a {
    display    : flex;
    align-items: center;
    color      : var(--grey-color);
}

@media (min-width:0) and (max-width: 1439px) {
    .header__user-list a {
        font-size: 14px;
    }
}

.header__user-list a:hover {
    color: var(--orange-color);
}

.header__user-list img {
    margin-right: 10px;
}

.header__main-menu {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    /* width          : 74%; */
    width          : 89%;
    max-width      : 1920px;
    margin         : 0 auto;
    padding        : 25px 0 35px;
}

@media (min-width:0) and (max-width: 1023px) {
    .header__main-menu {
        display: none;
    }
}

@media (min-width:0) and (max-width: 1439px) {
    .header__main-menu {
        /* width: 85%; */
        width: 90%;
    }
}

.header__logo-box {
    width: 28%;
}

@media (min-width: 0) and (max-width: 1919px) {
    .header__logo-box {
        width: 26%;
    }
}

.header__logo-box img {
    width: 100%;
}


@media (min-width:1024px) and (max-width: 1349px) {
    .header__schedule-box {
        display: none;
    }
}

.header__schedule-box>* {
    font-size: 18px;
    color    : var(--grey-color);
}


@media (min-width: 0) and (max-width: 1919px) {
    .header__schedule-box>* {
        font-size: 16px;
    }
}

.header__schedule-box>b {
    display      : block;
    margin-bottom: 10px;
}

.header__schedule--wrap {
    display: flex;
}

.header__schedule--wrap>* {
    font-size: 18px;
    color    : var(--grey-color);
}


@media (min-width: 0) and (max-width: 1919px) {
    .header__schedule--wrap>* {
        font-size: 16px;
    }
}

.header__schedule--wrap span {
    display      : block;
    margin-right : 15px;
    margin-bottom: 5px;
}

.header__schedule--wrap:last-child span {
    margin-bottom: 0;
}

.header__phone-box {
    display    : flex;
    align-items: center;
}

.header__phone-box.header__cart-box {
  align-items: baseline;
}

.header__phone--schedule-box {
    display: none;
}

@media (min-width:1024px) and (max-width: 1349px) {
    .header__phone--schedule-box {
        display      : flex;
        margin-bottom: 5px;
    }
}

.header__phone--schedule--headline {
    margin-right: 10px;
}

.header__phone--schedule--wrap-box {
    display: block;
}

.header__phone-box img {
    margin-right: 15px;
}

/* @media (min-width:1024px) and (max-width: 1349px) { */
    /* .header__phone-box img { */
        /* display: none; */
    /* } */

    /* .header__cart-box img { */
        /* display: block; */
        /* width: 65px; */
    /* } */
/* } */

@media (min-width:0px) and (max-width: 1919px) {
    .header__cart-box img,
    .header__phone-box img {
        width: 65px;
    }
}

.header__phone-wrap {
    display       : flex;
    flex-direction: column;
}

.header__phone-txt-box {
    display    : flex;
    align-items: center;
}

.header__phone-txt {
    display: none;
}

@media (min-width:1024px) and (max-width: 1349px) {
    .header__phone-txt {
        display     : flex;
        margin-right: 10px;
    }
}

.header__phone-wrap .header__phone-number {
    margin-bottom: 5px;
    font-weight  : 900;
    font-size    : 26px;
    color        : var(--grey-color);
}


@media (min-width: 0) and (max-width: 1919px) {
    .header__phone-wrap .header__phone-number {
        font-size: 22px;
    }
}

.header__phone-wrap a {
    display        : flex;
    justify-content: flex-end;

    font-weight: 900;
    font-size  : 14px;
    color      : var(--green-color);
    transition : all .4s;
}

.header__phone-wrap a:hover {
    color          : var(--grey-light-color);
    text-decoration: underline;
}

.header__cart-wrap a:hover {
    color          : var(--grey-color);
    text-decoration: none;
}

.header__cart-wrap a {
    color: var(--grey-color);
}

.header__cart-wrap i {
    font-style   : normal;
    color        : var(--grey-color);
    border-bottom: 1px dashed var(--orange-color);
}

.header__bottom-menu {
    position       : relative;
    display        : flex;
    justify-content: space-between;
    /* width          : 74%; */
    width          : 89%;
    max-width      : 1920px;
    margin         : 0 auto 15px;
}

@media (min-width:0) and (max-width: 1023px) {
    .header__bottom-menu {
        display: none;
    }
}

@media (min-width:0) and (max-width: 1439px) {
    .header__bottom-menu {
        /* width: 85%; */
        width: 90%;
    }
}

.header__btn-catalog-box {
    /* width: 28%; */
    width: 23%;
}

@media (min-width: 0) and (max-width: 1023px) {
    .header__btn-catalog-box {
        width: 32%;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .header__btn-catalog-box {
        width: 26%;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .header__btn-catalog-box {
        width: 25%;
    }
}

.header__btn-catalog-box button {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    height         : 60px;
    width          : 100%;
    padding        : 0 45px;
    font-weight    : 900;
    color          : var(--white-color);
    text-transform : uppercase;
    border         : none;
    border-radius  : 50px;
    background     : var(--orange-color);
}

.header__btn-catalog-box button:hover {
  background: #F89751;
}

@media (max-width: 1023px) {
    .header__btn-catalog-box button {
        justify-content: center;
        height         : 40px;
        padding        : 0;
        font-weight    : 700;
        font-size      : 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .header__btn-catalog-box button {
        padding  : 20px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1919px) {
    .header__btn-catalog-box button {
        height: 55px;
    }
}

.header__catalog-menu-box {
    display : none;
    position: absolute;
    top     : 0;
    width   : 66%;
    height  : 650px;
    padding : 25px 45px;

    border    : 1px solid #ECECEC;
    background: var(--white-color);
    z-index   : 20;
}

.header__cat-mob-back {
    position  : absolute;
    top       : 0;
    right     : 0;
    bottom    : 0;
    left      : 0;
    z-index   : 10;
    background: rgba(0, 0, 0, .5);
    display   : none;
}

.header__catalog-menu-box--mob {
    display: none;
    display: block;
    top    : 0;
    left   : 0;
    width  : 100%;
    padding: 15px 15px 0;

    border    : 1px solid #ECECEC;
    background: var(--white-color);
    z-index   : 2;
}

.header__bottom-mob .header__catalog-menu-wrap li:before {
    content: none;
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .header__catalog-menu-box {
        width: 70%;
    }
}

.header__catalog-menu-wrap {
    position: relative;
    height  : 100%;
    cursor  : pointer;
}

.header__catalog-menu-box span {
    display       : flex;
    margin-bottom : 20px;
    padding-bottom: 20px;

    font-weight   : 900;
    color         : var(--orange-color);
    text-transform: uppercase;
    border-bottom : 1px solid #ECECEC;
    cursor        : default;
}

.header__catalog-menu-wrap .header__cross-mob {
    position: absolute;
    top     : 0;
    right   : 0;
}

.header__catalog-menu-wrap ul {
    height      : 87%;
    column-count: 3;
    column-fill : auto;
    list-style  : none;
    cursor      : default;
}

.header__bottom-mob .header__catalog-menu-wrap ul {
    display        : flex;
    flex-wrap      : wrap;
    padding-top    : 30px;
    list-style     : none;
}

ul.header__catalog-menu--sub {
    column-count: unset;
}

.header__catalog-menu-wrap li {
    margin-bottom: 20px;
    width        : fit-content;
}

.header__catalog-menu-wrap li:before {
    content: none;
}

.header__bottom-mob .header__catalog-menu-wrap li {
    height            : fit-content;
    width: calc(100% / 3 - 10px);
    margin: 0 5px 10px;
    -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header__bottom-mob .header__catalog-menu-wrap li {
        width: 18%;
    }
}

.header__catalog-menu-wrap a {
    font-weight    : 500;
    color          : var(--green-color);
    text-decoration: underline;
    transition     : all .4s;
}

.header__catalog-menu-wrap a:hover {
    color: var(--orange-color);
}

.header__bottom-mob .header__catalog-menu-wrap a {
    display        : flex;
    flex-direction : column;
    justify-content: flex-end;
    align-items    : center;
    height         : 115px;
    padding        : 2px;
    text-decoration: none;
}

@media (min-width: 0) and (max-width: 374px) {
    .header__bottom-mob .header__catalog-menu-wrap a {
        /* height: 125px; */
        height: 100px;
    }
}

@media (min-width: 375px) and (max-width: 767px) {
    .header__bottom-mob .header__catalog-menu-wrap a {
        /* height: 125px; */
        height: 95px;
    }
}

.header__bottom-mob .header__catalog-menu-wrap a img {
    margin-bottom: 5px;
}

.header__bottom-mob .header__catalog-menu-wrap a span {
    display      : flex;
    align-items  : center;
    height       : 23px;
    overflow     : hidden;
    margin-bottom: 0 3px 6px 3px;

    font-weight: 500;
    font-size  : 10px;
    line-height: 9px;
    color      : var(--green-color);
    text-align : center;
    text-indent: 0;
}

@media (min-width: 0) and (max-width: 374px) {
    .header__bottom-mob .header__catalog-menu-wrap a span {
        height: 29px;
    }
}

.header__catalog-menu-wrap .header__main-cat>a:before {
    content    : "\2022";
    color      : var(--green-color);
    font-weight: bold;
    display    : inline-block;
    width      : 1em;
    margin-left: -1em;
    overflow: hidden;
    padding: 0px 0 0 4px;
    top: 5px;
    position: relative;
}

.header__catalog-menu-wrap .header__main-cat>a:hover:before {
    content     : '\25B2';
    margin-right: 8px;
    font-size   : 10px;
    margin-left : -18px;
    color       : var(--orange-color);
}

.header__catalog-menu--sub li {
    margin-bottom: 15px;
}

.header__catalog-menu--sub li:first-child {
    margin-top: 15px;
}

.header__catalog-menu--sub li:before,
.header__catalog-menu--sub li:hover:before {
    content: none;
}

.header__catalog-menu--sub a {
    color: var(--grey-color);
}

.header__catalog-menu--sub a:hover {
    color: var(--grey-light-color);
}

.header__search-box {
    position      : relative;
    display       : flex;
    flex-direction: column;
    /* width         : 65%; */
    width         : 71%;
}

@media (min-width: 0) and (max-width: 1023px) {
    .header__search-box {
        width: 64%;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .header__search-box {
        width: 67%;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .header__search-box {
        width: 68%;
    }
}

.header__search-wrap input {
    width        : 90%;
    height       : 60px;
    margin-bottom: 10px;
    padding      : 0 40px;
    border       : none;
    border-radius: 50px;
    background   : #f4f4f4;
}

.header__search-wrap input[type='text']:focus {
    box-shadow: inset 0 0 10px #9dfdc1;
}

@media (max-width: 1023px) {
    .header__search-wrap input {
        height        : 40px;
        width         : 100%;
        margin-bottom : 0;
        padding       : 0 30px 0 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1919px) {
    .header__search-wrap input {
        height        : 55px;
    }
}

.header__search-wrap ::-webkit-input-placeholder {
    /* Edge */
    color: #C4C4C4;
}

.header__search-wrap :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #C4C4C4;
}

.header__search-wrap ::placeholder {
    color: #C4C4C4;
}

@media (max-width: 1023px) {
   .header__search-wrap ::-webkit-input-placeholder {
        /* Edge */
        text-transform: uppercase;
    }

    .header__search-wrap :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        text-transform: uppercase;
    }

    .header__search-wrap ::placeholder {
        text-transform: uppercase;
    }
}

.header__search-wrap button {
    position      : absolute;
    top           : 0;
    right         : 0;
    display       : flex;
    align-items: center;
    height        : 60px;
    padding       : 0 35px;
    font-weight   : 900;
    color         : var(--white-color);
    text-transform: uppercase;
    border        : none;
    border-radius : 50px;
    background    : var(--green-color);
    transition    : all .4s;
}

@media (max-width: 1023px) {
    .header__search-wrap button {
        height       : 40px;
        padding      : 0;
        border       : none;
        border-radius: unset;
        background   : transparent;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .header__search-wrap button {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) and (max-width: 1919px) {
    .header__search-wrap button {
        height: 55px;
    }
}

.header__search-wrap button:hover {
    background: var(--green-light-color);
}

@media (max-width: 1023px) {
    .header__search-wrap button:hover {
        background: transparent;
    }
}

.header__search-wrap button img {
    margin-right: 15px;
}

.header__search-txt {
    font-weight: 300;
    font-size  : 14px;
    color      : var(--grey-color);
}

.header__search-txt .header__search-example {
    font-style : unset;
    font-weight: 400;
    font-size  : 14px;
    color      : var(--green-color);
}

.header__mob {
    display: none;
}

@media (min-width: 0) and (max-width: 1023px) {
    .header__mob {
        display: block;
    }
}

.header__top-mob {
    display        : flex;
    justify-content: space-between;
    padding        : 30px 15px;
}

.header__burger {
    border    : none;
    background: transparent;
}

/* START MOB MENU */

.header__menu-box-mob-back {
    position: absolute;
    top     : 0;
    bottom  : 0;
    left    : 0;
    right   : 0;

    z-index   : 100;
    background: rgba(0, 0, 0, .5);
    display   : none;
}

.header__menu-box-mob {
    display        : flex;
    flex-direction : column;
    justify-content: space-between;
    height         : 100vh;
    /* height         : 92vh; */
    /* min-height: -webkit-fill-available; */
    padding        : 10px 20px 20px 10px;
    background     : var(--white-color);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header__menu-box-mob {
        padding: 20px 30px 20px 30px;
    }
}

.header__menu-box-mob .header__mob-logo {
    width        : 60%;
    margin-bottom: 10px;
}

@media (min-width: 400px) and (max-width: 767px) {
    .header__menu-box-mob .header__mob-logo {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header__menu-box-mob .header__mob-logo {
        width: 30%;
    }
}

.mob-cross {
    position  : absolute;
    top       : 20px;
    right     : 20px;
    border    : none;
    background: transparent;
}

.header__menu-mob {
    /* padding-left: 20px; */
}

.header__menu-mob ul {
    list-style-type: none;
}


.header__menu-mob li {
    width        : fit-content;
    margin-bottom: 20px;
}

.header__menu-mob a {
    font-weight    : 500;
    font-size: 22px;
    line-height: 30px;
    color          : var(--green-color);
    text-decoration: underline;
    transition     : all .4s;
}

.header__menu-mob li:before {
    /* content    : "\2022"; */
    content    : none;
    color      : var(--green-color);
    font-weight: bold;
    display    : inline-block;
    width      : 1em;
    margin-left: -1em;
}

.header__menu-mob-rights {
    display        : flex;
    justify-content: center;
    margin-bottom: 5vh;
}

/* END MOB MENU */

.header__top-left-mob {
    display    : flex;
    align-items: center;
}

.header__acc-mob {
    margin-left: 20px;
    border     : none;
    background : transparent;
}

.header__main-mob {
    display        : flex;
    justify-content: space-between;
    padding        : 0 15px 15px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header__main-mob .current-link {
        width: 30%;
    }
    
    .header__main-mob .header__mob-logo {
        width: 100%;
    }
}

.header__bottom-mob {
    display        : flex;
    justify-content: space-between;
    margin-bottom  : 10px;
    padding        : 0 15px;
}

/* END HEADER */

/* START BANNER */

.banner {
    display : grid;
    grid: auto / 68% 32%;
    /*grid-gap: 2%;*/
    /* width   : 74%; */
    width   : 89%;
    margin  : 0 auto 30px;
}

@media (min-width:0) and (max-width: 1023px) {
    .banner {
        width  : 100%;
        padding: 0 15px;
        display: block;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .banner {
        /* width: 85%; */
        width: 90%;
    }
}

.banner__carousel {
    position   : relative;
    grid-column: 1 / 1;
    grid-row: 1/3;
    min-width  : 100%;
}

@media (max-width: 767px) {
    .banner__carousel {
        /*display: none;*/
    }
}

.banner__carousel-mob {
    position   : relative;
    /* grid-column: 1 / 3; */
    /* grid-row   : 1 / 3; */
    min-width  : 100%;
    display: none;
}

@media (max-width: 1023px) {
  .banner__carousel-mob {
    /* display: grid; */
  }
}

#main-carousel-mob {
    height: 100%
}

#main-carousel-mob .owl-stage-outer,
#main-carousel-mob .owl-stage,
#main-carousel-mob .owl-item,
#main-carousel-mob .banner__box,
#main-carousel-mob .banner__box img {
    height: 100%;
}

#main-carousel {
    height: 100%
}

#main-carousel .owl-stage-outer,
#main-carousel .owl-stage,
#main-carousel .owl-item,
#main-carousel .banner__box,
#main-carousel .banner__box img {
    height: 100%;
}

.banner__box {
    position: relative;
}

.banner__box img {
    width        : 100%;
    border-radius: 5px;
}

.banner__title {
    position      : absolute;
    top           : 60px;
    left          : 55px;
    width: 620px;
    font-weight   : 800;
    font-size     : 50px;
    line-height: 59px;
    color         : var(--white-color);
    /* text-transform: uppercase; */
}

@media (min-width: 0) and (max-width: 767px) {
    .banner__title {
        top        : 25px;
        left       : 20px;
        font-weight: 700;
        font-size  : 10px;
        
            font-size: 18px;
    line-height: 22px;
    width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .banner__title {
        top        : 40px;
        left       : 25px;
        font-weight: 800;
        
            font-size: 36px;
    line-height: 45px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .banner__title {
        top      : 60px;
        left     : 40px;
        font-size: 42px;
        width:575px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .banner__title {
        top      : 60px;
        left     : 40px;
        font-size: 46px;
    }
}

.banner__title--second {
    position      : absolute;
    top           : 165px;
    left          : 55px;
    font-weight   : 800;
    font-size     : 52px;
    color         : var(--white-color);
    text-transform: uppercase;
}

@media (min-width: 0) and (max-width: 767px) {
    .banner__title--second {
        top        : 40px;
        left       : 20px;
        font-weight: 700;
        font-size  : 16px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .banner__title--second {
        top        : 90px;
        left       : 25px;
        font-weight: 800;
        font-size  : 56px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .banner__title--second {
        top        : 105px;
        left       : 40px;
        font-weight: 800;
        font-size  : 34px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .banner__title--second {
        top        : 105px;
        left       : 40px;
        font-weight: 800;
        font-size  : 44px;
    }
}

.banner__box a {
    position       : absolute;
    top            : 50%;
    left           : 55px;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    width          : 22%;
    height         : 45px;
    padding        : 0 35px;

    font-weight  : 800;
    color        : var(--green-color);
    border       : none;
    border       : 1px solid #ffffff;
    border-radius: 50px;
    background   : var(--white-color);
}

@media (min-width: 0) and (max-width: 1023px) {
    .banner__box a {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .banner__box a {
        width    : 24%;
        height   : 35px;
        padding  : 0 20px;
        font-size: 14px;
    }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .banner__box a {
        width: 25%;
    }
}

@media (min-width: 0) and (max-width: 1919px) {
    .banner__box a {
        left: 40px;
    }
}

.banner__box a:after {
    content: '>';
    color  : var(--green-color);
}

.banner__box a:hover {
    color : var(--orange-color);
    border: 1px solid var(--orange-color);
}

.banner__box a:hover:after {
    color: var(--orange-color);
}

#dots,
#dots-mob-0 {
    display : flex;
    position: absolute;
    top     : 89%;
    z-index : 1;
    left    : 55px;
}

@media (min-width: 0) and (max-width: 767px) {
    #dots {
      top: 80%;
      left: 0;
      justify-content: center;
      width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1919px) {

    #dots,
    #dots-mob-0 {
        left: 40px;
    }
}

#dots .item,
#dots-mob-0 .item {
    width        : 18px;
    height       : 18px;
    margin       : 0 5px;
    border-radius: 50px;
    background   : rgba(255, 255, 255, .5);
    cursor       : pointer;
}

@media (max-width: 767px) {
    #dots-mob-0 .item {
        width : 6px;
        height: 6px;
        margin: 0 3px;
    }
}

#dots .item.active,
#dots-mob-0 .item.active {
    background: rgba(255, 255, 255, 1);
}

.banner__stand {
    position: relative;
    width   : 32%;
}

.banner__img-box {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    margin-left: 20px;
    margin-bottom: 11px;
}

@media (min-width: 0) and (max-width: 1023px) {
    .banner__img-box {
        display: none;
    }
}

.banner__img-box-2 {
    grid-column: 2;
    grid-row   : 2;
    margin-bottom: 0;
    margin-top: 12px;
}

.banner__img-box img {
    width        : 100%;
    border-radius: 5px;
}

.banner__stand-title {
    position      : absolute;
    top           : 55px;
    left          : 25px;
    font-weight   : 800;
    font-size     : 14px;
    color         : var(--white-color);
    text-transform: uppercase;
}


@media (min-width: 0) and (max-width: 1919px) {
    .banner__stand-title {
        top      : 30px;
        left     : 20px;
        font-size: 12px;
    }
}

.banner__stand-title--second {
    position      : absolute;
    top           : 80px;
    left          : 25px;
    font-weight   : 800;
    font-size     : 25px;
    color         : var(--white-color);
    text-transform: uppercase;
}


@media (min-width: 0) and (max-width: 1919px) {
    .banner__stand-title--second {
        top      : 55px;
        left     : 20px;
        font-size: 20px;
    }
}

/* END BANNER */

/* START MINI-CAROUSEL */

.mini-carousel {
    /* width : 74%; */
    width : 89%;
    margin: 0 auto 30px;
}

@media (min-width:0) and (max-width: 1439px) {
    .mini-carousel {
        /* width: 85%; */
        width: 90%;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .mini-carousel {
        width: 92%;
    }
}

.mini-carousel #mini-carousel-0 {
    width : 96%;
    margin: 0 auto;
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .mini-carousel #mini-carousel-0 {
        width: 94%;
    }
}

.mini-carousel__box {
    width: 100%;
}

.mini-carousel__box img {
    width: 100%;
}

.mini-carousel .owl-carousel .nav-btn {
    position: absolute;
    top     : calc(50% - 14px) !important;
    height  : 28px;
    width   : 11px;
    cursor  : pointer;
    z-index : 1;
}

.mini-carousel .owl-carousel .owl-prev.disabled,
.mini-carousel .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity       : 0.2;
}

.mini-carousel .owl-carousel .prev-slide {
    background: url("/image/mini-carous-prev.svg") no-repeat;
    left      : -25px;
}

.mini-carousel .owl-carousel .next-slide {
    background: url("/image/mini-carous-next.svg") no-repeat;
    right     : -25px;
}

@media (max-width: 767px) {
  .mini-carousel .owl-carousel .prev-slide {
      left      : -18px;
  }

  .mini-carousel .owl-carousel .next-slide {
      right     : -18px;
  }
}

/* END MINI-CAROUSEL */

/* START BEST-PROD */

.best {
    /* width : 74%; */
    width : 89%;
    margin: 0 auto 55px;
}

@media (min-width:0) and (max-width: 767px) {
    .best {
        width : 95%;
        margin: 0 auto 35px;
    }
}

@media (min-width:0) and (max-width: 1023px) {
    .best {
        margin: 0 auto 35px;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .best {
        width: 92%;
    }
}

@media (min-width:1024px) and (max-width: 1919px) {
    .best {
        /* width: 85%; */
        width: 90%;
    }
}

.best .best-carousel {
    width : 96%;
    margin: 0 auto;
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .best .best-carousel {
        width: 94%;
    }
}

.best__card {
    display           : flex;
    flex-direction    : column;
    align-items       : center;
    margin            : 2px;
    border            : 1px solid #EFEFEF;
    -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
}

.car-prods .best__card img {
    max-height: 299px;
    width        : auto;
    height       : auto;
    margin: 0 auto 10px;
    padding      : 15px;
}

@media (max-width: 767px) {
    .car-prods  .best__card img {
        max-height: 255px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .car-prods  .best__card img {
        max-height: 255px;
    }
}

@media (min-width: 1024px) and (max-width: 1349px) {
    .car-prods  .best__card img {
        max-height: 210px;
    }
}

@media (min-width: 1350px) and (max-width: 1599px) {
    .car-prods  .best__card img {
        max-height: 225px;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .car-prods  .best__card img {
        max-height: 249px;
    }
}

.best__card img {
    max-height: 299px;
    width        : auto;
    height       : auto;
    margin: 0 auto 10px;
    padding      : 15px;
}

@media (max-width: 767px) {
    .best__card img {
        /* max-height: 170px; */
        max-height: 255px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .best__card img {
        /* max-height: 190px; */
        max-height: 255px;
    }
}

@media (min-width: 1024px) and (max-width: 1349px) {
    .best__card img {
        /* max-height: 170px; */
        max-height: 210px;
    }
}

@media (min-width: 1350px) and (max-width: 1599px) {
    .best__card img {
        /* max-height: 160px; */
        max-height: 225px;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .best__card img {
        /* max-height: 160px; */
        max-height: 249px;
    }
}

.best__txt-box {
    width: 100%;
    padding: 0 30px;
}

@media (max-width: 1023px) {
    .best__txt-box {
        font-size: 0 15px;
    }
}

.best__card:hover {
    background: var(--white-color);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.best__card h4 {
    /* height       : 32px; */
    height       : 43px;
    overflow     : hidden;
    margin-bottom: 20px;
    font-weight  : 900;
    line-height: 24px;
    color        : var(--grey-color);
    text-align   : center;
}

.best__descr-box {
    display        : flex;
    flex-wrap      : wrap;
    justify-content: space-between;
    min-height         : 90px;
    /* overflow       : hidden; */
    font-size      : 14px;
}

.best__descr-name {
    display      : block;
    width        : 70%;
    height       : 30px;
    overflow     : hidden;
    margin-bottom: 15px;
    color        : var(--grey-color);
}

.best__descr-item {
    display      : block;
    width        : 28%;
    max-height: 28px;
    overflow: hidden;
    margin-bottom: 15px;

    font-weight: 800;
    color      : var(--grey-color);
    text-align : right;
    word-break: break-word;
}

.best__card .best__descr-box-add {
  display: none;
}

.best .owl-carousel .nav-btn {
    position: absolute;
    top     : calc(50% - 14px) !important;
    height  : 28px;
    width   : 11px;
    cursor  : pointer;
    z-index : 1;
}

.best .owl-carousel .owl-prev.disabled,
.best .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity       : 0.2;
}

.best .owl-carousel .prev-slide {
    background: url("/image/mini-carous-prev.svg") no-repeat;
    left      : -25px;
}

.best .owl-carousel .next-slide {
    background: url("/image/mini-carous-next.svg") no-repeat;
    right     : -25px;
}

@media (max-width: 767px) {
    .best .owl-carousel .prev-slide {
        left: -10px;
    }

    .best .owl-carousel .next-slide {
        right: -10px;
    }
}

.best__price-box {
    display       : flex;
    flex-direction: column;
    align-items   : flex-start;
    justify-content: center;
    width         : fit-content;
    height: 55px;
    margin        : 0 auto 10px;
}

@media (min-width: 0px) and (max-width: 1919px) {
    .best__price-box {
        height: 45px;
    }
}

.best__price-txt {
  display:inline-block;
}

.best__old-price {
    margin-bottom  : 5px;
    font-weight    : 800;
    font-size      : 14px;
    color          : #818181;
    text-decoration: line-through;
}

@media (min-width: 0) and (max-width: 1439px) {
    .best__old-price {
        font-size: 12px;
    }
}

.best__old-price i {
    margin-left    : 5px;
    font-style     : normal;
    font-weight    : 800;
    font-size      : 14px;
    color          : #818181;
    text-decoration: line-through;
}

@media (min-width: 0) and (max-width: 1439px) {
    .best__old-price i {
        font-size: 12px;
    }
}

.best__new-price {
    font-weight: 800;
    font-size  : 28px;
    color      : var(--green-color);
}

@media (min-width: 0) and (max-width: 767px) {
    .best__new-price {
        font-size: 24px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .best__new-price {
        font-size: 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .best__new-price {
        font-size: 22px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .best__new-price {
        font-size: 20px;
    }
}

.best__new-price i {
    margin-left: 5px;
    font-style : normal;
    font-weight: 800;
    font-size  : 18px;
    color      : var(--green-color);
}

.best__btn {
    display        : flex;
    justify-content: center;
    align-items    : center;
    height         : 45px;
    width          : 76%;
    margin         : 0 auto 15px;
    font-weight    : 800;
    color          : var(--white-color);
    text-align     : center;
    border-radius  : 50px;
    border         : none;
    background     : var(--green-color);
    transition     : all .4s;
}

.best__btn:hover,
.best__btn:active,
.best__btn:focus {
    color     : var(--white-color);
    background: var(--green-light-color);
}

/* END BEST-PROD */

/* START ADVANTAGES */

.advantages-box {
    /* width : 74%; */
    width : 89%;
    margin: 0 auto;
}

@media (min-width:0) and (max-width: 1023px) {
    .advantages-box {
        width  : 100%;
        padding: 0 15px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .advantages-box {
        /* width: 85%; */
        width: 90%;
    }
}

section h2 {
    margin-bottom: 20px;
    font-size    : 32px;
    color        : var(--grey-color);
    text-align   : center;
}

@media (max-width: 1023px) {
    section h2 {
        font-size: 26px;
    }
}

.advantages {
    display        : flex;
    flex-wrap      : wrap;
    justify-content: space-between;
    margin-bottom  : 60px;
}

.advantages-768 {
    display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .advantages-768 {
        display: block;
    }
}

@media (max-width: 767px) {
    .advantages {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .advantages {
        display: none;
    }

    .advantages-768 {
        display: flex;
    }
}

.advantages tr {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
}

.advantages .td-img {
    width: 22%;
}

@media (max-width: 1023px) {
    .advantages .td-img {
        width: 17%;
    }
}

@media (min-width:1440px) and (max-width: 1919px) {
    .advantages .td-img {
        width: 29%;
    }
}

@media (min-width: 0) and (max-width: 1439px) {
    .advantages .td-img img {
        width: 100%;
    }

    .advantages .td-img img.advantages__img-5 {
        width: 80%;
    }
}

.advantages .td-span {
    width: 78%;
}

@media (min-width:1024px) and (max-width: 1919px) {
    .advantages .td-span {
        width: 71%;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .advantages .td-img .advantages__img-5 {
        width: 85%;
    }
}

.advantages .advantages__card {
    display    : flex;
    align-items: center;
    width      : 30%;
}

@media (max-width: 767px) {
    .advantages .advantages__card {
        width        : 100%;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .advantages .advantages__card {
        width        : 50%;
        margin-bottom: 15px;
    }
}

.advantages__card table {
    width: 100%;
}

.advantages__card span {
    font-weight: 800;
    font-size  : 20px;
    line-height: 25px;
    color      : var(--grey-color);
}

@media (max-width: 1023px) {
    .advantages__card span {
        font-size  : 14px;
        line-height: 20px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .advantages__card span {
        font-size  : 16px;
        line-height: 21px;
    }
}

.advantages-second {
    margin-bottom: 30px;
}

/* END ADVANTAGES */

/* START NEWS */

.news {
    /* width : 74%; */
    width : 89%;
    margin: 0 auto;
}

@media (min-width:0) and (max-width: 1023px) {
    .news {
        width  : 100%;
        padding: 0 15px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .news {
        /* width: 85%; */
        width: 90%;
    }
}

.news__box {
    display        : flex;
    flex-wrap      : wrap;
    justify-content: space-between;
}

.news__card {
    display           : flex;
    width             : 49%;
    margin-bottom     : 30px;
    -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    transition        : all .4s;
}

@media (max-width: 767px) {
    .news__card {
        height       : 125px;
        width        : 100%;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .news__card {
        height       : 175px;
        width        : 100%;
        margin-bottom: 15px;
    }
}

.news__card:hover {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.news__img-box {
  display: flex;
  justify-content: center;
  width   : 26%;
  overflow: hidden;
}

@media (max-width: 767px) {
    .news__img-box {
        width: 35%;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .news__img-box {
        width: 35%;
    }
}

@media (min-width:1440px) and (max-width: 1919px) {
    .news__img-box {
        width: 30%;
    }
}

.news__img-box img {
    display: flex;
    width : fit-content;
    height: fit-content;
    margin-top: 13px;
}

@media (max-width: 1023px) {
  .news__img-box img {
    width : auto;
    height: 100%;
  }
}

.news__txt-box {
    display       : flex;
    flex-direction: column;
    width         : 74%;
    padding       : 20px 45px 25px;
}

@media (max-width: 767px) {
    .news__txt-box {
        width: 65%;
        padding: 10px 20px 10px;
    }
}

@media (min-width:768px) and (max-width: 1439px) {
    .news__txt-box {
        padding: 20px 20px 25px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .news__txt-box {
        width: 65%;
    }
}

@media (min-width:1440px) and (max-width: 1919px) {
    .news__txt-box {
        width: 70%;
        padding: 20px 35px 25px;
    }
}

.news__txt-box h3 {
    margin-bottom: 15px;
    font-weight  : 800;
    font-size    : 24px;
    line-height  : 28px;
    color        : var(--orange-color);
    transition   : all .4s;
}

@media (max-width: 1023px) {
    .news__txt-box h3 {
        margin-bottom: 5px;
        font-size    : 12px;
        line-height  : 14px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .news__txt-box h3 {
        font-size  : 16px;
        line-height: 22px;
    }
}

@media (min-width:1440px) and (max-width: 1919px) {
    .news__txt-box h3 {
        font-size  : 18px;
        line-height: 26px;
    }
}

.news__txt-box h3:hover {
    text-decoration: underline;
}

.news__date {
    margin-bottom: 15px;
    font-weight  : 800;
    font-size    : 14px;
    color        : var(--grey-light-color);
}

@media (max-width: 1023px) {
    .news__date {
        margin-bottom: 5px;
        font-size    : 7px;
    }
}

.news__txt-box p {
    max-height : 127px;
    overflow   : hidden;
    line-height: 18px;
    color      : var(--grey-color);
    text-indent: 10px;
}

@media (min-width:0) and (max-width: 767px) {
    .news .news__txt-box p {
        margin-bottom: 0;
        max-height : 40px;
        font-size  : 8px;
        line-height: 10px;
    }
}

@media (min-width:768px) and (max-width: 1439px) {
    .news__txt-box p {
        max-height : 126px;
        font-size  : 14px;
        line-height: 18px;
    }
}

@media (min-width:1440px) and (max-width: 1919px) {
    .news__txt-box p {
        max-height : 106px;
        font-size  : 14px;
        line-height: 18px;
    }
}

.news__read-more {
    color          : var(--orange-color);
    text-decoration: underline;
    text-align     : end;
    transition     : all .4s;
}

@media (min-width:0) and (max-width: 767px) {
    .news__read-more {
        display: none;
    }
}

@media (min-width:768px) and (max-width: 1919px) {
    .news__read-more {
        font-size: 14px;
    }
}

.news__read-more:hover {
    color          : var(--grey-light-color);
    text-decoration: underline;
}

.news__link {
    display        : block;
    width          : fit-content;
    margin         : 0 auto 35px;
    color          : var(--orange-color);
    text-decoration: underline;
    text-align     : center;
    transition     : all .4s;
}

@media (max-width: 1023px) {
    .news__link {
        font-size: 12px;
    }
}

.news__link:hover {
    color          : var(--grey-light-color);
    text-decoration: underline;
}

/* END NEWS */

/* START QUEST */

.quest {
    width: 100%;
    margin           : 0 auto 30px;
    padding          : 25px 0 75px;
    background-image : url('/image/question-back.jpg');
    background-size  : cover;
    background-repeat: no-repeat;
}

@media (max-width: 1023px) {
    .quest {
        padding: 25px 15px;
    }
}

.quest h2 {
    margin-bottom: 10px;
    font-weight  : 800;
    font-size    : 28px;
    color        : var(--white-color);
    text-align   : center;
}

@media (max-width: 1023px) {
    .quest h2 {
        font-size: 20px;
    }
}

.quest span {
    display      : block;
    margin-bottom: 50px;
    color        : var(--white-color);
    text-align   : center;
}

.quest__input-box {
    display: flex;
    width  : 58%;
    margin : 0 auto;
}

@media (min-width:0) and (max-width: 1023px) {
    .quest__input-box {
        flex-wrap      : wrap;
        justify-content: center;
        width          : 100%;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .quest__input-box {
        width: 69%;
    }
}

.quest__input-box input {
    height       : 65px;
    width        : 35%;
    padding-left : 25px;
    padding-right: 15px;
    border       : none;
    border-radius: 50px 0 0 50px;
    background   : var(--white-color);
    outline: none!important;
}

@media (min-width:0) and (max-width: 767px) {
    .quest__input-box input {
        width        : 100%;
        height       : 50px;
        margin-bottom: 30px;
        padding      : 0;
        border-radius: 50px 50px 50px 50px;
        text-align   : center;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .quest__input-box input {
        width        : 60%;
        height       : 50px;
        margin-bottom: 30px;
        padding      : 0;
        border-radius: 50px 50px 50px 50px;
        text-align   : center;
    }
}

@media (min-width:1024px) and (max-width: 1919px) {
    .quest__input-box input {
        padding-left: 70px;
    }
}

.quest__input-box input.quest__phone {
    border-radius: 0;
    border-left  : 1px solid #E4E4E4;
}


@media (min-width:0) and (max-width: 767px) {
    .quest__input-box input.quest__phone {
        width        : 100%;
        height       : 50px;
        margin-bottom: 30px;
        padding      : 0;
        border-radius: 50px 50px 50px 50px;
        text-align   : center;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .quest__input-box input.quest__phone {
        width        : 60%;
        height       : 50px;
        margin-bottom: 30px;
        padding      : 0;
        border-radius: 50px 50px 50px 50px;
        text-align   : center;
    }
}

.quest__input-box button {
    width         : 30%;
    font-weight   : 800;
    font-size     : 18px;
    color         : var(--white-color);
    text-transform: uppercase;
    border        : none;
    border-radius : 0 50px 50px 0;
    background    : var(--green-color);
    transition    : all .4s;
}

@media (min-width:0) and (max-width: 767px) {
    .quest__input-box button {
        width        : 100%;
        height       : 66px;
        padding      : 0;
        border-radius: 50px 50px 50px 50px;
        text-align   : center;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .quest__input-box button {
        width        : 60%;
        height       : 66px;
        padding      : 0;
        border-radius: 50px 50px 50px 50px;
        text-align   : center;
    }
}

.quest__input-box button:hover {
    background: var(--green-light-color);
}

/* END QUEST */

/* START REVIEW */

.review {
    /* width : 74%; */
    width : 89%;
    margin: 0 auto;
}

@media (min-width:0) and (max-width: 1023px) {
    .review {
        width: 92%;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .review {
        /* width: 85%; */
        width: 90%;
    }
}

.review h2 {
    color: #000000;
}

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

@media (min-width: 1024px) {
    .review__box-mob-wrap {
        display: none;
    }
}

@media (max-width: 1023px) {
    .review__box {
        display: none;
    }

    .review__box-mob {
        display      : flex;
        margin-bottom: 30px;
    }
}

.review__card {
    display           : flex;
    align-items       : flex-start;
    width             : 32%;
    margin-bottom     : 30px;
    padding           : 30px 30px 20px;
    -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
}

@media (max-width: 1023px) {
    .review__card {
        width  : 98%;
        margin : 2px auto;
        padding: 10px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .review__card {
        width: 49%;
    }

    .review__card:last-child {
        display: none;
    }
}

@media (min-width:0) and (max-width: 1919px) {
    .review__card {
        padding: 20px;
    }
}

.review__card img {
    display     : flex;
    width       : 20%;
    margin-right: 20px !important;
}

.review__txt-box {
    display       : flex;
    flex-direction: column;
    width         : 80%;
    padding-top   : 15px;
}

.review__name {
    display      : block;
    margin-bottom: 20px;
    font-weight  : 800;
    color        : var(--grey-color);
}

.review__txt-box p {
    display      : block;
    max-height   : 100px;
    overflow     : hidden;
    margin-bottom: 10px;
    line-height  : 20px;
    color        : var(--grey-color);
}

.review__txt-box a {
    width          : fit-content;
    margin-bottom  : 5px;
    font-size      : 12px;
    color          : var(--orange-color);
    text-decoration: underline;
    transition     : all .4s;
}

.review__txt-box a:hover {
    color: var(--grey-light-color);
}

.review__date {
    display   : flex;
    align-self: flex-end;
    font-size : 10px;
    color     : var(--grey-color);
}

.review__link {
    display        : block;
    width          : fit-content;
    margin         : 0 auto 40px;
    font-size      : 14px;
    color          : var(--orange-color);
    text-decoration: underline;
    text-align     : center;
    transition     : all .4s;
}

.review__link:hover {
    color          : var(--grey-light-color);
    text-decoration: underline;
}

.review__btn-more {
    text-align: center;
    margin-bottom: 40px;
    
    text-decoration: underline;
}

@media (max-width: 1023px) {
  .review__btn-more {
    display: none;
  }
}

.review__btn-more a {
    color: var(--orange-color);
    transition: all .4s;
}

.review__btn-more a:hover {
    color: var(--grey-light-color);
}

#review-carousel .nav-btn {
    position: absolute;
    top     : calc(50% - 14px) !important;
    height  : 28px;
    width   : 11px;
    cursor  : pointer;
    z-index : 1;
}

#review-carousel .owl-prev.disabled,
#review-carousel .owl-next.disabled {
    pointer-events: none;
    opacity       : 0.2;
}

#review-carousel .prev-slide {
    background: url("/image/mini-carous-prev.svg") no-repeat;
    left      : -25px;
}

#review-carousel .next-slide {
    background: url("/image/mini-carous-next.svg") no-repeat;
    right     : -25px;
}

@media (max-width: 1023px) {
    #review-carousel .prev-slide {
        left: -9px;
    }

    #review-carousel .next-slide {
        right: -9px;
    }
}

/* END REVIEW */

/* START BRAND */

.brand {
    width : 74%;
    margin: 0 auto 70px;
}

@media (min-width:0) and (max-width: 1439px) {
    .brand {
        width: 85%;
    }
}

.brand h2 {
    margin-bottom: 40px;

    color: #000000;
}

.brand-carousel {
    width : 96%;
    margin: 0 auto;
}

@media (min-width: 0) and (max-width: 767px) {
    .brand-carousel {
        width: 90%;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .brand-carousel {
        width: 94%;
    }
}

.brand__box {
    width: 100%;
}

.brand__box img {
    width: 100%;
}

#brand-carousel .nav-btn {
    position: absolute;
    top     : calc(50% - 14px) !important;
    height  : 28px;
    width   : 11px;
    cursor  : pointer;
    z-index : 1;
}

#brand-carousel .owl-prev.disabled,
#brand-carousel .owl-next.disabled {
    pointer-events: none;
    opacity       : 0.2;
}

#brand-carousel .prev-slide {
    background: url("/image/mini-carous-prev.svg") no-repeat;
    left      : -25px;
}

#brand-carousel .next-slide {
    background: url("/image/mini-carous-next.svg") no-repeat;
    right     : -25px;
}

/* END BRAND */

/* START SEO-TEXT */

.seo-text {
    /* width : 74%; */
    width : 89%;
    margin: 0 auto 60px;
}

@media (min-width:0) and (max-width: 1023px) {
    .seo-text {
        width        : 100%;
        margin-bottom: 30px;
        padding      : 0 15px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .seo-text {
        /* width: 85%; */
        width: 90%;
    }
}

section h1 {
    margin-bottom: 50px;
    font-size    : 32px;
    color        : var(--grey-color);
    text-align   : center;
    color        : #000000;
}

@media (min-width:0) and (max-width: 1023px) {
    .seo-text h1 {
        margin-bottom: 30px;
    }
}

.seo-text details {
    position: relative;
    margin-bottom : 55px;
    padding-bottom: 16px;
}

@media (max-width: 1023px) {
    .seo-text details {
        margin-bottom: 0;
    }
}

.seo-text summary::-webkit-details-marker {
    display: none
}

.seo-text summary:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 40px;

    font-size      : 12px;
    color          : var(--orange-color);
    text-align     : center;
    text-decoration: underline;
    cursor         : pointer;
}

@media (max-width: 1023px) {
    .seo-text summary:after {
        float  : none;
        display: block;
    }
}

.seo-text details[open]>summary:after {
    content: "";
}

.seo-text p {
    margin-bottom: 15px;

    font-size  : 16px;
    line-height: 22px;
    color      : var(--grey-color);
    text-indent: 20px;
}

.seo-text ul,
ol {
    list-style-type: none;
}

.seo-text h2,
.seo-text h3,
.seo-text h4,
.seo-text h5,
.seo-text h6 {
    margin-bottom: 20px;
    font-size    : 30px;
    color        : var(--grey-color);
    text-align   : center;
}

.seo-text h2,
.seo-text h3,
.seo-text h4,
.seo-text h5,
.seo-text h6 {
    margin-bottom: 20px;
    font-size    : 30px;
    color        : #000000;
    text-align   : center;
}

.seo-text h3 {
    margin-bottom: 18px;
    font-size    : 26px;
}


.seo-text h4 {
    margin-bottom: 16px;
    font-size    : 24px;
}

.seo-text h5 {
    margin-bottom: 14px;
    font-size    : 22px;
}

.seo-text h6 {
    margin-bottom: 12px;
    font-size    : 20px;
}

/* END SEO-TEXT */

/* START FOOTER */

.footer {
    width: 100%;
    max-width: 1920px;
    margin   : 0 auto;
}

.footer__subscr {
    background: #282C2F;
}

.footer__subscr-box {
    display        : flex;
    justify-content: space-between;
    align-items    : flex-end;
    /* width          : 74%; */
    width          : 89%;
    margin         : 0 auto;
    padding        : 45px 0;
}

@media (min-width:0) and (max-width: 1023px) {
    .footer__subscr-box {
        flex-direction: column;
        align-items   : center;
        width         : 100%;
        padding       : 45px 15px 45px;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .footer__subscr-box {
        /* width: 85%; */
        width: 90%;
    }
}

.footer__subscr span {
    width      : 32%;
    line-height: 19px;
    color      : var(--white-color);
}

@media (min-width:0) and (max-width: 767px) {
    .footer__subscr span {
        width        : 100%;
        margin-bottom: 35px;
        font-size    : 15px;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .footer__subscr span {
        width        : 100%;
        margin-bottom: 35px;
        font-size    : 15px;
        text-align   : center;
    }
}

@media (min-width:1024px) and (max-width: 1919px) {
    .footer__subscr span {
        font-size: 14px;
    }
}

.footer__subscr input {
    width         : 48%;
    padding-bottom: 10px;
    color         : var(--white-color);
    background    : transparent;
    border        : none;
    border-bottom : 1px solid #3D4144;
}

@media (min-width:0) and (max-width: 1023px) {
    .footer__subscr input {
        width         : 100%;
        margin-bottom : 35px;
        padding-bottom: 10px;
        text-align    : center;
    }
}

@media (min-width:1024px) and (max-width: 1919px) {
    .footer__subscr input {
        width: 46%;
    }
}

@media (min-width:1024px) and (max-width: 1919px) {
    .footer__subscr input {
        width: 46%;
    }
}

.footer__subscr ::-webkit-input-placeholder {
    /* Edge */
    color: #3D4144;
}

.footer__subscr :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #3D4144;
}

.footer__subscr ::placeholder {
    color: #3D4144;
}

.footer__subscr button {
    height       : 45px;
    width        : 14%;
    font-weight  : 800;
    color        : var(--white-color);
    border       : none;
    border-radius: 50px;
    background   : var(--orange-color);
    transition   : all .4s;
}

@media (min-width:0) and (max-width: 767px) {
    .footer__subscr button {
        width: 68%;
    }
}

@media (min-width:768px) and (max-width: 1023px) {
    .footer__subscr button {
        width: 60%;
    }
}

@media (min-width:1024px) and (max-width: 1599px) {
    .footer__subscr button {
        width: 18%;
    }
}

@media (min-width:1600px) and (max-width: 1919px) {
    .footer__subscr button {
        width: 16%;
    }
}

.footer__subscr button:hover {
    background: #F89751;
}

.footer__bottom {
    background: #3D4144;
}

@media (max-width: 1023px) {
    .footer__bottom {
        display: none;
    }
}

.footer__bottom-box {
    display        : flex;
    justify-content: space-between;
    /* width          : 74%; */
    width          : 89%;
    margin         : 0 auto;
    padding        : 15px 0 60px;
}

@media (min-width:0) and (max-width: 1439px) {
    .footer__bottom-box {
        /* width: 85%; */
        width: 90%;
    }
}

.footer__logo-box {
    display        : flex;
    justify-content: space-between;
    align-items    : flex-start;
    width          : 65%;
}

@media (min-width:1024px) and (max-width: 1439px) {
    .footer__logo-box {
        width: 68%;
    }
}

.footer__copyright-box {
    display       : flex;
    flex-direction: column;
    align-items   : center;
    /* width         : 20%; */
    width         : 17%;
}

@media (max-width: 767px) {
    .footer__copyright-box {
        align-items: flex-start;
        width      : 52%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer__copyright-box {
        align-items: flex-end;
        width      : 23%;
    }
}

@media (min-width: 1024px) and (max-width: 1349px) {
    .footer__copyright-box {
        /* width: 27%; */
        width: 25%;
    }
}

@media (min-width: 1350px) and (max-width: 1919px) {
    .footer__copyright-box {
        /* width: 27%; */
        width: 23%;
    }
}

.footer__copyright-box img {
    width        : 62%;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .footer__copyright-box img {
        width        : 54%;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer__copyright-box img {
        width: 47%;
    }
}

@media (min-width: 1024px) and (max-width: 1919px) {
    .footer__copyright-box img {
        width: 58%;
    }
}

.footer__copyright-box span {
    font-weight   : 700;
    color         : var(--white-color);
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .footer__copyright-box span {
        display      : block;
        margin-bottom: 10px;
        font-size    : 13px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer__copyright-box span {
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .footer__copyright-box span {
        font-size: 13px;
    }
}

.footer__menu-box {
    width: 74%;
}

@media (min-width:0) and (max-width: 1023px) {
    .footer__menu-box {
        width: 100%;
    }
}

@media (min-width:1024px) and (max-width: 1439px) {
    .footer__menu-box {
        width: 77%;
    }
}

@media (min-width:1440px) and (max-width: 1919px) {
    .footer__menu-box {
        width: 71%;
    }
}

.footer__menu-box ul {
    display        : flex;
    justify-content: space-between;
    list-style-type: none;
}

@media (min-width:0) and (max-width: 1023px) {
    .footer__menu-box ul {
        display: block;
    }
}

@media (min-width:0) and (max-width: 1023px) {
    .footer__menu-box li {
        margin-bottom: 35px;
    }
}

.footer__menu-box li a {
    line-height: 22px;
    color      : var(--white-color);
    transition : all .4s;
}

@media (min-width:1024px) and (max-width: 1439px) {
    .footer__menu-box li a {
        font-size: 14px;
    }
}

.footer__menu-box li a:hover {
    color: var(--orange-color);
}

.footer__social-box {
    width: 20%;
}

@media (max-width: 767px) {
    .footer__social-box {
        display        : flex;
        justify-content: space-between;
        align-items    : flex-start;
        flex-wrap      : wrap;
        width          : 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer__social-box {
        display        : flex;
        justify-content: space-between;
        align-items    : flex-start;
        width          : 100%;
    }
}

@media (min-width:1024px) and (max-width: 1349px) {
    .footer__social-box {
        width: 24%;
    }
}

@media (min-width:1350px) and (max-width: 1439px) {
    .footer__social-box {
        width: 27%;
    }
}

@media (min-width:1440px) and (max-width: 1699px) {
    .footer__social-box {
        width: 26%;
    }
}

@media (min-width:1700px) and (max-width: 1919px) {
    .footer__social-box {
        width: 22%;
    }
}

@media (max-width: 767px) {
    .footer__social-wrap {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer__social-wrap {
        width: 64%;
    }
}

.footer__social {
    margin-bottom: 10px;
}

.footer__social--address {
    margin-bottom: 20px;
}

.footer__social img {
    margin-right: 10px;
}

.footer__social span {
    font-size: 14px;
    line-height: 22px;
    color    : var(--white-color);
}

.footer__first-phone {
  display: flex;
  align-items: end;
}

.footer__social--phone span {
    display: block;
    margin-left: 25px;
    margin-bottom: 10px;
    font-weight: 800;
    color      : var(--white-color);
}

.footer__first-phone span {
    margin-left: 0;
    margin-bottom: 0;
}

.footer__social--net {
    text-align: right;
}

@media (max-width: 1023px) {
    .footer__social--net {
        text-align: center;
    }
}

.footer__social--net span {
    display      : block;
    margin-bottom: 20px;
}

.footer__social-img-box {
    display        : flex;
    justify-content: flex-end;
}

@media (max-width: 1023px) {
    .footer__social-img-box {
        justify-content: center;
    }
}

.footer__social-img {
    height          : 23px;
    width           : 23px;
    margin-right    : 15px;
    transition      : all .4s;
    background-size: 23px;
}

.facebook {
    background-image: url("/image/facebook.png");
}

.facebook:hover {
    height          : 23px;
    width           : 23px;
    background-image: url("/image/facebook-1.png");
}

.insta {
    background-image: url("/image/insta.png");
}

.insta:hover {
    background-image: url("/image/insta-2.png");
}

.youtube {
    background-image: url("/image/youtube.png");
}

.youtube:hover {
    background-image: url("/image/youtube-1.png");
}

.twitter {
    margin-right    : 0;
    background-image: url("/image/twitter.png");
}

.twitter:hover {
    background-image: url("/image/twitter-1.png");
}

/* .vk { */
    /* margin-right    : 0; */
    /* background-image: url("/image/vk.png"); */
/* } */

/* .vk:hover { */
    /* background-image: url("/image/vk-2.png"); */
/* } */

.footer__mob {
    padding   : 35px 15px;
    background: #3D4144;
}

@media (min-width: 1024px) {
    .footer__mob {
        display: none;
    }
}

.footer__mob .footer__menu-box {
    margin-bottom: 30px;
}

.footer__mob .footer__menu-box ul {
    display              : grid;
    grid-gap             : 30px;
    grid-template-columns: 1fr 1fr;
}

.footer__mob .footer__menu-box li {
    margin-bottom: 0;
}

.footer__mob .footer__menu-box li:nth-child(2n) {
    text-align: right;
}

/* END FOOTER */

/* START POPUP */

.popup-enter {
    position  : absolute;
    top       : 0;
    right     : 0;
    bottom    : 0;
    left      : 0;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    z-index   : 10;
    display   : none;
}

.popup-example p {
  font-size: 30px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .popup-example p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup-example p {
    font-size: 25px;
    line-height: 30px;
  }
}

.popup__wrapper {
    position      : relative;
    top           : 250px;
    display       : flex;
    flex-direction: column;
    align-items   : center;
    width         : 49%;
    margin        : 0 auto;
    padding       : 40px 90px 40px 85px;
    border-radius : 30px;
    background    : var(--white-color);
}

@media (max-width: 767px) {
    .popup__wrapper {
        top    : 20px;
        width  : 96%;
        padding: 40px 15px 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .popup__wrapper {
        top    : 50px;
        width  : 98%;
        padding: 40px 30px 40px 25px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .popup__wrapper {
        top  : 150px;
        width: 88%;
    }
}

@media (min-width: 1440px) and (max-width: 1799px) {
    .popup__wrapper {
        top  : 150px;
        width: 64%;
    }
}

@media (min-width: 1800px) and (max-width: 1919px) {
    .popup__wrapper {
        top  : 150px;
        width: 58%;
    }
}

.popup-call .popup__wrapper {
    width: 35%;
}

@media (max-width: 767px) {
    .popup-call .popup__wrapper {
        width: 99%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .popup-call .popup__wrapper {
        width: 62%;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .popup-call .popup__wrapper {
        width: 56%;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .popup-call .popup__wrapper {
        width: 40%;
    }
}

.popup__wrapper .popup__cross {
    position: absolute;
    top     : 30px;
    right   : 30px;
    cursor  : pointer;
}

@media (max-width: 767px) {
    .popup__wrapper .popup__cross {
        top  : 16px;
        right: 16px;
        width: 16px;
    }
}

.popup-enter form > span {
     margin-bottom: 50px;
    font-size    : 32px;
    color        : var(--grey-color);
    text-align   : center;
    color        : #000000;
}

@media (min-width:0) and (max-width: 1023px) {
    .popup-enter form > span {
        margin-bottom: 30px;
    }
}

.popup-enter .popup__wrapper > span {
    margin-bottom: 50px;
    font-size    : 32px;
    color        : var(--grey-color);
    text-align   : center;
    color        : #000000;
}

@media (min-width:0) and (max-width: 1023px) {
    .popup-enter .popup__wrapper > span {
        margin-bottom: 30px;
    }
}

.popup__wrapper label {
    width: 100%;
}

.popup__wrapper input {
    height       : 44px;
    width        : 100%;
    margin       : 5px 0 15px;
    padding      : 0 10px;
    border       : 1px solid #C4C4C4;
    border-radius: 50px;
    background   : transparent;
}

.popup__btn-box {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    width          : 76%;
    margin-top     : 20px;
    margin-bottom  : 30px;
}

@media (max-width: 767px) {
    .popup__btn-box {
        flex-direction: column;
        width         : 100%;
        margin-bottom : 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .popup__btn-box {
        width: 87%;
    }
}

.popup__btn-box span {
    color: var(--grey-color);
}

@media (max-width: 767px) {
    .popup__btn-box span {
        display      : block;
        margin-bottom: 20px;
    }
}

.popup__btn-fb,
.popup__btn-g {
    display        : flex;
    justify-content: flex-start;
    align-items    : center;
    width          : 24%;
    height         : 40px;
    padding        : 10px 20px;

    font-weight  : 500;
    font-size    : 14px;
    border       : none;
    border-radius: 10px;
    background   : #4267B2;
    transition   : all .4s;
}

@media (max-width: 767px) {

    .popup__btn-fb,
    .popup__btn-g {
        align-items  : flex-start;
        width        : 70%;
        margin-bottom: 20px;
    }
}

.popup__btn-fb:hover {
    background: #1E3564;
}

.popup__btn-g:hover {
    background: #DDD7D7;
}

.popup__btn-fb img {
    margin-right: 25px;
}

.popup__btn-g img {
    margin-right: 20px;
}

.popup__btn-fb span {
    color: var(--white-color);
}

.popup__btn-g {
    align-items: flex-start;

    border    : 1px solid #C4C4C4;
    background: var(--white-color);
}

.popup__btn-sub-box {
  position: relative;
  width: 27%;
}


@media (max-width: 767px) {
    .popup__btn-sub-box {
        width: 85%;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .popup__btn-sub-box {
        width: 30%;
    }
}

.popup__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width : 100%;

    font-weight   : 900;
    color         : var(--white-color);
    text-transform: uppercase;
    border        : none;
    border-radius : 50px;
    background    : var(--green-color);
    transition    : all .4s;
}

.popup__submit:hover,
.popup__submit:active,
.popup__submit:focus {
  color: var(--white-color);
}

@media (max-width: 1023px) {
  .popup__submit {
    width: 60%;
    height: 40px;
    margin: 0 auto;
    font-size: 12px;
  }
}

.popup__submit:hover {
    background: var(--green-light-color);
}

.popup__submit:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.popup__submit:disabled:hover {
    opacity: .3;
    background    : var(--green-color);
    cursor: not-allowed;
}
  
.popup__btn-sub-box .loader {
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    display: none;
}  

.popup__btn-sub-box .popup__submit:disabled ~ .loader {
    display: block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.popup-call .popup__submit {
    width: 100%;
}

form .error_warning {
    display: inline-block;
    padding: 0 20px;
    color: red;
}

@media (max-width: 767px) {
  form .error_warning {
      padding: 0;
  }
}

.popup-buy .popup__wrapper {
  width: 65%;
  padding: 40px 20px 40px;
}

@media (max-width: 1023px) {
  .popup-buy .popup__wrapper {
    width: 95%;
    padding: 15px 10px 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1349px) {
  .popup-buy .popup__wrapper {
    width: 95%;
    padding: 30px 20px 30px;
  }
}

@media (min-width: 1350px) and (max-width: 1599px) {
  .popup-buy .popup__wrapper {
    width: 74%;
    padding: 40px 20px 40px;
  }
}

@media (min-width: 1600px) and (max-width: 1864px) {
  .popup-buy .popup__wrapper {
    width: 70%;
    padding: 40px 20px 40px;
  }
}

.popup-buy .popup__card {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .popup-buy .popup__card {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.popup-buy .popup__delete-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right:20px;
}

@media (max-width: 1023px) {
  .popup-buy .popup__delete-box {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.popup-buy .popup__delete-box:hover {
  cursor: pointer;
}

.popup__delete img {
  margin-bottom: 5px; 
}

.popup-buy .popup__delete-box span,
#cart_table .cross-wrap {
  font-size: 12px;
  line-height: 14px;
  color: var(--orange-color);
}

@media (max-width: 767px) {
  .cart-wrap .table-responsive {
    display: flex;
    width: 100%;
    border: none;
  }
  
  #cart_table,
  #cart-table tr {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  #cart-table tbody {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #cart-table td {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #cart_table tr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cart-wrap .table-responsive {
    border: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #cart_table .cross-wrap {
    white-space: initial;
  }
}

.popup-buy .popup__prod {
  width: 17%;
  margin-right: 30px;
  
  /* max-height: 195px; */
}

@media (max-width: 767px) {
  .popup-buy .popup__prod {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    /* max-height: 195px; */
`}
}

/* @media (min-width: 768px) and (max-width: 1023px) { */
  /* .popup-buy .popup__prod { */
    /* max-height: 195px; */
/* `} */
/* } */

/* @media (min-width: 1023px) and (max-width: 1439px) { */
  /* .popup-buy .popup__prod { */
    /* max-height: 195px; */
/* `} */
/* } */

/* @media (min-width: 1440px) and (max-width: 1919px) { */
  /* .popup-buy .popup__prod { */
    /* max-height: 160px; */
/* `} */
/* } */

.popup__name-box {
  display: flex;
  flex-direction: column;
  width: 50%;
}

@media (max-width: 767px) {
  .popup__name-box {
    width: 100%;
`}
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup__name-box {
    width: 50%;
`}
}

.popup__name-box span {
  display: inline-block;
  margin-bottom: 25px;
  
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: var(--orange-color);
}

@media (max-width: 767px) {
  .popup__name-box span {
    font-size: 20px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup__name-box span {
    font-size: 20px;
  }
}

@media (max-width: 1023px) {
  .popup__quantity-box {
    display: flex;
    flex-direction: column;
  }
}

.popup__quant__pag {
  position: relative;
  display: flex;
  width: 180px;
}

@media (max-width: 767px) {
  .popup__quant__pag {
    order: 2;
    margin: 0 auto;
    width: 130px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup__quant__pag {
    order: 2;
    width: 130px;
  }
}

.popup__quant-minus {
    position: absolute;
    width: 26px;
    height: 44px;
    
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--white-color);
    border: none;
    border-radius: 50px 0 0 50px;
    background: var(--green-color);
}

@media (max-width: 1023px) {
  .popup__quant-minus {
    height: 30px;
  }
}

.popup__quant-num-goods {
  margin: 0 0 25px!important;
  padding: 0 28px!important;
  font-weight: 500;
  font-size: 14px;
  color: var(--grey-color);
  text-align: center;
}

@media (max-width: 1023px) {
  .popup__wrapper input.popup__quant-num-goods {
    height: 30px;
  }
}

.popup__quant-plus {
    position: absolute;
    right: 0;
    width: 26px;
    height: 44px;
    
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--white-color);
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--green-color);
}

@media (max-width: 1023px) {
  .popup__quant-plus {
    height: 30px;
  }
}

.popup__order-price {
  font-weight: bold;
  font-size: 40px;
  line-height: 47px;
  color: var(--green-color);
}

@media (max-width: 767px) {
  .popup__order-price {
    display: flex;
    flex-wrap: wrap;
    order: 1;
    margin: 0 auto 15px;
    font-size: 24px;
    line-height: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup__order-price {
    display: flex;
    flex-wrap: wrap;
    order: 1;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
  }
  
  .text-right.price__wrap .popup__order-price {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) and (max-width: 1349px) {
  .popup__order-price {
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
  }
}

@media (min-width: 1350px) and (max-width: 1864px) {
  .popup__order-price {
    font-weight: bold;
    font-size: 32px;
    line-height: 38px;
  }
}

.popup__all-sum {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: fit-content;
  width: 30%;
  /* margin-top: 20px; */
}

@media (max-width: 767px) {
  .popup__all-sum {
    align-items: center;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .popup__all-sum {
    align-items: center;
    width: 29%;
  }
}

.popup__all-sum span {
  display: flex;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  color: var(--grey-color);
}

@media (max-width: 1023px) {
  .popup__all-sum span {
    margin-bottom: 20px;
  }
}

.popup__btn-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.popup__btn-box .popup__continue {
  color: var(--orange-color);
  border: 2px solid var(--orange-color);
  background: var(--white-color);
}

.popup__btn-box .popup__btn-sub-box {
  width: 20%;
}

@media (min-width: 1024px) and (max-width: 1864px) {
  .popup__btn-box .popup__btn-sub-box {
    width: 27%;
  }
}

.popup-call .popup__btn-sub-box {
  width: 40%;
}

@media (max-width: 767px) {
   .popup-call .popup__btn-sub-box {
        width: 70%;
    }
}

@media (min-width: 768px) and (max-width: 1919px) {
    .popup-call .popup__btn-sub-box {
        width: 51%;
    }
}

@media (max-width: 1023px) {
  .popup__btn-box .popup__btn-sub-box {
    width: 100%;
    margin-bottom: 15px;
  }
}

.popup__btn-box .popup__btn-price {
  width: unset;
  text-align: right;
}

@media (max-width: 1023px) {
  .popup__btn-box .popup__btn-price {
    display: none;
  }
}

.popup__btn-price .popup__order-price {
  color: var(--orange-color);
}

.checkout_form-first-div {
  width: 100%;
}

.register__block-left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 1023px) {
  .register__block-left .register_block {
    display: flex;
    width: 100%;
    order: 2;
  }
}

.cart-wrap h2 {
  font-size: 28px;
}

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

@media (max-width: 1023px) {
  .cart-wrap.checkout_form h1 {
    margin-bottom: 10px;
  }
}

.table-bordered {
  border: none;
}

.table-bordered>tbody>tr>td {
  border: none;
}

#cart_table .cross-wrap {
  width: 4%;
  vertical-align: middle;
}


#cart_table .img-wrap {
  width: 13%;
}

#cart_table .img-wrap img {
  width: 100%;
}

#cart_table .name-wrap {
  width: 50%;
}

@media (max-width: 767px) {
  #cart_table .cross-wrap {
    width: 100%;
  }
  
  #cart_table .img-wrap {
    width: 100%;
  }

  #cart_table .name-wrap {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #cart_table .img-wrap {
    vertical-align: middle;
  }
}

#cart-table .name-wrap a {
  display: inline-block;
  margin-bottom: 25px;
  
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: var(--orange-color);
  white-space: initial;
}

@media (min-width: 768px) and (max-width: 1023px) {
  #cart-table .name-wrap a {
    font-size: 16px;
  }
}

#cart-table .quantity__pag {
  position: relative;
  display: flex;
  width: 180px;
}

#cart-table .quantity__pag .input-group-btn {
    z-index: 10;
}

#cart-table .quantity__pag .input-group {
  width: 100%;
  max-width: unset!important;
} 

#cart-table .quantity__pag .order-prev-span .order-prev {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 44px;
    padding: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--white-color);
    border: none;
    border-radius: 50px 0 0 50px;
    background: var(--green-color);
}

#cart-table .quantity__pag .order-next-span .order-next {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 44px;
    padding: 0;

    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--white-color);
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--green-color);
}

#cart-table .quantity__pag input {
    height: 44px;
    width: 100%;
    margin: 0 0 25px!important;
    padding: 0 28px!important;
    
    font-weight: 500;
    font-size: 14px;
    color: var(--grey-color);
    text-align: center;
    border: 1px solid #C4C4C4;
    border-radius: 50px;
    background: transparent;
}

@media (min-width: 768px) and (max-width: 1023px) {
  #cart-table .quantity__pag input {
    height: 38px;
  }
  
  #cart-table .quantity__pag .order-prev-span .order-prev {
    height: 38px;
  }
  
  #cart-table .quantity__pag .order-next-span .order-next {
    height: 38px;
  }
}

#cart-table .price__wrap span {
    display: block;
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: var(--grey-color);
    text-align: right;

}

@media (max-width: 1023px) {
  #cart-table .price__wrap span {
    margin-bottom: 20px;
  }
 
}

@media (min-width: 768px) and (max-width: 1023px) {
   
  #cart-table .price__wrap span {
    font-size: 18px;
  }
}

.table__all-wrap {
    height: fit-content;
    padding: 20px 15px;
    background: #EFEFEF;
    min-width: 450px;
}

@media (max-width: 767px) {
  .table__all-wrap {
    display: flex;
    min-width: unset;
    width: 100%;
    order: 1;
    margin: 0 auto 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .table__all-wrap {
    display: flex;
    order: 1;
    width: 55%;
    min-width: unset;
    margin: 0 auto 25px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .table__all-wrap {
    min-width: 300px;
  }
}

.table__all-wrap table {
  margin-bottom: 0;
}

.table__all-wrap .text-all {
  font-size: 22px;
  line-height: 26px;
  color: var(--grey-color);
}

.table__all-wrap td {
  color: var(--grey-color);
}

.table__all-wrap .text-right {
  font-size: 22px;
}

@media (max-width: 1023px) {
  .table__all-wrap .text-right {
    font-size: 16px;
  }
}

.table__all-wrap .text-right i {
  font-size: 16px;
}

.table__all-wrap tr:last-child {
  border-top: 1px solid #C4C4C4;
}

.table__all-wrap tr:last-child td {
  padding: 20px 8px;
  font-weight: bold;
}

.panel-default.fastorder-panel-default {
  border: none;
  box-shadow: none;
}

@media (max-width: 1023px) {
  .panel-default.fastorder-panel-default {
    width: 100%;
  }
}

.panel-default.fastorder-panel-default .panel-heading {
    padding: 0;
    font-size: 22px;
    line-height: 26px;
    color: var(--grey-color);
    background-color: transparent;
    border: none;
}

.panel-default.fastorder-panel-default .control-label {
  margin-bottom: 10px;
}

.panel-default.fastorder-panel-default .form-control {
  height: 44px;
  
  border: 1px solid #C4C4C4;
  box-sizing: border-box;
  border-radius: 25px;
}

.cart-wrap .form-group.col-md-6,
.cart-wrap .col-md-12 {
  /* padding: 0; */
}

/* END POPUP */

/* START SEARCH */

#livesearch_search_results {
    position: absolute;
    top: 61px;
    width: 100%;
    max-height: 360px;
    overflow-y: scroll;
    padding: 10px 0;

    list-style-type: none;
    background: var(--white-color);
    -webkit-box-shadow: 0px 2px 5px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 5px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 5px -2px rgba(0,0,0,0.75);
    z-index: 100;
}

@media (max-width: 767px) {
  #livesearch_search_results {
    top: 41px;
    width: calc(100vw - 30px);
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #livesearch_search_results {
    top: 41px;
  }
}

@media (min-width: 1024px) and (max-width: 1919px) {
  #livesearch_search_results {
    top: 56px;
  }
}

#livesearch_search_results .search__li {
  display: flex;
  margin-bottom: 10px;
  padding: 0 10px;
}

#livesearch_search_results .search__li:nth-child(2n) {
  background: #FAFAFA;
}

#livesearch_search_results li:before {
  content: none;
}

#livesearch_search_results .search__a {
  display: flex;
  width: 100%;
  align-items: center;
}

@media (max-width: 767px) {
  #livesearch_search_results .search__a img {
    width: 17%;
  }

  #livesearch_search_results .search__a div {
    width: 83%;
  }
}

#livesearch_search_results .search__li a > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1023px) {
  #livesearch_search_results .search__li a > div {
    display: block;
  }
}

@media (min-width: 1024px) {
  #livesearch_search_results .search__li a > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

#livesearch_search_results .search__price {
  font-weight: bold;
  font-size: 16px;
  color: var(--green-color);
}

#livesearch_search_results .search__price-old {
  font-size: 12px;
  color: var(--grey-color);
  text-decoration: line-through;
}

#livesearch_search_results .search__price-new {
  margin-left: 8px;
  font-weight: bold;
  font-size: 16px;
  color: var(--green-color);
}

#livesearch_search_results .search__name {
  display: block;
  margin-bottom: 5px;
  padding: 0 0 0 5px;
  max-height: 30px;
  overflow: hidden;
  
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 1023px) {
  #livesearch_search_results .search__price {
    font-size: 14px;
  }

  #livesearch_search_results .search__price-old {
    font-size: 10px;
  }

  #livesearch_search_results .search__price-new {
    font-size: 14px;
  }

  #livesearch_search_results .search__name {
    font-size: 14px;
    max-height: 26px;
    overflow: hidden;
  }
}

/* END SEARCH */

#container {
  display: flex;
  flex: auto;
  flex-direction: column;
}

.account__txt {
  margin-bottom: 20px;
}

.account__txt p {
  line-height: 18px;
  color: var(--grey-color);
}

.account__btn-box {
  display: flex;
  justify-content: start;
}

.account__btn-box .best__btn {
  width: 150px;
  margin: 0 0 15px;
}

/* START CART */
.popup-cart {
  display: block;
}
/* END CART */

.tooltip-inner{
  max-width: 300px;
}

/* START CONTACTS */

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

@media (max-width: 1023px) {
  .infoMap {
    flex-direction: column;
  }
}

.infoMap__left {
  width: 50%;
}

@media (max-width: 1023px) {
  .infoMap__left {
    display: flex;
    flex-direction: column;
    order: 2;
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .infoMap__left {
    width: 65%;
  }
}

.infoMap__wrap {
  width: 100%;
  margin-bottom: 45px;
  padding: 30px 40px;
  background: #FBFBFB;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .infoMap__wrap {
   padding: 15px 15px;
  }
}

.infoMap__wrap table {
  width: 100%;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .infoMap__wrap table {
    margin-bottom: 0;
  }
}

.infoMap__wrap tr {
  width: 100%;
}

@media (max-width: 767px) {
  .infoMap__wrap tr {
    display: flex;
    flex-direction: column;
  }
}

.infoMap__wrap td {
  width: 50%;
  line-height: 19px;
}

@media (max-width: 767px) {
  .infoMap__wrap td {
    width: 100%;
  }
}

.infoMap__wrap .left-phone {
  display: block;
  margin-bottom: 45px;
}

.infoMap__wrap td span {
  margin-bottom: 0;
}

.infoMap__wrap span {
  display: block;
  line-height: 19px;
}

.infoMap__wrap b {
  display: block;
  font-weight: 800;
}

.infoMap__wrap span {
  display: block;
  margin-bottom: 25px;
}

.infoMap__wrap--bot span {
  margin-bottom: 15px;
}

.infoMap__wrap--bot p {
  margin-bottom: 10px;
}

.infoMap .prod-card-bot__advice {
    display           : flex;
    flex-direction    : column;
    margin-bottom: 35px;
    padding           : 30px 90px 0 30px;
    -webkit-box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow        : 0px 0px 5px -2px rgba(0, 0, 0, 0.75);
}

@media (max-width: 767px) {
    .infoMap .prod-card-bot__advice {
        margin-bottom: 0;
        padding: 15px 15px 0;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .prod-card-bot__advice {
        padding: 15px 15px 0;
    }
}

.prod-card-bot__advice h3 {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--grey-color);
}

.prod-card-bot__advice-txt {
    display      : block;
    margin-bottom: 10px;

    font-size  : 16px;
    line-height: 19px;
    color      : var(--grey-color);
}

@media (min-width: 0) and (max-width: 1023px) {
    .prod-card-bot__advice-txt {
        font-size: 13px;
    }
}

.prod-card-bot__advice b {
    display    : block;
    font-weight: bold;
    font-size  : 22px;
    line-height: 26px;
    color      : var(--grey-color);
}

.prod-card-bot__advice i {
    display      : block;
    margin-bottom: 15px;

    font-style : normal;
    font-weight: normal;
    font-size  : 16px;
    line-height: 19px;
    color      : var(--grey-color);
}

@media (min-width: 0) and (max-width: 1023px) {
    .prod-card-bot__advice i {
        font-size: 13px;
    }
}

.prod-card-bot__advice textarea {
    display      : block;
    width        : 100%;
    height       : 190px;
    margin-bottom: 20px;
    padding      : 15px 5px;
    resize       : none;
    border       : 1px solid #EFEFEF;
}

@media (min-width: 0) and (max-width: 1023px) {
    .prod-card-bot__advice textarea {
        height: 130px;
    }
}

.prod-card-bot__advice ::-webkit-input-placeholder {
    /* Edge */
    color     : var(--grey-light-color);
    text-align: center;
}

.prod-card-bot__advice :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color     : var(--grey-light-color);
    text-align: center;
}

.prod-card-bot__advice ::placeholder {
    color     : var(--grey-light-color);
    text-align: center;
}

.prod-card-bot__advice input {
    display      : block;
    width        : 100%;
    height       : 45px;
    margin-bottom: 35px;
    padding      : 10px 5px;
    border       : 1px solid #EFEFEF;
}

.prod-card-bot__advice button {
    display        : flex;
    justify-content: center;
    align-items    : center;
    width          : 62%;
    height         : 45px;
    margin         : 0 auto 40px;

    font-weight  : bold;
    font-size    : 16px;
    line-height  : 19px;
    color        : var(--white-color);
    border       : none;
    border-radius: 50px;
    background   : var(--orange-color);
}

@media (min-width: 0px) and (max-width: 1023px) {
    .prod-card-bot__advice button {
        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1799px) {
    .prod-card-bot__advice button {
        width: 80%;
    }
}

.prod-card-bot__advice button:hover {
    background: #F89751;
}

.prod-card-bot__advice .form-horizontal {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .prod-card-bot__advice .form-horizontal {
    flex-direction: column;
  }
}

.prod-card-bot__advice .right-wrap,
.prod-card-bot__advice .left-wrap {
  width: 50%;
}

@media (max-width: 767px) {
  .prod-card-bot__advice .right-wrap,
  .prod-card-bot__advice .left-wrap {
    width: 100%;
  }
}

.prod-card-bot__advice .form-horizontal .form-group {
    margin: 0;
}

.prod-card-bot__advice .form-group.buttons {
    display: flex;
    margin: 0 auto;
    width: 208px;
}

.prod-card-bot__advice .form-group button {
    width: 100%;
}

.prod-card-bot__advice .text-danger {
    margin-bottom: 10px;
    color: red;
}

#container .i4ewOd-pzNkMb-haAclf {
  background-color: red!important;
}

#map_contact.map-wrap {
  width:640px;
  height: 480px;
  background-color:#333;
}

@media (max-width: 1023px) {
  #map_contact.map-wrap {
    height: 300px;
  }
}

@media (min-width: 1024px) and (max-width: 1349px) {
  #map_contact.map-wrap {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1350px) and (max-width: 1439px) {
  #map_contact.map-wrap {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  #map_contact.map-wrap {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 1023px) {
  .map-box {
    display: flex;
    justify-content: center;
    order: 1;
    margin-bottom: 25px;
  }
}

/* END CONTACTS */

.info__btn-box {
  width: 258px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .info__btn-box {
    margin: 0 auto 25px;
  }
}

@media (max-width: 1349px) {
  .info__btn-box .popup__continue {
    height: 45px;
    width: 180px;
    font-size: 12px;
  }
}

@media (min-width: 1350px) and (max-width: 1919px) {
  .info__btn-box .popup__continue {
    height: 50px;
    width: 200px;
    font-size: 14px;
  }
}

#back-top span,.item .cart .button-cart {
  -webkit-border-radius:2px;
  -moz-border-radius:2px
}

#back-top {
  position:fixed;
  right:20px;
  bottom:5px;
  z-index:10000;
  display:none
}

#back-top span {
  width:49px;
  height:49px;
  display:block;
  margin-bottom:7px;
  background:url(../images/back-top.png) center center no-repeat;
  background-color: var(--green-color);
  border-radius:50px;
  -webkit-transition:1s;
  -moz-transition:1s;
  transition:1s
}
#back-top span:hover{opacity:.9}

@media (max-width: 768px) {
  #back-top{right:15px;bottom:5px;z-index:99}
  #back-top span{width:30px;height:30px}
}

#content .cart-wrap .checkbox {
    margin-bottom: 10px;
}

#content .cart-wrap .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

#content .cart-wrap .checkbox input[type="radio"] {
    display: none;
}

#content .cart-wrap .checkbox label {
    padding-left: 20px;
    font-size: 16px;
    line-height: 19px;
    color: var(--grey-color);
}

#content .cart-wrap .checkbox label.disabled {
    color: var(--grey-light-color);
    cursor: not-allowed;
}



#content .cart-wrap .checkbox .my-check {
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
}

#content .cart-wrap .checkbox input:checked + .my-check:after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    display: block;
    width: 6px;
    height: 6px;
    background: var(--green-color);
    z-index: 10;
}

.label-margin {
  margin-top: 10px;
}

.label-margin .control-label {
  width: 100%;
  padding-left: 0!important;
}

.label-margin .control-label input {
  margin-top: 10px;
}

.fastorder-panel-default .panel-body.shipping-method {
  padding: 0;
}

.fastorder-panel-default .panel-body.shipping-method {
  padding: 0;
}

.fastorder-panel-default { 
  margin-bottom: 0;
}

.fastorder-panel-default  .panel-body { 
  padding-bottom: 0;
}

.oct-fastorder-payment {
  display: flex;
  justify-content: flex-end;
}

.account-content form {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .account-content form {
    width: 100%;
  }
}

.account-content .form-horizontal .form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.account-content .text-danger {
  margin: 15px auto 0;
  color: red;
}

.account-content label {
    width: 15%;
    padding-left: 0;
    font-size: 16px;
    color: var(--grey-color);
    text-align: left!important;
}

@media (min-width: 0px) and (max-width: 767px) {
  .account-content label {
    width: 35%;
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .account-content label {
    width: 20%;
    font-size: 14px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .account-content label {
    font-size: 14px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .account-content label {
    font-size: 14px;
  }
}

.account-content input {
  width: 84%;
  height: 44px;
  border-radius: 50px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .account-content input {
    height: 34px;
    width: 64%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .account-content input {
    height: 38px;
    width: 79%;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .account-content input {
    height: 38px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .account-content input {
    height: 40px;
  }
}

.account-content .best__btn {
  margin-top: 15px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .account-content .best__btn {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .account-content .best__btn {
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) and (max-width: 1349px) {
  .account-content .best__btn {
    margin-bottom: 70px;
  }
}

.account-content h2 {
  margin-top: 40px;
}

.account-list {
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .account-list {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .account-list {
    margin-bottom: 50px;
  }
}

.pagination>li>a{
  color: var(--green-color);
}
.pagination>.active>span {
    background-color: var(--green-color);
    border-color: var(--green-color);
}
.pagination>li>a, .pagination>li>span{
  width: 40px;
  text-align: center;
  padding: 6px 6px;
}
.pagination li:before{
  content:unset;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
  background-color: #eee;
  border-color: #ddd;
}

.news__box .news-full-desc {
  width: 100%;
}

.news__box-txt-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .news__box-txt-box {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news__box-txt-box {
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .news__box-txt-box {
    margin-bottom: 70px;
  }
}

.news__box-txt-box img {
  width: 20%;
}

.news__box-txt-box .news__box-txt {
  width: 78%;
}

@media (max-width: 767px) {
  .news__box-txt-box img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .news__box-txt-box .news__box-txt {
    width: 100%;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .news__box-txt-box img {
    width: 35%;
  }
  
  .news__box-txt-box .news__box-txt {
    width: 63%;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .news__box-txt-box img {
    width: 30%;
  }
  
  .news__box-txt-box .news__box-txt {
    width: 68%;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .news__box-txt-box img {
    width: 25%;
  }
  
  .news__box-txt-box .news__box-txt {
    width: 73%;
  }
}

.news__box .article-stats {
  margin-bottom: 10px;
  color: #cecece;
  text-align: right;
}

.news__box p,
.news__box li {
  font-size: 20px;
  line-height: 28px;
}

@media (max-width: 767px) {
  .news__box p,
  .news__box li {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news__box p,
  .news__box li {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .news__box p,
  .news__box li {
    font-size: 18px;
    line-height: 24px;
  }
}

.slick-slide img {
  height: 140px;
}

@media (max-width: 374px) {
  .slick-slide img {
    height: 90px;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .slick-slide img {
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .slick-slide img {
    height: 80px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .slick-slide img {
    height: 100px;
  }
}

@media (min-width: 1440px) and (max-width: 1864px) {
  .slick-slide img {
    height: 120px;
  }
}

.a2a_mini {
    background: #F4F4F4!important;
    border: 2px solid white!important;
}

.share_buttons .a2a_dd:hover {
    color: var(--grey-color)!important;
}

.alert, .thumbnail{
  margin:0;
}

.alert-danger {
  /* color: #ffffff; */
  /* background-color: var(--green-color); */
  /* border-color: var(--green-color); */
  /* text-align:center; */
  color: red;
  background: transparent;
  border: none;
  text-align: center;
}

#show-login {
  line-height: 20px;
}

#show-login .btn-primary {
  border: none;
  border-radius: 50px;
  background: var(--green-color);
}

#show-login .btn-primary:hover {
  background: var(--green-light-color);
}

.empty-cart {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .empty-cart {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .empty-cart {
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) and (max-width: 1349px) {
  .empty-cart {
    margin-bottom: 70px;
  }
}

.account-content .td-name {
  width: 60%;
  white-space: initial!important;
}

@media (max-width: 767px) {
  .account-content .td-name {
    width: 100%;
  } 
  
  .account-content .text-right {
    text-align: left
  }

  .account-content .wishlist-content-tr {
    display: flex;
    flex-direction: column;
  }
}

.account-content .table-responsive {
  border: none!important;
}

.btn-write-rev {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 300px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--grey-color);
    border: none;
    border-radius: 15px;
    background: #d2d2d2;
}

.btn-write-rev:hover {
    color: var(--grey-color);
    border: none;
    background: #aeacac;
}

@media (max-width: 767px) {
  .btn-write-rev {
    height: 35px;
    width: 180px;
    margin: 0 auto 20px;
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .btn-write-rev {
    height: 40px;
    width: 250px;
    margin: 0 auto 30px;
    font-size: 14px;
  }
}

.streview-reviews .form-review.form-horizontal {
  width: 65%;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .streview-reviews .form-review.form-horizontal {
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .streview-reviews .form-review.form-horizontal {
    width: 75%;
    margin: 0 auto;
  }
}

@media (min-width: 1440px) and (max-width: 1864px) {
  .streview-reviews .form-review.form-horizontal {
    width: 70%;
    margin: 0 auto;
  }
}

.streview-reviews .form-horizontal .control-label {
  padding-top: 15px;
  text-align: left;
}

.streview-reviews input {
    height: 44px;
    margin: 5px 0 0;
    padding: 0 10px;
    border: 1px solid #C4C4C4;
    border-radius: 50px;
}

.streview-reviews textarea {
    height: 150px;
    margin: 5px 0 15px;
    padding: 10px 10px;
    border: 1px solid #C4C4C4;
    border-radius: 15px;
    resize: none;
}

@media (max-width: 767px) {
  .streview-reviews input {
    height: 35px;
  }
  
  .streview-reviews textarea  {
      height: 90px;
  }
}

.streview-reviews .btn-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 767px) {
  .streview-reviews .btn-box {
    flex-direction: column;
    align-items: center;
  }
}

.streview-reviews #button-review,
.streview-reviews #dismiss-write-review {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 200px;
    margin-right: 25px;
    
    font-weight: 900;
    color: var(--white-color);
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    background: var(--green-color);
    transition: all .4s;
}

@media (max-width: 767px) {
  .streview-reviews #button-review,
  .streview-reviews #dismiss-write-review {
    margin-bottom: 20px;
    height: 40px;
    width: 180px;
    margin-right: 0;
    font-size: 12px;
  }
}

.streview-reviews #button-review:hover {
    background: var(--green-light-color);
}

.streview-reviews #dismiss-write-review {
    margin-right: 0;
    background: #d2d2d2;
}

.streview-reviews #dismiss-write-review:hover {
    background: #aeacac;
}

.streview-reviews .sort-reviews-row {
  display: flex;
  align-items: baseline;
}

@media (max-width: 767px) {
  .streview-reviews .sort-reviews-row {
    flex-direction: column;
  }
  
  .streview-reviews .sort-reviews-row label {
    margin-bottom: 10px;
  }
  
  .streview-reviews .sort-reviews-row .col-md-2.text-left {
    padding-left: 0;
  }
}

.streview-reviews #input-limit {
    width: 210px;
    margin-left: 10px;
    padding: 0 15px;
    font-size: 14px;
    color: var(--grey-color);
    border: 1px solid var(--grey-light-color);
    border-radius: 50px;
    cursor: pointer;
}

@media (max-width: 767px) {
  .streview-reviews #input-limit {
      margin-left: 0;
  }
}

.streview-reviews .review__box {
  flex-direction: column;
}

.streview-reviews .review__card {
  width: 100%;
}

@media (max-width: 767px) {
  .streview-reviews .review__card {
    padding: 10px;
  }
}

@media (max-width: 1023px) {
  .streview-reviews .review__box {
    display: flex;
  }

  .streview-reviews .review__card {
    margin-bottom: 30px;
  }
}

.streview-reviews .review__card img {
  width: 6%;
}

.streview-reviews .review__txt-box {
  width: 94%;
}

@media (max-width: 767px) {
  .streview-reviews .review__card img {
    width: 15%;
  }

  .streview-reviews .review__txt-box {
    width: 85%;
  }
}

.sec-margin,
.reviews-content {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .sec-margin,
  .reviews-content {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sec-margin,
  .reviews-content {
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) and (max-width: 1349px) {
  .sec-margin,
  .reviews-content {
    margin-bottom: 70px;
  }
}

.streview-reviews .review__txt-box p {
  max-height: unset;
}
 
.streview-reviews .review__card:last-child {
  display: flex;
}

.oct_product_preorder_mail {
  background: #636792;
}

input, input:before, input:after {
  -webkit-user-select: initial!important;
  -khtml-user-select: initial!important;
  -moz-user-select: initial!important;
  -ms-user-select: initial!important;
  user-select: initial!important;
 } 
 
.car-prods .pagination {
  display: flex;
  justify-content: center;
}
 
.car-prods .pagination>li>a,
.car-prods .pagination>li>span {
   text-indent: initial;
 }
 
@media (max-width: 359px) {
.car-prods .pagination>li>a,
.car-prods .pagination>li>span {
   width: 23px;
   padding: 0;
 }
} 

@media (min-width: 360px) and (max-width: 374px) {
.car-prods .pagination>li>a,
.car-prods .pagination>li>span {
   width: 25px;
 }
}

@media (min-width: 375px) and (max-width: 767px) {
.car-prods .pagination>li>a,
.car-prods .pagination>li>span {
   width: 30px;
   padding: 5px 0;
 }
}