.dimensions .spec-item-list .spec-item {
  height: 0;
  opacity: 0;
  margin: 0;
  transition: 0.1s
}

.dimensions .spec-item-list {
    display: block;
    margin: 5px 0;
    width: 100%;
}

.spec-item.color {
    width: 25px;
    display: block;
    margin: 0;
}

.spec-item-list .spec-item.color {
  display: flex;
  border: 1px solid #dedede;
  height: 25px;
  padding: 2px;
  padding-left: 1px;
  padding-right: 3px;
  padding-top: 1px
}

.spec-item-list .spec-item.color label,
.spec-item-list .spec-item.active.color label {
  border: none
}

.spec-item-list .spec-item.active.color {
  border-color: #000;
}

.dimensions .spec-item-list .spec-item.active label {
  border: 1px solid #00c0b6;
  width: 100%;
  display: block;
}

.dimensions .spec-item-list.current {
  max-height: 241px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 20px;
}

.dimensions .spec-item label:hover {
  background: #00c0b6;
    color: white;
    border-color: #00c0b6;
    transition: 0.2s
}

.dimensions .spec-item label {
  width: 100%;
}

.dimensions .drop_icon {
    width: 15px;
    height: 15px;
    border: 1px solid #00c0b6;
    color: #00c0b6;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 27px;
    border-left: 0;
    width: 27px;
}

.dimensions .drop_icon:hover,
.specification-item.dimensions:hover {
  cursor: pointer;
}


.dimensions .spec-item-list.current .drop_icon {
  display: none;
}

.dimensions .spec-item-list .spec-item.active {
  opacity: 1;
  height: auto;
  transition: 0.1s
}

.dimensions .spec-item-list.current .spec-item {
  opacity: 1;
  height: auto;
  margin: 5px 0;
  width: 100%;
}

.dimensions .spec-item label {
  padding: 0;
}

.dimensions .spec-item-list.current label {
  padding: 5px 10px;
}

.dimensions .spec-item-list .spec-item.active label {
  padding: 5px 10px;
}

.spec-item.active:hover {
  background: #00c0b6;
    color: white;
}

.spec-item.active:hover .drop_icon {
  color: white;
  border-left: 1px solid white;
}

body{
  margin: 0;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

header, section, footer{
  width: 100%;
  display: block;
}

:lang(ro) .program_ru,
:lang(ru) .program_ro {
    display: none;
}




header.fixed{
  position: fixed;
  z-index: 100;
  animation: fadeIn .2s ease-in both;
}

header.out{
  position: fixed;
  z-index: 100;
  animation: fadeOut .2s ease-in both;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);

  }
  to {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
}





.container, .slider-container{
    margin-left: auto;
    margin-right: auto;
}


header{
  position: relative;
  z-index: 10;
}





@media(max-width: 400px){

   .header-section{
     height: 70px;
   }

}


@media(min-width: 401px) and(max-width: 1000px){

  .header-section{
    height: 75px;
  }
}

@media(min-width: 1001px){

  .header-section{
    height: 85px;
  }
}


.header_container{

  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
  position: relative;
  z-index: 1;
}

.container.header-container{
    max-width: none;
}



.header_logo{
   background: #127b83;
   position: relative;
   display: flex;
   align-items: center;
   flex-direction: row;
}

.header_logo:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #f5f5f5 transparent transparent;
}

.header_logo a{

  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;

}


    .menu__btn.open > span {
      transform: rotate(45deg);
    }
    .menu__btn.open span::before {
      top: 0;
      transform: rotate(0deg);
    }
    .menu__btn.open span::after {
      top: 0;
      transform: rotate(90deg);
    }


    .menu__btn {
      position: relative;
      width: 26px;
      min-width: 26px;
      height: 26px;
      cursor: pointer;
      z-index: 1;
      margin-right: 15px;
      display: none;
      align-items: center;
    }
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
      display: block;
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #fff;
      transition-duration: .25s;
    }
    .menu__btn > span::before {
      content: '';
      top: -8px;
    }
    .menu__btn > span::after {
      content: '';
      top: 8px;
    }





.header_ui {
    display: flex;
    align-items: center;
    position: relative;
}

.header_ui ul {
    display: flex;
    flex-direction: row;
}

.header_ui_item {
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: .2s ease;
    color: #fff;
    font-size: 18px;
    gap: 5px;
}

a.header_ui_item{
  text-decoration: none;
}

.header_ui_item:hover {
    background: #18a49d;
}

.header_ui_item span{
  font-size: 15px;
}

.header_ui_user_button i:last-child {
    font-size: 14px;
}

.header_ui_lang a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
}



.drop-panel {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    transition: .2s ease;
    transform: translateY(1rem);
    visibility: hidden;
    opacity: 0;
}

.user-ui-panel{
  position: relative;
}

.user-ui-panel:hover .drop-panel {
    opacity: 1;
    visibility: initial;
    transform: translateY(0rem);
}


.user-panel-list {
    background: #fff;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    -webkit-box-shadow: 0px 1px 10px 2px rgb(34 60 80 / 7%);
    -moz-box-shadow: 0px 1px 10px 2px rgba(34, 60, 80, 0.07);
    box-shadow: 0px 1px 10px 2px rgb(34 60 80 / 7%);
}

.user-panel-list a {
    text-decoration: none;
    color: #127b83;
    font-size: 14px;
    font-weight: 400;
    transition: .2s ease;
}



.minicart-panel {
    position: absolute;
    display: flex;
    flex-direction: row;
    transition: .2s ease;
    right: 0;
    padding-top: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(1rem);
}




.user-cart-panel:hover .minicart-panel, .user-cart-panel.active-panel .minicart-panel{
    opacity: 1;
    visibility: initial;
    transform: translateY(0rem);
}

.user-cart-panel:hover .header_ui_item, .user-cart-panel.active-panel .header_ui_item{
    background: #18a49d;
}


.user-cart-panel-list{
  background: #fff;
  padding: 15px 7px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  position: relative;
}

.minicart-list{
  display: flex;
  flex-direction: column;
  max-height: 372px;
  overflow-y: auto;
  padding-right: 7px;
}

/* width */
.minicart-list::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.minicart-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.minicart-list::-webkit-scrollbar-thumb {
  background: #127b83;
  border-radius: 10px;
}




.mc-card{
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #23c4b5;
  position: relative;
  margin-bottom: 7px;
}

.mc-card .mc-card-remove{
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 16px;
  transition: .2s ease;
}

.mc-card .mc-card-remove:hover{
  opacity: .5;
}

.minicart-list .mc-card:last-child{
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.mc-card.total{
  border-bottom: 0px;
  width: 100%;
  padding-bottom: 0;
}

.mc-card-total{
  width: 100%;
  display: flex;
  padding: 10px 0;
  justify-content: center;
  gap: 10px;
}

.mc-card-total span{
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.mc-card-total span:first-child{
  font-weight: normal;
}


.mc-card-total span.empty-card-info{
  padding: 10px 0 15px 0;
  text-transform: none;
}


.minicart-options{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  column-gap: 15px;
}

.minicart-options a{
  background: #40b9ae;
  color: #fff;
  font-size: 14px;
  padding: 7px 15px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: .2s ease;
}

.minicart-options a:hover{
  background: #18a49d;
}


.mc-card-media a{
   width: 80px;
   height: 80px;
   position: relative;
   display: flex;
}

.mc-card-media a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-card-meta{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mc-card-meta a{
    font-size: 14px;
    font-weight: 500;
    color: #313131;
    text-decoration: none;
}

.mc-card-price{
    margin-top: 6px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}




@media(max-width: 1000px){

   .header_menu {
    position: absolute;
    background: #fff;
    width: calc(100% - 60px);
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
     transform: translateY(calc(-100% + -15px));
    transition: .2s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100px);
    -webkit-box-shadow: 0px 1px 10px 2px rgb(34 60 80 / 2%);
    -moz-box-shadow: 0px 1px 10px 2px rgba(34, 60, 80, 0.02);
    box-shadow: 0px 1px 10px 2px rgb(34 60 80 / 2%);
   }

   .header_menu.active {
     transform: translateY(0);
    opacity: 1;
    visibility: initial;
    transform: translateY(75px);
    align-items: flex-start;
    max-height: 75vh;
    overflow: auto;
   }

   .header_menu nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
   }

   .header_menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    height: 100%;
   }

   .header_menu nav ul li {
      height: 100%;
      display: flex;
      align-items: center;
      position: relative;
      width: 100%;
   }

   .header_menu nav ul li a {
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    color: #185e63;
    transition: .2s ease;
    font-size: 16px;
    padding: 3px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
   }


   .header_menu .submenu-mobile-ul {
      display: none;
   }


   .header_menu ul li.open .submenu-mobile-ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 0 0 0;
   }

   .header_menu ul li.open .submenu-mobile-ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   }

   .header_menu ul li.open .submenu-mobile-ul li span {
    font-size: 16px;
    padding: 10px 30px;
    width: calc(100% - 60px);
    background: #127b83;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    align-items: center;
    text-transform: uppercase;
   }

   .header_menu ul li.open .submenu-mobile-ul li span a{
     color: #fff;
   }


   .header_menu ul li.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    }

   .header_menu ul li.open .submenu-mobile-ul li span i:first-child {
    font-size: 22px;
    padding-right: 15px;
   }

   .header_menu ul li.open .submenu-mobile-ul li span i:last-child {
    margin-left: auto;
    font-size: 20px;
   }

   .header_menu nav ul li ul {
    display: none;
    padding-top: 10px;
   }

   .header_menu ul li.open .submenu-mobile-ul li.open-last ul {
    display: flex;
    gap: 3px;
   }

   .header_menu ul li.open .submenu-mobile-ul li ul li {
    width: calc(100% - 25px);
    padding-left: 25px;
   }

   .header_menu ul li.open .submenu-mobile-ul li ul li a {
    text-transform: capitalize;
   }

   .header_menu ul li.open .submenu-mobile-ul li.active {
    padding-left: 10px;
   }

   .header_menu ul li.open .submenu-mobile-ul li.active a {
    padding: 4px 15px;
    background: #40b9ae;
    color: #fff;
    text-transform: capitalize;
    width: fit-content;
   }






   .header_menu.active .submenu-social {
    display: block;
    width: 100%;
    background: #40b9ae;
    margin-top: 15px;
   }

   .submenu-social ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
   }

   .submenu-social ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: .2s ease;
   }

   .submenu-social ul li a i {
    font-size: 20px;
   }

   .header_menu nav ul li a i {
    padding-right: 30px;
    font-size: 20px;
   }

   .header_menu .header_map {
    display: none;
   }

}



@media(max-width: 800px){

  .header_menu.active{
    transform: translateY(65px);
  }
}



