/*animation*/
@media (min-width: 1200px) {
  .animate-item .img-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0% 100%);
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0% 100%);
    -webkit-transition: -webkit-clip-path 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: -webkit-clip-path 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: clip-path 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: clip-path 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-clip-path 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  .animate-item.animated .img-mask {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
  .animate-item .animate-text {
    opacity: 0;
    -ms-transform: translateY(50px);
        transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -webkit-transition: all 0.6s ease-out 0.1s;
    transition: all 0.6s ease-out 0.1s; }
  .animate-item.animated .animate-text {
    opacity: 1;
    -ms-transform: translateY(0);
        transform: translateY(0);
    -webkit-transform: translateY(0); }
  .animate-item .animate-title, .animate-item.animate-title {
    opacity: 0;
    -ms-transform: translateY(50px);
        transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -webkit-transition: all 0.3s ease-out 0.1s;
    transition: all 0.3s ease-out 0.1s; }
  .animate-item.animated .animate-title, .animate-item.animated.animate-title {
    opacity: 1;
    -ms-transform: translateY(0);
        transform: translateY(0);
    -webkit-transform: translateY(0); } }

.footer {
  background: var(--black);
  position: relative;
  color: #FFF; }
  .footer .footer-top {
    border-bottom: 1px solid #3A3A3A; }
    @media (max-width: 1199px) {
      .footer .footer-top {
        border: none; } }
    @media (max-width: 1199px) {
      .footer .footer-top .footer-top-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 30px; } }
    @media (max-width: 767px) {
      .footer .footer-top .footer-top-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin: 30px 0 20px 0; } }
    .footer .footer-top .footer-logo {
      margin-top: 50px;
      margin-bottom: 35px;
      display: inline-block; }
      @media (max-width: 1199px) {
        .footer .footer-top .footer-logo {
          margin: 0; } }
    .footer .footer-top .site-version {
      font-size: 14px;
      line-height: 20px;
      color: #E6E6E6;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 25px;
      position: relative; }
      @media (max-width: 1199px) {
        .footer .footer-top .site-version {
          margin: 0; } }
      @media (max-width: 767px) {
        .footer .footer-top .site-version {
          margin: 20px 0 20px; } }
      .footer .footer-top .site-version svg {
        margin-right: 10px;
        width: 20px; }
      .footer .footer-top .site-version span {
        font-weight: 400;
        margin-left: 10px;
        color: #FFF; }
        @media (max-width: 575px) {
          .footer .footer-top .site-version span {
            margin-left: 5px; } }
      .footer .footer-top .site-version__change {
        margin-left: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: #FFF; }
        .footer .footer-top .site-version__change svg {
          height: 20px;
          width: 20px;
          fill: #fff;
          -webkit-transform: rotate(-90deg);
              -ms-transform: rotate(-90deg);
                  transform: rotate(-90deg);
          -webkit-transition: .3s all ease;
          transition: .3s all ease; }
        @media (min-width: 1200px) {
          .footer .footer-top .site-version__change:hover svg {
            transform: translateX(5px) rotate(-90deg);
            -webkit-transform: translateX(5px) rotate(-90deg);
            -moz-transform: translateX(5px) rotate(-90deg);
            -ms-transform: translateX(5px) rotate(-90deg);
            -o-transform: translateX(5px) rotate(-90deg);
            fill: #FDECB8; } }
      .footer .footer-top .site-version__message {
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        background-color: #FFF;
        padding: 25px 20px 30px 30px;
        z-index: 2;
        width: 585px;
        height: 175px;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s; }
        .footer .footer-top .site-version__message .text {
          font-size: 16px;
          line-height: 24px;
          color: #20191D; }
        .footer .footer-top .site-version__message .btns-wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: space-evenly;
              -ms-flex-pack: space-evenly;
                  justify-content: space-evenly;
          margin-top: 20px; }
          .footer .footer-top .site-version__message .btns-wrapper .btn {
            height: 46px; }
        .footer .footer-top .site-version__message:after {
          content: "";
          position: absolute;
          top: -14px;
          bottom: auto;
          left: 42%;
          right: auto;
          opacity: 1;
          border-top: 15px solid transparent;
          border-left: 25px solid #FFF;
          border-right: 20px solid transparent;
          transition: all .3s;
          -webkit-transition: all .3s;
          -moz-transition: all .3s;
          -ms-transition: all .3s;
          -o-transition: all .3s;
          -webkit-transform: rotate(-10deg);
              -ms-transform: rotate(-10deg);
                  transform: rotate(-10deg); }
    .footer .footer-top .lang {
      font-size: 14px;
      line-height: 20px;
      color: #ededed;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (max-width: 1199px) {
        .footer .footer-top .lang {
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
      @media (max-width: 767px) {
        .footer .footer-top .lang {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
      .footer .footer-top .lang svg {
        height: 20px;
        width: 20px;
        fill: #fff;
        margin-right: 10px; }
    .footer .footer-top .lang-menu {
      margin-left: 10px;
      position: relative; }
      @media (max-width: 767px) {
        .footer .footer-top .lang-menu {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
      .footer .footer-top .lang-menu:before {
        content: '';
        height: 20px;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -10px; }
      .footer .footer-top .lang-menu.active ul {
        opacity: 1;
        visibility: visible;
        margin-top: 0; }
      .footer .footer-top .lang-menu.active svg {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg); }
      .footer .footer-top .lang-menu p {
        position: relative;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: #FFF; }
        @media (max-width: 767px) {
          .footer .footer-top .lang-menu p {
            margin-right: 15px; } }
        .footer .footer-top .lang-menu p svg {
          height: 20px;
          width: 20px;
          fill: #fff;
          margin: 0 0 0 5px;
          transition: all .3s;
          -webkit-transition: all .3s;
          -moz-transition: all .3s;
          -ms-transition: all .3s;
          -o-transition: all .3s; }
      .footer .footer-top .lang-menu ul {
        position: absolute;
        top: 30px;
        left: -19px;
        height: auto;
        background: transparent;
        padding: 0 10px 15px 20px;
        width: 80px;
        display: block;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        z-index: 2;
        opacity: 0;
        visibility: hidden; }
        .footer .footer-top .lang-menu ul li {
          display: block;
          margin-bottom: 10px; }
          .footer .footer-top .lang-menu ul li:last-child {
            margin-bottom: 0; }
          .footer .footer-top .lang-menu ul li a {
            color: #ededed;
            font-size: 14px;
            font-weight: 400;
            line-height: 16px;
            -webkit-transition: all .3s;
            transition: all .3s; }
            @media (min-width: 1200px) {
              .footer .footer-top .lang-menu ul li a:hover {
                color: #FFF; } }
      @media (min-width: 1200px) {
        .footer .footer-top .lang-menu:hover ul {
          opacity: 1;
          visibility: visible;
          margin-top: 0; }
        .footer .footer-top .lang-menu:hover svg {
          transform: rotate(180deg);
          -webkit-transform: rotate(180deg);
          -moz-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          -o-transform: rotate(180deg); } }
    .footer .footer-top .nav-list {
      margin-top: 50px; }
      @media (max-width: 767px) {
        .footer .footer-top .nav-list {
          margin: 0; } }
      @media (max-width: 767px) {
        .footer .footer-top .nav-list.nav-list-second .nav-item:last-child {
          margin-bottom: 0; } }
      .footer .footer-top .nav-list .nav-item {
        margin-bottom: 15px; }
      .footer .footer-top .nav-list .nav__link {
        font-size: 16px;
        line-height: 24px; }
  .footer .footer-info {
    position: relative;
    display: block; }
    @media (max-width: 1199px) {
      .footer .footer-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .footer .footer-info__item {
      border-left: 1px solid #3A3A3A;
      padding: 50px 60px 40px;
      margin-right: -15px;
      position: relative; }
      .footer .footer-info__item:nth-child(2):before {
        content: '';
        height: 1px;
        position: absolute;
        left: 0;
        right: -1000px;
        top: 0;
        background: #3A3A3A; }
        @media (max-width: 1199px) {
          .footer .footer-info__item:nth-child(2):before {
            display: none; } }
      @media (max-width: 1199px) {
        .footer .footer-info__item:nth-child(2) {
          border: none; } }
      @media (max-width: 1366px) {
        .footer .footer-info__item {
          padding: 30px; } }
      @media (max-width: 1199px) {
        .footer .footer-info__item {
          border: none;
          padding: 20px 0 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
      @media (max-width: 575px) {
        .footer .footer-info__item {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          padding: 20px 0 0 0;
          margin-right: 0;} }
      .footer .footer-info__item p {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-weight: 300;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0.01em; }
        @media (max-width: 1199px) {
          .footer .footer-info__item p {
            margin-bottom: 0; } }
        @media (max-width: 575px) {
          .footer .footer-info__item p {
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start; } }
      .footer .footer-info__item a {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-weight: 300;
        font-size: 15px;
        line-height: 1.6em;
        letter-spacing: 0.01em;
        padding-left: 40px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s; }
        @media (max-width: 1199px) {
          .footer .footer-info__item a {
            margin-bottom: 0; } }
        @media (max-width: 575px) {
          .footer .footer-info__item a {
            margin-bottom: 10px;
            -webkit-box-align: start;
                -ms-flex-align: start;
                    align-items: flex-start; } }
        .footer .footer-info__item a:last-child {
          margin-bottom: 0; }
        .footer .footer-info__item a img {
          position: absolute;
          left: 0; }
      .footer .footer-info__item img {
        position: relative;
        display: inline-block;
        width: 24px;
        margin-right: 20px; }
  .footer .footer-bottom .mt-55 {
    margin-top: 55px; }
    @media (max-width: 1199px) {
      .footer .footer-bottom .mt-55 {
        margin-top: 20px;
        margin-bottom: 20px; } }
    @media (max-width: 575px) {
      .footer .footer-bottom .mt-55 {
        margin-bottom: 0; } }
  .footer .footer-bottom .social-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .footer .footer-bottom .social-info .icon {
      margin-right: 30px;
      cursor: pointer;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
      .footer .footer-bottom .social-info .icon:last-child {
        margin-right: 0; }
      @media (min-width: 1200px) {
        .footer .footer-bottom .social-info .icon:hover svg path {
          fill: #FDECB8; } }
  .footer .footer-bottom .policy {
    display: inline-block; }
  @media (max-width: 575px) {
    .footer .footer-bottom .copy {
      margin-bottom: 20px; } }
  .footer .footer-bottom .footer-info__item {
    border-bottom: none; }
  @media (min-width: 1200px) {
    .footer a:hover {
      color: #FDECB8; } }
  .footer .scroll-up {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: #1B1D1F; }
    @media (min-width: 1200px) and (max-width: 1800px) {
      .footer .scroll-up {
        width: 80px;
        height: 80px;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); } }
    @media (max-width: 1199px) {
      .footer .scroll-up {
        display: none; } }
    .footer .scroll-up__arr {
      position: absolute;
      width: 50px;
      top: 50%;
      margin-top: -29px;
      left: 50%;
      margin-left: -25px;
      cursor: pointer; }
      .footer .scroll-up__arr svg {
        margin: 0 auto 10px;
        display: block;
        -webkit-transition: .3s all ease;
        transition: .3s all ease; }
      .footer .scroll-up__arr span {
        display: block;
        text-align: center;
        font-size: 16px;
        line-height: 24px;
        color: #fff; }
      @media (min-width: 1200px) {
        .footer .scroll-up__arr:hover svg {
          -webkit-transform: translateY(-5px);
              -ms-transform: translateY(-5px);
                  transform: translateY(-5px); } }

.section .right-block {
  padding-left: 100px; }
  @media (max-width: 1200px) {
    .section .right-block {
      padding-left: 0; } }
  .section .right-block > * {
    margin-bottom: 30px; }
    @media (max-width: 1200px) {
      .section .right-block > * {
        margin-bottom: 20px; } }
  .section .right-block > *:last-child {
    margin-bottom: 0; }

.section .section-title {
  margin-bottom: 45px; }
  @media (max-width: 767px) {
    .section .section-title {
      margin-bottom: 30px; } }
  @media (max-width: 575px) {
    .section .section-title {
      margin-bottom: 20px; } }

.main-bg {
  background: var(--bg-gray); }

.section-nav {
  position: relative;
  text-align: center;
  z-index: 5;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto; }
  @media (max-width: 1500px) {
    .section-nav {
      width: auto;
      height: 65px;
      overflow: hidden; }

      .section-nav.active {
        height: 100%; } }
    @media (max-width: 1500px) and (max-width: 1500px) {
      .section-nav.active .section-nav__list {
        width: 100%; } }
        @media(max-width: 1199px) {
            .section-nav {
                height: auto;
            }
          }
  .section-nav .overlay-mob {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 2;
    display: none;
    cursor: pointer; }
    @media (max-width: 1200px) {
      .section-nav .overlay-mob {
        display: block; } }
  .section-nav__list {
    position: relative;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    margin: 0 auto;
    z-index: 3;
     }
    /* @media (max-width: 1500px) {
        .section-nav__list {
            overflow-x: scroll;
            padding-bottom: 5px;
        } 
    } */
    .section-nav__list.menu-desc__list-fixed {
      position: fixed;
      top: 135px;
      left: 0;
      right: 0;
      background: #f7f7f7;
      max-width: -webkit-max-content;
      max-width: -moz-max-content;
      max-width: max-content;
      -webkit-box-shadow: 0 0 15px rgba(0,0,0,.1);
              box-shadow: 0 0 15px rgba(0,0,0,.1); }
    @media (max-width: 1300px) {
      .section-nav__list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: auto;
        height: auto; } }
    /* @media (max-width: 1199px) {
      .section-nav__list {
        display: block;
        background: #fff;
        position: relative;
        z-index: 3;
        border: 1px solid #fff; } } */
  .section-nav__item {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s; }
    .section-nav__item.active {
      background: #fff;
      color: var(--purple); }
    /* @media (max-width: 1500px) {
      .section-nav__item {
        padding: 10px 15px; } } */
    @media (min-width: 1200px) {
      .section-nav__item:hover {
        background: #FFF; } }
  .section-nav__link {
    padding: 12px 30px;
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    width: 100%;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; }
    .section-nav__link.active {
      background: #fff;
      color: var(--purple); }
    @media (max-width: 1500px) {
      .section-nav__link {
        padding: 10px 20px; } }
    @media (min-width: 1200px) {
      .section-nav__link:hover {
        color: var(--purple); } }

.personal-data .section-nav {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 991px) {
    .personal-data .section-nav {
        width: 100%;
        height: auto;
    }
}

.section-mob-arrow {
  display: none; }
  @media (max-width: 1199px) {
    .section-mob-arrow {
      display: block;
      width: 24px;
      height: 24px;
      fill: var(--black);
      position: absolute;
      z-index: 3;
      right: 15px;
      top: 12px;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; } }

@media (max-width: 991px) {
  .home-news__main {
    display: none; } }

.news-item {
  background: #FFF;
  width: 100%;
  height: 100%; }
  /* @media (max-width: 575px) {
    .news-item {
      margin-bottom: 20px; } } */
  .news-item.type2 .news-item__content {
    padding: 30px 30px; }
    @media (max-width: 992px) {
      .news-item.type2 .news-item__content {
        padding: 25px 15px; } }
    @media (max-width: 767px) {
      .news-item.type2 .news-item__content {
        padding: 15px 15px 30px; } }
  .news-item__img {
    position: relative;
    display: block;
    font-size: 0;
    padding-bottom: 75%;
    overflow: hidden;
    background-color: #F5F5F5; }
  .home-news .news-item__img {
    padding-bottom: 61%;
  }
    .news-item__img img {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      -o-object-fit: cover;
         object-fit: cover; }
    @media (min-width: 1200px) {
      .news-item__img:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05); } }
    @media (max-width: 991px) {
      .news-item__img {
        padding-bottom: 75%; } }
  .news-item__content {
    padding: 25px 30px; }
    @media (max-width: 992px) {
      .news-item__content {
        padding: 25px 15px; } }
    @media (max-width: 767px) {
      .news-item__content {
        padding: 15px 15px 30px; } }
  .news-item__data {
    font-weight: 300;
    font-size: 13px;
    line-height: 19px;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 10px; }
  .news-item__title {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; }
    @media (min-width: 1200px) {
      .news-item__title:hover {
        color: var(--purple); } }
    @media (max-width: 767px) {
        .news-item__title {
            line-height: 28px;
        }
    }
  .news-item__text {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.swiper-news-mobile {
  display: none; }
  @media (max-width: 991px) {
    .swiper-news-mobile {
      display: block; } }

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* POPUPS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.popup-wrapper {
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: .3s;
          transition-delay: .3s; }

.popup-wrapper.active {
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s; }

.popup-wrapper .bg-layer {
  position: absolute;
  left: 0;
  top: -100px;
  right: 0;
  bottom: -100px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  opacity: 0; }

.popup-wrapper.active .bg-layer {
  opacity: 1; }

.popup-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  -webkit-transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
  transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
  transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s;
  transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
  -ms-transform: scale(1.2);
      transform: scale(1.2);
  -webkit-transform: scale(1.2);
  opacity: 0;
  left: -10000px;
  padding: 15px; }

.popup-content.active {
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
  left: 0;
  -webkit-transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
  transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
  transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s;
  transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, color-stop(79.17%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3))), rgba(0, 0, 0, 0.35);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 79.17%, rgba(0, 0, 0, 0.3) 100%), rgba(0, 0, 0, 0.35); }

.popup-content:after {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  content: ""; }

.popup-container {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  position: relative;
  text-align: left;
  background: #fff; }
  .popup-container:before {
    content: '';
    background: var(--purple);
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0; }

.popup-container.size-1 {
  max-width: 670px;
}
.popup-container.size-1.thank .popup-align {
    padding: 40px 80px 60px 80px;
}
@media (max-width: 767px) {
    .popup-container.size-1.thank .popup-align {
        padding: 40px 15px 30px 15px;
    }
}

.popup-container.size-2 {
  max-width: 990px; }
  .popup-container.size-2 .popup-align {
    padding: 45px 100px 30px 100px; }
    @media (max-width: 991px) {
      .popup-container.size-2 .popup-align {
        padding: 45px 30px; } }
    @media (max-width: 767px) {
        .popup-container.size-2 .popup-align {
            padding: 45px 15px;
        }
        .cart-popup .popup-container.size-2 .popup-align {
            padding: 45px 15px 15px 15px;
        }
    }
    .popup-container.size-2 .popup-align .popup-title {
      margin-bottom: 40px; }

.popup-container.size-3 {
  max-width: 80%; }
  @media (max-width: 1199px) {
    .popup-container.size-3 .popup-align {
      padding: 30px; } }
  @media (max-width: 1199px) {
    .popup-container.size-3 {
      max-width: 100%; } }

.clear-basket .help-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly; }
  .clear-basket .help-links .btn-purple:before {
    display: none; }

.change-location .popup-align {
  padding: 45px 70px 60px 70px; }

  @media (max-width: 767px) {
    .change-location .popup-align {
        padding: 40px 15px; }
  }

.change-location .popup-title {
  margin-bottom: 25px; }

.change-location .popup-description {
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: var(--black); }

.change-location__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .change-location__btns .lang-btn {
    color: var(--gray);
    border: 1px solid #DBDBDB;
    background-color: transparent;
    width: 100%;
    height: 50px;
    max-width: 262px;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    margin-right: 15px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; }
    @media (max-width: 767px) {
        .change-location__btns .lang-btn {
            margin-right: 10px;
            padding: 0 5px;
        }
        .change-location .tabs {
            padding: 0;
        }
        .change-location .popup-description {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 30px;
        }
    }
    .change-location__btns .lang-btn:last-child {
      margin-right: 0; }
    .change-location__btns .lang-btn::before {
      display: none; }
    @media (min-width: 1200px) {
      .change-location__btns .lang-btn:hover {
        border-color: var(--purple); } }

.change-location .tab-nav {
  position: relative;
  margin-bottom: 15px; }

.change-location .tab-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--black);
  display: block;
  text-align: left;
  padding: 16px 16px 16px 24px;
  background: #F7F7F7;
  cursor: pointer; }

.change-location .tab-nav i {
  background-image: none;
  opacity: 1;
  width: 24px;
  height: 24px; }
  .change-location .tab-nav i::before {
    content: '';
    position: absolute;
    left: auto;
    right: 16px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 9px;
    height: 9px;
    border-left: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    z-index: 2;
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg); }

.change-location .tab-nav.active i::before {
  top: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -moz-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  -o-transform: translate(-50%, -50%) rotate(135deg); }

.change-location .tab-toggle {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #F7F7F7;
  z-index: 99;
  text-align: left; }

.change-location .tab-toggle div {
  cursor: pointer;
  display: block;
  padding: 16px 16px 16px 24px;
  font-size: 16px;
  color: var(--black); }
  @media (min-width: 1200px) {
    .change-location .tab-toggle div:hover {
      color: var(--purple); } }

.change-location .tab-toggle div.active span {
  color: var(--purple);
  font-weight: 500; }

.change-location .tab {
  display: none; }

.change-location .tab:nth-child(2) {
  display: block; }

.change-location .tab-nav.active .tab-toggle {
  display: block; }

.popup-content .layer-close {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 10000px; }

.popup-align {
  padding: 40px 95px 60px 95px;
  overflow: hidden; }

.popup-content .popup-container > .btn-close {
  position: absolute;
  right: 15px;
  top: 25px; }
  @media (max-width: 575px) {
    .popup-content .popup-container > .btn-close {
      right: 5px;
      top: 10px; } }

.popup-title {
  margin-bottom: 15px;
  font-size: 34px;
  line-height: 46px;
  font-weight: 500;
  color: var(--purple); }
  .popup-title.type-2 {
    margin-bottom: 10px; }
  @media (max-width: 767px) {
    .popup-title {
      font-size: 20px;
      line-height: 26px; } }
  .popup-title span {
    font-weight: 300;
    color: var(--black); }

.popup-description {
  color: var(--gray);
  font-weight: 300;
  font-size: 18px;
  line-height: 28px; }

.popup-align .phone {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  color: var(--purple);
  margin-top: 15px; }
  @media (min-width: 1200px) {
    .popup-align .phone:hover {
      color: var(--black); } }

.order-call .popup-form:not(:first-child) {
  margin-top: 20px; }

.order-call .help-links:last-child {
  margin: 30px 0 0; }

.popup-form {
  text-align: left;
}
.popup-form .checkbox-entry {
    margin: 25px 0 15px;
}

@media (max-width: 767px) {
    .popup-form .checkbox-entry {
        margin: 10px 0 0;
    } 
}

/*.popup-form:not(:last-child) {
  margin-bottom: 20px; }*/

.popup-form:not(:first-child) {
  margin-top: 30px; }

.popup-link {
  color: var(--purple);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400; }

.help-links {
  margin: 20px 0 25px; }
  .help-links.type-3 {
    margin: 0 0 25px; }
  @media (max-width: 767px) {
    .help-links.type-2 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      margin: 20px 0 0; } }
      
  .help-links a {
    color: var(--purple);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    /* border-bottom: 1px solid transparent; */
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; }
    @media (min-width: 1200px) {
      .help-links a:hover {
        color: var(--black);
    } }
    @media (max-width: 767px) {
      .help-links a {
        margin-top: 15px; } }
  .help-links:last-child {
    margin: 20px 0 0; }

@media (max-width: 575px) {
  .popup-align {
    padding: 40px 15px 25px 15px; } }

/* end of popup general inner styles */
.video-popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -120%;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  letter-spacing: 0; }
  .video-popup .video-popup-overlay {
    position: absolute;
    left: 0;
    top: -100px;
    right: 0;
    bottom: -100px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0; }
  .video-popup .video-popup-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-size: 0;
    text-align: center;
    -webkit-transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    left: -10000px;
    padding: 15px; }
  .video-popup .video-popup-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10000px;
    background: rgba(0, 0, 0, 0.8); }
  .video-popup .video-popup-container {
    display: inline-block;
    position: relative;
    text-align: left;
    background: #454545;
    vertical-align: middle;
    max-width: 1200px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    max-height: 94vh; }
    .video-popup .video-popup-container .btn-close {
      display: inline-block;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      background: rgba(0, 0, 0, 0.4);
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      cursor: pointer;
      z-index: 1;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
      .video-popup .video-popup-container .btn-close:before {
        content: "";
        height: 2px;
        width: 26px;
        display: block;
        position: absolute;
        left: 1px;
        top: 13px;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background: #fff; }
      .video-popup .video-popup-container .btn-close:after {
        content: "";
        background: #fff;
        height: 2px;
        width: 26px;
        display: block;
        position: absolute;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(45deg);
        left: 1px;
        top: 13px; }
  .video-popup .video-popup-align {
    overflow: hidden;
    max-height: 100vh; }
  .video-popup .embed-responsive-16by9 {
    padding-bottom: 56.3%; }
  .video-popup iframe {
    width: 100%;
    height: 100%;
    position: absolute; }
  .video-popup.active {
    position: fixed;
    left: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }
    .video-popup.active .video-popup-overlay {
      opacity: .8; }
    .video-popup.active .video-popup-content {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
      left: 0;
      -webkit-transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
      transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
      transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s;
      transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
      position: relative; }

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* VIDEO POPUP */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.video-popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  letter-spacing: 0; }

.video-popup.active {
  left: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.video-popup-overlay {
  position: absolute;
  left: 0;
  top: -100px;
  right: 0;
  bottom: -100px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0; }

.video-popup.active .video-popup-overlay {
  opacity: 1; }

.video-popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
      transform: translateY(100px);
  opacity: 0;
  visibility: hidden; }

.video-popup.active .video-popup-content {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
  opacity: 1;
  visibility: visible; }

.video-popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.video-popup-container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #000;
  vertical-align: middle;
  max-width: 1200px;
  width: 100%; }

.video-popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 10000px; }

.video-popup-align {
  overflow: hidden;
  max-height: 100vh; }

.video-popup .embed-responsive-16by9 {
  padding-bottom: 56.3%; }

.video-popup iframe {
  width: 100%;
  height: 100%;
  position: absolute; }

/*media*/
@media (max-width: 1366px) {
  .video-popup-container {
    width: 80%; } }

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* FORM ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*---INPUTS AND TEXTAREA*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--gray);
  opacity: 1; }

input:-moz-placeholder, textarea:-moz-placeholder {
  color: var(--gray);
  opacity: 1; }

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--gray);
  opacity: 1; }

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--gray);
  opacity: 1; }

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

input, textarea, select {
  border-radius: 0;
  background: none;
  border: none;
  margin: 0;
  width: 100%;
  padding: 0; }

textarea {
  display: block;
  resize: none;
  overflow: auto; }

select::-ms-expand {
  display: none; }

.input {
  height: 56px;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 20px;
  background: var(--bg-gray);
  border: 1px solid var(--bg-gray);
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  text-overflow: ellipsis;
  margin-bottom: 10px; }
  @media (max-width: 767px) {
    .input {
      height: 50px;
      padding: 15px;
      border: none; } }
  .input:focus {
    background: #fff;
    border: 1px solid #DBDBDB; }

textarea.input {
  height: 145px; }

textarea.input.type-2 {
  height: 105px;
}
.delivery-form textarea.input.type-2 {
    margin-top: 10px;
}

.invalid {
  border-color: red; }

.input-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .input-button .input {
    margin-bottom: 0;
    width: 100%; }
  .input-button .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0; }

/*---FORM STYLE---*/
.form {
  background-color: #fff; }
  .form .form-title {
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .form .form-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px; } }
  .form .form-text {
    text-align: center; }

/*---CHECKBOX---*/
.checkbox-wrapper {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 1199px) {
    .checkbox-wrapper {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  @media (max-width: 575px) {
    .checkbox-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.checkbox-entry {
  display: inline-block;
  cursor: pointer;
  margin: 0;
  padding: 0;
  min-width: 30px;
  min-height: 20px; }
  .checkbox-entry a {
    color: var(--purple);
    line-height: 24px;
    font-weight: 400; }

.checkbox-entry input {
  display: none; }

.checkbox-entry span {
  position: relative;
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  padding-left: 25px;
  display: inline-block;
  -webkit-transition: .3s all ease;
  transition: .3s all ease; }
  .checkbox-entry span a {
    color: var(--purple);
    font-weight: 400; }

.checkbox-entry span i {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 30px; }
  @media (max-width: 767px) {
    .checkbox-entry span i {
      width: 14px;
      height: 14px;
      top: 0; } }

.checkbox-entry span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #B3B3B3;
  -webkit-transition: .3s all ease;
  transition: .3s all ease; }

.checkbox-entry span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 9px;
  z-index: 1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
  transform: scale(0) translate(0, -50%) rotate(45deg);
  -moz-transform: scale(0) translate(0, -50%) rotate(45deg);
  -o-transform: scale(0) translate(0, -50%) rotate(45deg);
  -webkit-transform: scale(0) translate(0, -50%) rotate(45deg);
  -ms-transform: scale(0) translate(0, -50%) rotate(45deg);
  transition: 0.25s ease-in;
  -webkit-transition: 0.25s ease-in;
  -moz-transition: 0.25s ease-in;
  -ms-transition: 0.25s ease-in;
  -o-transition: 0.25s ease-in; }

.checkbox-entry input:checked + span {
  color: var(--purple); }

.checkbox-entry input:checked + span:after {
  transform: scale(1) translate(0, -50%) rotate(45deg);
  -webkit-transform: scale(1) translate(0, -50%) rotate(45deg);
  -moz-transform: scale(1) translate(0, -50%) rotate(45deg);
  -ms-transform: scale(1) translate(0, -50%) rotate(45deg);
  -o-transform: scale(1) translate(0, -50%) rotate(45deg); }

.checkbox-entry input:checked + span:before {
  border-color: var(--purple);
  background: var(--purple); }

@media (max-width: 767px) {
    .checkbox-entry span {
        font-size: 14px;
    }
    .delivery-form .checkbox-entry span {
        font-size: 16px;
    }
}

.simple-img {
  position: relative;
  font-size: 0;
  padding-bottom: 56%;
  overflow: hidden; }
  .simple-img.pb40 {
    padding-bottom: 40%; }
  .simple-img.pb56 {
    padding-bottom: 56%; }
  .simple-img.pb66 {
    padding-bottom: 66%; }
  .simple-img.pb75 {
    padding-bottom: 75%; }
  .simple-img.pb100 {
    padding-bottom: 100%; }
  .simple-img.pb114 {
    padding-bottom: 114%; }
  .simple-img.pb131 {
    padding-bottom: 131%; }
  .simple-img.pb155 {
    padding-bottom: 155%; }
  .simple-img img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -o-object-fit: cover;
       object-fit: cover; }

.img-animate {
  position: absolute;
  max-width: 80%;
  -webkit-transition: .8s all ease;
  transition: .8s all ease; }
  .img-animate img {
    -o-object-fit: contain;
       object-fit: contain; }
  .img-animate.animate-1 {
    left: 0;
    bottom: -15px;
    z-index: 10; }
    .img-animate.animate-1.move {
      -webkit-transform: translateX(-180px);
          -ms-transform: translateX(-180px);
              transform: translateX(-180px); }
  .img-animate.animate-2 {
    right: 0;
    bottom: -25px;
    z-index: 9; }
    .img-animate.animate-2.move {
      -webkit-transform: translateX(220px);
          -ms-transform: translateX(220px);
              transform: translateX(220px); }
  .img-animate.animate-3 {
    left: 620px;
    top: 230px;
    z-index: 3; }
    @media (max-width: 1620px) {
      .img-animate.animate-3 {
        left: 470px;
        top: 230px; } }
    @media (max-width: 1470px) {
      .img-animate.animate-3 {
        left: 390px;
        top: 160px; } }
    .img-animate.animate-3.move {
      -webkit-transform: translateX(-30px);
          -ms-transform: translateX(-30px);
              transform: translateX(-30px); }
    .img-animate.animate-3 img {
      height: 70px; }
  .img-animate.animate-4 {
    right: 620px;
    top: 220px;
    z-index: 4; }
    @media (max-width: 1620px) {
      .img-animate.animate-4 {
        right: 450px;
        top: 200px; } }
    @media (max-width: 1470px) {
      .img-animate.animate-4 {
        right: 400px;
        top: 180px; } }
    .img-animate.animate-4.move {
      -webkit-transform: translateX(50px);
          -ms-transform: translateX(50px);
              transform: translateX(50px); }
    .img-animate.animate-4 img {
      height: 70px; }
  .img-animate.animate-5 {
    left: 400px;
    top: 520px;
    z-index: 5; }
    @media (max-width: 1470px) {
      .img-animate.animate-5 {
        left: 330px;
        top: 370px; } }
    @media (max-width: 1470px) {
      .img-animate.animate-5 img {
        height: 90px; } }

@media (max-width: 1200px) {
  .animate-3, .animate-4, .animate-5 {
    display: none; } }

@media (min-width: 1200px) {
  .home-about-animate-1 {
    -webkit-transition: .5s all ease;
    transition: .5s all ease; }
    .home-about-animate-1.move {
      -webkit-transform: translateX(-60px);
          -ms-transform: translateX(-60px);
              transform: translateX(-60px); }
  .home-about-animate-2 {
    -webkit-transition: .5s all ease;
    transition: .5s all ease; }
    .home-about-animate-2.move {
      -webkit-transform: translateX(-120px);
          -ms-transform: translateX(-120px);
              transform: translateX(-120px); }
  .home-work-animate-1 {
    -webkit-transition: .5s all ease;
    transition: .5s all ease; }
    .home-work-animate-1.move {
      -webkit-transform: translateX(100px);
          -ms-transform: translateX(100px);
              transform: translateX(100px); }
  .home-shop-animate-1 {
    -webkit-transition: .5s all ease;
    transition: .5s all ease; }
    .home-shop-animate-1.move {
      -webkit-transform: translateX(-120px);
          -ms-transform: translateX(-120px);
              transform: translateX(-120px); }
  .banner-animate-1 {
    -webkit-transition: .5s all ease;
    transition: .5s all ease; }
    .banner-animate-1.move {
      -webkit-transform: translateX(120px);
          -ms-transform: translateX(120px);
              transform: translateX(120px); }
  .banner-animate-2 {
    -webkit-transition: .5s all ease;
    transition: .5s all ease; }
    .banner-animate-2.move {
      -webkit-transform: translateX(-50px);
          -ms-transform: translateX(-50px);
              transform: translateX(-50px); } }

video {
  width: 100%; }

/*pagination*/
.custom-pagination {
  text-align: center;
  display: block;
  position: relative; 
  margin-top: 30px;
}
@media (max-width: 767px) {
  .custom-pagination {
    margin-top: 20px; } 
}

.custom-pagination ul {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-size: 0;
  border: 1px solid #E6E6E6; }

.custom-pagination ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  /* margin-right: 10px; */
}
  @media (max-width: 1199px) {
    .custom-pagination ul li {
      margin-right: 0; } }
  .custom-pagination ul li:first-child {
    border-left: none; }
  .custom-pagination ul li.arr-left {
    border-left: 1px solid #E6E6E6; }
  .custom-pagination ul li.arr-right {
    border-left: 1px solid #E6E6E6; }

.custom-pagination ul li.dott {
  display: inline-block;
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 80px;
  height: 80px;
  width: 80px;
  pointer-events: none; }
  @media (max-width: 992px) {
    .custom-pagination ul li.dott {
      line-height: 40px;
      height: 40px;
      width: 40px; } }
  @media (max-width: 767px) {
    .custom-pagination ul li.dott {
      line-height: 30px;
      font-size: 16px;
      height: 30px;
      width: 25px; } }

.custom-pagination ul li:last-child {
  margin-right: 0; }

.custom-pagination ul li a, .custom-pagination ul li span {
  display: inline-block;
  vertical-align: top;
  color: var(--black);
  font-size: 16px;
  line-height: 80px;
  font-weight: 300;
  padding: 0 4px;
  height: 80px;
  width: 80px;
  z-index: 2;
  position: relative;
  -webkit-transition: all 0.25s;
  transition: all 0.25s; }
  @media (max-width: 992px) {
    .custom-pagination ul li a , .custom-pagination ul li span{
      line-height: 40px;
      height: 40px;
      width: 40px; } }
  @media (max-width: 767px) {
    .custom-pagination ul li a, .custom-pagination ul li span {
      line-height: 30px;
      font-size: 16px;
      height: 30px;
      width: 25px; } }
  @media (min-width: 1200px) {
    .custom-pagination ul li a:hover {
        font-size: 18px;
        color: var(--purple);
      font-weight: 500; } }

.custom-pagination ul li.active a, .custom-pagination ul li.active span{
    font-size: 18px;
    color: var(--purple);
    font-weight: 500; }

.custom-pagination .pag-arrow a:before {
  content: "";
  position: absolute;
  left: auto;
  right: 36px;
  top: 36px;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -webkit-transition: 0.25s;
  transition: 0.25s; }
  @media (max-width: 992px) {
    .custom-pagination .pag-arrow a:before {
      right: 18px;
      top: 16px; } }
  @media (max-width: 767px) {
    .custom-pagination .pag-arrow a:before {
      right: 12px;
      top: 11px; } }

.custom-pagination .pag-arrow.arr-left {
  right: auto;
  left: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
      transform: rotate(180deg); }

.cost-amount {
  /*input type number*/ }
  .cost-amount .custom-input-number {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background: #fff;
    border-bottom: 2px solid #D8D8D8;
    padding: 0 10px;
    height: 40px; }
  .cost-amount .custom-input-number .input-field {
    font-size: 18px;
    line-height: 27px;
    color: var(--brown);
    text-align: center;
    height: 30px;
    pointer-events: none; }
  .cost-amount .custom-input-number .increment, .cost-amount .custom-input-number .decrement {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: inline-block;
    z-index: 2;
    padding: 0;
    cursor: pointer; }
  .cost-amount .custom-input-number .increment {
    left: auto;
    right: 0; }
  .cost-amount .custom-input-number .decrement span:before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    width: 8px;
    height: 2px;
    background: #D8D8D8;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .cost-amount .custom-input-number .increment span:before {
    content: "";
    position: absolute;
    top: 14px;
    right: 3px;
    width: 2px;
    height: 8px;
    background: #D8D8D8;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .cost-amount .custom-input-number .increment span:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    width: 8px;
    height: 2px;
    background: #D8D8D8;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .cost-amount .increment, .cost-amount .decrement {
    -webkit-transition: .3s all ease;
    transition: .3s all ease; }
    @media (min-width: 1200px) {
      .cost-amount .increment:hover span:after, .cost-amount .decrement:hover span:after {
        -webkit-transform: scale(2);
            -ms-transform: scale(2);
                transform: scale(2); }
      .cost-amount .increment:hover span:before, .cost-amount .decrement:hover span:before {
        -webkit-transform: scale(2);
            -ms-transform: scale(2);
                transform: scale(2); } }

@media (max-width: 1199px) {
  .seo-block {
    display: none; } }

.seo-block__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.seo-block__content {
  padding: 90px 90px 100px;
  background: #fff; }

.seo-block__title {
  font-weight: 500;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative; }

.seo-block__text.border-top {
  padding-top: 20px; }

.seo-block__img {
  position: relative;
  padding-bottom: 65.1%;
  overflow: hidden;}
  .seo-block__img img {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%; }

.seo-block .row {
    position: relative;
}

.seo-block .row::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
}

.more-text .text {
  display: none; }

.read-more {
  position: relative;
  padding-right: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer; }

.read-more:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--purple);
  border-right: 1.5px solid var(--purple);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.more-text.open .read-more:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  top: 8px; }

@media (min-width: 1200px) {
  .read-more:hover {
    color: var(--black); }
  .read-more:hover:before {
    border-color: var(--black); } }

/*--------------------------------------------------------*/
/* Ckeckout: */
/*--------------------------------------------------------*/
.form [class*=col-] {
  padding-left: 0;
  padding-right: 0; }

.form [class*=col-6]:not(:last-child) {
  padding-right: 10px; }

.search-mobile-button {
  display: none; }

.checkout-map {
  position: relative; }

.checkout-map .map-block {
  height: 470px; }

.not-delivery {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #F05B5B;
  padding: 20px; }

.toggle-block {
  display: none; }

.checkout-products {
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .checkout-products {
      margin-bottom: 20px; } }
  /* .checkout-products .prod_horiz {
    margin-bottom: 10px; } */

.moneychange-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 20px; }
  .moneychange-input .input {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 20px;
    margin-bottom: 0;
    width: 190px; }

.errorMsg {
  display: none;
  padding: 10px;
  background-color: #F05B5B;
  color: #fff;
  margin-bottom: 20px; }

.main-order-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px; }
  @media (max-width: 991px) {
    .main-order-wrapp {
      margin-top: 30px; } }
  @media (max-width: 767px) {
    .main-order-wrapp {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

@media (max-width: 767px) {
  .price-wrapp {
    margin-bottom: 30px; } }

.price-wrapp .price-delivery,
.price-wrapp .all-product-price,
.price-wrapp .all-order-price {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 6px; }
  .price-wrapp .price-delivery b,
  .price-wrapp .all-product-price b,
  .price-wrapp .all-order-price b {
    font-weight: 500;
    font-weight: 400;
    color: var(--purple);}

.price-wrapp .all-order-price {
  font-size: 20px; }

.cart-empty-section {
  display: none; }

.alert {
  padding: 20px 30px; }

.alert-success {
  background-color: #F5F5F5;
  border-top: 2px solid #FFF;
  color: #000;
  text-align: center; }

.order-wrap .alert {
  margin: 30px 0; }

@media (max-width: 991px) {
  .delivery-form {
    margin-bottom: 30px; } }

@media (max-width: 767px) {
  .search-mobile-button {
    display: block;
    margin-bottom: 30px; } }

/*change style autocomplete*/
.pac-container {
  background: #fff;
  border-radius: 0; }

.pac-container .pac-item {
  margin: 0;
  padding: 0 15px;
  border-top: 0;
  font-size: 14px;
  color: #000;
  line-height: 40px;
  font-weight: 300;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.pac-container .pac-item:nth-child(1) {
  border-top: none; }

.pac-icon-marker {
  display: none !important; }

.pac-item-query {
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.pac-container.pac-logo:after {
  content: none; }

.cookies-informer {
  position: fixed;
  display: block;
  bottom: 0;
  z-index: 500;
  width: 350px;
  left: 0;
  background: var(--purple);
  /* -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%); */
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  padding: 30px;
  margin: 0 0 10px 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 767px) {
    .cookies-informer {
        width: 100%;
        padding: 15px;
        margin: 0;} }
  .cookies-informer.active {
    visibility: visible;
    opacity: 1;
    /* -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); */
    }
    /* @media (max-width: 767px) {
      .cookies-informer.active {
        transform: translate(-50%, 0); } } */
  .cookies-informer .cookies-informer-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* align-items: center; */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 767px) {
      .cookies-informer .cookies-informer-inner {
        display: block; } }
    .cookies-informer .cookies-informer-inner .cookies-text {
      color: #FFF;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.57em;
      max-width: 400px;
      margin-bottom: 20px;}
      @media (max-width: 767px) {
        .cookies-informer .cookies-informer-inner .cookies-text {
          /* margin-right: 0;
          margin-bottom: 20px; */
          max-width: 100%;
         } }
      .cookies-informer .cookies-informer-inner .cookies-text a {
        font-weight: 500;
        color: #FFF; }
    .cookies-informer .cookies-informer-inner .cookies-btn {
      height: 50px; }
      /* @media (max-width: 575px) {
        .cookies-informer .cookies-informer-inner .cookies-btn {
          width: 100%; } } */
    .cookies-informer .cookies-informer-inner .close-cookies-icon {
      height: 24px;
      width: 24px;
      fill: #707070;
      cursor: pointer;
      -webkit-transition: .3s all ease;
      transition: .3s all ease; }
      @media (min-width: 1200px) {
        .cookies-informer .cookies-informer-inner .close-cookies-icon:hover {
          -webkit-transform: scale(1.2);
              -ms-transform: scale(1.2);
                  transform: scale(1.2); } }
      @media (max-width: 767px) {
        .cookies-informer .cookies-informer-inner .close-cookies-icon {
          position: absolute;
          right: 0;
          top: -10px; } }

.video-item {
  width: 100%;
  /* height: auto; */
  /* display: block; */
  margin: 0 15px;
  cursor: pointer;
  /* 24.11 changes */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
  @media (max-width: 576px) {
    .video-item {
      max-width: 100%; } }
  .video-item:first-child {
    margin-left: 0; }
  .video-item:last-child {
    margin-right: 0; }
  .video-item__photo {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden; }
    .video-item__photo .play-button {
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -24px;
      margin-top: -24px; }
    .video-item__photo__img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
  .video-item__content {
    background: #fff;
    padding: 30px;
    text-align: center;
    /* 24.11 changes */
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
   }
    @media (max-width: 575px) {
      .video-item__content {
        padding: 20px 30px 30px 30px; } }
    .video-item__content__category {
      font-weight: 300;
      font-size: 13px;
      line-height: 9px;
      text-transform: uppercase;
      color: var(--purple); }
    .video-item__content__text {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-top: 10px;
      color: var(--black); }
  @media (min-width: 1200px) {
    .video-item:hover .video-item__content__text {
      color: var(--purple); }
    .video-item:hover img {
      transform: scale(1.02);
      -webkit-transform: scale(1.02);
      -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
      -o-transform: scale(1.02); } }
  .video-item .play {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    width: 48px;
    height: 48px;
    color: var(--black);
    background: #FDECB8;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 2;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%); }
    @media (min-width: 1200px) {
      .video-item .play:hover {
        color: #FDECB8;
        background: var(--purple); } }
  .video-item .play::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 33%;
    left: 40%;
    border-left: 16px solid;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent; }

.history-table {
  border-collapse: collapse;
  width: 100%; }
  .history-table td {
    padding: 5px 10px;
    border-bottom: 1px solid #E6E6E6;
    vertical-align: middle; }
  .history-table td:first-child {
    width: 15%;
    padding-left: 0; }
  .history-table td:nth-child(2) {
    width: 15%; }
  .history-table td:nth-child(3) {
    width: 30%; }
  .history-table td:nth-child(4) {
    width: 10%; }
  .history-table td:nth-child(5) {
    width: 15%; }
  .history-table td:nth-child(6) {
    width: 15%;
    padding-right: 0; }
  .history-table thead td {
    height: 70px; }
  .history-table tbody td {
    height: 65px; }

.history-status.done {
  color: #37A61C;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .history-status.done:before {
    content: '';
    background: #37A61C;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 10px; }

.history-status.canceled {
  font-weight: 400;
  color: #E31C26;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .history-status.canceled:before {
    content: '';
    background: #E31C26;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 10px; }

.history-status.processing {
  font-weight: 400;
  color: #d4be24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .history-status.processing:before {
    content: '';
    background: #d4be24;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 10px; }

.history-table-wrap {
  margin-top: 50px;
  background: #fff;
  overflow-x: auto; }
  @media (max-width: 1200px) {
    .history-table-wrap {
      margin-top: 30px; } }
  .history-table-wrap .history-table {
    min-width: 680px; }
    .history-table-wrap .history-table thead tr td {
      font-size: 16px;
      line-height: 100%;
      color: var(--black);
      font-weight: 400;
      padding-left: 30px; }
    .history-table-wrap .history-table tbody tr td {
      font-size: 16px;
      line-height: 1.75em;
      color: var(--black);
      font-weight: 300;
      padding-left: 30px; }
      .history-table-wrap .history-table tbody tr td:first-child {
        color: var(--purple);
        font-weight: 500; }
        .history-table-wrap .history-table tbody tr td:first-child a {
          color: var(--purple);
          font-weight: 500; }
      .history-table-wrap .history-table tbody tr td:nth-child(4) {
        font-weight: 500; }
      .history-table-wrap .history-table tbody tr td:nth-child(7) {
        font-weight: 500;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--purple);
        padding-right: 25px; }
        .history-table-wrap .history-table tbody tr td:nth-child(7) a {
          font-weight: 500;
          font-size: 12px;
          line-height: 100%;
          letter-spacing: 0.15em;
          text-transform: uppercase;
          color: var(--purple); }

.address-map-wrap {
  position: relative; }
  .address-map-wrap #map {
    margin-top: 30px;
    height: 290px; }

.empty-history {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  padding: 30px;
  background: var(--bg-gray); }
  @media (max-width: 767px) {
    .empty-history {
      padding: 20px 15px; } }
  .empty-history span {
    display: block;
    margin-bottom: 15px; }

/* cabinet_address table */
.cabinet_address-wrap {
  margin-bottom: 30px; }

.cabinet_address {
  width: 100%;
  border-collapse: collapse; }
  .cabinet_address td {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    height: 66px;
    padding: 10px 5px;
    vertical-align: middle; }
    .cabinet_address td:first-child {
      padding-left: 0;
      width: 25%; }
    .cabinet_address td:nth-child(2) {
      width: 40%; }
    .cabinet_address td:nth-child(3) {
      width: 30%; }
    .cabinet_address td:last-child {
      padding-right: 0;
      text-align: right;
      width: 10%; }
    .cabinet_address td .btn-close {
      display: inline-block; }
  .cabinet_address tr.active .cabinet_address-detail {
    color: #000; }

.cabinet_address-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (max-width: 575px) {
  .cabinet_address-wrap {
    overflow-x: auto; }
  .cabinet_address {
    min-width: 510px; }
  .cabinet_address-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .cabinet_address-buttons .btn {
      width: 100%; }
    .cabinet_address-buttons .btn + .btn {
      margin-top: 20px; } }

/* end of cabinet_address table */
/* bonuses */
.bonuses {
  max-width: 680px;
  margin: 0 auto; }
  .bonuses_head {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .bonuses_list {
    list-style: circle;
    list-style-position: inside; }

@media (max-width: 767px) {
  .history-table-wrap .history-table {
    min-width: unset; }
  .history-table thead {
    display: none; }
  .history-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 20px; }
    .history-table tr:last-child {
      margin-bottom: 0; }
  .history-table tbody td {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
    height: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: left; }
    .history-table tbody td:before {
      content: attr(data-mobile-title);
      position: relative;
      display: inline-block;
      width: 40%;
      padding-right: 10px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .history-table tbody td:last-child {
      border-bottom: 0; } }

@media (max-width: 565px) {
  .bonuses_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

/* end of bonuses */
/* other in cabinet */
@media (max-width: 991px) {
  .save-address {
    margin-top: 20px; } }

/* end of other in cabinet */
.cabinet-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  color: var(--black);
  text-align: center;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .cabinet-title {
      margin-bottom: 30px;
      font-size: 22px;
      line-height: 28px; } }

.cabinet-container .form {
  background: #fff;
  padding: 50px 80px 60px;
  max-width: 705px;
  display: block;
  margin: 50px auto 0;
}

.cabinet-container .form .btn {
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .cabinet-container .form {
      margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cabinet-container .form {
        max-width: 100%;
        margin: 50px 0 0 0;
        padding: 30px 15px 30px;
    }
    .cabinet-container .form .btn {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {

}

.cabinet-container .form-personal-manager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 65px 80px 65px 60px; }
  @media (max-width: 767px) {
    .cabinet-container .form-personal-manager {
      display: block;
      padding: 30px 15px 30px 15px; } }
  .cabinet-container .form-personal-manager .form-personal-manager-img img {
    border-radius: 50%;
    max-width: 162px;
    -o-object-fit: cover;
       object-fit: cover; }
    @media (max-width: 767px) {
      .cabinet-container .form-personal-manager .form-personal-manager-img img {
        display: block;
        margin: 0 auto;
        max-width: 130px; } }
  .cabinet-container .form-personal-manager .form-personal-manager-info {
    margin-left: 35px; }
    @media (max-width: 767px) {
      .cabinet-container .form-personal-manager .form-personal-manager-info {
        margin-left: 0;
        margin-top: 20px; } }
    .cabinet-container .form-personal-manager .form-personal-manager-info .cabinet-title {
      text-align: left; }
      @media (max-width: 767px) {
        .cabinet-container .form-personal-manager .form-personal-manager-info .cabinet-title {
          text-align: center; } }
  .cabinet-container .form-personal-manager .form-personal-manager-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    color: var(--black);
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .cabinet-container .form-personal-manager .form-personal-manager-caption {
        font-size: 16px;
        line-height: 24px;
        display: block;
        margin-bottom: 15px; } }
    .cabinet-container .form-personal-manager .form-personal-manager-caption:last-child {
      margin-bottom: 0; }
    .cabinet-container .form-personal-manager .form-personal-manager-caption span {
      width: 50%;
      display: block; }
      @media (max-width: 767px) {
        .cabinet-container .form-personal-manager .form-personal-manager-caption span {
          width: 100%; } }
    .cabinet-container .form-personal-manager .form-personal-manager-caption strong {
      font-weight: 400;
      padding-left: 10px;
      width: 50%;
      display: block; }
      @media (max-width: 767px) {
        .cabinet-container .form-personal-manager .form-personal-manager-caption strong {
          width: 100%;
          padding-left: 0; } }

.repeat-order .back-link {
  margin: 45px 0 25px; }

.check-list {
  background: #fff;
  width: 100%;
  padding: 50px 75px 60px;
  border-top: 5px solid var(--purple); }
  @media (max-width: 1200px) {
    .check-list {
      padding: 40px 50px; } }
  @media (max-width: 992px) {
    .check-list {
      padding: 30px 15px; } }
      @media (max-width: 767px) {
        .check-list {
          padding: 20px 15px; } }
          
  .check-list__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 20px; }
    @media (max-width: 575px) {
      .check-list__header {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .check-list__header span {
      font-style: normal;
      font-weight: normal;
      font-size: 16px;
      line-height: 100%;
      color: var(--black);
      display: block;
      padding: 0 5px; }
      @media (max-width: 575px) {
        .check-list__header span {
          margin-bottom: 10px;
          width: 50% !important; } }
    .check-list__header__number {
      width: 30%; }
      @media (max-width: 575px) {
        .check-list__header__number {
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; } }
    .check-list__header__time {
      width: 8%; }
      @media (max-width: 575px) {
        .check-list__header__time {
          -webkit-box-ordinal-group: 5;
              -ms-flex-order: 4;
                  order: 4;
          text-align: right; } }
    .check-list__header__date {
      width: 38%; }
      @media (max-width: 575px) {
        .check-list__header__date {
          -webkit-box-ordinal-group: 4;
              -ms-flex-order: 3;
                  order: 3; } }
    .check-list__header__status {
      width: 30%; }
      @media (max-width: 575px) {
        .check-list__header__status {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2;
          text-align: right; } }
      .check-list__header__status.done {
        color: #37A61C;
        font-weight: 400;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
        .check-list__header__status.done:before {
          content: '';
          background: #37A61C;
          height: 6px;
          width: 6px;
          border-radius: 50%;
          margin-right: 10px; }
      .check-list__header__status.canceled {
        font-weight: 400;
        color: #E31C26;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
        .check-list__header__status.canceled:before {
          content: '';
          background: #E31C26;
          height: 6px;
          width: 6px;
          border-radius: 50%;
          margin-right: 10px; }
      .check-list__header__status.processing {
        font-weight: 400;
        color: yellow;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
        .check-list__header__status.processing:before {
          content: '';
          background: yellow;
          height: 6px;
          width: 6px;
          border-radius: 50%;
          margin-right: 10px; }
  .check-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E6E6E6; }
    @media (max-width: 575px) {
      .check-list__item {
        display: block; } }
    .check-list__item .prod_horiz {
      border: none; }
    .check-list__item__img {
      width: 30%;
      padding-right: 15px; }
      @media (max-width: 575px) {
        .check-list__item__img {
          width: 100%;
          padding: 0;
          margin: 0 0 15px; } }
      .check-list__item__img img {
        max-width: 100%;
        -o-object-fit: contain;
           object-fit: contain;
        display: block;
        margin: 0 auto; }
    .check-list__item__caption {
      width: 45%;
      padding: 0 15px; }
      @media (max-width: 575px) {
        .check-list__item__caption {
          width: 100%;
          padding: 0;
          margin-bottom: 15px; } }
      .check-list__item__caption span {
        font-weight: 300;
        font-size: 13px;
        line-height: 13px;
        color: var(--gray);
        display: block;
        margin-bottom: 15px; }
        .check-list__item__caption span:last-child {
          margin-bottom: 0; }
      .check-list__item__caption .name-product {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: var(--black); }
    .check-list__item__price {
      width: 25%;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: var(--gray);
      text-align: right;
      padding-left: 15px; }
      @media (max-width: 575px) {
        .check-list__item__price {
          width: 100%;
          padding: 0;
          text-align: left; } }
  .check-list__details {
    padding: 30px 0 40px; }
    
.check-list__details .text * {
    margin-bottom: 0;
}
    .check-list__details__item {
      margin-bottom: 15px; }
@media (max-width: 767px) {
    .check-list__details__item {
        margin-bottom: 10px;
    }
    .check-list__details {
        padding: 20px 0;
    }
}
      .check-list__details__item:last-child {
        margin-bottom: 15px; }
      .check-list__details__item .text {
        line-height: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: var(--black); }
        .check-list__details__item .text strong {
          font-weight: 500;
          width: 25%;
          padding-right: 15px; }
          @media (max-width: 575px) {
            .check-list__details__item .text strong {
              width: 35%; } }
        .check-list__details__item .text span {
          width: 75%; }
          @media (max-width: 575px) {
            .check-list__details__item .text span {
              width: 65%; } }
  .check-list__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .check-list__group {
        display: block; } }
    .check-list__group.center {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
  .check-list__total {
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: var(--black); }
    @media (max-width: 767px) {
      .check-list__total {
        text-align: center;
        margin-top: 15px; } }
    .check-list__total span {
      font-weight: 500;
      /* color: var(--purple); */
      margin-left: 10px; }
      .check-list__total strong, .check-list__total b {
        font-weight: 300;}

.thank-page .title {
  margin-bottom: 20px; }

.thank-page .check-list {
  margin-top: 50px;
}
@media (max-width: 767px) {
    .thank-page .check-list {
        margin-top: 30px;
    }
}
  .thank-page .check-list__total {
    padding: 25px 0;
    text-align: right;
    border-bottom: 1px solid #E6E6E6; }
    @media (max-width: 767px) {
      .thank-page .check-list__total {
        margin-top: 0; } }
  .thank-page .check-list__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .thank-page .check-list__header__number {
      width: 100%; }
      @media (max-width: 575px) {
        .thank-page .check-list__header__number {
          width: 50% !important; } }
    .thank-page .check-list__header__time {
      width: auto !important; }
    .thank-page .check-list__header__date {
      width: auto !important; }

/*CHECKBOX FOR FILTER*/
.color .checkbox-entry span {
  padding-left: 60px; }

/*FILTER */
.filter {
  padding: 20px 0 10px 0;
  margin-right: 25px;
  margin-bottom: 15px; }

.filter.filter-price {
    margin-bottom: 45px;
}

.show-all-btn {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  padding: 10px 20px;
  cursor: pointer;
  padding: 10px 25px 10px 20px;
  -webkit-transition: all .3s;
  transition: all .3s; }
  @media (min-width: 1200px) {
    .show-all-btn:hover {
      background-color: #FFF;
      color: var(--purple); } }

.filter-all .filter-list-category {
  display: none; }

.filter-list li {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  padding: 0 20px; }

.filter-list li:not(:last-child) {
    margin-bottom: 10px;
}

.filter-list li:first-child {
    margin-top: 10px;
}

@media(max-width: 991px) {
    .filter-list li:not(:last-child) {
        margin-bottom: 5px;
    }
    
    .filter-list li:first-child {
        margin-top: 5px;
    }
}

.filter-list.active {
  color: var(--purple); }

.filter-list-category li a {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  padding: 10px 25px 10px 20px;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s; }
  @media (min-width: 1200px) {
    .filter-list-category li a:hover {
      background-color: #FFF;
      color: var(--purple); } }

.filter-list-category li a.active {
  background-color: #FFF;
  color: var(--purple); }

.category-checkbox .drop-list .filter-list li {
  padding: 10px 25px 0 25px; }

.filter-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--black);
  padding-right: 15px;
  cursor: pointer; }

.filter-title::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 54%;
  width: 11px;
  height: 11px;
  border-right: 2px solid #5e5e5e;
  border-bottom: 2px solid #5e5e5e;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  -webkit-transform: translate(0, -50%) rotate(225deg);
  -ms-transform: translate(0, -50%) rotate(225deg);
  transform: translate(0, -50%) rotate(225deg); }

.filter-title.active::after {
  top: 42%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg); }
.products-filter-result .filter-list-category li a {
    padding: 10px 25px 10px 0;
}
.drop-list {
  position: relative;
  display: block;
  cursor: pointer; }
  .drop-list .filter-list li {
    padding: 0 10px; }

.drop-list::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 20px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #5e5e5e;
  border-bottom: 2px solid #5e5e5e;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg); }
  @media (max-width: 991px) {
    .drop-list::after {
      width: 7px;
      height: 7px; } }

.drop-list.active::after {
  top: 15px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

@media (max-width: 1440px) {
  .filter {
    margin-right: 20px; } }

@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    left: 0;
    top: 65px;
    padding: 0;
    z-index: -1;
    width: 100%;
    background-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
  .sidebar.top {
    top: 40%; }
  .sidebar.top .sidebar-entry {
    height: calc(100vh - 65px); }
  .sidebar-wrapp {
    position: relative;
    max-width: 270px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .sidebar-overlay {
    position: absolute;
    right: -270px;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .sidebar.active {
    z-index: 50; }
  .sidebar.active .sidebar-wrapp {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .sidebar.active .sidebar-overlay {
    opacity: 1;
    visibility: visible; }
  .sidebar-entry {
    height: calc(100vh - 65px);
    padding: 15px 15px 0;
    overflow: auto;
    background-color: #FFF;
    overflow-x: hidden;}
  .sidebar-close {
    position: fixed;
    left: 10px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 51;
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: var(--purple);
    -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .sidebar-close span {
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in;
    background: #FDECB8;
    width: 2px;
    height: 20px;
    position: absolute;
    left: 50%;
    bottom: 6px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  .sidebar-close span::before {
    content: "";
    height: 100%;
    position: absolute;
    background: #FDECB8;
    width: 2px;
    height: 25px;
    left: -10px;
    bottom: 0;
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .sidebar-close span::after {
    content: "";
    height: 100%;
    position: absolute;
    background: #FDECB8;
    width: 2px;
    height: 15px;
    right: -10px;
    bottom: 0;
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .sidebar-close.active {
    left: 280px;
    background-color: #fff; }
  .sidebar-close.active span {
    background: var(--purple);
    height: 0; }
  .sidebar-close.active span::before {
    background: var(--purple);
    height: 30px;
    left: 0;
    bottom: -2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .sidebar-close.active span::after {
    background: var(--purple);
    height: 30px;
    right: 0;
    bottom: -2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .filter {
    padding: 10px 0;
    margin-right: 0; }
  .filter-show-all {
    font-size: 11px;
    line-height: 14px;
    padding: 5px 0;
    margin-top: 5px; }
  .filter-inner {
    padding: 10px 0 0; }
  .filter-title {
    font-size: 14px;
    padding-right: 15px; }
  .filter-title::after {
    width: 7px;
    height: 7px; }
  .filter-list li + li {
    margin-top: 5px; } }

@media (max-width: 991px) {
  .filter {
    margin-bottom: 20px; } }

/*RANGE SLIDER*/
.range {
  margin: 30px 25px 0; }

.range-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 20px 0; }

.range-input {
  display: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 165px;
          flex: 0 1 165px;
  height: 45px; }

.range-input input {
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  background: #fff;
  max-width: 165px;
  height: inherit;
  text-align: center; }

.range-input .sub {
  font-size: 16px;
  font-weight: normal; }

html.keyboard-focus :focus {
  outline: none; }

.slider-range .irs--flat .irs-min,
.slider-range .irs--flat .irs-max,
.slider-range .irs--flat .irs-single {
  display: none; }

.slider-range .irs--flat .irs-from,
.slider-range .irs--flat .irs-to {
  width: 62px;
  height: 30px;
  background: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: var(--purple);
  padding: 5px 10px;
  top: 30px;
  margin-top: 5px;
  cursor: pointer; }

.slider-range .irs--flat .irs-from::before,
.slider-range .irs--flat .irs-to::before {
  display: none; }

.slider-range .irs--flat .irs-from::after,
.slider-range .irs--flat .irs-to::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid #FFF;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent; }

.slider-range .irs--flat .irs-handle {
  top: 14px;
  width: 11px;
  height: 11px; }

.slider-range .irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 11px;
  height: 11px;
  margin-left: -6px;
  background-color: var(--purple);
  border: 1px solid var(--bg-gray);
  cursor: pointer; }

.slider-range .irs--flat .irs-line {
  top: 19px;
  height: 3px;
  background-color: #DBDBDB;
  border-radius: 0; }

.slider-range .irs--flat .irs-bar {
  top: 19px;
  height: 3px;
  background-color: var(--purple); }

@media (max-width: 1199px) {
  .range {
    margin: 20px 10px 0; }
  .range-input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 80px;
            flex: 0 1 80px; } }

@media (max-width: 991px) {
  .range-inputs {
    margin: 10px 0 0 0; }
  .range-input input {
    font-size: 14px; }
  .range-input {
    height: 30px; }
  .range-input:first-child {
    margin-right: 5px; }
  .range-input .sub {
    font-size: 14px;
    margin-right: 5px; } }

/*--- FILTERS FOR CATALOG-ARTICLES-DOCUMENTS ---*/
.filter-content > div[class^="col"]:not(:last-child) {
  padding-right: 0;
}
@media (max-width: 991px) {
    .filter-content > div[class^="col"]:not(:last-child) {
      padding-right: 15px;
    }
}
@media (max-width: 767px) {
    /* .filter-content > div[class^="col"]:not(:last-child) {
      padding-right: 5px;
    } */
}

@media (max-width: 991px) {
  .filter-content > div[class^="col"] {
    margin-bottom: 15px; } }

/* @media (max-width: 767px) {
  .filter-content > div[class^="col"] {
    padding-right: 5px;
    padding-left: 5px; } } */

.filter-content {
  margin-bottom: -15px; }
  @media (max-width: 767px) {
    .filter-content {
      margin-bottom: 10px; } }

.filter-content-menu {
  position: relative;
  text-align: left;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .filter-content-menu {
      margin-bottom: 10px; } }

.filter-content-title {
  display: block;
  padding: 15px 20px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: var(--black); }

.filter-content-title:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: solid var(--black);
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  margin-top: -2px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s; }

.filter-content-title.active:before {
  margin-top: 2px;
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -moz-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  -o-transform: translateY(-50%) rotate(-135deg); }

.filter-content-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0); }

.filter-content-list-item a {
  position: relative;
  display: inline-block;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  padding: 15px 20px;
  width: 100%; }
  @media (min-width: 1200px) {
    .filter-content-list-item a:hover {
      background-color: #f7f7f7; } }

.filter-content-list-item.active a {
  background-color: #f7f7f7; }

.filter-content-list-item a:active {
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px); }

.filter-content-menu.active .filter-content-list {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1); }

.filter-content {
  margin-bottom: 30px; }
  @media (max-width: 991px) {
    .filter-content {
      margin-bottom: 15px;
      } }
  .filter-content .SumoSelect {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 15px 20px; }
  .filter-content .SumoSelect > .optWrapper {
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    overflow: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 2;
    display: block;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in;
    border: none; }
  .filter-content .SelectBox {
    display: block;
    background: #FFF;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: var(--black); }
  .filter-content .SumoSelect > .CaptionCont > span.placeholder {
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    color: var(--black);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .filter-content .SumoSelect > .CaptionCont > span {
    padding-right: 0;
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    text-transform: capitalize;
    color: var(--black);
    margin: 0; }
  .filter-content .SumoSelect > .CaptionCont > label {
    cursor: pointer;
    width: 10px; }
  .filter-content .SumoSelect > .CaptionCont > label > i {
    background-image: none;
    opacity: 1;
    width: 10px;
    width: 10px; }
  .filter-content .SumoSelect > .CaptionCont > label > i:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -70%) rotate(45deg);
    -ms-transform: translate(-50%, -70%) rotate(45deg);
    transform: translate(-50%, -70%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-right: 2px solid #5e5e5e;
    border-bottom: 2px solid #5e5e5e;
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .filter-content .SumoSelect.open > .CaptionCont > label > i:before {
    -webkit-transform: translate(-50%, -30%) rotate(-135deg);
    -ms-transform: translate(-50%, -30%) rotate(-135deg);
    transform: translate(-50%, -30%) rotate(-135deg); }
  .filter-content .SumoSelect.open > .optWrapper {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    top: 100%;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1); }
  .filter-content .SumoSelect > .optWrapper > .options li.opt {
    padding: 0;
    border-bottom: 0; }
  .filter-content .SumoSelect > .optWrapper > .options > li.opt:first-child {
    border-radius: 0; }
  .filter-content .SumoSelect > .optWrapper > .options li label {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--black);
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in; }
  .filter-content .SumoSelect > .optWrapper > .options {
    border-radius: 0;
    padding: 0; }
  .filter-content .options > .opt.disabled:first-child {
    display: none; }
  .filter-content .SumoSelect > .optWrapper.multiple > .options li.opt label {
    padding-left: 25px; }
  .filter-content .SumoSelect .select-all > label {
    padding-left: 25px; }
  .filter-content .SumoSelect .select-all > span,
  .filter-content .SumoSelect > .optWrapper.multiple > .options li.opt span {
    width: 10px;
    margin-left: 0; }
  .filter-content .CaptionCont img {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 13px;
    height: auto; }
  .filter-content .CaptionCont img + span {
    padding-left: 25px; }
  .filter-content .SumoSelect.disabled {
    opacity: 1; }
  .filter-content .SumoSelect.disabled > .CaptionCont {
    border: 1px solid rgba(235, 235, 235, 0.15);
    cursor: not-allowed; }
  .filter-content .SumoSelect.disabled > .CaptionCont > span {
    cursor: not-allowed; }
  @media (hover: hover) and (min-width: 1200px), (-ms-high-contrast: none) {
    .filter-content .SumoSelect:hover {
      z-index: 3; }
    .filter-content .SumoSelect > .CaptionCont:hover > span.placeholder {
      opacity: 1; }
    .filter-content .SumoSelect.disabled > .CaptionCont:hover {
      border: 1px solid rgba(235, 235, 235, 0.15); }
    .filter-content .SumoSelect > .optWrapper > .options li.opt:hover {
      background-color: #f7f7f7; }
    .filter-content .SumoSelect > .optWrapper > .options li.opt:hover label {
      color: var(--purple); }
    .filter-content .SumoSelect .select-all:hover {
      color: var(--purple); } }
  @media (max-width: 767px) {
    .filter-content .SumoSelect {
      padding: 10px; }
    .filter-content .SumoSelect > .CaptionCont > span.placeholder {
      font-size: 14px; }
    .filter-content .SumoSelect > .CaptionCont > span {
      font-size: 14px;
      line-height: 20px; }
    .filter-content .SumoSelect > .optWrapper > .options li label {
      font-size: 14px;
      line-height: 20px;
      padding: 10px; } }

.SumoSelect {
  width: 100%;
  max-width: 150px;
  cursor: pointer;
  z-index: 2; }

.SumoSelect.open {
  z-index: 4 !important; }

.SumoSelect > .CaptionCont {
  cursor: pointer;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: none; }

.SumoSelect > .optWrapper {
  width: 200px;
  background-color: #fff;
  border-radius: 0;
  padding: 0;
  overflow: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 2;
  display: block;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  border: 1px solid #DBDBDB; }

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  -webkit-box-shadow: none;
  box-shadow: none; }

.SelectBox {
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  color: #2a2522; }

.SumoSelect > .CaptionCont > span.placeholder {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: #2a2522;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.SumoSelect.open > .CaptionCont > span.placeholder {
  opacity: 1; }

.SumoSelect > .CaptionCont > span {
  padding-right: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--black);
  margin: 0; }

.SumoSelect > .CaptionCont > label {
  cursor: pointer;
  width: 10px; }

.SumoSelect > .CaptionCont > label > i {
  background-image: none;
  opacity: 1;
  width: 10px;
  width: 10px; }

.SumoSelect > .CaptionCont > label > i:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  -webkit-transform: translate(-50%, -70%) rotate(45deg);
  -ms-transform: translate(-50%, -70%) rotate(45deg);
  transform: translate(-50%, -70%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid #242729;
  border-bottom: 2px solid #242729;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in; }

.SumoSelect.open > .CaptionCont > label > i:before {
  -webkit-transform: translate(-50%, -30%) rotate(-135deg);
  -ms-transform: translate(-50%, -30%) rotate(-135deg);
  transform: translate(-50%, -30%) rotate(-135deg); }

.SumoSelect.open > .optWrapper {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    top: -20px;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);    
    border: 1px solid transparent;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 0;
  border-bottom: 0; }

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  border-radius: 0; }

.SumoSelect > .optWrapper > .options li label {
  padding: 10px 25px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  color: #2a2522;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in; }

.SumoSelect > .optWrapper > .options {
  border-radius: 0;
  padding: 0; }

.options > .opt.disabled:first-child {
  display: none; }

.SumoSelect > .optWrapper.multiple > .options li.opt label {
  padding-left: 25px; }

.SumoSelect .select-all > label {
  padding-left: 25px; }

.SumoSelect .select-all > span,
.SumoSelect > .optWrapper.multiple > .options li.opt span {
  width: 10px;
  margin-left: 0; }

.CaptionCont img {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 13px;
  height: auto; }

.CaptionCont img + span {
  padding-left: 25px; }

.SumoSelect.disabled {
  opacity: 1; }

.SumoSelect.disabled > .CaptionCont {
  border: 1px solid rgba(235, 235, 235, 0.15);
  cursor: not-allowed; }

.SumoSelect.disabled > .CaptionCont > span {
  cursor: not-allowed; }

@media (hover: hover) and (min-width: 1200px), (-ms-high-contrast: none) {
  .SumoSelect:hover {
    z-index: 3; }
  .SumoSelect > .CaptionCont:hover > span.placeholder {
    opacity: 1; }
  .SumoSelect.disabled > .CaptionCont:hover {
    border: 1px solid rgba(235, 235, 235, 0.15); }
  .SumoSelect > .optWrapper > .options li.opt:hover {
    background-color: #F7F7F7; }
  .SumoSelect > .optWrapper > .options li.opt:hover label {
    color: var(--purple); }
  .SumoSelect .select-all:hover {
    color: var(--purple); } }

@media (max-width: 767px) {
  .SumoSelect > .CaptionCont > span.placeholder {
    font-size: 12px; } }

@media (max-width: 575px) {
  .SelectBox {
    padding: 5px;
    font-size: 12px; } }

.select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767px) {
    .select-item {
        margin-bottom: 20px;
    }
}

.select-item span {
  margin-right: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #242729; }

.pt-126 {
  padding-top: 126px; }
  @media (max-width: 1199px) {
    .pt-126 {
      padding-top: 65px; } }

.breadcrumbs-wrap {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 30px; }
  .breadcrumbs-wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .breadcrumbs-wrap ul li {
      position: relative;
      padding-right: 30px;
      padding-left: 20px; }
      .breadcrumbs-wrap ul li a {
        font-size: 11px;
        font-weight: 300;
        line-height: 9px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--gray);
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s; }
        @media (min-width: 1200px) {
          .breadcrumbs-wrap ul li a:hover {
            color: var(--purple); } }
      .breadcrumbs-wrap ul li:before {
        content: '';
        width: 11px;
        height: 1px;
        position: absolute;
        top: 50%;
        right: 0;
        background-color: var(--gray); }
      .breadcrumbs-wrap ul li:first-child {
        padding-left: 0; }
      .breadcrumbs-wrap ul li:last-child {
        padding-right: 0; }
        .breadcrumbs-wrap ul li:last-child a {
          font-weight: 400;
          color: var(--purple); }
        .breadcrumbs-wrap ul li:last-child:before {
          display: none; }
  @media (max-width: 1199px) {
    .breadcrumbs-wrap {
      padding-bottom: 20px; } }
  @media (max-width: 991px) {
    .breadcrumbs-wrap {
      display: none; } }

@media(max-width: 1500px) {
    .breadcrumbs.breadcrumbs-cat .breadcrumbs-wrap {
        padding-bottom: 40px;
    }
}

/*cart-informer*/
.cart-informer {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  z-index: 500;
  max-width: 675px;
  height: 76px;
  width: 90%;
  left: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, 120px);
  -ms-transform: translate(-50%, 120px);
      transform: translate(-50%, 120px);
  visibility: hidden;
  opacity: 0;
  border-top: 1px solid var(--purple);
  padding: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0 6px 10px 2px rgba(0, 0, 0, 0.09);
          box-shadow: 0 6px 10px 2px rgba(0, 0, 0, 0.09); }
  .cart-informer::before {
    content: '';
    background-color: var(--purple);
    width: 20px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0; }

.cart-informer .cart-informer-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%; }

.cart-informer .cart-informer-inner .text {
  display: inline-block;
  margin-right: 10px; }

.cart-informer .cart-informer-inner .text span {
  color: var(--purple);
  font-weight: 500;
  margin-right: 15px; }

.cart-informer.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
      transform: translate(-50%, -15px); }

@media (max-width: 575px) {
  .cart-informer {
    height: auto;
    max-width: 100%;
    display: block; }
  .cart-informer .cart-informer-inner {
    display: block;
    text-align: center; }
  .cart-informer .cart-informer-inner .text {
    display: block;
    margin-right: 0;
    margin-bottom: 15px; } }

/*--------------------------------------------------------*/
/* CART POPUP */
/*--------------------------------------------------------*/
.cart-popup .cart {
  position: relative;
  right: auto;
  top: auto;
  display: block;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 100%;
  -webkit-transition: none;
  transition: none;
  font-size: 16px; }

.cart-popup .cart .cart_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #E6E6E6;
  padding: 30px 0; }

.cart-popup .cart .cart_price-wrap {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  color: var(--black); }
  @media (max-width: 767px) {
    .cart-popup .cart .cart_price-wrap {
      margin-bottom: 10px; } }
  .cart-popup .cart .cart_price-wrap .card-total-price {
    color: var(--black);
    font-weight: 400;
  }

@media (max-width: 767px) {
  .cart-popup .cart .cart_items {
    padding: 0; }
  .cart-popup .cart .cart_bottom {
    padding: 10px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

/* PRODUCT HORIZONTAL */
.prod_horiz {
  position: relative;
  border-top: 1px solid #E6E6E6;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%; }
  .prod_horiz-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .prod_horiz-controls.product-controls {
      margin-bottom: 0;
      margin-left: 70px; }
      @media (max-width: 767px) {
        .prod_horiz-controls.product-controls {
          margin-left: 0; } }
.prod_horiz .btn-close {
    position: relative;
}
.price-product__wrapper .prod_horiz .btn-close {
    position: relative;
}

@media (max-width: 767px) {
    .prod_horiz .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
    .prod_horiz .btn-close svg {
        width: 20px;
        height: 20px;
    }
    .prod_horiz .product_remove {
        position: absolute;
        top: 0;
        right: 0;
    } 
}

.prod_horiz-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 127px;
  height: 116px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .prod_horiz-img .img {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }

.prod_horiz-desc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 40px; }
  @media (max-width: 767px) {
    .prod_horiz-desc {
      margin-left: 20px; } }
  @media (max-width: 575px) {
    .price-product__wrapper .prod_horiz-desc {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .prod_horiz-desc {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
.prod_horiz-desc .prod_horiz-title-wrapper {
    width: 100%;
    max-width: 100%;
    margin-right: 40px;
}
@media (max-width: 767px) {
    .prod_horiz-desc .prod_horiz-title-wrapper {
        margin-right: 0;
        max-width: 85%;
        margin-bottom: 10px;
    }
}
  .prod_horiz-desc .product-code {
    font-size: 13px;
    line-height: 9px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px; }
    @media (max-width: 575px) {
      .prod_horiz-desc .product-code {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 5px; } }
  .prod_horiz-desc .title {
    position: relative;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    max-height: 3em;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none; }
    @media (min-width: 1200px) {
      .prod_horiz-desc .title:hover {
        color: var(--purple); } }
    .prod_horiz-desc .title:active {
      -webkit-transform: translateY(3px);
          -ms-transform: translateY(3px);
              transform: translateY(3px); }
@media (max-width: 767px) {
    .prod_horiz-desc .title {
        font-size: 14px;
        line-height: 18px;
    }
}
  .prod_horiz-desc .product_additions {
    margin-top: 5px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
    color: var(--gray); }
    @media (max-width: 575px) {
      .prod_horiz-desc .product_additions {
        font-size: 12px; } }
.prod_horiz-desc .price-wrap {
    position: relative;
    color: var(--black);
    width: 100%;
    max-width: 130px;
    margin-left: 40px;
    text-align: end;
}

.price-total-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.price-total-wrapper .prod_horiz-controls.product-controls {
    margin-left: 0;
}
.price-total-wrapper .price-wrap {
    text-align: left;
}
@media (max-width: 767px) {
    .price-total-wrapper {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .prod_horiz-desc .price-wrap {
        margin-left: 40px;
        text-align: left;
    }
    .price-total-wrapper .price-wrap {
        text-align: end;
    }
}
@media (max-width: 575px) {
    .prod_horiz-desc .price-wrap {
        margin-left: 0;
    }
}


@media (max-width: 767px) {
  .prod_horiz-img {
    margin-top: 10px;
    width: 100px;
    height: 100px; } }

.cart_items .prod_horiz-desc .product-code {
  margin-bottom: 10px; }

@media (max-width: 575px) {
  .swiper-container {
    overflow: visible; } }

.home-news__main-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 206px;
  position: relative;
  overflow: hidden; }
  @media (max-width: 991px) {
    .home-news__main-items {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      height: auto; } }
  .home-news__main-items:last-child {
    margin-bottom: 0; }
  .home-news__main-items .news-item__img {
    width: 100%;
    height: 206px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3; }
    .home-news__main-items .news-item__img img {
      height: 206px; }
      @media (max-width: 991px) {
        .home-news__main-items .news-item__img img {
          max-width: 100%;
          height: 100%; } }
  .home-news__main-items .news-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 7;
        -ms-flex: 7;
            flex: 7; }
  .home-news__main-items .news-item__title {
    -webkit-line-clamp: 1; }
  .home-news__main-items .news-item__text {
    -webkit-line-clamp: 2; }

.home-manufacturers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px -5px; }

.home-manufacturers__item {
  width: 100%;
  max-width: calc(16.6666% - 10px);
  overflow: hidden;
  margin-bottom: 10px; }
  @media (max-width: 991px) {
    .home-manufacturers__item {
      max-width: calc(25% - 10px); } }
  @media (max-width: 575px) {
    .home-manufacturers__item {
      max-width: calc(33.33% - 10px); } }
  .home-manufacturers__item__img {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 35px;
    height: 150px; }
    .home-manufacturers__item__img img {
      -o-object-fit: contain;
         object-fit: contain;
      -webkit-transition: .3s all ease;
      transition: .3s all ease;
      -webkit-filter: grayscale(100%);
      /* Safari 6.0 - 9.0 */
      filter: grayscale(100%);
      height: 100%; }
      @media (max-width: 1199px) {
        .home-manufacturers__item__img img {
          -webkit-filter: grayscale(0);
          /*Safari6.0-9.0*/
          filter: grayscale(0); } }
    @media (max-width: 575px) {
      .home-manufacturers__item__img {
        height: auto; } }
    @media (min-width: 1200px) {
      .home-manufacturers__item__img:hover img {
        -webkit-filter: grayscale(0);
        /* Safari 6.0 - 9.0 */
        filter: grayscale(0); } }

@media (max-width: 767px) {
  .home-manufacturers .btn {
    margin-top: 20px; } }

@media (max-width: 575px) {
  .home-manufacturers .btn-wrapper {
    margin: 0; } }

@media (max-width: 991px) {
  .home-advance__main {
    display: none; } }

.home-advance .swiper-advance-mobile {
  display: none; }
  @media (max-width: 991px) {
    .home-advance .swiper-advance-mobile {
      display: block; } }
@media (max-width: 767px) {
    .swiper-advance-mobile .swiper-controls {
        margin-top: 0;
    }
}

.home-advance__list {
  margin-left: 60px; }
  @media (max-width: 767px) {
    .home-advance__list {
      margin-left: 0; } }

.home-advance__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 60px 30px 92px;
  position: relative;
  border-top: 1px solid #DBDBDB; }
  .home-advance__item:last-child {
    border-bottom: 1px solid #DBDBDB; }
    @media (max-width: 991px) {
      .home-advance__item:last-child {
        border: none; } }
  @media (max-width: 991px) {
    .home-advance__item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0 20px 20px 20px;
      border: none; } }
  .home-advance__item__img {
    position: absolute;
    left: -32px;
    height: 64px;
    width: 64px;
    -o-object-fit: contain;
       object-fit: contain; }
    @media (max-width: 991px) {
      .home-advance__item__img {
        position: relative;
        left: 0;
        right: 0; } }
  .home-advance__item__title {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: var(--purple);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 275px;
    width: 100%;
    padding: 0 10px;
    margin-right: 60px; }
    .home-advance__item__title strong {
      font-weight: 500; }
    @media (max-width: 991px) {
      .home-advance__item__title {
        max-width: 100%;
        margin: 10px auto;
        text-align: center;
        min-height: 108px;
        -webkit-line-clamp: inherit; } }
    @media (max-width: 767px) {
      .home-advance__item__title {
        min-height: auto;
        line-height: 26px; } }
  .home-advance__item__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    padding: 0 10px; }
    @media (max-width: 991px) {
      .home-advance__item__text {
        text-align: center; } }

.home-advance__img {
  position: relative;
  height: 100%; }
  @media (max-width: 991px) {
    .home-advance__img {
      display: none; } }

.home-interesting-video__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.home-interesting-video__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px; }
  @media (max-width: 767px) {
    .home-interesting-video__bottom {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin: 20px 0 0; } }

.home-interesting-video .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #B3B3B3;
  margin: 0 15px !important; }
  .home-interesting-video .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--purple);
    border: 1px solid var(--purple); }
    @media (min-width: 1200px) {
      .home-interesting-video .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
        background: transparent;
        border: 1px solid #B3B3B3; } }
  @media (min-width: 1200px) {
    .home-interesting-video .swiper-pagination .swiper-pagination-bullet:hover {
      background: var(--purple);
      border: 1px solid var(--purple); } }
  @media (max-width: 767px) {
    .home-interesting-video .swiper-pagination .swiper-pagination-bullet {
      margin: 0 7px !important; } }

@media (max-width: 767px) {
  .home-interesting-video .btn {
    margin-top: 20px; } }

.why-we__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 991px) {
    .why-we__item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 575px) {
    .why-we__item:first-child {
      margin-bottom: 0; } }
  @media (max-width: 991px) {
    .why-we__item.reverse {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  @media (max-width: 991px) {
    .why-we__item .btn {
      margin-bottom: 15px; } }
      @media (max-width: 767px) {
        .why-we__item .btn {
          margin-bottom: 30px; } }

@media (max-width: 991px) {
  .why-we__item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }

.why-we__box {
  width: 50%; }
  @media (max-width: 991px) {
    .why-we__box {
      width: 100%; } }
  .why-we__box.type-2 {
    width: 100%; }
    .why-we__box.type-2 .why-we__img {
      padding-bottom: 56%;
      margin-bottom: 20px; }
    .why-we__box.type-2 .title {
      margin-bottom: 5px; }
    .why-we__box.type-2 .text {
      margin-bottom: 50px; }
      @media (max-width: 991px) {
        .why-we__box.type-2 .text {
          margin-bottom: 30px; } }

.why-we__img {
  position: relative;
  height: 100%;
  padding-bottom: 42%; }
  @media (max-width: 1199px) {
    .why-we__img {
      padding-bottom: 50%; } }
  @media (max-width: 991px) {
    .why-we__img {
      padding-bottom: 60%; } }
  .why-we__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.why-we__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 90px; }
  @media (max-width: 1500px) {
    .why-we__info {
      padding: 0 30px; } }
  @media (max-width: 991px) {
    .why-we__info {
      padding: 15px 30px 0; } }
  @media (max-width: 767px) {
    .why-we__info {
      padding: 0; } }

.why-we__title {
  padding: 45px 0 20px; }
  .why-we__title.type2 {
    padding: 40px 0 0 0; }
    @media (max-width: 991px) {
      .why-we__title.type2 {
        padding: 15px 0 10px; } }
  .why-we__title strong {
    font-weight: 500;
    color: var(--purple); }
    .why-we__title strong.type2 {
      color: var(--black); }
  @media (max-width: 1199px) {
    .why-we__title {
      padding: 15px 0 10px; } }

.why-we .text {
  margin-bottom: 30px; }
  @media (max-width: 1199px) {
    .why-we .text {
      margin-bottom: 20px; } }

.why-we.about .why-we__item .btn {
    margin-bottom: 0;
}

.proposition__img {
  position: relative;
  height: 100%;
  padding-bottom: 79%;
  margin-right: -15px; }
  @media (max-width: 991px) {
    .proposition__img {
      padding-bottom: 78%;
      margin-right: 0; } }
  .proposition__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.proposition__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
  padding: 30px 90px;
  height: 100%;
  margin-left: -15px; }
  @media (max-width: 1199px) {
    .proposition__info {
      padding: 20px 50px; } }
  @media (max-width: 991px) {
    .proposition__info {
      padding: 20px 15px;
      margin-left: 0;
      margin-right: 0; } }

.proposition__title {
  position: relative;
  margin-bottom: 30px; }
  .proposition__title strong {
    font-weight: 500;
    color: var(--purple); }
  @media (max-width: 1199px) {
    .proposition__title {
      margin-bottom: 20px; } }
  @media (max-width: 991px) {
    .proposition__title {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; } }
  @media (max-width: 767px) {
    .proposition__title {
      margin-bottom: 10px; } }

.proposition .text {
  margin-bottom: 30px; }
  @media (max-width: 1199px) {
    .proposition .text {
      margin-bottom: 20px; }
    .proposition .text:not(.border-top) {
      padding-top: 0; } }
  @media (max-width: 767px) {
    .proposition .text {
      margin-bottom: 20px; } }
  @media (max-width: 991px) {
    .proposition .text p {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; } }

.border-top {
  border-top: 1px solid #E6E6E6;
  padding-top: 25px;
  position: relative; }
  .border-top::before {
    content: '';
    background-color: #E6E6E6;
    width: 20px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0; }
  @media (max-width: 991px) {
    .border-top {
      border: none; }
      .border-top::before {
        display: none; } }
  @media (max-width: 575px) {
    .border-top {
      padding-top: 10px; } }


.parallax-bg {
    overflow: hidden;
}

.home-main__slider .parallax-bg {
  overflow: hidden;
  padding-bottom: 57%;
}

.parallax-bg .bga {
  top: -20%;
  bottom: -20%;
  height: auto;
}

@media(max-width: 1500px) {
    .home-main__slider .parallax-bg {
        overflow: hidden;
        padding-bottom: 42%;
      }
}

@media(max-width: 1199px) {
    .home-main__slider .parallax-bg {
        padding-bottom: 46%;
    }
}

@media(max-width: 991px) {
    .home-main__slider .parallax-bg {
        padding-bottom: 0;
    }
    .banner-align.type-2 .parallax-bg {
        width: 100%;
        height: 100%;
        position: relative;
        padding-bottom: 34%;
    }
}

.rellax {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

.bga {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #b5b5b5; }

@media (max-width: 767px) {
  .about-page video {
    position: relative;
    width: 100%;
    height: 50vh;
    top: 123px; } }

@media (max-width: 575px) {
  .benefits .text {
    padding: 0 15px; } }

.benefits .benefits-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 1199px) {
    .benefits .benefits-wrapper {
      display: none; } }

.benefits__item {
  background-color: #FFF;
  padding: 40px 20px;
  text-align: center;
  width: calc(33.33% - 30px);
  margin-right: 30px;
  height: 314px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 767px) {
    .benefits__item {
      height: auto; }
    .swiper-benfits-mobile .benefits__item.mb-30 {
        margin-bottom: 0;
    }}
  .benefits__item:nth-child(3n) {
    margin-right: 0; }
  .benefits__item:last-child {
    margin-right: 0; }
  .benefits__item .text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    @media (max-width: 767px) {
      .benefits__item .text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden; } }
  @media (max-width: 1199px) {
    .benefits__item {
      width: 100%;
      margin-right: 0; } }
  @media (max-width: 991px) {
    .benefits__item {
      padding: 20px; } }

.benefits .type-2 {
  height: 358px; }
  @media (max-width: 767px) {
    .benefits .type-2 {
      height: auto; } }

.benefits__title {
  padding: 0 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (max-width: 1199px) {
    .benefits__title {
      padding: 0; } }

.benefits__img {
  margin-bottom: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (max-width: 991px) {
    .benefits__img {
      margin-bottom: 20px; } }
  .benefits__img img {
    margin-top: 10px;
    margin-bottom: 10px; }
  .benefits__img span {
    font-weight: 200;
    font-size: 70px;
    line-height: 64px;
    text-align: center;
    color: var(--purple);
    overflow: hidden;
    height: 1em; }
    @media (max-width: 991px) {
      .benefits__img span {
        font-size: 55px; } }

.benefits .swiper-benfits-mobile {
  display: none; }
  @media (max-width: 1199px) {
    .benefits .swiper-benfits-mobile {
      display: block; } }
  .benefits .swiper-benfits-mobile .swiper-controls .swiper-button-prev,
  .benefits .swiper-benfits-mobile .swiper-controls .swiper-button-next {
    display: none; }

.swiper-team .swiper-entry .team__item {
  margin-bottom: 0; }

.swiper-team .swiper-entry .swiper-controls {
  margin-top: 60px; }
  @media (max-width: 767px) {
    .swiper-team .swiper-entry .swiper-controls {
      margin-top: 20px; } }
  .swiper-team .swiper-entry .swiper-controls .swiper-button-prev,
  .swiper-team .swiper-entry .swiper-controls .swiper-button-next {
    display: none; }

.sertificat__item .photo-item {
  background: #FFF;
  padding: 30px 20px;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .sertificat__item .photo-item {
      padding: 20px 15px;
      margin-bottom: 0; } }
  .sertificat__item .photo-item .img_wrapp {
    padding-bottom: 118%; }

.sertificat__item .caption {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--black);
  text-align: center;
  margin-top: 30px;
  margin-top: 10px; }
  @media (max-width: 1199px) {
    .sertificat__item .caption {
      font-size: 18px;
      line-height: 30px; } }

.swiper-sertification .swiper-button-prev, .swiper-sertification .swiper-button-next {
  position: absolute;
  left: -120px;
  top: 50%;
  margin-top: -27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: none;
  width: 80px;
  height: 80px;
  background-color: transparent;
  border: 1px solid #E6E6E6;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s; }
  @media (min-width: 1200px) {
    .swiper-sertification .swiper-button-prev:hover, .swiper-sertification .swiper-button-next:hover {
      background-color: #FFF;
      border-color: #FFF; } }
  @media (max-width: 1700px) {
    .swiper-sertification .swiper-button-prev, .swiper-sertification .swiper-button-next {
      display: none; } }

.swiper-sertification .swiper-button-next {
  right: -120px;
  left: auto; }

/* .banner.home-banner+.simple-block {
  padding-top: 90px;
}  */

@media (max-width: 1200px) {
  .banner.home-banner+.simple-block {
    padding-top: 50px;
  } 
}
@media (max-width: 767px) {
  .banner.home-banner+.simple-block {
    padding-top: 30px;
  } 
}

.simple-block .text strong {
  color: var(--purple); }

.simple-block .h4 {
  margin-bottom: 10px; }

.simple-block__img {
  position: relative;
  height: 100%;
  padding-bottom: 56%; }
  .simple-block__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .simple-block__img strong {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px 20px;
    color: white;
    z-index: 2; }

.simple-block .pb-52 {
  padding-bottom: 52%; }

.simple-block .pb-133 {
  padding-bottom: 133%; }

.simple-block__left-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.swiper-simple-block .swiper-controls .swiper-button-prev,
.swiper-simple-block .swiper-controls .swiper-button-next {
  display: none; }

.manufacturers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -30px -60px;
}
@media (max-width: 1200px) {
    .manufacturers__list {
      margin: 0 -15px -30px;
    }
}

@media (max-width: 767px) {
    .manufacturers__list {
      margin: 0 0 -15px 0;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
}

.manufacturers__item {
  overflow: hidden;
  max-width: calc(25% - 60px);
  width: 100%;
  margin: 0 30px 60px;
  display: block;
}
@media (max-width: 1200px) {
    .manufacturers__item {
      max-width: calc(25% - 30px);
      margin: 0 15px 30px;
    }
}
@media (max-width: 992px) {
    .manufacturers__item {
        max-width: calc(33.3333% - 30px);
    }
}
@media (max-width: 767px) {
    .manufacturers__item {
        max-width: 48%;
        margin: 0 0 15px 0;
    }
}
.manufacturers__item__img {
    position: relative;  
    display: -webkit-box;  
    display: -ms-flexbox;  
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px;
    /* height: 290px; */
    background: #fff;
    padding-bottom: 70%;
}
/* @media (max-width: 1200px) {
    .manufacturers__item__img {
        height: 240px;
    }
} */
.manufacturers__item__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
    max-width: 270px;
    max-height: 150px;
}
@media (max-width:1500px) {
    .manufacturers__item__img img {
        max-width: 220px;
        max-height: 100px;
    }
}

@media (max-width: 767px) {
    .manufacturers__item__img img {
        max-width: 150px;
        max-height: 50px;
    }
}
  .manufacturers__item__title {
    margin-top: 20px;
    text-align: center;
    -webkit-transition: .3s all ease;
    transition: .3s all ease; }
  @media (min-width: 1200px) {
    .manufacturers__item:hover .manufacturers__item__img img {
      -webkit-transform: translate(-50%, -50%) scale(1.1);
          -ms-transform: translate(-50%, -50%) scale(1.1);
              transform: translate(-50%, -50%) scale(1.1); }
    .manufacturers__item:hover .manufacturers__item__title {
      color: var(--purple); } }
      @media (max-width: 767px) {
        .manufacturers__item__title {
            margin-top: 10px;}
      }
.manufacturers__item__page {
    background: none;
    height: 100%;
    padding: 0;
    padding-bottom: 6%;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .manufacturers__item__page {
        padding-bottom: 15%;
        margin-bottom: 15px;
    } 
}

.row-contacts > div[class^=col] {
  padding: 0; }
  @media (max-width: 575px) {
    .row-contacts > div[class^=col] {
      padding: 0 15px; } }

.contacts-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 991px) {
    .contacts-title-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.sumoselect-wrapp.countries {
  width: 480px; }
  @media (max-width: 991px) {
    .sumoselect-wrapp.countries {
      margin-top: 30px; } }
  @media (max-width: 575px) {
    .sumoselect-wrapp.countries {
      width: 100%; } }
  .sumoselect-wrapp.countries .SumoSelect {
    max-width: 100%; }
    .sumoselect-wrapp.countries .SumoSelect>.CaptionCont {
        border-radius: unset; }
  .sumoselect-wrapp.countries .SelectBox {
    background-color: #FFF;
    padding: 16px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .sumoselect-wrapp.countries .SelectBox {
        padding: 10px 15px; } }
    .sumoselect-wrapp.countries .SelectBox option {
      position: relative; }
  .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > span {
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    text-transform: capitalize; }
    @media (max-width: 575px) {
      .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > span {
        font-size: 14px;
        line-height: 22px; } }
  .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > label {
    width: 24px;
    height: 24px;
    top: 50%;
    right: 24px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > label > i {
    width: 24px;
    height: 24px; }
  .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > label > i:before {
    width: 12px;
    height: 12px; }
    @media (max-width: 767px) {
      .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > label > i:before {
        width: 9px;
        height: 9px; }
        .sumoselect-wrapp.countries .SumoSelect > .CaptionCont > label {
            right: 10px;
        }
    }
  .sumoselect-wrapp.countries .SumoSelect > .optWrapper {
    width: 100%;
    top: auto;
    border: none; }
  .sumoselect-wrapp.countries .SumoSelect > .optWrapper > .options {
    padding: 0; }
  .sumoselect-wrapp.countries .SumoSelect > .optWrapper > .options li.opt {
    padding: 0 24px;
    margin: 0;
    text-align: left;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .sumoselect-wrapp.countries .SumoSelect > .optWrapper > .options li label {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    padding: 10px 0;
    text-transform: capitalize; }
    @media (min-width: 1200px) {
      .sumoselect-wrapp.countries .SumoSelect > .optWrapper > .options li label:hover {
        color: var(--purple); } }
    @media (max-width: 575px) {
      .sumoselect-wrapp.countries .SumoSelect > .optWrapper > .options li label {
        font-size: 14px;
        line-height: 22px; } }

.map {
  position: relative;
}
  .map .sumoselect-wrapp.countries {
    width: 394px;
    position: absolute;
    top: 10px;
    left: 80px;
    right: 0;
}
@media (max-width: 1500px) {
    .map .sumoselect-wrapp.countries {
        left: 30px;
    }
}
@media (max-width: 1199px) {
    .map .sumoselect-wrapp.countries {
        margin: 0;
        width: 250px;
    }
}
@media (max-width: 767px) {
    .map .sumoselect-wrapp.countries {
        left: 15px;
    }
}

.contacts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -30px; }
  @media (max-width: 1500px) {
    .contacts-wrapper {
      margin-bottom: -15px; } }
    @media (max-width: 1199px) {
        .contacts-wrapper {
            -webkit-box-pack: space-evenly;
                -ms-flex-pack: space-evenly;
                    justify-content: space-evenly; } }
  @media (max-width: 991px) {
    .contacts-wrapper {
      -ms-flex-pack: distribute;
          justify-content: space-around; } }

.contacts__item {
  background-color: #FFF;
  width: 18.33%;
  min-height: 177px;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 10px 20px 25px;
  margin-bottom: 30px; }
  .contacts__item:last-child {
    margin-right: 0; }
  @media (max-width: 1600px) {
    .contacts__item {
      width: 30.33%; } }
  @media (max-width: 1199px) {
    .contacts__item {
      width: 46.33%;
      margin-right: 0;  } }
  @media (max-width: 767px) {
    .contacts__item {
      width: 60%;
      padding: 20px;
      min-height: auto;
      margin-bottom: 15px;
    }
}
  @media (max-width: 575px) {
    .contacts__item {
      width: 100%; } }
  .contacts__item div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%; }
    .contacts__item div span {
      position: absolute;
      top: 0;
      left: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .contacts__item div span img {
        position: relative;
        display: inline-block;
        width: 24px;
        height: 24px; }
    .contacts__item div strong {
      font-size: 20px;
      line-height: 24px;
      font-weight: 400;
      margin-bottom: 15px; }
      @media (max-width: 1199px) {
        .contacts__item div strong {
          font-size: 18px;
          line-height: 30px; } }
          @media (max-width: 767px) {
            .contacts__item div strong {
              margin-bottom: 5px; } }
    .contacts__item div p, .contacts__item div a {
      font-size: 18px;
      line-height: 32px;
      color: var(--gray);
      /* cursor: pointer;  */
    }
    .contacts__item div p.open-popup, .contacts__item div a{
      cursor: pointer;
    }
      @media (max-width: 1199px) {
        .contacts__item div p, .contacts__item div a {
          line-height: 30px; } }
    .contacts__item div > strong, .contacts__item div > p, .contacts__item div > a {
      position: relative;
      /* display: block; */
      width: 100%;
      padding-left: 33px; }
    .contacts__item div a > strong {
      padding-left: 0;
      font-size: 18px;
      line-height: 32px;
      margin-bottom: 10px; }
    .contacts__item div p > strong {
      /* color: var(--purple); */
      padding-left: 0;
      font-size: 16px;
      line-height: 24px;
      font-weight: 500;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      
    }
    @media(min-width:1200px) {
      .contacts__item div p.open-popup > strong:hover {
        color: #242729;
      }
      .contacts__item div a:hover {
        color: #451841;
      }
    }

/*---------------------------------------------------------------------------------------------------------------------------*/
/* CONTACT BLOCK */
/*----------------------------------------------------------------------------------------------------------------------------*/
.contacts-col {
  margin-top: 30px; }

.contacts-col:nth-child(1), .contacts-col:nth-child(2), .contacts-col:nth-child(3) {
  margin-top: 0; }

/*contact-block*/
.contact-block {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  background-color: #FFF; }

.contact-block .h4 {
  margin-bottom: 20px; }

.contact-block-items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: calc(100% - 55px); }

.contact-block-items .contact-block-item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-block-items .contact-block-item:last-child {
  margin-bottom: 0; }

/* .contact-block-items .contact-block-item span {
  min-height: 48px; } */

.contact-block-items .contact-block-item.phone {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2; }

.contact-block-items .contact-block-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  min-width: 24px; }

.contact-block-items .contact-block-item span, .contact-block-items .contact-block-item a, .contact-block-items .contact-block-item p {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray); }

.contact-block-items .contact-block-item p {
  position: relative;
  display: block;
  width: 100%; }

.contact-block-items .contact-block-item span, .contact-block-items .contact-block-item p {
  margin-bottom: 5px;
  padding-left: 33px; }

.contact-block-items .contact-block-item span:last-child, .contact-block-items .contact-block-item p:last-child {
  margin-bottom: 0; }

.contact-block-items .contact-block-item a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

/*media*/
@media (min-width: 1200px) {
  .contact-block-items .contact-block-item a:hover {
    color: var(--purple); } }

@media (max-width: 1199px) {
  .contacts-col:nth-child(1), .contacts-col:nth-child(2) {
    margin-top: 0; }
  .contacts-col:nth-child(3) {
    margin-top: 30px; } }

@media (max-width: 767px) {
  .contacts-col {
    margin-top: 15px; }
  .contacts-col:nth-child(2), .contacts-col:nth-child(3) {
    margin-top: 15px; }
  .contact-block {
    padding: 20px 15px; } }

/*map*/
.map-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 34%;
  min-height: 400px; }

.infoBox {
  width: 450px !important; }

.infoBox > img {
  width: auto;
  z-index: 1; }

.info-box {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04); }

.info-box > .contact-block {
  padding: 25px 40px 35px; }

.info-box:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  left: -39px;
  right: auto;
  opacity: 1;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 25px solid transparent;
  border-right: 15px solid #FFF;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

@media (max-width: 767px) {
  .infoBox {
    width: 250px !important; }
  .info-box > .contact-block {
    padding: 20px 15px; } }

/*---TABS FOR DEALERS---*/
.dealers-wrapper {
  position: relative; }

.dealers-wrapper .h2 {
  position: absolute;
  top: 0;
  left: 0; }

.dealers .tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 60px; }

.dealers .tab-nav.active svg {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg); }

.dealers .tab-nav.active .tab-toggle {
  display: block; }

.dealers .tab-title {
  display: block;
  width: 480px;
  padding: 16px 20px;
  position: relative; }

.dealers .tab-toggle {
  display: none;
  position: absolute;
  left: auto;
  right: 0;
  top: 55px;
  width: 480px;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
  background: #FFF;
  z-index: 3; }

.dealers .tab-toggle div {
  padding: 16px 20px;
  display: block; }

.dealers .tab {
  display: none; }

.dealers .tab:nth-child(2) {
  display: block; }

.dealers .section-mob-arrow {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--black);
  position: absolute;
  top: 15px;
  z-index: 3;
  right: 15px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s; }

@media (max-width: 1280px) {
  .dealers .tabs {
    padding-left: 0;
    padding-right: 0; } }

@media (max-width: 991px) {
  .dealers-wrapper .h2 {
    position: relative;
    text-align: center;
    margin-bottom: 30px; }
  .dealers .tab-title {
    width: 100%; }
  .dealers .tab-nav {
    margin-bottom: 30px;
    position: relative; }
  .dealers .tab-toggle {
    width: 100%; } }
@media (max-width: 991px) {
    .dealers .tab-nav {
        margin-bottom: 15px;
    }
}

.team__item {
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    .team__item {
      margin-bottom: 30px; } }
  .team__item__caption {
    margin-top: 20px; }
    @media (max-width: 1199px) {
      .team__item__caption {
        margin-top: 20px; } }
    @media (max-width: 575px) {
      .team__item__caption {
        margin-top: 10px; } }
.team__item .h4 {
    font-size: 24px;
    line-height: 1.39em;
}        
  .team__item__title span {
    display: block;
    margin-top: 10px; }
    @media (max-width: 1200px) {
      .team__item__title span {
        margin-top: 5px; } }
  .team__item__text {
    margin-top: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 64px; }
    @media (max-width: 1199px) {
      .team__item__text {
        margin-top: 5px;
        margin-bottom: 5px;
        min-height: 60px; } }
    @media (max-width: 575px) {
      .team__item__text {
        min-height: auto; } }
  .team__item__email {
    color: var(--purple);
    word-break: break-word;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; }
    @media (min-width: 1200px) {
      .team__item__email:hover {
        color: var(--black); } }
.team__item__img {
    position: relative;
    height: 100%;
    padding-bottom: 111%;
}

.team__item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.media .section-nav__list,
.faq .section-nav__list,
.cabinet-container .section-nav__list,
.cabinet-history .section-nav__list {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 7px 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

/* .team .section-nav__list {
    width: 100%;
} */

.team .section-nav__item,
.media .section-nav__item,
.faq .section-nav__item,
.cabinet-container .section-nav__item,
.cabinet-history .section-nav__item {
    margin: 0 5px;
}

/* @media (max-width: 1500px) {
    .team .section-nav__list {
        width: max-content;
    }
} */

@media (max-width: 1199px) {
    .team .section-nav__list,
    .media .section-nav__list,
    .faq .section-nav__list,
    .cabinet-container .section-nav__list,
    .cabinet-history .section-nav__list {
        width: 100%;
        display: none;
    }
}

@media (max-width: 767px) {
    .team .section-nav__list,
    .media .section-nav__list,
    .faq .section-nav__list,
    .cabinet-container .section-nav__list,
    .cabinet-history .section-nav__list {
        padding: 0;
    }

    .team .section-nav__item,
    .media .section-nav__item,
    .faq .section-nav__item,
    .cabinet-container .section-nav__item,
    .cabinet-history .section-nav__item {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .row-team > div[class^=col] {
        padding: 0;
    }
}

/*---TABS FOR TEAM---*/
.tabs {
  width: 100%; }

.tab-nav {
  position: relative;
  text-align: center;
  margin-bottom: 30px; }

.tab-nav.active svg {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg); }

.tab-title {
  display: none;
  cursor: pointer;
  padding: 10px 15px;
  background: #FFF;
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400; }

.tab-toggle div {
  cursor: pointer;
  display: inline-block;
  padding: 12px 20px; }

.tab {
  display: none; }

.tab:nth-child(2) {
  display: block; }

@media (max-width: 1500px) {
  .tab-toggle div {
    padding: 10px 15px; } }

@media (max-width: 1280px) {
  .tabs {
    padding-left: 15px;
    padding-right: 15px; } }

@media (max-width: 1199px) {
  .tab-nav {
    position: relative;
    margin-bottom: 20px; }
  .tab-title {
    display: block; }
  .tab-toggle {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #FFF;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04); }
  .tab-nav.active .tab-toggle {
    display: block; }
  .tab-toggle div {
    display: block; } }

.privacy >div {
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .privacy> div {
      margin-bottom: 30px; } }


/*--------------------------------------------------------*/
/* 404 */
/*--------------------------------------------------------*/
.not-found {
  min-height: calc(100vh - 123px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto; }

.not-found-content {
  max-width: 576px; }

.not-found-content > * {
  margin-bottom: 30px; }

.not-found .not-found-text {
  color: #666666;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px; }

.not-found-content > *:last-child {
  margin-bottom: 0; }

.not-found .title {
  padding-top: 40px;
  margin-bottom: 20px;
  color: var(--black);
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  border-top: 1px solid #E6E6E6; }
  .not-found .title:before {
    content: '';
    background: #E6E6E6;
    width: 20px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: .3s all ease;
    transition: .3s all ease; }
  .not-found .title b {
    color: var(--purple);
    font-weight: 500; }

.not-found .not-found-img {
  max-width: 572px;
  width: 100%;
  margin: 0 auto; }

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

/*media*/
@media (max-width: 1500px) {
    .not-found {
        min-height: 100vh;
    }
    .not-found .not-found-text {
        font-size: 160px;
    }
    .not-found .not-found-img {
        max-width: 80%;
    }
}

@media (max-width: 991px) {
  .not-found {
    text-align: center; }
  .not-found-content {
    margin: 20px auto 0; }
  .not-found .not-found-img {
    margin-bottom: 30px; } }

@media (max-width: 575px) {
  /* .not-found {
    min-height: calc(100vh - 85px); } */

    .not-found-content {
        margin: 0;
    }

    .not-found .not-found-text {
        font-size: 110px;
        margin-bottom: 30px;
    }
    .not-found .title {
        font-size: 22px;
        padding-top: 30px;
        margin-bottom: 15px;
    }
    .not-found .text br {
        display: none;
    }
}

.news .news-wrapp {
  margin-bottom: -30px;
}

.news-wrapp > div[class^=col] {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .news .news-wrapp {
        margin-bottom: -15px;
    }
      
    .news-wrapp > div[class^=col] {
        margin-bottom: 15px;
    }
}

.product-main-container {
  position: relative; }

@media (max-width: 767px) {
  .product-slider {
    margin-bottom: 20px; } }

.product-slider .swiper-thumbs {
  position: relative; }

.product-slider .swiper-container {
  height: 505px; }
  @media (max-width: 1200px) {
    .product-slider .swiper-container {
      max-height: 450px;
      height: auto; } }
  @media (max-width: 576px) {
    .product-slider .swiper-container {
      overflow: visible; } }

.product-slider .swiper-thumbs-top {
  margin-left: 105px; }
  @media (max-width: 1200px) {
    .product-slider .swiper-thumbs-top {
      margin-left: 0; } }
  .product-slider .swiper-thumbs-top img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
    max-width: 100%; }

.product-slider .thumbs-imgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
  height: 100%;
  background: #fff;
  z-index: 2; }
  @media (max-width: 1200px) {
    .product-slider .thumbs-imgs {
      position: relative;
      width: 100%;
      margin-top: 20px; } }
  @media (max-width: 767px) {
    .product-slider .thumbs-imgs {
      display: none; } }
  @media (max-width: 1200px) {
    .product-slider .thumbs-imgs .swiper-container {
      max-height: initial; } }
  .product-slider .thumbs-imgs .swiper-container:not(.swiper-no-swiping) .swiper-wrapper {
    cursor: pointer; }
  .product-slider .thumbs-imgs .swiper-slide {
    border: 1px solid #979797;
    background-size: cover;
    background-position: center center;
    position: relative;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    cursor: pointer; }
  .product-slider .thumbs-imgs .thumbs-photo img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
    max-width: 100%; }


.swiper-product .swiper-slide {
  height: auto;
  padding-bottom: 30px;
} 
.swiper-product .swiper-controls {
  margin-top: 0;
}


.swiper-entry .swiper-controls .swiper-button-prev.swiper-button-lock,
.swiper-entry .swiper-controls .swiper-button-next.swiper-button-lock,
.swiper-entry .swiper-controls .swiper-pagination.swiper-pagination-lock {
  display: none;
}
  
@media (max-width: 1199px) {
  .swiper-product .swiper-slide {
    padding-bottom: 40px;
  } 

  .swiper-product .swiper-controls {
    margin-top: 20px;
  }
}

/* ============================ */
/* PRODUCTS */
/* ============================ */
.select-items-total {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 25px; }
  .select-items-total b {
    font-weight: 500; }
  @media (max-width: 575px) {
    .select-items-total {
      text-align: right;
      margin-bottom: 10px; } }

/* btn-loader */
.btn-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; }

.btn-loader-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--purple); }
  .btn-loader-inner span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #FFF;
    margin: 0 3px;
    -webkit-animation: scale 1s infinite ease;
            animation: scale 1s infinite ease; }
    .btn-loader-inner span:nth-child(2) {
      -webkit-animation-delay: 0.25s;
              animation-delay: 0.25s; }
    .btn-loader-inner span:nth-child(3) {
      -webkit-animation-delay: 0.25s;
              animation-delay: 0.25s; }

.btn-loader-complete {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--purple);
  background-image: url(../img/icon-prod_check.svg);
  background-position: center;
  background-repeat: no-repeat; }

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(2);
    transform: scale(1.5); }
  to {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(2);
    transform: scale(1.5); }
  to {
    -webkit-transform: scale(1);
    transform: scale(1); } }

/* end of btn-loader */
/* product */
.product-detail .row > [class*=col]{
  padding: 0; }
@media(max-width:1500px) {
    .product-detail .row > [class*=col]{
        padding: 0 15px; }
}


.product-row > [class*=col] {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .product-row > [class*=col] {
      margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .product-row {
        margin: 0 -7.5px;
    }

    .product-row > [class*=col] {
      margin-bottom: 55px;
      padding: 0 7.5px;
    }
}

.product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 30px 35px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFF; }
  @media (max-width: 1199px) {
    .product {
      padding: 20px; } }
  @media (max-width: 575px) {
    .product {
      padding: 10px; } }
  .product_image-wrap {
    position: relative;
    margin-bottom: 20px; }
    @media (max-width: 575px) {
      .product_image-wrap {
        margin-bottom: 10px; } }
  .product_image {
    position: relative;
    display: block;
    padding-bottom: 100%; }
    .product_image .img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 100%;
      -webkit-transition: 0.25s;
      transition: 0.25s; }
    .product_image .img-hover {
      opacity: 0;
      visibility: hidden; }
  .product_labels {
    position: absolute;
    top: -30px;
    left: -35px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    .product_labels li {
      display: block;
      padding: 16px 0;
      font-weight: 500;
      font-size: 11px;
      line-height: 22px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      -webkit-writing-mode: vertical-rl;
          -ms-writing-mode: tb-rl;
              writing-mode: vertical-rl; }
      .product_labels li.top {
        background-color: #FDECB8;
        color: var(--purple); }
      .product_labels li.action {
        background-color: var(--purple);
        color: #FDECB8; }
      @media (max-width: 575px) {
        .product_labels li {
          font-size: 10px;
          line-height: 18px;
          letter-spacing: 0; } }
    @media (max-width: 1199px) {
      .product_labels {
        top: -20px;
        left: -20px; } }
    @media (max-width: 575px) {
      .product_labels {
        top: -5px;
        left: -5px; } }
  .product .product_top-right {
    top: 15px;
    right: 15px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .product .product_top-right .add-list-btn {
      background: transparent;
      cursor: pointer; }
  .product .floating_buttons {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    height: 60px;
    -webkit-transition: 0.25s;
    transition: 0.25s; }
  .product .floating_buttons .add-find-price-product,
  .product .floating_buttons .remove-find-price-product.delete {
    margin-top: 0; }  
    @media (max-width: 1199px) {
      .product .floating_buttons {
        z-index: 1;
        opacity: 1;
        visibility: visible;
        bottom: -40px; } }
    @media (max-width: 1199px) {
      .product .floating_buttons,
      .product .floating_buttons .btn {
        height: 50px; } }
    @media (max-width: 575px) {
      .product .floating_buttons .btn {
        font-size: 13px;
        line-height: 16px;
        padding: 0 10px; } }
    .product .floating_buttons .hover-btn {
      width: 100%;
      background-color: var(--purple);
      border: 1px solid var(--purple);
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #FFF;
      padding: 13px 20px;
      cursor: pointer;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
      .product .floating_buttons .hover-btn .icon {
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 20px;
        margin-left: 15px;
        font-size: 0; }
      .product .floating_buttons .hover-btn svg {
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s; }
      @media (min-width: 1200px) {
        .product .floating_buttons .hover-btn:hover {
          background-color: #FFF;
          color: var(--purple); }
          .product .floating_buttons .hover-btn:hover svg path {
            stroke: var(--purple); } }
  .product_title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  /* .product_title {
    min-height: 3em; } */
    .product_title a {
      position: relative;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      max-height: 3em;
      color: var(--black);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      -webkit-transition: all .3s;
      transition: all .3s; }
      .product_title a:active {
        -webkit-transform: translateY(3px);
            -ms-transform: translateY(3px);
                transform: translateY(3px); }
      @media (min-width: 1200px) {
        .product_title a:hover {
          color: var(--purple); } }
      @media (max-width: 575px) {
        .product_title a {
          font-size: 14px;
          line-height: 18px;
          margin-bottom: 10px;} }
  .product_price-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 5px; }
    @media (max-width: 1199px) {
      .product_price-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media (max-width: 575px) {
      .product_price-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-bottom: 10px; } }
  .product_price-old {
    text-decoration: line-through;
    white-space: nowrap;
    color: var(--black);
    margin-left: 5px;
    margin-right: 15px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px; }
    @media (max-width: 1199px) {
      .product_price-old {
        margin: 0; } }
    @media (max-width: 575px) {
      .product_price-old {
        margin-right: 10px;
        font-size: 13px;
        line-height: 18px; } }
  .product_price {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--purple); }
    @media (max-width: 575px) {
      .product_price {
        font-size: 13px;
        line-height: 18px; } }
  .product_price-from {
    font-size: 14px;
    line-height: 20px;
    color: var(--black); }
    @media (max-width: 575px) {
      .product_price-from {
        font-size: 12px;
        line-height: 18px; } }
  .product_controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .product_plus {
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    cursor: pointer; }
    .product_plus:active {
      -webkit-transform: translateY(3px);
          -ms-transform: translateY(3px);
              transform: translateY(3px); }
    .product_plus span {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      width: 32px;
      height: 32px;
      background-color: transparent;
      border-radius: 50%;
      margin-right: 10px;
      border: 1px solid #E9E9E9;
      -webkit-transition: 0.25s;
      transition: 0.25s; }
      .product_plus span:before, .product_plus span:after {
        content: "";
        position: absolute;
        top: 14px;
        left: 10px;
        width: 10px;
        height: 2px;
        background: #4d4d4d;
        -webkit-transition: 0.25s;
        transition: 0.25s; }
      .product_plus span:after {
        width: 2px;
        height: 10px;
        top: 10px;
        left: 14px; }
  .product .product_plus {
    margin-top: 10px; }

@media (hover: hover) and (min-width: 992px), (-ms-high-contrast: none) {
  .product .product_plus {
    opacity: 0;
    visibility: hidden; }
  .product:hover {
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05); }
    .product:hover .product_image .img + .img {
      opacity: 0; }
    .product:hover .product_image .img-hover {
      opacity: 1;
      visibility: visible; }
    .product:hover .floating_buttons {
      opacity: 1;
      visibility: visible; }
    .product:hover .product_plus {
      opacity: 1;
      visibility: visible; } }

/*PRODUCT DETAIL*/
.product-detail-swiper {
  height: 100%;
  position: relative;
  max-width: 705px; }
  @media(max-width: 1199px){
    .product-detail-swiper {
        max-width: 100%; }
  }
  @media (max-width: 767px) {
    .product-detail-swiper {
        margin-top: 15px;
    }
  }
  .product-detail-swiper .swiper-slide {
    background-color: #FFF; }
  .product-detail-swiper .product-swiper-top .swiper-slide-item {
    width: 100%;
    height: 100%;
    position: relative; }
    .product-detail-swiper .product-swiper-top .swiper-slide-item .product-img {
      position: relative;
      height: 100%;
      padding-bottom: 100%; }
      .product-detail-swiper .product-swiper-top .swiper-slide-item .product-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain; }
  .product-detail-swiper .product-swiper-bottom {
    height: auto;
    margin-top: 10px; }
    .product-detail-swiper .product-swiper-bottom .product-img-small {
      position: relative;
      height: 100%;
      padding-bottom: 100%;
      cursor: pointer; }
      .product-detail-swiper .product-swiper-bottom .product-img-small img {
        -o-object-fit: cover;
           object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }

/* .product-top {
  margin-left: 45px; }
  @media (max-width: 1199px) {
    .product-top {
      margin-left: 0; } } */
@media (max-width: 1199px) {
    .product-detail-item {
        margin-top: 20px;
    }
}
.product-detail-item .product-code {
  font-size: 13px;
  font-weight: 300;
  line-height: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 25px; }
  @media (max-width: 1199px) {
    .product-detail-item .product-code {
      margin-bottom: 15px;} }

.product-detail-item .title {
  font-weight: 500;
  margin-bottom: 10px; }

.product-detail-item .text {
  margin-bottom: 30px; }
  @media (max-width: 1199px) {
    .product-detail-item .text {
      margin-bottom: 15px; } }

.product-info {
  background-color: #FFF;
  margin-bottom: 20px; 

}
  @media (max-width: 1199px) {
    .product-info {
      margin-bottom: 25px; } }
  @media (max-width: 575px) {
    .product-info {
      margin-bottom: 10px; } }
  .product-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #E6E6E6;
    font-size: 18px;
    line-height: 32px;
    color: var(--black); }
    .product-info__item:last-child {
      border: none; }
    @media (max-width: 767px) {
      .product-info__item {
        font-size: 16px;
        line-height: 24px; } }
  .product-info__name {
    width: 30%;
    padding: 10px 30px;
    border-right: 1px solid #E6E6E6;
    font-weight: 300; }
    @media (max-width: 767px) {
      .product-info__name {
        padding: 10px;
        width: 40%; } }
  .product-info__value {
    width: 70%;
    padding: 10px 30px;
    font-weight: 400; }
    @media (max-width: 575px) {
      .product-info__value {
        padding: 10px;
        width: 60%; } }

.product-variations {
  margin-bottom: 50px; }
  @media (max-width: 1199px) {
    .product-variations {
      margin-bottom: 25px; } }
  @media (max-width: 767px) {
    .product-variations {
      margin-bottom: 15px; } }
  @media (max-width: 575px) {
    .product-variations {
      margin-bottom: 0px; } }
  .product-variations__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px; }
    .product-variations__item:last-child {
      margin-bottom: 0; }
    @media (max-width: 1199px) {
      .product-variations__item {
        margin-bottom: 15px; } }
    @media (max-width: 575px) {
      .product-variations__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .product-variations__name {
    width: 30%;
    padding: 10px 0;
    font-size: 18px;
    line-height: 32px;
    color: var(--black); }
    @media (max-width: 575px) {
      .product-variations__name {
        font-size: 16px;
        line-height: 24px;
        width: 100%; } }
  .product-variations__value {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    line-height: 32px;
    color: var(--black); }
    .product-variations__value li {
      background-color: #FFF;
      padding: 12px 24px;
      font-size: 16px;
      line-height: 22px;
      font-weight: 400;
      text-transform: uppercase;
      text-align: center;
      color: var(--black);
      margin-right: 10px;
      cursor: pointer;
      border: 1px solid transparent;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
      .product-variations__value li:last-child {
        margin-right: 0; }
      .product-variations__value li.active {
        background-color: transparent;
        border: 1px solid var(--purple); }
      @media (max-width: 575px) {
        .product-variations__value li {
          font-size: 14px;
          padding: 10px; } }
    @media (max-width: 575px) {
      .product-variations__value {
        width: 100%; } }
    .product-variations__value .sumoselect-wrapp {
      width: 100%; }
      .product-variations__value .sumoselect-wrapp.select-box .color {
        width: 18px;
        height: 18px;
        margin-right: 15px;
        display: inline-block;
        position: relative; }
      .product-variations__value .sumoselect-wrapp .SumoSelect {
        max-width: 100%; }
      .product-variations__value .sumoselect-wrapp .SelectBox {
        background-color: #FFF;
        padding: 16px 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        @media (max-width: 767px) {
          .product-variations__value .sumoselect-wrapp .SelectBox {
            padding: 12px 20px; } }
        .product-variations__value .sumoselect-wrapp .SelectBox option {
          position: relative; }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .CaptionCont > span {
        cursor: pointer;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: var(--black);
        text-transform: capitalize; }
        @media (max-width: 575px) {
          .product-variations__value .sumoselect-wrapp .SumoSelect > .CaptionCont > span {
            font-size: 14px;
            line-height: 22px; } }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .CaptionCont > label {
        width: 24px;
        height: 24px;
        top: 50%;
        right: 24px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .CaptionCont > label > i {
        width: 24px;
        height: 24px; }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .CaptionCont > label > i:before {
        width: 12px;
        height: 12px; }
        @media (max-width: 575px) {
          .product-variations__value .sumoselect-wrapp .SumoSelect > .CaptionCont > label > i:before {
            width: 10px;
            height: 10px; } }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .optWrapper {
        width: 100%;
        top: auto;
        border: none; }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .optWrapper > .options {
        padding: 0; }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .optWrapper > .options li.opt {
        padding: 0 24px;
        margin: 0;
        text-align: left;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
      .product-variations__value .sumoselect-wrapp .SumoSelect > .optWrapper > .options li label {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: var(--black);
        padding: 10px 0;
        text-transform: capitalize; }
        @media (min-width: 1200px) {
          .product-variations__value .sumoselect-wrapp .SumoSelect > .optWrapper > .options li label:hover {
            color: var(--purple); } }
        @media (max-width: 575px) {
          .product-variations__value .sumoselect-wrapp .SumoSelect > .optWrapper > .options li label {
            font-size: 14px;
            line-height: 22px; } }

.product-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px; }
  @media (max-width: 1199px) {
    .product-controls {
      margin-bottom: 15px; } }
  @media (max-width: 575px) {
    .product-controls {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .product-controls .product_price-wrap {
    margin: 0; }
    @media (max-width: 1199px) {
      .product-controls .product_price-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    @media (max-width: 575px) {
      .product-controls .product_price-wrap {
        margin: 10px 0; } }
  .product-controls .product_price-old {
    text-decoration-thickness: 2px;
    -webkit-text-decoration-thickness: 2px;
    -moz-text-decoration-thickness: 2px;
    -ms-text-decoration-thickness: 2px;
    -o-text-decoration-thickness: 2px;
    margin-left: 0;
    margin-right: 20px;
    font-weight: 300;
    font-size: 26px;
    line-height: 36px; }
    @media (max-width: 575px) {
      .product-controls .product_price-old {
        font-size: 20px;
        line-height: 30px; } }
  .product-controls .product_price {
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    color: var(--purple); }
    @media (max-width: 575px) {
      .product-controls .product_price {
        font-size: 20px;
        line-height: 30px; } }
  .product-controls .product_price-from {
    font-size: 26px;
    line-height: 36px;
    color: var(--black); }
    @media (max-width: 575px) {
      .product-controls .product_price-from {
        font-size: 12px;
        line-height: 18px; } }

.product-btns .btn {
  margin-right: 50px; }
  .product-btns .btn:last-child {
    margin-right: 0; }
  @media (max-width: 767px) {
    .product-btns .btn {
      margin-right: 0;
      margin-bottom: 15px;
      height: 50px; }
      .product-btns .btn:last-child {
        margin-bottom: 0; } }
  .product-btns .btn .icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-left: 15px;
    font-size: 0; }

.product-attention {
  position: relative;
  background: #FFF;
  border: 1px solid rgba(69, 24, 65, 0.25);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 30px;
  margin-top: 30px; }
  .product-attention:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--purple);
    width: 34px;
    height: 2px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-left: -17px;
    margin-top: 30px; }
  .product-attention .text {
    margin-bottom: 0; }

/*PRODUCT DESCRIPTION*/
.description-item {
  margin-top: 90px; }
  @media (max-width: 1199px) {
    .description-item {
      margin-top: 30px; } }
  @media (max-width: 767px) {
    .description-item {
      margin-top: 10px; } }
  .description-item .title {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 25px; }
    .description-item .title.type2 {
      margin-bottom: 10px; }
  .description-item .text {
    line-height: 32px;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .description-item .text {
        margin-bottom: 15px; } }
    .description-item .text ul li {
      position: relative;
      padding-left: 30px; }
      .description-item .text ul li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 16px;
        width: 15px;
        height: 2px;
        background: var(--purple); }

@media (max-width: 991px) {
  .presentation__info {
    padding: 0 15px; } }

.presentation__info .text {
  margin-bottom: 20px; }
  @media (max-width: 991px) {
    .presentation__info .text {
      margin-bottom: 10px; } }

.slide-img {
  position: relative;
  height: 100%;
  padding-bottom: 56%; }
  .slide-img.pb-83 {
    padding-bottom: 83%; }
    @media (max-width: 991px) {
      .slide-img.pb-83 {
        padding-bottom: 56%; } }
  .slide-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover; }

@media (max-width: 575px) {
  .swiper-full {
    padding: 0; } }

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 560px;
  max-height: calc(56.3vw - 30px);
  border: 0; }

.bg-white {
  background-color: #FFF; }

.simple-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 991px) {
    .simple-box.type-2 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  @media (max-width: 991px) {
    .simple-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 575px) {
    .simple-box:first-child {
      margin-bottom: 0; } }
  .simple-box__item {
    width: 50%; }
  .simple-box__item.type2 {
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 90px;
    padding-left: 90px; }  
    @media (max-width: 1500px) {
      .simple-box__item.type2 {
        padding-right: 30px;
        padding-left: 30px; } }
    @media (max-width: 1199px) {
      .simple-box__item {
        padding-left: 30px;
        padding-right: 30px; } }
    @media (max-width: 991px) {
      .simple-box__item {
        width: 100%;
        padding: 0; } 
      .simple-box__item.type2 {
        padding-right: 15px;
        padding-left: 15px; } }
  @media (max-width: 991px) {
    .simple-box__info {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .simple-box .text {
    margin-bottom: 40px; }
    @media (max-width: 991px) {
      .simple-box .text {
        margin-bottom: 15px; } }
  @media (max-width: 1199px) {
    .simple-box .simple-img {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 991px) {
    .simple-box .simple-img {
      padding-bottom: 63%; } }

.pl-30 {
  padding-left: 30px; }
  @media (max-width: 991px) {
    .pl-30 {
      padding-left: 15px; } }

.pr-30 {
  padding-right: 30px; }
  @media (max-width: 991px) {
    .pr-30 {
      padding-right: 15px; } }

.pl-90 {
  padding-left: 90px; }
  @media (max-width: 991px) {
    .pl-90 {
      padding-left: 15px; } }

.pr-90 {
  padding-right: 90px; }
  @media (max-width: 991px) {
    .pr-90 {
      padding-right: 15px; } }

.simple-item {
  position: relative; }

.btn.btn-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2; }

/*---CHECKOUT PAGE---*/
.delivery-form {
  padding: 45px 55px 60px 55px; }
  @media (max-width: 991px) {
    .delivery-form {
      padding: 30px 15px; } }
  @media (max-width: 767px) {
    .delivery-form {
      padding: 15px; } }
  .delivery-form .form-group {
    margin-bottom: 30px; }
    .delivery-form .form-group:first-child {
        margin-bottom: 30px; }
    @media (max-width: 991px) {
      .delivery-form .form-group {
        margin-bottom: 10px; } }
    .delivery-form .form-group .row {
      margin-left: 0;
      margin-right: 0; }
  .delivery-form .checkbox-wrapper .checkbox-entry-wrap {
    width: 40%;
    margin-bottom: 15px; }
    .delivery-form .checkbox-wrapper .checkbox-entry-wrap:nth-child(2n) {
      width: 30%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      @media (max-width: 575px) {
        .delivery-form .checkbox-wrapper .checkbox-entry-wrap:nth-child(2n) {
          width: 100%; } }
    .delivery-form .checkbox-wrapper .checkbox-entry-wrap:nth-child(3n) {
      width: 30%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      @media (max-width: 1199px) {
        .delivery-form .checkbox-wrapper .checkbox-entry-wrap:nth-child(3n) {
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      @media (max-width: 575px) {
        .delivery-form .checkbox-wrapper .checkbox-entry-wrap:nth-child(3n) {
          width: 100%; } }
    @media (max-width: 1199px) {
      .delivery-form .checkbox-wrapper .checkbox-entry-wrap {
        margin-right: 15px; } }
    @media (max-width: 575px) {
      .delivery-form .checkbox-wrapper .checkbox-entry-wrap {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 5px;
        width: 100%; } }
  .delivery-form .pay-part > .checkbox-entry-wrap span.privacy {
     font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--black); 
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .delivery-form .pay-part > .checkbox-entry-wrap span.privacy {
        margin-bottom: 10px;font-size: 16px; } }
    @media (min-width: 1200px) {
      .delivery-form .pay-part > .checkbox-entry-wrap span.privacy a:hover {
        text-decoration: underline; } }
    @media (max-width: 991px) {
      .delivery-form .pay-part > .checkbox-entry-wrap span.privacy a {
        line-height: 14px; } }
  .delivery-form .SumoSelect {
    max-width: 100%;
    margin-bottom: 10px; }
    .delivery-form .SumoSelect .SelectBox {
      padding: 16px 20px;
      background-color: var(--bg-gray); }
      .delivery-form .SumoSelect .SelectBox span {
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        color: var(--gray);
        text-transform: capitalize; }
    .delivery-form .SumoSelect > .CaptionCont > label {
      width: 40px; }
  .delivery-form .SumoSelect > .optWrapper {
    width: 100%;
    z-index: 3; }
  .delivery-form .SumoSelect.open > .optWrapper {
    top: 55px; }
  .delivery-form .SumoSelect > .optWrapper > .options li label {
    padding: 10px 24px;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray);
    text-transform: capitalize; }
  @media (max-width: 767px) {
    .delivery-form .border-top {
      padding-top: 0; } }

.delivery-message {
  margin-top: 30px;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px; }
  .delivery-message span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: var(--black); }
    .delivery-message span svg {
      margin-right: 10px; }

.delivery__main>.h4 {
  margin-bottom: 10px; }

.delivery__item {
  background: #fff;
  margin-bottom: 40px; }
  .delivery__item:last-child {
    margin-bottom: 0; }
  @media (max-width: 767px) {
    .delivery__item {
      margin-bottom: 20px; } }
  .delivery__item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px; }
    @media (max-width: 767px) {
      .delivery__item__header {
        padding: 10px; } }
    .delivery__item__header p {
      color: #000000;
      font-size: 20px;
      line-height: 30px;
      font-weight: 400;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (max-width: 767px) {
        .delivery__item__header p {
          font-size: 18px;
          line-height: 22px; } }
      .delivery__item__header p span {
        font-size: 14px;
        line-height: 15px;
        color: #fff;
        width: 27px;
        height: 27px;
        border-radius: 50%;
        background: var(--purple);
        margin-right: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        @media (max-width: 767px) {
          .delivery__item__header p span {
            display: none; } }
    @media (max-width: 767px) {
      .delivery__item__header img {
        max-width: 80px; } }
    .delivery__item__header.type-2 {
      padding-top: 30px;
      padding-bottom: 30px; }
      @media (max-width: 767px) {
        .delivery__item__header.type-2 {
          padding-top: 10px;
          padding-bottom: 10px; } }
  .delivery__item__content {
    border-top: 1px solid #E1E1E1;
    padding: 20px 30px 30px; }
    @media (max-width: 767px) {
      .delivery__item__content {
        padding: 10px; } }
    .delivery__item__content p strong {
      color: var(--black);
      font-weight: 500; }

.delivery__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px -30px 0;
}
@media (max-width: 1199px) {
    .delivery__footer {
        margin: 0 0 -30px 0;
    }
}
@media (max-width: 767px) {
    .delivery__footer {
        margin: 0 0 -15px 0;
    }
}
  .delivery__footer__item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    margin: 0 15px 0;
    margin-bottom: 30px;
    width: calc(33.3333% - 30px); }
    @media (max-width: 767px) {
      .delivery__footer__item {
        max-width: 545px;
        width: 100%;
        margin: 0 15px 15px;
        padding: 20px 15px; } }
    .delivery__footer__item img {
      margin: 0 auto;
      display: block; }
    .delivery__footer__item__title {
      font-weight: 400;
      font-size: 20px;
      line-height: 30px;
      color: #000;
      margin-top: 25px; }
      @media (max-width: 1200px) {
        .delivery__footer__item__title {
          margin: 15px 0;
          line-height: 24px; } }
    .delivery__footer__item text {
      line-height: 32px;
      color: #787878; }

.video .video-wrapp {
  margin-bottom: -30px; }

.video .video-item {
  margin: 0 auto 30px; }


/* .section.main-bg+.section.main-bg.faq {
  padding-top: 140px;}
  @media (max-width: 1500px) {
    .section.main-bg+.section.main-bg.faq {
      padding-top: 110px;} }
  @media (max-width: 1200px) {
    .section.main-bg+.section.main-bg.faq {
      padding-top: 80px;} }
  @media (max-width: 991px) {
    .section.main-bg+.section.main-bg.faq {
      padding-top: 70px;} }
  @media (max-width: 767px) {
    .section.main-bg+.section.main-bg.faq {
      padding-top: 30px;} } */

.faq .faq-wrapp {
  margin-bottom: 80px; }
  @media (max-width: 992px) {
    .faq .faq-wrapp {
      margin-bottom: 70px; } }
  @media (max-width: 767px) {
    .faq .faq-wrapp {
      margin-bottom: 40px; } }

.faq-tabs {
  width: 100%; }

@media (max-width: 1500px) {
  .faq-tabs .section-nav {
    width: 100%;
    height: 65px; } }
      
@media (max-width: 1199px) {
  .faq-tabs .section-nav {
    width: 100%;
    overflow: visible;
    height: auto; }
  .faq-tabs .section-mob-arrow {
    top: 10px; } }      

.panel {
  padding: 0 30px;
  margin-bottom: 10px;
  background: #fff; }
  @media (max-width: 767px) {
    .panel {
      padding: 0 30px 0 15px; } }
  .panel__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    color: var(--black);
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    position: relative; 
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;}
    @media (min-width: 1200px) {
      .panel__top:hover {
        color: var(--purple);} }
    @media (max-width: 767px) {
      .panel__top {
        padding: 10px 0;
        font-size: 16px;
        line-height: 24px; } }
    .panel__top svg {
      fill: var(--black);
      height: 24px;
      width: 24px;
      -webkit-transition: .3s all ease;
      transition: .3s all ease; }
      @media (max-width: 767px) {
        .panel__top svg {
          position: absolute;
          right: -25px; } }
    .panel__top.active {
      border-color: #E6E6E6; }
      .panel__top.active svg {
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg); }
      .panel__top.active:before {
        content: '';
        background: #E6E6E6;
        width: 20px;
        height: 4px;
        position: absolute;
        left: 0;
        bottom: -3px;
        -webkit-transition: .3s all ease;
        transition: .3s all ease; }
  .panel__bottom {
    padding: 20px 0; }


.panel .text ul li {
  position: relative;
  margin-bottom: 3px; }

.panel .text ul li {
  padding-left: 20px; }

.panel .text ul li {
  padding-left: 30px; }

.panel .text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 15px;
  height: 2px;
  background-color: var(--purple); }

.faq-form {
  background: #fff;
  padding: 75px 0 130px; }
  @media (max-width: 992px) {
    .faq-form {
      padding: 50px 15px 90px; } }
  @media (max-width: 767px) {
    .faq-form {
      padding: 30px 15px; } }
  .faq-form .form {
    max-width: 735px;
    width: 100%;
    margin: 0 auto; }
    .faq-form .form .form-title {
      margin-bottom: 10px; }
    .faq-form .form .text {
      margin-bottom: 30px; }
    .faq-form .form textarea.input {
      margin-bottom: 30px; }
      @media (max-width: 767px) {
        .faq-form .form textarea.input {
          margin-bottom: 10px; } }

@media (max-width: 767px) {
  .location-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden; } }

.location {
  height: 100vh; }
  @media (max-width: 1199px) {
    .location {
      height: auto; } }
  .location .container {
    max-width: 1530px; }
  @media (max-width: 1600px) {
    .location .container {
      max-width: 1140px; } }
  .location .banner-bg {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    @media (max-width: 575px) {
      .location .banner-bg {
        background-position: left center; } }
  .location .banner-align {
    vertical-align: middle;
    z-index: 2; }
  .location .banner-align.full-h {
    height: 100vh;
    padding: 90px 0 0 0;
    vertical-align: middle;
    z-index: 2; }
    @media (max-width: 575px) {
      .location .banner-align.full-h {
        padding: 15px 0;
        vertical-align: top; } }
    .location .banner-align.full-h .banner-content {
      position: relative;
      max-width: 540px;
      margin: 275px 0;
      text-align: left; }
      @media (max-width: 1500px) {
        .location .banner-align.full-h .banner-content {
          margin: 100px 0; } }
      @media (max-width: 991px) {
        .location .banner-align.full-h .banner-content {
          max-width: 100%; } }
      @media (max-width: 374px) {
        .location .banner-align.full-h .banner-content {
          margin: 20px 0; } }
  .location-logo {
    display: inline-block; }
    .location-logo img {
      height: 26px; }
  .location__title {
    font-size: 34px;
    font-weight: 300;
    line-height: 46px;
    /* color: rgba(255, 255, 255, 0.9); */
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .location__title {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 38px; } }
  .location__text {
    line-height: 1.4;
    /* color: rgba(236, 237, 237, 0.9); */
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
  font-weight: 400}
    @media (max-width: 767px) {
      .location__text {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 30px; } }
  .location__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .location__btns .lang-btn {
      /* color: var(--light-gray);
      border: 1px solid rgba(255, 255, 255, 0.2); */
      width: 100%;
      height: 50px;
      max-width: 262px;
      margin: 0;
      margin-right: 15px;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
      .location__btns .lang-btn:last-child {
        margin-right: 0; }
      .location__btns .lang-btn::before {
        display: none; }
      @media (min-width: 1200px) {
        .location__btns .lang-btn:hover {
          border-color: #FFF;
          background-color: #FFF;
          color: var(--black); } }
  .location .tabs {
    padding-left: 0;
    padding-right: 0; }
  .location .tab-nav {
    position: relative;
    margin-bottom: 15px; }
  .location .tab-title {
    display: block;
    padding: 16px 16px 16px 24px;
    background: #FFF;
    cursor: pointer; }
  .location .tab-nav i {
    background-image: none;
    opacity: 1;
    width: 24px;
    height: 24px; }
    .location .tab-nav i::before {
      content: '';
      position: absolute;
      left: auto;
      right: 16px;
      top: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      position: absolute;
      width: 9px;
      height: 9px;
      border-left: 1px solid var(--black);
      border-bottom: 1px solid var(--black);
      z-index: 2;
      -moz-transform: translate(-50%, -50%) rotate(-45deg);
      -o-transform: translate(-50%, -50%) rotate(-45deg); }
  .location .tab-nav.active i::before {
    top: calc(50% + 2px);
    transform: translate(-50%, -50%) rotate(135deg);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    -o-transform: translate(-50%, -50%) rotate(135deg); }
  .location .tab-toggle {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #FFF;
    z-index: 99; }
  .location .tab-toggle div {
    cursor: pointer;
    display: block;
    padding: 16px 16px 16px 24px; }
  .location .tab-toggle div.active span {
    color: var(--purple);
    font-weight: 500; }
  .location .tab {
    display: none; }
  .location .tab:nth-child(2) {
    display: block; }
  .location .tab-nav.active .tab-toggle {
    display: block; }

.mb-60 {
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    .mb-60 {
      margin-bottom: 30px; } }
  @media (max-width: 767px) {
    .mb-60 {
      margin-bottom: 10px; } }

@media (max-width: 767px) {
    .category .row {
        margin: 0 -7.5px;
        margin-bottom: -15px;
    }
    .category .row > div[class^=col] {
        padding: 0 7.5px;
        margin-bottom: 15px;
    }
}

.category__box {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer; }
  .category__box:before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 67%;
    background-color: #FFF;
    -webkit-transition-duration: 1s;
            transition-duration: 1s; }
    @media (max-width: 1199px) {
      .category__box:before {
        position: relative;
        height: 100%; } }
  @media (max-width: 1199px) {
    .category__box {
      background-color: #FFF; } }

@media (min-width: 1200px) {
  .category__box:hover::before {
    height: 100%;
    -webkit-transition-duration: 1s;
            transition-duration: 1s; }
  .category__box:hover .category__title {
    color: var(--purple); } }

.category__content {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 767px) {
    .category__content {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.category__title {
  margin-bottom: 50px;
  padding: 0 60px;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5em;
  text-align: center;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s; }
  @media (max-width: 1600px) {
    .category__title {
      font-size: 22px;
      padding: 0 40px;
      margin-bottom: 40px; } }
  @media (max-width: 1199px) {
    .category__title {
      font-size: 20px;
      padding: 0 20px;
      margin-bottom: 30px;  } }
  @media (max-width: 767px) {
    .category__title {
      margin-top: 20px;
      margin-bottom: 20px;
      font-size: 16px;} }
  @media (max-width: 575px) {
    .category__title {
      padding: 0 10px;
      margin-top: 0;
      margin-bottom: 20px; } }

.category__img {
  position: relative;
  width: 60%;
  margin-top: 60px;
  margin-bottom: 15px; }
  .category__img img {
    width: 100%;
    height: 100%; }
  @media (max-width: 575px) {
    .category__img {
      margin-top: 20px;
      width: 70%; } }

@media (max-width: 575px) {
  .category .btn {
    margin-top: 20px; } }

.price-product__wrapper {
  margin-right: 60px; }
  @media (max-width: 1199px) {
    .price-product__wrapper {
      margin-right: 0; } }
  .price-product__wrapper .products-wrapper {
    margin-bottom: 50px; }
@media (max-width: 767px) {
    .price-product__wrapper .products-wrapper {
        margin-bottom: 30px;
    } 
}
  .price-product__wrapper .title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    color: var(--black); }
    @media (max-width: 767px) {
      .price-product__wrapper .title {
        font-size: 20px;
        line-height: 26px; } }
.price-product__wrapper .prod_horiz .title {
    font-size: 16px;
    line-height: 24px;
}
@media (max-width: 767px) {
    .price-product__wrapper .prod_horiz .title {
        font-size: 14px;
        line-height: 18px;
    }
}
    @media (min-width: 1200px) {
      .price-product__wrapper .prod_horiz .title:hover {
        color: var(--purple); } }
  .price-product__wrapper .prod_horiz-title-wrapper {
    max-width: 100%; }
  .price-product__wrapper .prod_horiz:last-child {
    border-bottom: 1px solid #E6E6E6; }

.find-price-form {
  padding: 45px 125px 60px 125px;
  margin-top: 10px; }
  @media (max-width: 1500px) {
    .find-price-form {
      padding: 45px 80px 60px 80px; } }
  @media (max-width: 991px) {
    .find-price-form {
      padding: 45px 50px 60px 50px; } }
  @media (max-width: 575px) {
    .find-price-form {
      padding: 30px 15px; } }
  .find-price-form .btn {
    margin-top: 20px; }

@media (max-width: 767px) {
    .content-box .content {
        margin: 0 -7.5px;
    }
    .content-box .content > div[class^=col] {
        padding: 0 7.5px;
    }
}

.content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  height: 100%;
  background-color: #FFF;
  overflow: hidden; }
  @media (min-width: 1200px) {
    .content__item:hover .content__img {
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }
    .content__item:hover .content__title {
      color: var(--purple); } }

.content__img {
  position: relative;
  /* height: 100%; */
  padding-bottom: 75%;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  overflow: hidden; }
  .content__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }

.content__text {
  padding: 25px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #FFF; }
  @media (max-width: 767px) {
    .content__text {
      padding: 20px; } }
  @media (max-width: 575px) {
    .content__text {
      padding: 15px 10px; } }

.content__title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: var(--black);
  /* min-height: 64px; */
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}
  @media (max-width: 767px) {
    .content__title {
      font-size: 16px;
      line-height: 24px;
      min-height: 48px; } }

.content .download {
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--purple);
  height: 16px;
  padding: 0;
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s; }
  .content .download:before {
    display: none; }
  .content .download .icon {
    width: 16px;
    height: 16px;
    margin-left: 10px; }
    .content .download .icon svg path {
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
  @media (min-width: 1200px) {
    .content .download:hover {
      color: var(--black); }
    .content .download:hover svg path {
      stroke: var(--black); } }

.content .download-list li {
  /* width: calc(50% - 15px);
  margin-right: 15px; */
  margin-bottom: 30px;
  padding: 15px 30px 10px; 
/* 24.11 changes */
width: 100%;
margin-right: 0px;
}

  .content .download-list li:nth-child(2n) {
    margin-right: 0; }
  @media (max-width: 767px) {
    .content .download-list li {
      /* width: calc(50% - 5px);
      margin-right: 5px; */
      margin-bottom: 10px;
      padding: 10px 15px;
      /* 24.11 changes */
      width: 100%;
      margin-right: 0px; } }
  @media (max-width: 575px) {
    .content .download-list li {
      width: 100%;
      margin-right: 0; } }
  .content .download-list li a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.download-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* justify-content: space-between;  */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; 
}
  .download-list li {
    width: calc(33.33% - 10px);
    height: 90px;
    padding: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 767px) {
      .download-list li {
        width: calc(50% - 10px);
        height: 60px;
        padding: 10px 15px; } }
    @media (max-width: 575px) {
      .download-list li {
        width: 100%;
        margin-right: 0; } }
    .download-list li a {
      max-width: 70%;
      font-weight: 300;
      font-size: 18px;
      line-height: 32px;
      color: var(--black);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: all .3s;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -ms-transition: all .3s;
      -o-transition: all .3s; }
      @media (min-width: 1200px) {
        .download-list li a:hover {
          color: var(--purple); } }
      @media (max-width: 767px) {
        .download-list li a {
          font-size: 16px;
          line-height: 24px;
          max-width: 85%; } }
      @media (max-width: 575px) {
        .download-list li a {
          width: 100%;
          margin-right: 0; } }


/* table styles */

@media(min-width: 768px){
table{
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
table td, table th{
  border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    padding: 6px 8px;
}
}
@media(max-width: 767px){
  table{
    display: block;
    max-width: -moz-fit-content;
    max-width: -webkit-fit-content;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
    margin: 30px 0;
    padding: 0;
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
  }
  table td, table th{
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    padding: 6px 8px;
    white-space: break-spaces;
  }
}

/* 24.11 changes */
.footer-top-left img{
  height: 26px;
}

@media(max-width: 1500px){
  .footer-top-left img{
    height: 20px;
  }
}
@media(max-width: 1199px){
  .footer-top-left img{
    height: 28px;
  }
}

.tax-product_cat ul.filter-list-category > li > a{
	font-weight: 400;
}

.add-find-price-product{
  margin-top: 30px;
}

.add-find-price-product span{
  font-weight: 400;
}


/* 15.12 */

.download-list a{
  margin-right: auto;
}

.download-list img{
  margin: 0px 30px;
  cursor: pointer;
}

/* 28.12 */

.single-articles table td, .single-articles table th{
    max-width: 1px;
}