@media(min-width: 801px) and (max-width: 1000px){

   .header_menu {
      width: 450px;
   }

}





@media(max-width: 400px){




   .container, .slider-container{
      width: calc(100% - 10px);
   }

   .container.header-container{
    width: 100%;
   }


   .header_container{
     margin: 0 0 5px 0;
     height: 65px;
   }

   .header_logo{
      padding: 0 40px 0 10px;
   }

   .header_logo:after{
      border-width: 0 35px 66px 0;
   }

   .header_logo .mobile{
     display: block;
   }

   .header_logo .default{
     display: none;
   }

   .header_logo a img{
      max-width: 35px;
   }

   .menu__btn{
    display: flex;
    margin-right: 10px;
   }

   .header_ui{
     padding: 0 10px 0 10px;
   }

   .header_ui ul{
     column-gap: 5px;
   }

   .header_ui_item{
     background: #40b9ae;
   }


   .drop-panel{
      right: 0;
      padding-top: 10px;
      width: 200px;
   }


   .minicart-panel{
      width: calc(100vw - 20px);
      right: 10px;
   }

   .mc-card-media a{
    width: 60px;
    height: 60px;
   }



}





@media(max-width: 300px){
  .li_map, .li_lang{
    display: none;
  }
}

@media(max-width: 375px){
  .li_lang{
    display: none;
  }
}


@media(max-width: 420px){

  .li_lang{
    display: none;
  }

}

@media(max-width: 450px){

/*  .li_search{
    display: none;
  }*/

  .li_fav{
    display: none;
  }


  .header_ui_user_button .icon-chevron-down{
    display: none;
  }


}


@media(min-width: 401px) and (max-width: 800px){

   .container, .slider-container{
      width: calc(100% - 10px);
   }


   .header_container{
     margin: 5px 0 5px 0;
     height: 65px;
   }

   .header_logo{
      padding: 0 40px 0 10px;
   }

   .header_logo:after{
      border-width: 0 35px 66px 0;
   }

   .header_logo .mobile{
     display: block;
   }

   .header_logo .default{
     display: none;
   }

   .header_logo a img{
      max-width: 35px;
   }

   .menu__btn{
    display: flex;
    margin-right: 10px;
   }

   .header_ui{
     padding: 0 10px 0 4px;
   }

   .header_ui ul{
     column-gap: 3px;
   }

   .header_ui_item{
     background: #40b9ae;
   }


   .drop-panel{
      right: 0;
      padding-top: 10px;
      width: 200px;
   }



   .minicart-panel{
      width: 75vw;
      right: 10px;
      max-width: 400px;
   }

   .mc-card-media a{
    width: 60px;
    height: 60px;
   }

}

@media(min-width: 801px) and (max-width: 1000px){

   .container, .slider-container{
      width: calc(100% - 20px);
   }


   .header_container{
     margin: 10px 0 10px 0;
     height: 65px;
   }

   .header_logo{
      padding: 0 50px 0 15px;
   }

   .header_logo:after{
      border-width: 0 35px 66px 0;
   }

   .header_logo .mobile{
     display: none;
   }

   .header_logo .default{
     display: block;
   }

   .header_logo a img{
      max-width: 140px;
   }

   .menu__btn{
    display: flex;
    margin-right: 15px;
   }

   .header_ui{
     padding: 0 15px 0 10px;
   }

   .header_ui ul{
     column-gap: 5px;
   }

   .header_ui_item{
     background: #40b9ae;
   }


   .drop-panel{
      right: 0;
      padding-top: 10px;
      width: 200px;
   }

   .minicart-panel{
      width: 75vw;
      right: 10px;
      max-width: 400px;
   }

   .mc-card-media a{
    width: 60px;
    height: 60px;
   }


}


.header-submenu {
    display: none;
}


@media(min-width: 1001px){

  .container, .slider-container{
    width: calc(100% - 20px);
  }

  .header_container{
     margin: 10px 0 10px 0;
     height: 75px;
   }

   .header_logo{
      padding: 0 50px 0 15px;
   }

   .header_logo:after{
      border-width: 0 50px 75px 0;
   }

   .header_logo .mobile{
     display: block;
   }

   .header_logo .default{
     display: none;
   }

   .header_logo a img{
      max-width: 35px;
   }

   .menu__btn{
    display: none
   }

   .header_ui{
     background: #23c4b5;
     padding: 0 15px 0 55px;
   }

   .header_ui:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 75px 50px 0 0;
    border-color: #f5f5f5 transparent transparent transparent;
   }

   .header_ui ul{
     column-gap: 2px;
   }

   .header_ui_item {
    padding: 6px 8px;
   }


   .drop-panel{
      right: 0;
      padding-top: 10px;
      width: 200px;
   }

   .minicart-panel{
      width: 75vw;
      right: 15px;
      max-width: 400px;
   }

   .mc-card-media a{
    width: 60px;
    height: 60px;
   }

   .header_menu {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
    padding: 0 5px 0 5px;
   }

   .header_menu nav {
    height: 100%;
    display: flex;
    align-items: center;
   }

   .header_menu nav ul {
    display: flex;
    flex-direction: row;
    gap: 7px;
    height: 100%;
    align-items: center;
   }

   .header_menu nav ul li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
   }

   .header_menu nav ul li a {
     font-size: 14px;
     text-decoration: none;
     font-weight: 400;
     text-transform: uppercase;
     padding: 0 5px;
     color: #185e63;
     transition: .2s ease;
   }

   .header_menu nav ul li:not(.active) a:hover {
    color: #23c4b5;
   }

   .header_menu:not(.active) nav ul li.active a:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #007a82;
    cursor: default;
   }


   .header_menu nav ul li ul{
    display: none;
   }

   .submenu-social{
    display: none;
   }

   .header_map{
    display: none;
   }



   .header-submenu {
    position: absolute;
    background: #fff;
    width: calc(100% - 20px);
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    transition: .2s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(1rem);
    -webkit-box-shadow: 0px 1px 10px 2px rgb(34 60 80 / 2%);
    -moz-box-shadow: 0px 1px 10px 2px rgba(34, 60, 80, 0.02);
    box-shadow: 0px 1px 10px 2px rgb(34 60 80 / 2%);
    z-index: 10;
   }

   .header-submenu.active {
    /* transform: translateY(0); */
    opacity: 1;
    visibility: initial;
    transform: translateY(-10px);
   }

   .submenu-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 10px;
   }

   .submenu-items {
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 10px;
   }

   .submenu-main{
      flex-grow: 1
   }

   .submenu-main ul.submenu-main-ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
   }

   .submenu-main ul.submenu-main-ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
   }

   .submenu-main ul.submenu-main-ul li a.submenu-item-header {
    display: flex;
    background: #127b83;
    padding: 15px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    align-items: center;
    text-decoration: none;
   }

   .submenu-main ul.submenu-main-ul li a.submenu-item-header i {
    font-size: 24px;
    padding-right: 10px;
   }

   .submenu-main ul ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    gap: 3px;
   }

   .submenu-main ul.submenu-main-ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
   }

   .submenu-main ul.submenu-main-ul ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #464343;
    padding: 6px 10px;
    transition: .2s ease;
   }

   .submenu-main ul.submenu-main-ul ul li a:hover {
    background: #f0f4f4;
    padding-left: 15px;
   }

   .submenu-main ul.submenu-main-ul ul li.active a {
    background: #18a49d;
    color: #fff;
   }

   .submenu-second{
   }

   .submenu-second ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
   }

   .submenu-second ul li a {
    display: flex;
    background: #f5f5f5;
    padding: 15px 18px;
    color: #127b83;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: .2s ease;
   }

   .submenu-second ul li a:hover {
    background: #dfebeb;
   }

   .submenu-image {
    width: 25%;
    display: none;
   }

   .submenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   }


}


@media(min-width: 1100px){

   .header_logo .mobile{
     display: none;
   }

   .header_logo .default{
     display: block;
   }

   .header_logo a img{
      max-width: 140px;
   }

}


@media(min-width: 1200px){


  .header_menu nav ul {
    gap: 10px;
   }

  .li_map{
    display: none;
  }

  .header_map{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header_map a {
    color: #007a82;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    background: #ede9e9;
    padding: 7px 15px;
    border-radius: 15px;
    transition: .2s ease;
  }

  .header_map a:hover {
    color: #fff;
    background: #40b9ae;
  }


  .header_map a.header_phone_link{
     padding: 0;
     background: transparent;
     margin-top: 5px;
     font-size: 16px;
  }

  .header_map a.header_phone_link:hover{
    color: #007a82;

  }


  .submenu-image{
    display: block;
  }

}






.slider-container{
     position: relative;
     overflow: hidden;
}

.slider-container .slider-item {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        overflow: hidden;
   }




.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-item-content{
  position: absolute;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-item-content .bg-text{
  font-weight: 400;
  font-size: 200px;
  line-height: 150px;
  color: #fff;
  opacity: .5;
  margin-left: -1%;
  letter-spacing: 3px;

  transform: scale(1.1);
  transition: all 1.5s ease;
}

.slider-item-content .bg-text small{
  font-size: 35px;
  color: #fff;
  padding-left: 15px;
}


.slider-item-content .title-text{

  font-size: 55px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 25px;

  transition: all 1.5s ease;
  transform: scale(1.3);
}


.slider-item-content .desc-text{
  font-size: 16px;
  color: #fff;
  padding: 7px 0;
  font-weight: 300;
  max-width: 50%;
  letter-spacing: 1px;

  transform: translateX(-100px);
  transition: all .5s ease;
}

.slider-item-content .desc-text p{
  margin-top: 0;
}


.slider-item-content .url{
  padding-top: 15px;

  transform: translateX(75px);
  transition: all .5s ease;
}

.slider-item-content .url a{
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}



@media(min-width: 1400px){

  .header_map{
    flex-direction: row;
  }

  .header_map a.header_phone_link {
    margin-left: 15px;
    padding: 7px 15px;
    background: #ede9e9;
    margin-top: 0px;
    font-size: inherit;
  }

  .header_map a.header_phone_link:hover{
    color: #fff;
    background: #40b9ae;
  }

}



@media(max-width: 400px){


   .slider-container .slider-item, .slider-container{
/*        height: 30vh;*/
          height: calc(100vh - 80px);
   }

   .slider-container .slider-item .big-media{
    display: none;
   }

   .slider-item-content{
    max-width: calc(100% - 80px);
   }

   .slider-item-content .bg-text{
    font-size: 50px;
    line-height: 1;
    display: flex;
    flex-direction: column;
   }

   .slider-item-content .title-text{
    font-size: 22px;
    padding-top: 15px;
   }

   .slider-item-content .desc-text{
    max-width: 100%;
    padding-top: 15px;
   }

   .slider-item-content .bg-text small{
    font-size: 22px;
  }

}

@media(max-width: 600px){

  .slider-item-content .bg-text small{
    padding-left: 0;
    font-size: 22px;
  }
}


@media(max-width: 800px){

  .slider-container .slick-prev {
    left: 0;
  }

  .slider-container .slick-next{
    right: 0;
  }

}



@media(min-width: 401px) and (max-width: 600px){


   .slider-container .slider-item, .slider-container{
/*        height: 30vh;*/
          height: calc(100vh - 80px);
   }


   .slider-container .slider-item .small-media{
     display: none;
   }

   .slider-item-content{
    max-width: 80%;
   }

   .slider-item-content .bg-text{
    font-size: 60px;
    line-height: 1;
    display: flex;
    flex-direction: column;
   }

   .slider-item-content .title-text{
    font-size: 28px;
    padding-top: 15px;
   }

   .slider-item-content .desc-text{
    max-width: 100%;
    padding-top: 15px;
   }

}



@media(min-width: 601px) and (max-width: 1000px){


   .slider-container .slider-item, .slider-container{
        height: calc(100vh - 80px);
   }


   .slider-container .slider-item .small-media{
     display: none;
   }

   .slider-item-content{
    max-width: 80%;
   }

   .slider-item-content .bg-text{
    font-size: 70px;
    line-height: 1;
   }

   .slider-item-content .title-text{
    font-size: 28px;
    padding-top: 15px;
   }

   .slider-item-content .desc-text{
    max-width: 100%;
    padding-top: 15px;
   }

}






@media(min-width: 1000px){

   .slider-container .slider-item, .slider-container{
        height: calc(100vh - 105px);
        min-height: calc(100vw / 3);
   }

   .slider-item-content{
      max-width: 80%;
   }


   .slider-item-content .bg-text{
    font-size: 90px;
    line-height: 1;
   }

   .slider-item-content .title-text{
    font-size: 35px;
    padding-top: 15px;
   }


}


@media(min-width: 1260px){


  .container{
    max-width: 1200px;
  }

  .slider-item-content{
     max-width: 1200px;
   }

   .slider-item-content .bg-text{
    font-size: 90px;
    line-height: 1;
   }

   .slider-item-content .title-text{
    font-size: 35px;
    padding-top: 15px;
   }

}


@media(min-width: 1400px){
   .container{
    max-width: 1380px;
  }
}




.slick-active .slider-item-content *{
  transform: unset;
}












.category-block-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 125%;
}

.category-block-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.category-block-item a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
    transition: .2s ease;
    z-index: 1;
}

.category-block-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.category-block-item a .cbi-holder {
    position: absolute;
    width: calc(100% - 50px);
    bottom: 0;
    left: 0;
    text-transform: uppercase;
    background: rgb(0 0 0 / 30%);
    padding: 25px;
    z-index: 2;
}

.category-block-item a .cbi-holder span {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    max-width: 35%;
}





@media(max-width: 400px){

    .main-category-block {
       padding: 5px 0;
     }

    .category-blocks {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }


}


@media(min-width: 401px) and (max-width: 800px){

    .main-category-block {
       padding: 5px 0;
     }

    .category-blocks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5px;
        grid-row-gap: 5px;

    }


    .category-block-item a .cbi-holder span {
        font-size: 14px;
        max-width: 100%;
    }

    .category-block-item:last-child{
      display: none;
    }


}


@media(min-width: 801px){
   .main-category-block {
       padding: 15px 0;
   }

   .category-blocks {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 15px;
        grid-row-gap: 15px;

    }


    .category-block-item a:hover img {
      -webkit-transform: scale(1);
      transform: scale(1);
    }


}


@media(min-width: 1000px){

   .main-category-block {
       padding: 60px 0 30px 0;
   }

   .category-blocks {
        column-gap: 30px;
        grid-row-gap: 30px;

    }
}








.tabs-products-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tabs-products-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 10px;
    padding-bottom: 25px;
}

.tabs-products-nav button {
    padding: 15px 15px;
    border-radius: 0;
    background: #23c4b5;
    color: #fff;
    border: 0px;
    cursor: pointer;
    font-size: 16px;
    transition: .2s ease;
}

.tabs-products-nav button.active {
    background: #127b83;
    cursor: default;
}

.tabs-products-nav button:not(.active):hover {
    background: #18a49d;
}




@media(max-width: 800px){

   .main-tabs-products {
    padding: 10px 0;
   }

   .tabs-products-nav button {
    padding: 7px 15px;
    background: #23c4b5;
    font-size: 14px;
  }

  .tabs-products-nav{
    padding-bottom: 15px;
  }

}


@media(min-width: 801px){

   .main-tabs-products {
    padding: 15px 0;
   }

   .tabs-products-nav button {
    padding: 7px 15px;
    background: #23c4b5;
    font-size: 14px;
  }

  .tabs-products-nav{
    padding-bottom: 15px;
  }

}






.tabs-products-items{
  display: none;
}

.tabs-products-items.active{
  display: block;
}


.tabs-products-slide .slick-list {
    margin: 0 -5px;
}

.tabs-products-slide .slick-slide{
  margin: 0 5px;
}

.tabs-products-slide .slick-prev, .tabs-products-slide .slick-next{
   top: calc(50% - 28px);
}



@media(max-width: 500px){

   .tabs-products-items {
     grid-template-columns: repeat(1, 1fr);
     column-gap: 15px;
   }


}


@media(min-width: 501px) and (max-width: 800px){

   .tabs-products-items {
     grid-template-columns: repeat(2, 1fr);
     column-gap: 5px;
   }

   .tabs-products-items .product-card{
    display: none;
   }

   .tabs-products-items .product-card:nth-child(-n+2){
    display: block;
   }


}


@media(min-width: 801px) and (max-width: 1000px){

   .tabs-products-items {
     grid-template-columns: repeat(3, 1fr);
     column-gap: 10px;
   }

   .tabs-products-items .product-card{
    display: none;
   }

   .tabs-products-items .product-card:nth-child(-n+3){
    display: block;
   }

   .product-card .product-caption {
    opacity: 1;
    transform: translateY(0);
  }

}


@media(min-width: 1001px){

   .main-tabs-products {
     padding: 35px 0 35px 0;
   }



}





.product-card {
    display: flex;
    flex-direction: column;
}

.product-media {
    width: 100%;
    position: relative;
    padding-bottom: 60%;
    background: #ccc;
}

.product-media a {
    position: absolute;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.product-media a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-labels {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: row;
}

.product-labels span {
    padding: 2px 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px;
}

@media(min-width: 1000px){
  .product-labels span{
    padding: 4px 8px;
    font-size: 12px;
  }
}

.product-labels span.new{
    background: #00c0b6;
  }

  .product-labels span.sale{
    background: red;
  }

  .product-labels span.bestseller{
    background: #0278fe;
  }

  .product-labels span.pending{
    background: #ff6400;
  }

  .product-labels span.extra-sale{
    background: #000;
  }

  .product-labels span.boutlet{
    background: #000;
  }


.product-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: fit-content;
    align-items: center;
    height: fit-content;
    column-gap: 4px;
    opacity: 0;
    transform: translateY(1rem);
    transition: .2s ease;
}


.product-caption button, .product-caption a{
    background: #40b9ae;
    width: 45px;
    height: 45px;
    border: 0px;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
    position: relative;
}



.product-caption button:hover, .product-caption a:hover {
    background: #18a49d;
}


.product-caption button.in-cart, .product-caption button.in-cart:hover{
   background: #127b83;
}



.product-meta {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.product-meta a {
    font-size: 16px;
    font-weight: 500;
    color: #313131;
    text-decoration: none;
}

.product-meta .product-price {
    margin-top: 6px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #127b83;
}

.product-meta .product-price .sale-price {
    color: #999;
    text-decoration: line-through;
    padding-right: 10px;
}

@media(max-width: 768px){
  .product-meta .product-price{
    font-size: 15px;
  }
}


@media(max-width: 768px){

  .product-card .product-caption{
    display: none;
  }
}




   .product-card:hover .product-caption {
    opacity: 1;
    transform: translateY(0);
   }






.main-promo-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.main-promo-container:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
    top: 0;
    z-index: 1;
}

.main-promo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}


.main-promo-container a {
    position: absolute;
    z-index: 2;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}


.main-promo-container a h2 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 25px;
    transition: .2s ease;
}


.main-promo-container a span {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 40px;
}


.main-promo-container a:hover h2 {
    padding-bottom: 10px;
}

@media(min-width: 401px) and (max-width: 800px){

  .main-promo-container {
       width: calc(100% - 10px);
  }

}


@media(min-width: 801px){

  .main-promo-container {
       width: calc(100% - 20px);
  }

}

@media(max-width: 800px){

    .main-promo {
       padding: 15px 0;
    }

    .main-promo-container {
       padding-bottom: 45%;
    }

    .main-promo-container a h2 {
      font-size: 26px;
      padding-bottom: 15px;
    }

    .main-promo-container a span {
        font-size: 14px;
        padding: 10px 20px;
        font-weight: 500;
        border-radius: 40px;
    }

}


@media(min-width: 801px) and (max-width: 1000px){

    .main-promo {
       padding: 15px 0;
    }

    .main-promo-container {
       padding-bottom: 35%;
    }
}

@media(min-width: 1001px){

    .main-promo {
       padding: 35px 0;
    }

    .main-promo-container {
       padding-bottom: 20%;
    }
}



.text-content {
    color: #282828;
}

@media(max-width: 1000px){
  .text-content{
    padding: 0 15px;
  }
}

.text-content h1 {
    font-size: 22px;
    color: #008080;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.text-content h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .5px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.7;
    margin-top: 0;
}

.text-content a{
  text-decoration: none;
  color: #127b83;
}

.text-content strong{
  font-weight: 500;
}

.text-content p:last-child{
  margin-bottom: 0;
}


@media(max-width: 400px){



  .main-text .container{
    width: calc(100% - 20px);
  }
}

@media(max-width: 800px){

  .main-text {
    padding: 15px 0;
  }

  .text-content h1 {
    font-size: 18px;
  }

  .text-content h2 {
    font-size: 16px;
    font-weight: 500;
  }

  .text-content p {
    font-size: 15px;
    letter-spacing: .5px;
    line-height: 1.5;
   }
}

@media(min-width: 801px) and (max-width: 1000px){
   .main-text {
    padding: 25px 0;
  }

  .text-content h1 {
    font-size: 18px;
  }

  .text-content h2 {
    font-size: 16px;
    font-weight: 500;
  }

  .text-content p {
    font-size: 15px;
    letter-spacing: .5px;
    line-height: 1.5;
   }
}

@media(min-width: 1001px){
  .main-text{
    padding-bottom: 25px;
  }
}









.section-header {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}



.section-header .h2 {
    color: #127b83;
    font-size: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 500;
}


.main-news-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.mn-item-media {
    width: 100%;
    position: relative;
    padding-bottom: 60%;
    background: #ccc;
}

.mn-item-media a {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



.mn-item-media a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
    transition: .2s ease;
    z-index: 1;
}

.mn-item-media a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.main-news-item:hover .mn-item-media a img {
    -webkit-transform: scale(1);
    transform: scale(1);
}


.mn-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #00c0b6;
    font-size: 12px;
    color: #fff;
    padding: 8px 12px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
}

.mn-item-meta {
    margin-top: 15px;
}

.mn-item-meta a {
    font-size: 16px;
    font-weight: 500;
    color: #313131;
    text-decoration: none;
    transition: .2s ease;
}

.mn-item-meta a:hover {
    color: #00c0b6;
}

.mn-item-short {
    display: block;
    padding-top: 10px;
    max-height: 83px;
    overflow: hidden;
}

.mn-item-short p {
    letter-spacing: .5px;
    margin-bottom: 15px;
    color: #aeaeae;
    font-size: 14px;
    margin-top: 0;
    line-height: 1.5;
}

.mn-item-short p strong{
  font-weight: 500;
}





@media(max-width: 400px){

  .main-news{
    padding: 15px 0;
  }

  .section-header{
    padding-bottom: 15px;
  }

  .section-header .h2 {
    font-size: 16px;
  }


  .main-news-item{
    display: none;
  }

  .main-news-item:nth-child(1){
    display: block;
  }
}


@media(min-width: 401px) and (max-width: 800px){

  .main-news{
    padding: 15px 0;
  }

  .section-header{
    padding-bottom: 15px;
  }

  .section-header .h2 {
    font-size: 18px;
  }


  .main-news-item{
    display: none;
  }

  .main-news-item:nth-child(-n+2){
    display: block;
  }
}


@media(min-width: 621px){

  .main-news-grid {
     margin: 0 -5px;
  }

  .main-news-grid .slick-slide {
    margin: 0 5px;
  }



}


@media(min-width: 801px){

  .main-news{
    padding: 15px 0;
  }

  .section-header{
    padding-bottom: 25px;
  }

  .section-header .h2 {
    font-size: 18px;
  }




  .main-news-item{
    display: none;
  }

  .main-news-item:nth-child(-n+3){
    display: block;
  }
}







.assets-grid {
    width: 100%;
    display: flex;
    column-gap: 15px;
}

.asset-item {
    background-color: #edecec;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0;
}

.assets-grid .partners {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    column-gap: 25px;
    justify-content: space-evenly;
    width: calc(100% - 60px);
    padding: 0 30px;
}

.partner-item {
    position: relative;
    overflow: hidden;
}

.partner-item img {
    height: 40px;
}


.subscribes {
    width: calc(100% - 60px);
    padding: 0 30px;
    display: flex;
    justify-content: center;
}

.subscribe-content {
    display: flex;
    flex-direction: column;
}

.subscribe-content .h3 {
    font-size: 22px;
    font-weight: 500;
}

.subscribe-form {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.subscribe-form input {
    padding: 10px 15px;
    line-height: 1.42;
    border: 1px solid #eee;
    flex-grow: 1;

}

.subscribe-form input:focus{
  outline: none;
}

.subscribe-form button {
    height: 41px;
    font-size: 16px;
    font-weight: 500;
    background-color: #00c0b6;
    border: 0;
    padding: 0 15px;
    color: #fff;
    cursor: pointer;
    width: fit-content;
}


@media(max-width: 650px){

   .partners .partner-item:last-child{
      display: none;
   }

}


@media(max-width: 800px){

   .assets-grid{
     flex-direction: column;
     gap: 5px;
   }


   .asset-item {
      padding: 25px 0;
   }

   .subscribes {
    width: calc(100% - 30px);
    padding: 0 15px;
   }

   .subscribe-content .h3{
    font-size: 14px;
   }

   .subscribe-form {
     flex-wrap: nowrap;
   }

   .subscribe-form input{
        flex-grow: 1;
   }

   .subscribe-form button{
    font-size: 14px;
   }


}


@media(min-width: 801px) and (max-width: 1000px){


   .main-assets{
     padding: 25px 0;
   }

   .asset-item {
      padding: 25px 0;
   }

   .subscribe-content .h3{
    font-size: 14px;
   }

   .subscribes {
    width: calc(100% - 30px);
    padding: 0 15px;
   }

   .subscribe-form {
     flex-wrap: nowrap;
   }

   .subscribe-form input{
        flex-grow: 1;
   }

   .subscribe-form button{
    font-size: 14px;
   }

   .partners .partner-item:last-child{
      display: none;
   }

}



footer {
    padding-bottom: 40px;
}

.footer-head-menu {
    width: 100%;
    background: #edecec;
    margin-top: 15px;
}



.footer-head-menu ul li a:hover {
    color: #23c4b5;
}


@media(max-width: 600px){

  .footer-head-menu ul {
    width: calc(100% - 30px);
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-head-menu ul li {
    padding: 4px 0px;
    position: relative;
}

.footer-head-menu ul li:first-child {
    padding-left: 0;
}

.footer-head-menu ul li a {
    text-decoration: none;
    color: #127b83;
    font-size: 15px;
    line-height: 1;
    transition: .2s ease;
}


  .footer-head-menu ul li:last-child {
    display: none;
  }

}


@media(min-width: 601px){

   .footer-head-menu ul {
    width: calc(100% - 30px);
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
}

.footer-head-menu ul li {
    padding: 4px 15px;
    position: relative;
}

.footer-head-menu ul li:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    background: #ccc;
}

.footer-head-menu ul li:last-child:before{
  display: none;
}

.footer-head-menu ul li:first-child {
    padding-left: 0;
}

.footer-head-menu ul li a {
    text-decoration: none;
    color: #127b83;
    font-size: 15px;
    line-height: 1;
    transition: .2s ease;
}


}





.footer-menu-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}


.footer-menu {
    display: flex;
    flex-direction: column;
}


.footer-menu-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    text-decoration: none;
}



.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #3d3d3d;
    transition: .2s ease;
}

.footer-menu ul li a:hover {
    color: #23c4b5;
}

.menu-with-icon ul li i {
    padding-right: 5px;
    width: 20px;
    color: #127b83;
    font-size: 18px;
}

.menu-with-icon ul li {
    display: flex;
}


@media(max-width: 600px){


     .footer-menu-container{
        flex-direction: column;
        padding-top: 25px;
        gap: 10px;
     }

     .footer-menu-title{
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
     }

     .footer-menu-title:after {
          content: "\e904";
          font-family: 'icomoon' !important;
          speak: never;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
      }

      a.footer-menu-title:after{
        display: none;
      }

     .footer-menu ul {
          display: none;
      }


      .footer-menu.open ul {
          display: flex;
          padding: 25px 0 25px 25px;
      }


      .footer-menu.opened ul {
          display: flex;
          padding: 0;
          padding-top: 25px;
      }


      .footer-menu.opened span.footer-menu-title {
          display: none;
      }


}




@media(min-width: 601px) and (max-width: 950px){


     .footer-menu-container{
        flex-direction: row;
        padding-top: 25px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
     }

     .footer-menu-container > .footer-menu {
          flex: 1 2 30%; /*grow | shrink | basis */
      }

     .footer-menu-title{
        display: flex;
        justify-content: space-between;
        align-items: center;
     }


      a.footer-menu-title:after{
        display: none;
      }


     .footer-menu ul {
          padding-top: 15px;
      }


      .footer-menu.opened ul {
          display: flex;
          padding: 25px;
          width: fit-content;
          margin-left: auto;
          margin-right: auto;
      }



      a.footer-menu-title{
        display: none;
      }


      .menu-with-icon .footer-menu-title{
        justify-content: center;
      }


}


@media(min-width: 951px){


   .footer-menu-container {

    padding-top: 40px;
   }

   .footer-menu.opened a.footer-menu-title {
    display: none;
   }

   .footer-menu-title{
        padding-bottom: 20px;
   }

}













.footer-social-container {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    padding: 50px 0 25px 0;
}


.footer-social-container a {
    transition: .3s ease;
    background: #edecec;
    color: #127b83;
    border-radius: 100%;
    min-width: 40px;
    min-height: 40px;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-container a:hover {
    color: #00c0b6;
}

.footer-copyright {
    text-align: center;
    color: #127b83;
}



main.catalog{
  padding-bottom: 30px;
}




.breadcrumb {
    background: #f5f5f5;
    padding: 7px 15px;
    margin: 10px 0;
    border-radius: 0;
    overflow: hidden;
}

.breadcrumb a {
    display: inline;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.breadcrumb h1{
    display: inline;
    font-size: 14px;
    color: #000;
    margin: 0;
    font-weight: normal;
}

.breadcrumb__sep {
    margin: 0 10px;
}



.catalog-container{
  display: flex;
  flex-direction: row;
  gap: 15px;
}


.catalog-leftside{


    width: 20%;
    min-width: 20%;


}


.catalog-nav{
    border: 1px solid #eee;
    border-radius: 0;
    margin-bottom: 10px;
}


.catalog-nav-title{
  border-bottom: 1px solid #eee;
  display: flex;
  padding: 8px 10px;
}

.catalog-nav-title span{
  font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    color: #282828;
}

.catalog-nav-list{
  padding: 15px 8px;
}

.catalog-nav-list ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.catalog-nav-list ul li ul{
  display: none;
}

.catalog-nav-list ul a{
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #195e63;
  transition: .2s ease;
}

.catalog-nav-list ul li.active a{
  color: #00c0b6;
}

.catalog-nav-list ul a:hover{
  color: #00c0b6;
}



.sidebar-filter{

  display: flex;
  flex-direction: column;
  padding: 7px 10px 7px 10px;
}

.filter-title{
    font-size: 16px;
    position: relative;

}

.filter-content ul.dinamic-list {
    max-height: 205px;
    overflow-y: scroll;
    padding-right: 0;
    display: block;
    padding-right: 10px;
    padding-top: 0;
    margin-top: 10px;
}


.filter-content ul{
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.filter-content ul li{
    margin-bottom: 7px;
    border: 1px solid #00c0b6;
    font-size: 12px;
    padding: 7px 12px;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.filter-content ul li:last-child {
  margin-bottom: 0
}

.filter-content ul:not(.color-list) li.active {
    background: #00c0b6;
    color: #fff;
}

.filter-content input[type=checkbox] {
    display: none;
}


.filter-content .color-list{
  gap: 3px;
}

.filter-content .color-list li{
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  transition: .2s ease;
}


.filter-content .color-list li img{
  width: 17px;
  height: 17px;
}



.filter-content .color-list li.active {
    border: 1px solid #00c0b6;
}


.sidebar-filter.collapse-filter .filter-title{
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.sidebar-filter.collapse-filter .filter-title{
  cursor: pointer;
}

.sidebar-filter.collapse-filter .filter-title:after{
  content: '+';
  width: 15px;
  height: 15px;
  border: 1px solid #00c0b6;
  color: #00c0b6;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sidebar-filter.collapse-filter.active-filter .filter-title:after{
  content: '-';
}


.sidebar-filter.collapse-filter .filter-content{
  display: none;
}

.sidebar-filter.collapse-filter.active-filter .filter-content{
  display: block;
}



.filter-content ul.dinamic-list{
  flex-direction: row;
  flex-wrap: wrap;
}

@media(min-width:1200px){

   .tags-20 ul.dinamic-list li, .tags-25 ul.dinamic-list li{
    text-align: left;
   }


}

.tags-20 ul.dinamic-list {
  display: block;
  padding-right: 10px;
  margin-top: 10px;
  padding-top: 0;
}

.tags-20 ul.dinamic-list li {
  margin-bottom: 7px;
  text-align: left;
}

.tags-20 ul.dinamic-list li:last-child {
  margin-bottom: 0
}

ul.dinamic-list::-webkit-scrollbar {
  width: 7px;
}

ul.dinamic-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

ul.dinamic-list::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}


.catalog-content{
  flex-grow: 1
}


.catalog-sort {
    margin: 0 0 20px 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px;
    border-radius: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.catalog-sort label{
  margin-right: 10px;
}

.sorting-section{
    position: relative;
    width: 200px;
}

.sorting-section button{
  padding: 10px 20px;
  border: 0px;
  background-color: #00c0b6;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: .2s ease;
}

.sorting-section button:hover{
  background: #18a49d;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}


.sorting-section .dropdown-menu {
    right: 0;
    left: auto;
    width: calc(100% - 2px);
    padding: 0;
    box-shadow: none;
}


.open>.dropdown-menu {
    display: block;
}

.open>button, .open>button:hover{
  background: #127b83;
}


.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu>li.active>a{
    background: #23c4b5;
    color: #fff;
}



.pagination{
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 4px;
}

.pagination li a, .pagination li span{
   width: 35px;
   height: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   transition: .2s ease;
   cursor: pointer;
   color: #fff;
}

.pagination li a{
      background: #00c0b6;
}

.pagination li a:hover{
   background: #18a49d;
}

.pagination li span{
      background: #127b83;
}

.catalog-products .pagination{
  margin-top: 30px;
}




@media(max-width: 800px){

   .catalog-container{
        flex-direction: column;
     }

     .catalog-leftside{
      width: 100%;
     }

     .catalog-nav-title{
           align-items: center;
           justify-content: space-between;
           cursor: pointer;

     }



     .catalog-nav-title:after {
         content: '+';
         width: 15px;
         height: 15px;
         border: 1px solid #00c0b6;
         color: #00c0b6;
         display: flex;
         align-items: center;
         justify-content: center;
         line-height: 1;
     }

     .catalog-nav:not(.open) .catalog-nav-title{
           border-bottom: 0;
     }


     .catalog-nav:not(.open) .sidebar-filter{
      display: none;
     }


     .catalog-nav:not(.open) .catalog-nav-list{
      display: none;
     }


     .catalog-nav.open .catalog-nav-title:after{
        content: '-';
     }


}


@media(min-width: 801px) and (max-width: 1200px){


     .catalog-leftside{
        width: 230px;
     }


}




@media(max-width: 600px){

     .products-list{
         display: flex;
         flex-direction: column;
         gap: 15px;
     }

}


@media(min-width: 601px) and (max-width: 1000px){

     .products-list{
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         column-gap: 15px;
         grid-row-gap: 15px;
     }

}


@media(min-width: 1001px) and (max-width: 1200px){

     .products-list{
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         column-gap: 15px;
         grid-row-gap: 15px;
     }

}

@media(min-width: 1201px){
     .products-list{
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         column-gap: 15px;
         grid-row-gap: 15px;
     }
}


.filter-clear{
   color: #fff;
    background: #23c4b5;
    padding: 7px 15px;
    text-decoration: none;
    margin-left: 10px;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: .2s ease;
}


.filter-clear:hover{
  background: #18a49d;
}



.collapse {
    display: none;
}


.concepts-container{
  padding-top: 15px;
}


@media(min-width: 1000px){

    .concepts-container{
       width: 100%;
       margin: auto;
    }

    .concepts-container .text-content{
      padding-bottom: 50px;
    }
}


.concepts-grid-layout {
    display: block;
}

.concept-plain {
    margin-bottom: 75px;
    overflow: hidden;
}


@media(max-width: 768px){
  .concept-plain{
    margin-bottom: 35px;
  }


  .concept-plain-header img{
    display: none;
  }
}

.concept-plain-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
}

.concept-plain h3 {
    color: #127b83;
    margin-bottom: 0px;
    margin-top: 0px;
    line-height: 1;
    font-size: 35px;
    font-weight: 400;
}

.concept-plain h3 a {
    color: #127b83;
    text-decoration: none;
}

.concept-plain h3 small {
    font-size: 18px;
    color: #23c4b5;
    text-transform: lowercase;
}

.concept-plain-header img {
    height: 25px;
    width: auto;
}

.carpets-plain .concept-plain-header img{
  height: 40px;
}

.garniture-plain-list {
    display: flex;
    height: 230px;
    margin: 0 -5%;
    gap: 7px;
}

@media (max-width: 400px){
.garniture-plain-list a {
    height: 75px;
}

.garniture-plain-list {
    height: 75px;
  }

}


@media (max-width: 768px){
.garniture-plain-list a {
    height: 120px;
}

.garniture-plain-list {
    height: 120px;
  }


}

@media(min-width: 769px){

  .garniture-plain-list a {
    height: 230px;
  }

  .garniture-plain-list {
    height: 230px;
  }
}

.garniture-plain-list a {
    flex: 1;
    transform: skew(-18deg);
    overflow: hidden;
    display: flex;
    text-decoration: none;
    background: #ccc;
}

.garniture-plain-list a img {
    width: 150%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: skew(18deg);
    margin: 0 -35px 0 -35px;
    max-width: none;
}

.garniture-plain-list a:first-child img {
    width: calc(100% + 45px);
    margin: 0 -45px 0 0;
}

.garniture-plain-list a:last-child img {
    width: 100%;
    margin: 0 0px 0 -35px;
}


.garniture-single-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 7px;
    gap: 7px;
}

@media (max-width: 400px){
   .garniture-single-items a {
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 768px){
     .garniture-single-items a {
         width: 74px;
         height: 74px;
     }

     .garniture-single-items a:nth-of-type(n+6){
         display: none;
     }

}


@media(min-width: 769px){
     .garniture-single-items a {
         width: 120px;
         height: 100px;
     }

}



.garniture-single-items a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.catalog-products, .catalog-load-content{
  position: relative;
}

.loader-spin {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgb(255 255 255 / 55%);
}

.loader-spin.d-none{
  display: none;
}


.catalog-no-items{
  text-align: center;
  padding: 25px 0;
}






/*product page*/


main.product {
    /*padding-bottom: 30px;*/
}


.product-container {
    display: flex;
/*    flex-direction: row;
    gap: 20px;*/
}









/*.product-left-content{
  width: 65%;
}

.product-right-content{
  flex-grow: 1;
}*/


.product-media-slider{
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.product-media-slider img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}


.product-media-slider-nav{
  margin-top: 10px;
  overflow: hidden;
}

.product-media-slider-nav .slick-track{
  float: left;
}


.product-media-slider-nav .slick-slide {
      margin: 0 5px;
}
.product-media-slider-nav .slick-list {
      margin: 0 -5px;
}

.product-media-slider-nav .slick-next{
  right: 0px;
}

.product-media-slider-nav .slick-prev{
  left: 0px;
}


.product-media-slider-nav .media-nav-item{
  width: 100%;
  position: relative;
  padding-bottom: 60%;
}

.product-media-slider-nav .media-nav-item img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}


.product-card-meta{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


@media(max-width: 800px){

  .product-card-meta{
    padding: 15px 15px;
  }
}


.card-title{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.card-title h1{
  font-size: 23px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
  color: #11585d;
}

.card-favorits{
  text-decoration: none;
  font-size: 18px;
  color: #23c4b5;
  transition: .2s ease;
}

.card-favorits:hover{
  color: #18a49d;
}

.card-favorits.active{
  color: #18a49d;
}

.card-favorits.active .icon-heart-o:before{
  content: "\e91a";
}


.card-links{
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  padding: 10px 0;
}

.card-links span{
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
}

.card-links span a{
  text-decoration: none;
  color: #000;
  font-weight: 500;
  color: #000;
}

.card-short-description{
  display: block;
  padding-bottom: 10px;
}

.card-short-description p{
  margin-top: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  color: #000;
}

.card-short-description strong{
  font-weight: 500;
}

.card-specifications{
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   border: 1px solid #aad1d3;
   padding: 5px 20px;
   position: relative;
   transition: .2s ease;
}

.card-specifications:before{
  position: absolute;
  content: '';
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 25px 0;
  border-color: transparent #aad1d3 transparent transparent;
  transition: .2s ease;
}


.card-specifications:hover{
  border-color: #18a49d;
}

.card-specifications:hover::before{
  border-color: transparent #18a49d transparent transparent;
}

.specification-header{
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
  display: flex;
  flex-direction: column;

}

.specification-header small{
  padding-top: 3px;
  font-size: 11px;
  color: #127b83;
  font-weight: 400;
}


.specification-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid #ccc;
}

.specification-item .title{
  font-size: 14px;
  font-weight: 500;
  min-width: 90px;
}


.spec-item-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-item-list .spec-item{
  display: flex;
}

.spec-item label{
  padding: 5px 10px;
  border: 1px solid #ede9e9;
  cursor: pointer;
}

.spec-item-list .spec-item input{
  display: none;
}

.spec-item-list .spec-item.active label{
  border: 1px solid #000;
}


.spec-item-list .spec-item.color label{
  width: 25px;
  height: 25px;
  padding: 1px;
}


.card-price{
   margin-top: 10px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   position: relative;

}

.loader{
   position: absolute;
   top: 0;
   left: 0;
   background: rgb(255 255 255 / 48%);
   width: 100%;
   height: 100%;
   align-items: center;
   justify-content: center;
   display: none;
   z-index: 1;

}

.loader.active{
     display: flex;
}

.loader:before{
  position: absolute;
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid #127b83;
  border-color: #127b83 transparent #127b83 transparent;
  animation: lds-dual-ring 1.2s linear infinite;

}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.card-price-data{
   flex-grow: 1;
   background: #127b83;
   border: 1px solid #127b83;
   padding: 20px 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #fff;
}

.price-meta{
  display: flex;
  flex-direction: column;
}

.price-meta .price{
  font-size: 22px;
  font-weight: 500;
}

.price-meta .credit{
  font-size: 14px;
  font-weight: 300;
}
.price-meta .credit strong{
  font-size: 16px;
  font-weight: 500;
}

.card-price-data .title{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.card-price-data .sale{
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
  color: rgb(255 255 255 / 60%);
}


.card-action-panel{
  display: none;
  flex-grow: 1;
  padding: 20px 20px;
  border: 1px solid #aad1d3;
  justify-content: space-between;
}


.card-action-panel.active{
  display: flex;
}


.card-qty{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 5px;
}
.card-qty span{
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  width: 25px;
}

.card-qty button{
  border: 0px;
  background: transparent;
  font-size: 16px;
  height: 25px;
/*  border: 1px solid #ede9e9;*/
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #127b83;
}

.add-to-cart{
  border: 0px;
  background: #23c4b5;
  font-size: 14px;
  padding: 7px 15px;
  color: #fff;
  cursor: pointer;
  transition: .2s ease;
}

.add-to-cart:hover{
  background: #18a49d;
}


.add-to-cart.in-cart{
  background: #127b83;
}


.card-description{
  padding-top: 20px;
}

.card-description h2{
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;

    color: #11585d;
}

.card-description p{
  margin-top: 0;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    color: #000;
}



@media(max-width: 800px){

  .product-container {
    flex-direction: column;
  }
  .product-left-content, .product-right-content{
    width: 100%;
  }

  .card-title{
    padding-top: 10px;
  }


}





@media(min-width: 801px) and (max-width: 1000px){

  .product-container {
    flex-direction: row;
    gap: 20px;
  }
  .product-left-content{
    width: 50%;
    min-width: 50%;
  }

  .product-right-content{
    flex-grow: 1;
    width: calc(35% - 20px);

  }

  .card-title{
    padding-top: 10px;
  }


}


@media(min-width: 1001px){

  .product-container {
    flex-direction: row;
    gap: 20px;
  }

  .product-left-content{
    min-width: 65%;
    max-width: 65%;
  }

  .product-right-content{
    width: calc(35% - 20px);
  }

}


@media(min-width: 800px) and (max-width: 1000px){

   .card-price-data{
      flex-wrap: wrap;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
   }

}


.product-media-section{
  position: relative;
}

.product-media-container{
  position: relative;
}


.product_icons {
    width: calc(100% + 10px);
    display: flex;
    flex-wrap: wrap;
    padding-top: 35px;
    margin-left: -5px;
    margin-right: -5px;
}

.product_icons .icon-item {
    width: calc(calc(100% / 8) - 10px);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    margin: 0 5px;
    margin-bottom: 10px;
}

.product_icons .icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}

@media (max-width: 500px){
.product_icons .icon-item {
    width: calc(calc(100% / 4) - 10px);
}

}


@media (min-width: 501px) and (max-width: 800px){
.product_icons .icon-item {
    width: calc(calc(100% / 7) - 10px);
}

}


.tooltip{
  position: relative;
}

.tooltip span{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 110%;
  min-width: 200%;
  margin-left: -60%;
  background: #23c4b5;
  color: #fff;
  padding: 15px 10px;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  z-index: 1;
  text-align: center;
  line-height: 1.2;

  visibility: hidden;
  opacity: 0;
  transform: translateY(1rem);
  transition: .2s ease;
}


.tooltip span:after{
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   margin: auto;
   width: 0;
   height: 0;
   border-width: 10px 12.5px 0 12.5px;
   border-color: #23c4b5 transparent transparent transparent;
   border-style: solid;
   bottom: -5px;
}

.tooltip:hover span{
  opacity: 1;
  visibility: initial;
  transform: translateY(0rem);
}

@media(max-width: 1000px){

  .tooltip span{
    display: none;
  }

}





.product-schemes{
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 20px;
}

.schemes-title{
    font-size: 23px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
    color: #11585d;
    padding-bottom: 10px;
}

.schemes-grid{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 10px;
        grid-row-gap: 10px;

}


@media(min-width: 1000px){

    .schemes-grid{
        grid-template-columns: repeat(5, 1fr);
    }

}

.sheme-item{
  position: relative;
  padding: 10px;
  border: 1px solid #aad1d3;
  cursor: pointer;
}

.sheme-item img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}






.product-related{
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 20px;
}

.related-title{
    font-size: 23px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
    color: #11585d;
    padding-bottom: 25px;
}


@media(max-width: 500px){


   .related-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 20px;

   }

}


@media(min-width: 501px) and (max-width: 768px){


   .related-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 15px;
        grid-row-gap: 15px;

   }

}


@media(min-width: 769px) and (max-width: 1000px){


   .related-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 15px;
        grid-row-gap: 15px;
   }


}

@media(min-width: 1000px){

   .related-grid{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 15px;
        grid-row-gap: 15px;
   }

}




@media(max-width: 800px){

  .carpets-plain h3{
    font-size: 25px;
  }
}




.news-header-text{
  text-align: center;
  padding-top: 25px;
}




.news-grid-list{
  display: grid;
  padding: 25px 0;
}

.news-grid-list .main-news-item{
  display: flex;
}



.single-news p{
  line-height: 20px;
  letter-spacing: .4px;
}

.single-news strong{
  font-weight: 500;
}

.single-news a{
  color: #008080;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}


.single-news{
  display: flex;

}

.single-news h2{
  font-size: 18px;
  font-weight: 500;
  color: #008080;
}

.single-news-header{
  padding-bottom: 25px;
}


.single-news-header .date{
  color: #008080;
  font-size: 14px;
}

.single-news .single-image img{
  max-width: 100%;
}

.single-image{
  text-align: center;
  margin: 15px 0;
}



@media(max-width: 800px){

   .single-news{
     flex-direction: column;
   }

   .single-news-right{
    padding-top: 15px;
   }

}

@media(min-width: 801px){

   .single-news{
    flex-direction: row;
    column-gap: 20px;
    padding-top: 15px;
   }

   .single-news-left{
     min-width: 40%;
     width: 40%;
     max-width: 40%;
   }

}



@media(max-width: 1000px){

   .single-news-right{
    width: calc(100% - 30px) !important;
    padding-left: 15px;
    padding-right: 15px;
   }

   .single-news-right .text-content{
    padding-left: 0px;
    padding-right: 0px;
   }



}



@media(min-width: 1000px){


    .single-news{
      max-width: 75%;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
    }

}

.single-news-right{
  width: 100%;
}





.single-news .single-news-left img{
  max-width: 100%;
}



@media(min-width: 600px) and (max-width: 1000px){

  .news-grid-list{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    grid-row-gap: 15px;

  }


}


@media(min-width: 1001px){


  .news-grid-list{
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    grid-row-gap: 15px;

  }


}


.default-page-layout{
  padding: 10px 0;
}

@media(max-width: 1000px){
  .default-page-layout{
    padding-left: 15px;
    padding-right: 15px;
  }
}


.default-page-title h1{
    font-size: 22px;
    color: #008080;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.default-page-content h2{
    font-size: 18px;
    color: #008080;
    font-weight: 400;
    letter-spacing: .5px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}


.default-page-content h3{
  font-weight: 500;
}

.default-page-content p{

    line-height: 20px;
    letter-spacing: .4px;

}


.default-page-content strong{
  font-weight: 500;
}




.default-page-content ul{
  list-style: disc;
  padding-left: 20px;
}

.contacts-grid{
  display: flex;
}


.contacts-item-title{
  font-size: 20px;
  font-weight: 500;
  color: #008080;
}


.contacts-list h4{
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding-top: 15px;
  color: #127b83;
}

.contacts-list a{
  text-decoration: none;
  color: #000;
}


@media(max-width: 600px){

    .contacts-grid{
      flex-direction: column;
    }

    .contacts-item{
      width: 100%;
      padding-top: 25px;
    }

}


@media(min-width: 601px) and (max-width: 1000px){

    .contacts-grid{
      flex-direction: row;
      padding-top: 25px;
    }

    .contacts-grid .contacts-item{
      width: 100%;
    }


}


@media(min-width: 1001px){

    .contacts-grid{
      flex-direction: row;
      padding-top: 25px;
    }

    .contacts-grid .contacts-item{
      width: 100%;
    }


}





.contact-feedback-form{
  padding-top: 15px;
  width: 100%;
}


.form-row{
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  width: 100%;
}

.form-row .form-group{
  width: 50%;
}

.contacts-item-content{
  position: relative;
}


.send-response{
  display: none;
  color: #fff;
    background: #127b83;
    padding: 10px;
    margin-bottom: 10px;
}



.form-group{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-group label{
  font-size: 16px;
  padding-bottom: 5px;
}

.form-group input, .form-group textarea{
  padding: 10px 10px;
  border-radius: 0;
  border: 1px solid #40b9ae;
  transition: .2s ease;
  font-family: 'Roboto', sans-serif;
}


.form-group input:focus, .form-group textarea:focus{
  outline: none;
  border: 1px solid #127b83;
}


.form-group button{
  width: fit-content;
  padding: 7px 25px;
  border-radius: 0;
  background: #40b9ae;
  color: #fff;
  border: 0px;
  transition: .2s ease;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover, .form-group button:focus{
  background: #127b83;
}

.shop-table{
  position: relative;
}



.shop-table table {
    background-color: #fff;
    width: 100%;
    margin-bottom: 1em;
    border-spacing: 0;
}

.favorits_table{
  padding: 25px 0;
}


.shop-table table th{
  font-weight: 500;
}




.shop-table table td, .shop-table table th {
    padding: 15px;
    border: 1px solid #e4e4e4;
}


.wishlist-item-link img{
  width: 60px;
}

@media(min-width: 1000px){

  .wishlist-item-link img{
    width: 180px;
  }
}

.shop-table table a{
  text-decoration: none;
  color: #313131;
  transition: .2s ease;
}

.shop-table table a:hover{
  color: #00c0b6;
}


.favorits_table{
  text-align: center;
}

.remove_from_favorits{
  font-size: 18px;
}



@media screen and (max-width: 767px){

.table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

}




.shop-table table a.button{
    background: #00c0b6;
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 10px;
}





.full-cart-table .cart__image {
    width: 200px;
    text-align: center;
    margin-right: 0;
    display: inline-block !important;
}

@media(max-width: 800px){
  .full-cart-table .cart__image{
    width: 100px;
  }
}

.full-cart-table .cart__image img{
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.full-cart-table td, .full-cart-table th{
  text-align: center;
}

.table-product-params {
    color: #127b83;
    font-weight: 300;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    padding-top: 10px;
}

.full-cart-table .product-title{
  font-weight: 500;
}

.remove-cart-table {
    font-size: 18px;
}


.full-cart-meta{
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}

.full-card-total{
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}



.full-card-total span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.full-card-total span:first-child {
    font-weight: normal;
}

.fullcart-options {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;

    column-gap: 15px;
}

.fullcart-options a {
    background: #40b9ae;
    color: #fff;
    font-size: 14px;
    padding: 7px 15px;
    text-align: center;
    text-decoration: none;
    transition: .2s ease;
}


@media(min-width: 801px){
  .fullcart-options{
    justify-content: flex-end;
  }

  .full-cart-meta{
    align-items: flex-end;
   }

}


@media(max-width: 800px){


  .full-cart-table thead th:nth-child(2){
    min-width: 100px;
  }

}



.cartqty {
    position: relative;
    width: fit-content;
    left: 0;
    right: 0;
    margin: auto;
}

.cartqty input {
    padding: 14px 10px;
    width: 50px;
    border: 1px solid #eee;
}

.cartqty input:focus{
  outline: none;
}

.qtyplus {
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 3px 7px;
    cursor: pointer;
}

.qtyminus {
    position: absolute;
    right: 0;
    bottom: 0;
    border-left: 1px solid #eee;
    padding: 3px 7px;
    cursor: pointer;
}

.js-cart-table{
  position: relative;
}



.side-search{
    z-index: 100;
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(18, 18, 18, .85);
    opacity: 0;
    transition: all .3s ease-in-out;
    transform: translateY(-100%);
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 48px 0px;
}

.side-search.active{
    opacity: 1;
    transform: translateY(0);
}


.search-area{
    position: relative;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}



.search-area input{
    margin-bottom: 0;
    width: 100%;
    border: none;
    border-radius: 0;
    height: 40px;
    padding: 0 15px;
}

.search-area input:focus{
  outline: none;
}

.search-area button{
    padding: 0 35px;
    transition: all .3s linear;
    background-color: #00c0b6;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    border: 0px;
    font-size: 18px;
}


.search-area .close-search{
  position: fixed;
  right: 10px;
  top: 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}


.search-result {
    position: relative;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 15px;
    background: #fff;
    padding: 20px 0;

}


@media(max-width: 1000px){
  .search-area, .search-result{
    max-width: 90%;
  }
}

.search-result.hidden {
  display: none;
}

.search-result-item.no-data p {
    margin: 0;
    padding: 0 20px;
    color: #999;
}

.search-result-item {
    width: 100%;
    display: inline-block;
    text-align: left;
}

.havedata {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #999;
}

.search-result .havedata:first-child {
    padding-top: 0;
}

.sri-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    position: relative;
    float: left;
    margin-left: 20px;
    margin-right: 20px;
}

.sri-image a {
    position: absolute;
    float: left;
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
}

.sri-image a:before {
    display: block;
    content: "";
    padding-top: 100%;
}

.sri-content {
    height: 60px;
    width: calc(100% - 100px);
    float: left;
    display: flex;
    align-items: center;
}



.sri-content .product_price {
    padding-top: 4px;
    font-weight: 500;
}

.sri-content .product_price span{
    color: #999;
    text-decoration: line-through;
    padding-right: 10px;
}

.sri-content .product-labels{
  position: relative;
  margin-bottom: 5px;
}

.sri-content .product-labels span{
  padding: 2px 4px;
  font-size: 10px;
}



.sri-content a{
  color: #000;
  text-decoration: none;
}

.havedata.view-all {
    padding-top: 20px;
}

.havedata.view-all a {
    margin-left: 20px;
    color: #000;
    text-decoration: none;
}


.search-result .havedata:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}



.search-page-header{
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.search-page-header p{

    font-size: 19px;
    line-height: 1.4;
    letter-spacing: .5px;
    color: #282828;
    margin: 0px;
}

.search-page-form{
  padding: 10px 0 15px 0;
}

.search-page-form form{
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 500px;
}

.search-page-form form input{
    padding: 10px 10px;
    border-radius: 0;
    border: 1px solid #40b9ae;
    transition: .2s ease;
    flex-grow: 1;
}

.search-page-form form input:focus{
  outline: none;
  border: 1px solid #127b83;
}


.search-page-form form button {
    padding: 0 35px;
    transition: all .3s linear;
    background-color: #00c0b6;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    border: 0px;
    font-size: 18px;
}


.not-found-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 150px 0;
  color: #127b83;
}

@media(max-width: 800px){
  .not-found-content{
    padding: 40px 0;
  }
}

.not-found-content span{
  font-size: 100px;
  font-weight: 200;
  line-height: 1;
}


.flex-row{
  flex-direction: row;
}


.garniture-product-list-price{
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.garniture-product-list-price .total-price{
  color: #127b83;
}



.specification-item.options button{
    border: 0px;
    background: #23c4b5;
    font-size: 14px;
    padding: 7px 15px;
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.specification-item.options button.added{
    background: #127b83;
}


.garniture-products-list{
  display: block;
  float: left;
  width: 100%;
}



.garniture-products-list-nav{
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  align-items: center;
}

.garniture-products-list-nav button{
    border: 0px;
    background: #127b83;
    font-size: 14px;
    padding: 15px 15px;
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.garniture-products-list-nav button.slick-disabled{
  opacity: .4;
  cursor: default;
}

.garniture-product-list-item{
  padding: 0 1px;
  position: relative;
}


@media(max-width: 768px){


  .garniture-products-list-nav button{
    font-size: 11px;
    padding: 12px 11px
  }

}



.garniture-generate-price{

  padding-top: 30px;
}

.garniture-selected-products-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.garniture-selected-products-list .card-specifications{
    border-color: #127b83;
}

.garniture-selected-products-list .card-specifications:before{
    border-color: transparent #127b83 transparent transparent;
}


.ggp-title{
  text-align: left;
  display: block;
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #127b83;
}




.garniture-generate-price:not(.active) .card-price{
  display: none;
}

.garniture-generate-price:not(.active) .selected-title{
  display: none;
}

.garniture-generate-price.active .empty-title{
  display: none;

}


.garniture-price-button{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}





.carpets-image-container img{

   width: 100%;
   height: 250px;
   object-fit: cover;

}


@media(max-width: 800px){

   .carpets-image-container img{
    height: 100%;
   }

}







.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9::before {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


a.menu57{
  display: inline-block;
}

a.menu57:first-letter{
  font-weight:500 !important;
}



.category-short-description{
  padding: 10px 0;
}

.category-short-description h1{
   font-size: 18px;
   margin-top: 0;
   margin-bottom: 10px;
   font-weight: 500;
   color: #008080;
}

.category-short-description p{
  margin-top: 0;
  color: #484747;
}


@media(min-width: 1000px){

   .category-short-description{
     padding: 15px 0;
   }

}




.banner{
  display: flex;
  width: 100%;
}

.banner a{
  display: flex;
  width: 100%;
}

.banner a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.banner.position-top{
  padding-bottom: 20px;
}

.banner.position-bottom{
  padding-top: 20px;
}


@media(max-width: 768px){

/*  .banner a{
    height: 150px;
  }*/

}


@media(min-width: 769px) and (max-width: 1000px){

/*   .banner a{
    height: 175px;
  }*/

}

.buywith-products-slider .slick-track{
  margin-right: auto;
  margin-left: 0;
}

.related-products-slider.slick-initialized, .buywith-products-slider.slick-initialized, .garniture-related-products-list.slick-initialized{
  overflow: hidden;
}

.related-products-slider.slick-initialized .slick-list, .buywith-products-slider.slick-initialized .slick-list, .garniture-related-products-list.slick-initialized .slick-list{
  margin: 0 -7.5px;
}


.related-products-slider.slick-initialized .slick-slide, .buywith-products-slider.slick-initialized .slick-slide, .garniture-related-products-list.slick-initialized .slick-slide {
    margin: 0 7.5px;
}


.related-products-slider .slick-arrow, .buywith-products-slider .slick-arrow{
    top: calc(50% - 28px);
}

.garniture-related-products-list .slick-arrow{
    top: calc(50% - 20px);
}



.garniture-products-included .products-list.slick-initialized{
  overflow: hidden;
}

.garniture-products-included .products-list.slick-initialized .slick-list{
  margin: 0 -7.5px;
}

.garniture-products-included .products-list.slick-initialized .slick-slide {
    margin: 0 7.5px;
}

.garniture-products-included .products-list .slick-arrow{
    top: calc(50% - 28px);
}


.garniture-products-included .slick-track{
  margin-left: 0;
}










.contacts-grid-new{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 25px;
}


.contacts-grid-column.first{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacats-full-form{
  padding-top: 35px;
}

#map{
  display: flex;
  height: 100%;
}


#map iframe{
  width: 100%;
  height: 100%;
}


@media(max-width: 1000px){

   .contacts-grid-new{
    display: flex;
    flex-direction: column;
   }


   #map{
    padding-top: 25px;
    height: 350px;
   }


}


@media(max-width: 768px){

  .contacts-grid-column.first{
    order: 2;
  }

  #map{
    padding-top: 0;
  }
}





.main-news-carousel{
  display: flex;
  flex-direction: row;
  column-gap: 25px;
  padding: 0 80px;
}


.mnc-item-media{
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}

.mnc-item-media a{
  display: flex;
  width: 100%;
  position: relative;
  padding-bottom: 46%;
}

.mnc-item-media a img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.mnc-item-content{
  display: flex;
  flex-direction: column;
  width: 100%;
}


.mnc-item-meta{
  display: flex;
  flex-direction: column;
}


.mnc-item-meta a {
    font-size: 20px;
    font-weight: 500;
    color: #313131;
    text-decoration: none;
    transition: .2s ease;
}

.mnc-item-meta span{
  padding-top: 10px;
  font-size: 14px;
  color: #127b83;
}

.mnc-item-short{
  color: #264143;
}

.mnc-item-short p{
  font-size: 16px;
  line-height: 22px;
}

.mnc-item-short strong{
  font-weight: 500;
}




.mnc-item-content .more{
  font-size: 16px;
  font-weight: 500;
  color: #127b83;
  display: flex;
  align-items: center;
  text-decoration: underline;
}



.main-news .slick-arrow{
  background: #23c4b5;
  transition: .2s ease;
}

.main-news .slick-arrow:hover, .main-news .slick-arrow:focus{
  background: #127b83;
}

.main-news .slick-arrow:before{
  opacity: 1;
  font-size: 25px;
}


@media(max-width: 768px){

  .main-news-carousel{
    flex-direction: column;
  }

  .mnc-item-media{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .main-news-carousel{
    padding: 0 70px;
  }
}



.default-page-title.center-align{
  text-align: center;
}

.register-form{
  max-width: 450px;
  left: 0;
  right: 0;
  margin: auto;

}

.register-form form{
  padding-top: 15px;
}

.register-form-urls{
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
}

.register-form-urls a{
  font-size: 16px;
  text-decoration: none;
  color: #127b83;
}


.login-response{
  text-align: center;
  padding: 10px 0 0 0;
  color: red;
}

.success-restore {
    text-align: center;
    padding: 10px 0 0 0;
    color: #56ad6a;
}

.hidden{
  display: none;
}

.failed-input {
    border: 1px solid red !important;
}

.required-message {
    padding-top: 5px;
    color: red;
    font-size: 12px;
}



.form-check{
  color: #127b83;
  font-weight: 400;
}

.form-check a{
  color: #127b83;
}


.office-mini-forms{
  max-width: 500px;
}


.form-response{
  padding: 8px 0 15px 0;
  color: green;
}

.omf-form .readonly {
    background: #efefef;
}


.main-news-slider{
  margin-top: 15px;
}


.boutlet-header .h2{
   font-weight: 400;
   display: inline-block;
   text-transform: none;
}

.boutlet-header .h2:first-letter{
  font-weight: 500;
  text-transform: uppercase;
}

.main-news-button{
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

.main-news-button a{
  padding: 7px 15px;
    background: #23c4b5;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: .2s ease;
}

.main-news-button a:hover{
  background: #127b83;
}




.main-boutlet-button{

  display: flex;
    justify-content: center;
}


.main-boutlet-button a {
    padding: 7px 15px;
    background: #23c4b5;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: .2s ease;
}

.main-boutlet-button a:hover {
    background: #127b83;
}



.product-description{
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 20px;
}


@media(max-width: 765px){
  .product-description{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .product_icons{
    padding-top: 10px;
  }


  .product-schemes{
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }

}



@media (min-width: 1001px) {
    .product-description {
        min-width: 65%;
        max-width: 65%;
    }
}




.mobile-lang-switch a{
    border: 1px solid;
    padding: 4px;
    text-transform: uppercase;
}



@media(max-width: 768px){

  .dropdown-menu>li>a{
    font-size: 15px;
    padding: 4px 20px;
  }

  .sorting-section button{
    font-size: 15px;
  }


  .garniture-product-list-price .price-meta .price{
    font-size: 18px;
  }

  .garniture-product-list-price .card-qty{
    column-gap: 0;
  }

  .garniture-product-list-price .card-qty span{
    font-size: 20px;
  }

}




@media(max-width: 800px){

    .product_icons .slick-prev, .product_icons .slick-next{
      width: 25px;
      height: 30px;
      background: #127b83 !important;
    }

    .product_icons .slick-prev:before, .product_icons .slick-next:before{
      font-size: 20px;
    }

    .product_icons .slick-list{
      margin: 0 40px;
    }


    .product-schemes{
      padding-top: 10px;
    }



    .schemes-grid .sheme-item{


         position: relative;
         height: 80px;

    }

    .schemes-grid .sheme-item img{
       top: 0;
       width: 100%;
       height: 100%;
       object-fit: contain;
    }



    .product-schemes{
      width: 100%;
      padding: 0;
      padding-bottom: 20px;
    }



    .schemes-grid .sheme-item{
      margin: 0 5px;
      padding: 3px;
    }

    .schemes-grid .slick-list {
      margin: 0 35px;
    }


    .schemes-grid .slick-prev, .schemes-grid .slick-next{
      width: 25px;
      height: 30px;
      background: #127b83 !important;
    }

    .schemes-grid .slick-prev:before, .schemes-grid .slick-next:before{
      font-size: 20px;
    }

    .schemes-grid .slick-prev{
      left: 4px;
    }

    .schemes-grid .slick-next{
      right: 4px;
    }

    .product-schemes .schemes-title{
      padding-left: 15px;
    }


    .product-description .schemes-title{
      display: flex;
      align-items: center;
      cursor: pointer;
      padding-bottom: 0px;
    }



    .product-description .schemes-title:after {
        content: '+';
        width: 15px;
        height: 15px;
        border: 1px solid #00c0b6;
        color: #00c0b6;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        margin-left: 15px;
    }


    .product-description .card-short-description{
      display: none;
    }


    .product-description.open .schemes-title{
      padding-bottom: 10px;
    }

    .product-description.open .schemes-title:after{
      content: '-';
    }

    .product-description.open .card-short-description{
      display: block;
    }


    .contacts-grid-column .contacts-item{
            padding-left: 25px;
            padding-right: 25px;
            width: auto;
    }

    .contact-feedback-form .form-row{
      width: calc(100% - 15px);
    }

    .contacts-list{
      font-size: 16px;
    }


}




.about-us-content .embed-responsive{
  margin: 25px 0;
}

@media(min-width: 1000px){

   .about-us-content .embed-responsive{
    max-width: 1000px;
   }
}


@media(max-width: 768px){

   .card-price-data{
      flex-wrap: wrap;
   }

   .card-price-data .title{
      width: 100%;
      margin-bottom: 10px;
   }

}



.wishlist-product-price .dis-price{

  color: #999;
    text-decoration: line-through;
    padding-left: 10px;
}




.garniture-list-item-slider{
  padding-top: 5px;
}

/*.garniture-list-item-slider img{
  width: 100%;
  height: auto;
}*/




.garniture-list-item-slider{
    width: 100%;
    position: relative;
    padding-bottom: 60%;
}


.garniture-list-item-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}





.company-dates{
  width: 100%;
  padding: 50px 0;
}


.dates-items{
  display: flex;
  justify-content: space-between;
}

.di-round{
  width: 200px;
  background: #007a82;
  height: 200px;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.di-round img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.di-round-number{
  z-index: 10;
  font-size: 70px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0px 0px 18px rgba(128, 0, 0, 0.80);
  position: relative;
}

.di-first-title{
  min-height: 22px;
}

.di-first-title, .di-last-title{
  text-align: center;
  display: block;
  color: #127b83;
  font-size: 18px;
  padding: 10px 0;
}

.di-last-title{
  padding-bottom: 0px;
}

.small-number-text{
  position: absolute;
  font-size: 20px;
  right: 4px;
  bottom: -10px;
}


@media(max-width:767px){

     .di-round{
    width: 150px;
    height: 150px;
   }

   .di-round-number{
    font-size: 50px;
   }
}


@media(max-width:900px){

   .dates-items{
        flex-wrap: wrap;
        row-gap: 15px;
   }
   .dates-item{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
   }


}



.boutlet-ul{
  padding: 0;
  margin: 0;
  columns: 3;
}

.boutlet-ul li{
  margin-bottom: 4px;
}

@media(max-width:800px){
  .boutlet-ul{
    columns: 1;
  }
}


@media(min-width:801px) and (max-width:1200px){
  .boutlet-ul{
    columns: 2;
  }
}

.popup{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 70%);
  z-index: 100;
}

body.active-popup{
  overflow: hidden;
  display: block;
}

body.active-popup .popup{

   display: flex;

}









.popup-content{
    width: 100%;
    position: relative;
}

.popup-content a{
  max-width: 95%;
}


.popup-content img{
  max-width: 100%;

}





.close-popup{
  background: transparent;
  border: 0;
  font-size: 30px;
  position: absolute;
  right: 0;
  background: #40b9ae;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .2s ease;
}

.close-popup:hover{
  opacity: .7;
}




@media(max-width:800px){

  .popup-content{
    max-width: 500px;
    margin: 0 15px;
  }

  .popup-content .desktop-image{
    display: none;
  }

  .mobile-image{
    display: block;
  }

}


@media(min-width:801px){

  .popup-content{
    max-width: 800px;
  }

  .popup-content .mobile-image{
     display: none;
  }

  .desktop-image{
    display: block;
  }

}




.spec-item-list .spec-item {
  margin: 5px 0
}

.spec-item label {
  min-width: 100px
}

.spec-item-list::-webkit-scrollbar {
  width: 7px;
}

.spec-item-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.spec-item-list::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}



/*.special-2 .sale{
  display: none;
}*/


/* modal credit */



.credit-modal{
  display: none;
  position: fixed;
  z-index: 120;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #00000050;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}


.credit-modal.active{
  display: flex;
}



.credit-modal-container{
    width: 90%;
    max-width: 800px;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.credit-modal-header{
  display: flex;
  background: #127b83;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.credit-modal-header span{
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}



.credit-modal-close{
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 2.5rem;
  height: 2.5rem;

  background: #fff;
  border-radius: 9999px;
  overflow: hidden;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #127b83;
}


.credit-modal-content{
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 1.5rem;
}

.cmc-product-info{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cmc-product-info .cmc-p-media{
  width: 250px;
  min-width: 30%;
}

@media(max-width:768px){

  .cmc-product-info{
    flex-direction: column;
    align-items: flex-start;
  }

  .cmc-product-info .cmc-p-media{
    width: 100%;
  }

}

.cmc-product-info .cmc-p-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmc-p-meta{
  display: flex;
  flex-direction: column;
}


.cmc-p-meta .cmc-p-title{
    font-size: 23px;
    line-height: 30px;
    font-weight: 400;
    color: #11585d;
}

.cmc-p-price{
  font-size: 18px;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: .2rem;
  color: #127b83;
}


.cmc-p-credit-price{
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.cmc-p-credit-price span{
  font-size: 18px;
  font-weight: 500;
  color: #000;
}


.cmc-credit-rates{
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.cmc-credit-rates p{
  font-size: 16px;
}

.credit-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.credit-buttons button{
  cursor: pointer;
  padding: 5px 20px;
  border: 1px solid #eaeaea;
  background: transparent;
  font-size: 16px;
}

.credit-buttons button.active{
  border-color: #127b83;
  background: #127b83;
  color: #fff;
}



.open-credit-modal {
    border: 0;
    background: #127b83;
    font-size: 14px;
    padding: 7px 15px;
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.open-credit-modal:hover{
  opacity: .8;
}


.card-action-panel.active{

      justify-content: flex-end;
      gap: 1rem;
      flex-wrap: wrap;
}

.card-qty{
  margin-right: auto;
}


@media(max-width:500px){

  .card-action-panel.active{
    flex-direction: column;
  }

  .card-qty {
    margin-left: auto;
  }
}


@media(min-width:800px) and (max-width:1400px){

  .card-action-panel.active{
    flex-direction: column;
  }

  .card-qty {
    margin-left: auto;
  }
}



.card-action-panel.active.off-stock{
  justify-content: flex-start;
}



