/* ==================================================
  TEMPLATE STYLE
  ================================================== *//*

  #Header
    #Account
    #Languages & Currencies
    #Callback
    #Logo
     #Header contacts
     #Header informers
     #Search
     #Header catalog
  #Main
    #Main banner
    #Filter
    #Price range
    #Product sorting
    #Pagination
    #Breacrumbs
    #Raiting
    #Main brands
    #Preview product
    #Preview article
    #Comments
    #Product page
    #Features
    #Pager
    #Browsed products
    #Comparison page
    #Purchases
    #Delivery & Payment
    #Profile user
    #Advantages
    #Page 404
  #Footer
  #Mobile navigation
  #Button to Top

*//* ==================================================
  TEMPLATE STYLE
  ================================================== */


/***** #Header ***********************************************************************/
header{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9991;
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    backdrop-filter: blur(5px);
    background: #1B190FCC;
}
header.header_main {
    background: #1B190F4D;
}
header.fixed {
    background: #1B190FCC;
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.45);
    width: 100%;
    transition: all 0.2s linear;
    z-index: 9999;
} 
.header_wrap {
    width: 100%;
    padding: 0 10px;
    column-gap: 24px;
}

/***** #Account **********************************************************************/
.account__link{
    color: var(--second-company-text);
    font-size: 12px;
    text-decoration: none;
}
.account__link svg{
    width: 14px;
    height: 14px;
    margin-right: 8px;
}
.account__link .account__text{ margin-right: 5px;}

/***** #Languages & Currencies *******************************************************/
.switcher__item{
    position: relative;
    padding: 5px 10px;
    white-space: nowrap;
}
.switcher__visible .switcher__name:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--second-company-text);
    transform: rotate(45deg);
    transition: all 0.1s;
    position: relative;
    top: -2px;
    margin-left: 7px;
}
.switcher__name{
    padding: 0;
    cursor: pointer;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
}
.switcher__hidden{
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
    left: -12px;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    width: auto;
}
.switcher__language .switcher__hidden{left: 0;}

.switcher__item:last-child .switcher__hidden{
    left: inherit;
    right: 0;
}
.switcher__link{
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--body-text);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    width: 100%;
    background: none;
}
.switcher__link.active{
    text-decoration: none;
    color: var(--basic-company);
}
.switcher__visible img,
.switcher__link img{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
    margin-right: 4px;
}
/***** #Callback *********************************************************************/
.btn, .btn_border, .btn_border_black, .btn_black, .btn_grey, .btn_white {
    position: relative;
    border-radius: 5px;
    line-height: 1;
    height: 50px;
    font-size: 16px;
    text-decoration: none;
    min-width: 150px;
    font-weight: 600;
    border: 1px solid var(--basic-company);
    background: var(--basic-company);
    color: var(--button-text);
    white-space: nowrap;
    width: 100%;
    max-width: 270px;
    display: grid;
    place-items: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 0 12px!important;
}
.btn_border {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}
.btn_border_black {
    border: 1px solid var(--body-heading);
    background: #fff;
    color: var(--body-heading);
}
.btn_black {
    border: 1px solid var(--body-heading);
    background: var(--body-heading);
    color: #fff;
}
.btn_grey {
    border: 1px solid #a0a0a0;
    background: #a0a0a0;
    color: #fff;
    pointer-events: none;
    cursor: none;
}
.btn_white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--body-heading);
}
.btn:focus, .btn:active {
    color: var(--button-text);
    background-color: var(--button-color-hover);
    border-color: var(--button-color-hover);
}
.btn_border:focus, .btn_border:active, .btn_border_black:focus, .btn_border_black:active {
    color: var(--basic-company-text);
    background-color: var(--button-color-hover);
    border-color: var(--button-color-hover);
}
.btn_black:hover, .btn_black:focus, .btn_black:active {
    color: var(--body-heading)!important;
    background-color: var(--second-company);
    border-color: var(--second-company);
}
.btn_grey:hover, .btn_grey:focus, .btn_grey:active {
    border: 1px solid #a0a0a0;
    background: #a0a0a0;
    color: #fff;
}
.btn_white:hover, .btn_white:focus, .btn_white:active {
    border: 1px solid var(--button-second-color);
    background: var(--button-second-color);
    color: #fff;
}

/***** #Logo *************************************************************************/
.header__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 1 0 100px;
    -ms-flex: 1 0 100px;
    flex: 1 0 100px;
    max-width: 100px;
}
.logo__link{
    position: relative;
    display: block;
}
.header__logo .logo__link {
    height: 80px;
}
.logo__link img,
.logo__link svg{
    display: block;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: contain!important;
}
/****** #Header contacts *************************************************************/
.header-contact{
    height: 50px;
    position: relative;
    min-width: 220px;
}
.header-contact__inner{
    padding: 10px 15px 0;
    position: absolute;
    right: 0;
    left: 0;
    top: -5px;
    cursor: pointer;
    border-radius: 5px;
    height: 45px;
}
.header-contact__inner--adress{
    padding: 10px 15px 0;
    height: 45px;
}
.header-contact__inner--adress .header-contact__item--visible::after {
    content: none!important;
}
.header-contact__item{
    position: relative;
    opacity: 0;
    visibility: hidden;
}
.header-contact__item--visible{
    opacity: 1;
    visibility: visible;
    height: auto;
}
.header-contact__inner .header-contact__item--visible .header-contact__arrow {
    display: grid;
    place-items: center;
    position: absolute;
    right: 0px;
    line-height: 1;
    width: 21px;
    min-width: 21px;
    max-width: 21px;
    height: 21px;
    color: #fff;
}
.header-contact__item .header-contact__section svg{
    min-width: 21px;
    max-width: 21px;
    width: 21px;
    height: 21px;
    margin-right: 10px;
    line-height: 1;
}
.header-contact__item.header-contact--email .header-contact__section svg {
    width: 18px;
    height: 18px;
}
.header-contact__section.first_phone span{
    display: block;
}
.header-contact__section.first_phone{
    display: grid;
    grid-template-columns: 27px 1fr;
    column-gap: 6px;
    grid-template-rows: 1fr 1fr;
}
.header-contact__section.first_phone .header-contact__icon {
    width: 37px;
    height: 37px;
    position: relative;
    top: 0px;
    left: -7px;
    grid-row: span 2;
    grid-column: 1;
}
.header-contact__section.first_phone .header-contact__icon svg{
    width: 37px;
    min-width: 37px;
    max-width: 37px;
    height: 37px;
    display: block;
    margin-right: 0;
}
.header-contact__section.first_phone .header-contact__text {
    color: #A3A3A3;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    grid-row: 1;
    grid-column: 2;
}
.header-contact__section.first_phone .header-contact__phone {
    grid-column: 2;
}
.header-contact__inner .header-contact__item--visible .header-contact__arrow svg {
    display: block;
    width: 11px;
    min-width: 11px;
    max-width: 11px;
    height: auto;
    margin-right: 0;
}
.header-contact--phone,
.header-contact--email,
.header-contact--time{
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 13px;
    line-height: 1.2;
    white-space: nowrap;
}
.header-contact--email{font-size: 16px;}
.header-contact--time,
.header-contact--time p,
.header-contact--time span{
    font-size: 14px;
    font-weight: 500;
}
.header-contact__item--visible.header-contact--phone a,
.header-contact--phone a,
.header-contact--email a,
.header-contact--time{
    text-decoration: none;
    color: var(--body-text);
}
.header-contact__inner .header-contact__item--visible.header-contact--phone a {
    color: #fff;
} 
/***** #Header informers *************************************************************/
.informers_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    box-shadow: -5px 0px 20px 0px #0025481A;
    border-radius: 5px 0 0 5px;
    padding: 6px 10px;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 999;
    width: 70px;
}
.header_informers__item{
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--body-heading);
    height: 100%;
    width: 100%;
    padding: 10px 0;
}
.informers_wrap #wishlist {
    border-bottom: 1px solid #A0A0A0;
}
.header_informers__item svg {
    width: 30px;
    height: 30px;
    display: block;
    color: var(--body-heading);
}
#wishlist.header_informers__item svg path {
    fill: transparent;
}
.phone_switch.header_informers__item svg path{
    stroke-width: 1.7px;
}
.header_informers__search {
    position: relative;
    cursor: pointer;
    min-width: 50px;
    max-width: 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #FFFFFF4D;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: transparent;
}
.header_informers__search svg {
    display: block;
    width: 26px;
    height: 26px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.header_informers__search:focus {
    background: var(--basic-company);
}
.header_informers__search:focus svg{
    color: var(--button-text);
}
.header_informers__link{
    color: var(--second-company-text);
    text-decoration: none;
    flex-direction: column;
    position: relative;
}
.header_informers__item.icon-search,
.header_informers__link i{
    width: 32px;
    height: 32px;
}
.header_informers__link i:before{
    font-size: 30px;
    line-height: 1;
}
.header_informers__link i.fa-balance-scale:before{
    font-size: 26px;
    line-height: 1;
}
.header_informers__item.icon-search {
    font-size: 32px;
    min-width: 45px;
    padding: 0 5px;
}
.header_informers__item .compare_counter,
.header_informers__item .wishlist_counter,
.header_informers__item .cart_counter{
    background: var(--basic-company);
    border: 3px solid;
    border-color: #fff;
    border-radius: 14px;
    color: var(--body-heading);
    padding: 2px;
    position: absolute;
    right: -10px;
    top: -9px;
    min-width: 24px;
    width: fit-content;
    height: 24px;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}
.informer_name {
    color: #A3A3A3;
    font-size: 11px;
    font-weight: 300;
    white-space: nowrap;
    line-height: 1;
    margin-top: 4px;
}
.informer_hover {
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 50%;
    background: #FFF8DB;
    top: 2px;
    left: -5px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: scale(0);
    z-index: -1;
    pointer-events: none;
}
/***** #Search **********************************************************************/
.search {
    position: relative;
    margin: 10px 14px;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.search__input {
    background:var(--bg);
    border: none;
    color: var(--body-text);
    height: 40px;
    width: 100%;
}
.search__button {
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    height: 32px;
    position: absolute;
    text-align: center;
    right: 4px;
    top: 4px;
    width: 50px;
    border: none;
    background:  var(--second-company);
    color: var(--second-company-text);
    opacity: 0.8;
    transition: all 0.2s;
}
.search__button:before{
    content: "\f002";
    display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/****** #Header catalog ************************************************************/

.header__bottom_panel{position: relative;}

.catalog_button {
    -webkit-box-flex: 0;
    -webkit-flex: 1 0 285px;
    -ms-flex: 1 0 285px;
    flex: 1 0 285px;
    max-width: 285px;
    position: relative;
    margin: 10px 0 10px;
    border-radius: 4px;
}
.catalog_button__heading {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 15px;
    width: 100%;
    background: var(--basic-company);
    color: var(--basic-company-text);
    border-radius: 4px;
    height: 40px;
}
.main_page .catalog_button__heading{pointer-events: none;}
.catalog_button .catalog_icon {margin-right: 10px;}
.catalog_button .catalog_icon:before {font-size: 20px;}
.catalog_button .catalog_button__arrow {
    position: absolute;
    right: 15px;
    height: calc(50% - 7px);
}
.catalog_button .arrow_right {
    height: 14px;
    width: 14px;
    display: block;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.catalog_button.active .arrow_right {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/***** #Main banner *****************************************************************/
.main_banner{
    width: 100%;
    margin: 0;
    height: 100vh;
    position: relative;
}
.main_banner .banner_group__item{height: 100vh;}
.main_banner .banner_group{margin-bottom: 0;}
.main_slide {
    position: relative;
    width: 100%;
    height: 100vh;
}
.main_slide:before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #1B190F80;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none; */


    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(44 62 80 / 0%);
    background-image: url(../images/pattern.png);
    background-position: center;
    background-repeat: repeat;
    top: 0;
    left: 0;
    z-index: 0;
}
.main_slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_slide__content {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 9;
}
.main_slide__content .container {
    width: 100%;
    height: 100%;
}
.main_slide__text {
    width: 100%;
    height: 100%;
    max-width: 60%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6%;
    padding: calc(5vh + 70px) 0;
}
.main_slide__image, .main_slide__image img {
    height: 100vh;
    width: 100%;
}
.main_slide__image img {
    display: block;
    object-fit: cover;
}
.main_slide__title {
    font-size: 55px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.main_slide__annotation {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    opacity: .86;
}
.main_slide__btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 24px;
    row-gap: 12px;
    flex-wrap: wrap;
}
.main_slide__btns .btn, .main_slide__btns .btn_border {
    font-size: 20px;
    min-width: 270px;
    width: fit-content;
}

/*****  #Main  **********************************************************************/
.main {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}
.main.main_pages {
    padding-top: 80px;
    /* margin-bottom: 80px; */
}
.sidebar{
     width: 300px;
     position: relative;
     float: left;
 }
.sidebar--right{
    float: right;
}
.sidebar__boxed{
    background: var(--bg);
    color: var(--body-heading);
    display: block;
    z-index: 1;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 5px;
}
.post_sidebar {
    gap: 24px;
}
.sidebar--article {
    margin-bottom: 0;
    height: fit-content;
}
.user_container,
.post_container{
     margin-left: 340px;
     width: calc(100% - 340px);
}
.post_container--left{
    margin-left: 0;
}
.blog_container__boxed,
.products_container__boxed{
    padding: 0;
    margin-bottom: 25px;
}
.user_container__boxed{
    background: transparent;
    padding: 0;
}
.user_container .tab{
    padding: 0;
}
.post_container__wrapper{
    padding: 0;
    margin-bottom: 30px;
    overflow:hidden;
}
.post_container__wallpaper{
    background-size: cover;
    min-height: 300px;
    position: relative;
    padding: 0;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
    background-color: #F4F6F9;
    margin-bottom:24px;
    border-radius: 5px;
}
.post_container__boxed{
    /* padding: 15px; */
    position: relative;
    max-width: 100%;
    margin: 0px auto;
}
.sidebar_heading {
    font-size: 22px;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    color: var(--body-text);
    margin-bottom: 14px;
}
.sidebar_heading:before{font-size: 14px;}
.sidebar_heading.active .sidebar_heading_arrow:before{content: "\f077";}
.sidebar_article__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.sidebar_article {
    font-size: 18px;
    font-weight: 700;
    color: var(--body-heading);
    padding: 14px 0;
    border-top: 1px solid #D0D5E2;
    display: block;
    text-decoration: none;
    line-height: 1.1;
}
.blog_catalog{
    margin:0;
}
.blog_catalog__list{
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog_catalog__list--inner{
    padding-left: 15px;
    margin-bottom: 10px;
    display: none;
}
.blog_catalog__item{
    position: relative;
    margin: 0px;
    border-bottom: 1px solid rgb(227, 227, 227);
}
.blog_catalog__list--inner .blog_catalog__item,
.blog_catalog__item:last-child{
    border: none;
}
.blog_catalog__link{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px 10px 0;
    color: rgb(34, 34, 34);
    font-size: 13px;
    font-weight: 500;
    min-height: 40px;
}
.blog_catalog__no_image,
.blog_catalog__link img{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
}
.blog_catalog__name{
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding-left: 10px;
}
.blog_catalog__list--inner .blog_catalog__link{
    padding: 3px 25px 3px 0;
    font-size: 12px;
    font-weight: 400;
}
.blog_catalog__link.selected{
    color: var(--basic-company);
}
.opened > .blog_catalog__list--inner {
    display: block;
  }
.blog_catalog__switch{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: -6px;
    width: 28px;
    height: 28px;
    font-size: 0;
    cursor: pointer;
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 26px;
    -ms-flex: 0 0 26px;
    flex: 0 0 3026;
    max-width: 26px;
}
.blog_catalog__switch svg{
    width: 15px;
    height: 15px;
}
.blog_catalog__switch.active svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}


.post__labels{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.post__label{
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2px;
    padding: 5px 15px;
    background:  var(--second-company);
    color: var(--second-company-text);
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 0 3px 0;
    transition: all 0.3s;
}
.post__label:hover{
    background: var(--basic-company);
    color: var(--basic-company-text);
}
.post_information{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.post_information__item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 8px 35px 8px 0;
    font-size: 13px;
    color: rgb(170, 170, 170);
}
.post_information__item svg{
    width: 24px;
    height: 24px;
    margin-right: 7px;
}
.post_information__avatar{
    width: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32px;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    max-width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    overflow: hidden;
}
.post_information__avatar svg{
    margin-right: 0;
}
.post__heading{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.post__update_date{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    border: none;
    padding: 12px 15px;
    margin-bottom: 20px;
    background: rgba(109, 179, 109, 0.2);
    color: rgb(11, 138, 11);
    border-radius: 2px;
}
.post__update_date svg{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.post__update_date_text{margin-right: 5px;}

.post__table_contents{
    background-color: #f0f0f0;
    padding: 25px 20px 10px;
    margin-bottom: 20px;
}
.post__table_contents_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left:5px;
}
.post__table_contents ol {
    padding-left: 0;
}
.post__table_contents ol li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 5px;
}
.post__table_contents ol li a{
    font-weight: 400;
}
.post_share{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
    background-color: rgb(255, 255, 255);
    padding: 5px 20px 5px;
    border: 1px solid rgb(219, 219, 219);
    border-radius: 3px;
    min-height: 50px;
}
.post_tags{
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0px ;
}
.post_tags svg{
    width: 20px;
    height: 20px;
    margin: 1px 15px 5px 5px;
    color: #5e5e5e;
}
.post_tag{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 12px;
    margin: 0 5px 5px 0;
    color: rgb(119, 119, 119);
    text-decoration: none;
    background: rgb(240, 240, 240);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.post_tag:hover{
    text-decoration: none;
    color: #fff;
    background: var(--basic-company);
}

.post_author{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--second-company);
    color: var(--second-company-text);
    border-radius: 3px;
    padding: 20px 25px 18px;
    margin: 20px 0px;
}
.post_author__images{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 120px;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    max-width:120px;
}
.post_author__img{

}
.post_author__img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}
.post_author__infobox{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 120px);
    -ms-flex: 0 0 calc(100% - 120px);
    flex: 0 0 calc(100% - 120px);
    max-width: calc(100% - 120px);
    padding-left: 10px;
}
.post_author__name{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.post_author__position{
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--second-company-text);
    opacity: 0.8;
}
.post_author__link{
    display:inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--second-company-text);
    opacity: 0.8;
}
.post_author__link:hover{
    color: var(--second-company-text);
    text-decoration: none;
}
.post_author__social .social__link{
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 13px;
}
.filter__tag_menu{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: 15px;
}
.filter__tag_item{
    margin: 0 7px 7px 0;
}
.filter__tag_link{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    border-radius: 3px;
    padding: 5px 5px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #dbdbdb;
    color: #333;
    text-decoration: none;
    background: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.filter__tag_link:hover{
    color: #fff;
    background: var(--basic-company);
}
.post_container__body{
    margin-top: 24px;
    margin-bottom: 30px;
}
.post_container__footer .pager{
    margin-top: 24px;
    margin-bottom: 0px;
}



/***** #Filter **********************************************************************/
.filter_wrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 30%;
    width: 100%;
}
.fn_view_all_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    line-height: 48px;
    font-size: 16px;
    color: var(--button-second-color);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-underline-offset: 3px;
    text-decoration: underline;
    text-decoration-color: var(--button-second-color);
    cursor: pointer;
}
.fn_view_all_btn:hover {
    text-decoration-color: transparent;
}
.filter__name {
	font-size: 16px;
	line-height: 1;
	padding: 10px 0;
	cursor: pointer;
	font-weight: 600;
	position: relative;
    color: var(--body-heading);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
.filter__name span:not(.filter__name_arrow) {
    text-overflow: ellipsis;
    max-height: calc(1em * 2);
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.filter__name_arrow{
    width: 23px;
    min-width: 23px;
    max-width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    transform: rotate(0deg);
}
.filter__name_arrow svg{ 
    display: block;
    width: 100%;
    height: 6px;
    color: var(--body-heading);
}
.filter__name.active .filter__name_arrow {
    transform: rotate(180deg);
}
.filters .filter__group{
    border-bottom: 1px solid rgb(219, 219, 219);
    padding-bottom: 5px;
    margin-top: 5px;
}
.feature_content {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}
.filter__group_wrap {
    max-height: none;
    overflow: visible;
}
.fn_features:not(.desctop) .filters .filter__group:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.filter__selected_feature{margin: 0 5px 5px 0;}
.filter__selected_feature .filter__sf_link{
    background: #ff8c001a;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dbdbdb;
    min-height: 30px;
}
.filter__selected_feature .filter__sf_link i,
.filter__selected_feature .filter__sf_link span{font-size: 12px;}
.filter__selected_feature .filter__sf_link span{color: rgba(63, 78, 93, 0.7);}
.filter__selected_feature .filter__sf_link i{color: rgb(51, 62, 74);}
.filter__selected_feature .filter__sf_link svg{
    width: 15px;
    height: 15px;
    color: rgba(216, 31, 31, 0.7);
    position: relative;
    left: 5px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; 
}
.filter__selected_feature_reset{margin: 10px 0;}
.filter__selected_feature_reset .filter__sf_reset{
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;font-size: 13px;
    line-height: 1.2;
    color: #363636;
    font-weight: 400;
    transition: all 0.3s ease 0s;
    border-bottom: 1px dashed;
    border-color: var(--button-color);
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}
.filter__item{
    margin: 10px 0;
    position: relative;
}
.filter__link{
    transition: color 0.3s;
    display: block;
    width: 100%;
    text-align: left;
    line-height: 24px;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    color: var(--body-text);
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.filter__link .filter__checkbox{
    transition: border-color 0.3s;
    border-radius: 4px;
    border: 1px solid #18519D;
    display: block;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    background: #fff;
}
.filter__link .filter__checkbox svg{
    height: 18px;
    opacity: 1;
    width: 20px;
}
.filter__link .filter__label{
    display: block;
    line-height: 22px;
    color: var(--body-heading);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}
@-webkit-keyframes checkmarkAnimation {
	100% {stroke-dashoffset: 0;}
}
@keyframes checkmarkAnimation {
	100% {stroke-dashoffset: 0;}
}
.filter__checkbox.checked svg {color: #fff;}
.filter__link.checked svg path {
    stroke: #fff;
    stroke-width: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-miterlimit: 10;
    opacity: 1;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: checkmarkAnimation 0.5s 0s forwards;
    animation: checkmarkAnimation 0.5s 0s forwards;
}
.filter__link.checked .filter__label {
    color: #18519D;
}
.filter__link.checked .filter__checkbox {
    border-color: #18519D;
    background: #18519D;
}
.view_all_feature {
    color: #363636;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 400;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-bottom: 1px dashed;
    border-color: var(--basic-company);
    margin-bottom: 10px;
    text-decoration: none;
    display: inline-block;
}
.feature_content .filter__item.closed {display: none;}
.feature_content.opened .filter__item.closed {display: block;}
.filter__catalog_menu{margin-bottom: 5px;}
b.filter__catalog_link,
a.filter__catalog_link{
    position: relative;
    font-family: inherit;
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    text-decoration: none;
	color: var(--body-text);
    line-height: 1.2;
    font-size: 13px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    transition: all 0.3s ease 0s;
}
a.filter__catalog_link{cursor: pointer;}
a.filter__catalog_link span{padding-right: 5px;}
.filter_catalog__no_image,
b.filter__catalog_link img,
a.filter__catalog_link img{
    width: 18px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
    margin-right: 10px;
    height: auto;
}
a.filter__catalog_link svg{
    width: 12px;
    height: 12px;
    position: relative;
    top: 1px;
}
.filter_catalog__no_image svg{
    width: 20px!important;
    height: 20px!important;
}
b.filter__catalog_link.selected{
    color: var(--basic-company);
    font-weight: 500;
}

/***** #Price range ******************************************************************/
.price_range {
    overflow: hidden;
    margin-bottom: 15px;
}
.price_label {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 35px);
    -ms-flex: 0 0 calc(50% - 35px);
    flex: 0 0 calc(50% - 35px);
    max-width: calc(50% - 35px);
}
.price_range .separator,
.price_range .price_currency{
   line-height: 22px;
    color: #363636;
    font-weight: 400;
    font-size: 0.9em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35px;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    max-width: 35px;
    text-align: center;
}
.price_range .separator{font-size: 1.2em;}
.max_input,
.min_input {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 5px;
    border-radius: 3px;
    border: 1px solid #d1d1d1;
    height: 30px;
    color: rgb(54, 54, 54);
	font-size: 14px;
	font-weight: 500;
}
.max_input:focus,
.min_input:focus {border-color: var(--basic-company);}

.switch_mobile_filter{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    background: var(--basic-company);
    border: 1px solid;
    border-color: var(--basic-company);
    border-radius: 5px;
    height: 50px;
    text-decoration: none;
    flex: 1 0 auto;
    width: auto;
    max-width: 80px;
    min-width: 50px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.switch_mobile_filter svg {
    display: block;
    height: 28px;
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    color: var(--body-heading);
}
.switch_mobile_filter:hover, .switch_mobile_filter:focus, .switch_mobile_filter:active {
    background: #fff;
}

/***** #Product sorting *************************************************************/
.products_container__sort{
    padding: 10px;
    margin-bottom: 30px;
    background: #F4F5F7;
    border-radius: 5px;
    gap: 16px;
}
.fn_products_sort {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 250px;
}
.products_sort{
    flex: 1 1 auto;
    max-width: 250px;
    min-width: 0;
    position: relative;
    width: 100%;
    display: flex;
}
.products_sort__icon {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
}
.products_sort__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    color: var(--body-heading);
}
.product_sort__title{
    color: #696868;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    margin-right: 5px;
}
.product_sort__link {
	position: relative;
	background: transparent;
	cursor: pointer;
	font-size: 12px;
	line-height: 1;
	padding: 5px 10px;
	font-weight: 400;
	transition: all 0.3s ease 0s;
	border: 1px solid rgb(127, 127, 127);
    color: rgb(69, 69, 69);
	text-decoration: none;
	font-family: inherit;
	margin: 0 3px;
    border-radius: 4px;
}
.product_sort__link.active_down,
.product_sort__link.active_up {
    color: var(--button-color);
    border-color: var(--button-color);
}
.product_sort__link .sorting_icon{
    width: 13px;
    height: 13px;
    margin-left: 5px;
}
.product_sort__link .sorting_icon--right,
.product_sort__link .sorting_icon--left{fill: #a1a1a1;}
.product_sort__link.active_down .sorting_icon--left{fill: var(--button-color);}
.product_sort__link.active_up .sorting_icon--right{fill: var(--button-color);}

.select2-container .select2-selection--single {
    height: 50px!important;
}
select {
    border-radius: 5px;
    height: 50px;
    border: 1px solid #18519D;
    appearance: none;
    -webkit-appearance: none;
    color: var(--body-heading);
    line-height: 30px;
    font-size: 16px;
    font-weight: 500;
    min-height: 50px;
}

select.product_sort__select {
    padding: 10px 32px 10px 45px;
    min-width: 0;
    width: 100%!important;
    max-width: 250px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.select2-container--default .select2-selection--single {
    background: #fff !important;
    border-radius: 5px !important;
    border: 1px solid #18519D !important;
    color: var(--body-heading) !important;
    font-family: inherit !important;
    font-size: 16px !important;
    height: 50px !important;
    font-weight: 500 !important;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-width: 0 !important;
    display: flex !important;
    line-height: inherit !important;
}
.products_sort .select2-container--default .select2-selection--single {
    padding: 10px 32px 10px 45px !important;
    width: 100% !important;
    max-width: 250px;
}
.products_sort .select2-container, .products_sort .selection {
    display: -webkit-box!important;
    display: -webkit-flex!important;
    display: -ms-flexbox!important;
    display: flex!important;
    max-width: 250px;
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--body-heading)!important;
    line-height: 30px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 7px!important;
    top: 0!important;
    height: 100%!important;
    width: 23px!important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--basic-company)!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: transparent!important;
    border-width: 0!important;
    margin-left: 0!important;
    margin-top: 0!important;
    width: 14px!important;
    height: 14px!important;
    left: 0!important;
    transform: translate(0, -50%);
    background-image: url('../images/arrow1.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(0, -50%) rotate(-180deg);
    margin-top: 0 !important;
}
.select2-dropdown {
    border: 1px solid #18519D!important;
    border-radius: 5px !important;
}
.products_sort .select2-results__option {
    padding: 7px 7px 7px 45px!important;
    font-size: 16px;
    color: var(--body-heading);
}
.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}
.select2-container--open .select2-dropdown {
    top: 2px;
}

/***** #Pagination *******************************************************************/
.pagination {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 16px auto 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    row-gap: 10px;
    column-gap: 14px;
}
.pagination__item {
    display: block;
    margin-bottom: 0;
}
.pagination__link {
    display: grid;
    place-items: center;
    padding: 0 10px;
    min-width: 40px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ECEBEB;
    background-color: #fff;
    color: var(--body-heading);
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.pagination__link:hover,
.active .pagination__link {
    color: #fff;
    background-color: var(--body-heading);
    border-color: var(--body-heading);
}
.products_pagination{margin: 10px auto 0;}

/***** #Breacrumbs  *****************************************************************/
.breadcrumbs {
    width: 100%;
    border: none;
    padding: 0 0 6px 0;
    background: transparent;
    list-style: none;
    margin: 16px 0;
    color: #A3A3A3;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
}
.breadcrumbs .breadcrumbs__item {
    padding: 0;
    color: inherit;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    white-space: nowrap;
}
.breadcrumbs .breadcrumbs__item:first-child {margin-right: 3px;}
.breadcrumbs .breadcrumbs__item + .breadcrumbs__item:before { 
    margin: 0 6px;
    content: url('../images/breadcrumbs.svg');
    width: 15px;
    height: 15px;
}
.breadcrumbs a{
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
    color: #2A2A2AD1;
}
.breadcrumbs a:hover{color: var(--button-color);}
.breadcrumb_fixed {
    position: absolute;
    z-index: 9;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.breadcrumb_fixed .breadcrumbs .breadcrumbs__item {
    color: #e5e5e5;
}
.breadcrumb_fixed .breadcrumbs a {
    color: #fff;
}

/***** #Raiting  *********************************************************************/
.product__rating{position: relative;}
.post__rating{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.rating_starOff {display: inline-block;vertical-align: top;}
.rating_starOff,
.rating_starOn {
    width: 90px;
    height: 18px;
    background: url(../images/rating.png) repeat-x left top;
}
.product-page_wrap .rating_starOff,
.product-page_wrap .rating_starOn {
    background: url(../images/rating-black.png) repeat-x left top;
}
.rating_starOn, .product-page_wrap .rating_starOn {display: block;background-position: left bottom;}
.rating_text {
    vertical-align: middle;
    line-height: 18px;
    display: inline-block;
    position: absolute;
    left: calc(100% + 8px);
    font-size: 10px;
    font-weight: 500;
    color: rgb(102, 102, 102);
    white-space: nowrap;
    top: 1px;
    z-index: 2;
}
.rating_text.hidden {
    display: none;
}
.product_rating,
.post_rating{
    position: relative;
}
.product_rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

/***** #Main brands *****************************************************************/
.main_brands{
    border-left: 1px solid;
    border-top: 1px solid;
    border-color: var(--border-color);
}
.main_brands__item{
    height: 85px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--border-color);
}
.main_brands__image,
.main_brands__name,
.main_brands__link{
    height: 85px;
    text-align: center;
}
.main_brands__image,
.main_brands__name{padding: 10px;}
.main_brands__image img{
    opacity: .8;
    max-height: 75px;
    transition: .3s;
}
.author_list,
.brand{margin-bottom: -15px;}
.author_list__item,
.brand__item{margin-bottom: 15px;}
.author_list__preview,
.brand__preview{
    border: 1px solid #dbdbdb;
    box-shadow: 0 0 0 #0000001a,0 0 0 #0000001a,0 0 0 #0000001a;
    height: 100%;
    padding: 10px;
    position: relative;
    transition: .3s;
    width: 100%;
    background: #fff;
}
.brand__link{
    height: 100px;
    margin: auto;
    position: relative;
    text-decoration: none;
}
.brand__image img{display: block;}
.brand__name{
    color: var(--body-text);
    text-align: center;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
    overflow: hidden;
}

/***** #Preview product *************************************************************/

.fn_products_slide:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fn_products_slide:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(1n+5) {
    display: none;
}
.product_item{height: 536px; padding: 10px; text-decoration: none;}
.product-page__card_mini .product_item {height: 465px; padding: 0;}
.comparison_item{margin-bottom: 0!important;}
.product_preview{
    box-shadow: 0px 3px 10px 0px #00082721;
    height: 100%;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid;
    border-color: #fff;
}
.product_preview__sku{
    color: var(--body-text);
    font-size: 11px;
    margin: 5px 0 5px;
    font-style: italic;
    opacity: .7;
    font-weight: 500;
}
.sku__nubmer{font-weight: 600;}
.product_preview__center {position: relative;text-decoration: none;}
.product_preview__image, .product_preview__no_image {
    height: 300px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}
.product-page__card_mini .product_preview__image, .product-page__card_mini.product_preview__no_image {
    height: 260px;
}
.product_preview__img {
    padding: 10px 10px 0 10px;
    width: 100%;
}
/* .product_preview__img .fn_img {
    background-color: var(--bg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 50% 0;
    transition: background-size .4s;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    text-decoration: none;
} */
.product_preview__image img {max-height: 100%; width: 100%; height: 100%; display: block; object-fit: cover;}
.product_preview__image .sticker__image {max-height: inherit;}
.product_preview__no_image svg{width: 80px;height:80px;}
.stickers_product-page,
.stickers{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: absolute;
    top:10px;
    left: 0;
}
.stickers_product-page{
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    left: inherit;
    right: 0;
    position: static;
    flex-direction: row;
    margin-bottom: 10px;
    gap: 10px;
}
.sticker{
    display: inline-block;
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
    border-radius: 0 4px 4px 0;
    white-space: nowrap;
}
.stickers_product-page .sticker {
    border-radius: 4px;
    height: 30px;
    padding: 0 10px;
    font-size: 16px;
    display: grid;
    place-items: center;
    margin: 0;
}
.sticker--hit{background-color: #E3830E;}
.sticker--discount{background-color: #F73E42;}
.sticker--support{background-color: #1B1B1B;}
.sticker--special{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60px;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    max-width: 60px;
    width: 60px;
}
.sticker__image {
    display: inline-block;
    width: 60px;
    max-height: inherit;
}
.sticker_pct{
    position: absolute;
    top:0;
    right: 0;
    display: inline-block;
    text-align: center;
    line-height: 1;
    background-color: rgb(251, 63, 76);
    color: #fff;
    font-weight: 600;
    padding: 5px 5px 3px;
    font-size: 10px;
    border-radius: 4px;
}
.product_preview__name {
    height: calc(1.2em * 2);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--body-heading);
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
    padding: 0 10px;
}
.product_preview__category {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--body-text);
    height: calc(1.2em * 1);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-top: 8px;
    padding: 0 10px;
}
.product_preview__prices {
    height: 38px;
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
    padding: 0 10px;
}
.product_preview__prices .old_price{
    color: var(--body-text);
    font-size: 18px;
    position: relative;
    font-weight: 600;
    line-height: 1;
}
.product_preview__prices .old_price .currency{
    font-size: 18px;
    font-weight: 400;
    position: relative;
    top: 0px;
}
.product_preview__prices .old_price::after {
    border-bottom: 1px solid var(--body-text);
    content: "";
    left: 0;
    position: absolute;
    top: 45%;
    width: 100%;
}
.product_preview__prices .price{
    color: var(--body-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}
.product_preview__prices .price--red{color: #F73E42; margin: 0 10px 0 0;}
.product_preview__prices .price .currency{
    font-size: 20px;
    font-weight: 700;
    position: relative;
    top: 0px;
}
.product_preview__bottom {
    margin: 14px 0 0;
}
.product_preview__buttons {
    position: relative;
	height: 50px;
    padding: 0 10px;
}
.product_preview__center .wishlist_button__remove,
.product_preview__center .wishlist_button{
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    border: 1px solid #E7E7E7;
    background: #fff;
    cursor: pointer;
}
.product_preview__center .wishlist_button svg{
    width: 30px;
    height: 30px;
    display: block;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product_preview__center .wishlist_button svg path{
    stroke: #8E8E8E;
    fill: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product_preview__center .wishlist_button.selected svg path{
    stroke: var(--button-text);
    fill:var(--button-text);
}
.product_preview__buttons .product_preview__button{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    height: 50px;
}
.product_preview__buttons .product_preview__button:before{
    font-family: FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1;
    padding: 0 5px;
}
.product_preview__buttons .remove_link{color: #b10707 !important;font-size: 38px;}
.product_preview__button.hidden{display: none;}
.product_preview__button{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    white-space:nowrap;
    padding: 0 5px;
    color: var(--body-text);
    border-radius: 5px;
    height: 50px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product_preview__button .product_preview__button_text{
    visibility: hidden;
    opacity: 0;
    font-size: 16px;
    font-weight: 600;
    width: 0;
    overflow: hidden;
}
.product_preview__button {
    background: var(--basic-company);
    border-color: var(--basic-company);
    color: var(--button-text);
    padding: 0;
}
.product_preview__button .product_preview__button_text {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    width: auto;
}
.product_preview__button--pre_order{
    background: transparent;
    border-color: rgb(127, 127, 127);
    color: rgb(69, 69, 69);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.product_preview__out_stock{
    background: transparent;
    border: 1px solid transparent;
    padding: 3px 0;
    line-height: 1.2;
    color: rgb(156, 156, 156);
    height: 34px;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.product_preview__button--pre_order .product_preview__button_text{
    padding: 0;
    visibility: visible;
    opacity: 1;
    font-size: 12px;
    font-weight: 500;
    width: auto;
}
.product_preview__button .icon::before{
    font-size: 20px;
}
.product_preview__buttons .comparison_button,
.product_preview__buttons .fast_order_button{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    border-radius: 5px;
    text-decoration: none;
    background: #fff;
    border: 1px solid #E7E7E7;
    color: var(--button-text);
    font-size: 0px;
    transition: all .2s;
    padding: 0 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    width: 50px;
    margin-left: 16px;
}
.product_preview__buttons .fast_order_button svg{
    width: 30px;
    height: 30px;
    display: block;
}
.product_preview__buttons .comparison_button::before{font-size: 16px;line-height: 1;}
.product_preview__buttons .fast_order_button::before{font-size: 16px;line-height: 1;}
.product_preview__buttons .comparison_button.selected{
    position: relative;
    opacity: .8;
    border-color: var(--button-color);
    color: var(--button-color);
}
.product_preview__annotation{
    display: none;
	margin-top: 5px;
	max-height: 145px;
	overflow: hidden;
	position: relative;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 400;
    color: var(--body-text);
    opacity: 0.9;
}
.product_preview__annotation ul li{margin: 0;font-size: 12px;}
.product_preview__annotation::after {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 16px;
    width: 80px;
    content: "";
    background-image: -webkit-linear-gradient(left, rgba(255,255,255,0), #fff 40%, #fff);
    background-image: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255) 40%, rgb(255, 255, 255));
}
.product_preview__annotation ol,
.product_preview__annotation ul{margin: 10px 0 0 15px;}
.product_preview__variants{
    display: none;
	border-top: 1px solid #dbdbdb;
	margin: 10px 0 0;
	padding: 10px 0 0;
}
.product_preview__variants.hidden{display: none!important;}
.product_preview__variants .select2{margin-top: 0;}
.product_preview__variants .select2-container {width: 100%!important;max-width: 100%;}

/***** #Preview article *************************************************************/

.fn_articles_slide:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.fn_articles_slide:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(1n+4) {
    display: none;
}
.article_item{
    height: 440px;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
}
.article__preview{
    box-shadow: 0px 3px 10px 0px #00082721;
    border-radius: 5px;
    height: 100%;
    padding: 0;
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    border: 1px solid;
    border-color: #e8e9eb;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.article__title {
    color: var(--body-heading);
	background: #fff;
	line-height: 1.2;
	font-size: 20px;
	-webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
	display: block;
	position: relative;
	font-weight: 600;
    padding: 0 16px;
    margin-top: 12px;
    text-overflow: ellipsis;
    height: calc(1.2em * 2);
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
    overflow: hidden;
}
.article__body{
    height: 100%;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.article__image{
    position: relative;
    height: 250px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}
.article__image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article__labels{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.article__label{
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2px;
    padding: 3px 10px;
    background:  var(--second-company);
    color: var(--second-company-text);
    font-size: 12px;
    font-weight: 500;
    border-radius: 0 0 3px 0;
    transition: all 0.3s;
}
.article__label:hover{
    background: var(--basic-company);
    color: var(--basic-company-text);
}
.article__info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 16px;
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
    column-gap: 20px;
}
.article__info_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.article__info_item{
    font-weight: 500;
    /* padding-right: 20px; */
    font-size: 10px;
   display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   justify-content: flex-start;
   gap: 5px;
   align-items: center;
    color: #A3A3A3;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.article__info_item.avatar {
    margin-right: auto;
}
.article__info_item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    font-size: 16px;
    font-weight: 300;
    padding-top: 3px;
}
.article__info_item:last-child{
    padding-right: 0px;
}
.article__info_item span.article__author {
    font-weight: 400;
}
.article__info_item svg{
    width: 24px;
    height: 24px;
    display: block;
}
.article__image .article__no_image{height: 60px;}
.article__image .article__no_image svg{width: 50px;height: 50px;}
.article__info_item--author{
    display: flex;
    align-items: center;
    margin:0;
}
.article__avatar img{
    border-radius: 50%;
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.article__avatar svg{
    width: 24px;
    height: 24px;
    display: block;
}
.article__annotation{
	position: relative;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 400;
    color: var(--body-text);
    opacity: 0.8;
    padding: 0 16px;
}
.article__annotation p{
    position: relative;
    font-size: 12px;
    line-height: 1.5;
}
.article__footer{
    margin: 24px 0 16px 0;
    padding: 0 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    width: 100%;
    margin-top: auto;
    column-gap: 10px;
    flex-wrap: wrap-reverse;
}
.author_card{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.author_card__image{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    min-height: 280px;
    height: 100%;
}
.author_card__no_image svg{
    width: 120px;
    height: 120px;
}
.author_card__info{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
    padding-left: 30px;
}
.author_card__name{
    margin-bottom: 5px;
}
.author_card__position{
    font-size: 16px;
    color: rgb(170, 170, 170);
    margin-bottom: 20px;
    font-weight: 500;
}
.author_card__social{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.author_card__social .social__link{
    border: 1px solid;
    border-color: var(--second-company);
    background-color: var(--second-company);
    color: var(--second-company-text);
}
.author_card__social .social__link:hover{
    border-color: var(--basic-company);
    background-color: var(--basic-company);
    color: var(--basic-company-text);
}
.author_list__link{
    text-decoration: none;
}
.author_list__image{
    margin-bottom: 10px;
    min-height:160px;
}
.author_list__name{
    font-weight: 600;
    color: var(--body-text);
}

/***** #Comments *******************************************************************/
.comment__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
}
.comment_heading{
    color: #222;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    margin-top: 60px;
}
.comment_heading::after {
    content: "";
    height: 2px;
    background: #c1c1c1;
    position: absolute;
    top: 55%;
    right: 0;
    display: block;
    width: 100%;
}
.comment_heading span{
    background: #fff;
    padding: 0px 20px;
    position: relative;
    z-index: 1;
}
.comment__icon{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25px;
    -ms-flex: 0 0 25px;
    flex: 0 0 25px;
    max-width: 25px;
    height: 25px;
    margin-top: 0;
}
.comment__icon svg, .admin_note .comment__icon svg{
    display: block;
    min-width: 25px;
    max-width: 25px;
    height: auto;
    aspect-ratio: 1 / 1;
}
.comment__author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    column-gap: 12px;
    width: 100%;
    row-gap: 5px;
}
.comment__post_rating {
    height: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.comment__icon .comment__image{max-width: 40px;height: auto;}
.comment__item{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 16px 20px;
    border: 1px solid #F1EAD0;
    background: #FFFCEE;
    border-radius: 10px;
}
.admin_note {margin-left: 30px;}
.comment__item.admin_note {
    padding: 0;
    border: 0;
}
.admin_wrap {
    border-top: 1px solid #E5E9F3;
    padding-top: 10px;
    margin-top: 10px;
}
.comments {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    flex-wrap: nowrap;
    width: 100%;
}
.comment__header{
    margin-bottom: 8px;
    display: grid;
    grid-template-columns: 1fr 80px;
    width: 100%;
    column-gap: 10%;
    row-gap: 5px;
}
.comment__name{
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: var(--body-text);
    margin-right: auto;
}
.comment__status{
    font-weight: 400;
    font-size: 13px;
    color: rgb(11, 152, 47);
    margin-left: 10px;
    margin-right: 10px;
    white-space: nowrap;
}
.comment__date{
    font-weight: 400;
    font-size: 14px;
    color: #5C5C5C;
    white-space: nowrap;
    line-height: 28px;
    margin-left: auto;
    height: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.comment__body{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: rgb(74, 74, 74);
}

/***** #Product page ***************************************************************/
.product-page__sku {
    border-radius: 5px;
    padding: 4px 10px;
    background: #FFFFFF66;
    flex-wrap: nowrap;
    gap: 5px;
    font-size: 18px;
    font-weight: 400;
    color: var(--body-text);
}
.product-page__sku .sku_number{
    font-weight: 700;
    color: var(--body-heading);
}
.product-page_wrap {
    gap: 40px;
    width: 100%;
    padding: 40px 0;
}
.product-page__heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--body-heading);
    margin-bottom: 24px;
}
.product-page__gallery {
    max-width: 600px;
    width: 100%;
    height: fit-content;
}
.product-page__images{
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    text-align: center;
    height: 100%;
    margin-top: 10px;
}
.product-page__images.btn-padding {
    padding: 0 25px;
}
.product-page__image{
    position: relative;
    margin: 0;
    width: 100%;
    height: fit-content;
    max-width: 600px;
    text-align: center;
}
.product-page__img{
    width: 100%;
    /* border: 1px solid #EBEBEE; */
    border-radius: 5px;
    height: fit-content;
    background: #fff;
}
.product-page__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain!important;
}
.gallery_image a{
    min-height: fit-content;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    aspect-ratio: 1.2 / 1;
}
.product-page__no_image{
    width: 100%;
    height: 100%;
    padding: 10px;
}
.product-page__no_image svg{width: 120px;height: 120px;}
.product-page__images-item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px !important;
    border: 1px solid #EBEBEE;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
    background: #fff;
}
.product-page__images-item.swiper-slide-thumb-active {
    border-color: var(--body-text);
}
.product-page__images-item picture{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.product-page__images-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.product-page__item{position: relative;}
.product-page__promo_img{
    position: absolute;
    max-width: 100px;
    max-height: 100px;
    top: 0;
    left: 0;
}
.product-page__details {
    width: 100%;
}
.details_boxed{background-color: transparent;overflow: hidden;}
.details_boxed__item{
    position: relative;
    background: transparent;
    padding-bottom: 40px;
    column-gap: 16px;
    row-gap: 10px;
}
.details_boxed__item.buttons {
    border-bottom: 1px solid #00000033;
    margin-bottom: 40px;
}
.details_boxed__buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
}
.details_boxed__item--one{padding: 15px;}
.details_boxed__item--inner{padding: 0px;}
.details_boxed__item:last-child{border-bottom: none;padding-bottom: 0;}
.details_boxed__item ul,
.details_boxed__item ol{
    padding: 0px;
    margin: 0 0 0 15px;
}
.details_boxed__item ul li,
.details_boxed__item ol li{
    margin-bottom: 10px;
}
.details_boxed__item ul li:last-child,
.details_boxed__item ol li:last-child{
    margin-bottom: 0;
}
.details_boxed__title{
    margin-right: 5px;
    color: var(--body-text);
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}
.details_boxed__brand{
    min-width: 80px;
    position: absolute;
    top: 15px;
    right: 20px;
    text-align: right;
}
.details_boxed__no_brand{padding-left: 60px;}
.details_boxed__anchor_comments{margin-top: 0;}
.anchor_comments__link {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    margin-top: 7px;
    margin-left: 2px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border-bottom: 1px dashed;
    border-color: #666;
    text-decoration: none;
}
.available__no_stock,
.available__in_stock{
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    border: 1px solid;
    border-radius: 5px;
    padding: 4px 10px;
    flex-wrap: nowrap;
    gap: 10px;
}
.available__in_stock svg, .available__no_stock svg {
    width: 23px;
    height: 23px;
    display: block;
}
.available__no_stock{color: #b10707; border-color: #b10707;}
.available__in_stock{color:#006011; border-color: #006011;}
.details_boxed__select .select2{margin-bottom: 15px;}
.details_boxed__select .select2-container {min-width: 50%;max-width: 100%;}
.details_boxed__select ul li {margin: 0;}
.details_boxed__select .select2-selection--single {height: 32px!important;}
.details_boxed__select .select2-selection__rendered {line-height: 32px!important;}
.details_boxed__select .select2-selection__arrow {height: 32px!important;}
.details_boxed_pct{
    position: absolute;
    top: -9px;
    left: 0;
    display: inline-block;
    text-align: center;
    line-height: 1;
    background-color: rgb(238, 238, 238);
    color: rgb(251, 63, 76);
    font-weight: 600;
    padding: 4px 5px 4px;
    font-size: 12px;
    border-radius: 4px;
}
.details_boxed__amount{margin-bottom: 0px}
.amount{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border: 1px solid;
    border-color: #D0D5E2;
    height: 50px;
    color: var(--body-heading);
    font-size: 14px;
    font-weight: 400;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    max-width: 150px;
    overflow: hidden;
}
.amount__plus,
.amount__minus{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
    font-size: 20px;
    height: 100%;
}
.amount__input{
    border: 0 none;
    display: block;
    width: fit-content;
    text-align: center;
    font-weight: 500;
    line-height: 1;
    padding: 0;
    font-size: 18px;
    height: 100%;
    border-right: 1px solid #D0D5E2;
    border-left: 1px solid #D0D5E2;
    border-radius: 0;
     max-width: 50px;
    min-width: 50px;
    order: unset;
}
.details_boxed__prices{
    position: relative;
    line-height: 1;
}
.product__header_block .details_boxed__prices {
    margin: 0;
    padding: 0;
    margin-top: 24px;
}
.details_boxed__price,
.details_boxed__old_price{
    position: relative;
}
.details_boxed__old_price{
    font-weight: 600;
    color: rgb(97 92 92);
    position: relative;
    font-size: 28px;
}
.product__header_content .details_boxed__old_price {
    color: #b4b4b1;
}
.details_boxed__price .currency,
.details_boxed__old_price .currency{
    font-size: 34px;
    font-weight: 800;
    position: relative;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-left: 5px;
}
.details_boxed__old_price .currency{
    font-size: 28px;
    font-weight: 600;
}
.details_boxed__old_price::after {
    border-bottom: 1px solid rgb(97 92 92);
    content: "";
    left: 0;
    position: absolute;
    top: 45%;
    width: 100%;
}
.product__header_content .details_boxed__old_price::after {
    border-bottom: 1px solid #b4b4b1;
}
.details_boxed__price{
    font-weight: 800;
    color: var(--body-text);
    font-size: 34px;
}
.product__header_content .details_boxed__price {
    color: #fff;
}
.details_boxed__price.price--red{color: #FF3639; margin-right: 10px;}
.details_boxed__prices_warning {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
    margin-top: 16px;
}
/* .details_boxed__buttons > *{
    position: relative;
    min-height: 1px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0;
    padding-right: 10px;
}
.details_boxed__buttons > *:first-child{padding-right: 0;} */
.product-page__button{
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    font-weight: 500;
    font-size: 14px;
    font-family: inherit;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    height: 40px;
    transition: all 0.2s;
    opacity: 1;
}
.product-page__button{
    background: var(--button-color);
    color: var(--button-text);
}
.product-page__button:focus{opacity: 0.8;}
.product-page__out_stock{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #dbdbdb;
    color: #9c9c9c;
    white-space: nowrap;
    cursor: not-allowed;
}
.product-page__button--preloader{
    cursor: pointer;
    border: 1px solid #7f7f7f;
    background: transparent;
    color: #454545;
    white-space: nowrap;
    transition: all 0.2s;
}
.details_boxed__buttons .fn_not_preorder,
.details_boxed__buttons .fn_is_preorder,
.details_boxed__buttons .fn_is_stock,
.details_boxed__buttons .callback {
    padding-right: 0px;
    margin-bottom: 0;
    width: fit-content;
    max-width: 250px;
    flex-grow: 1;
}
.product-page__wishlist{
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-decoration: none;
    flex-wrap: nowrap;
}
.product-page__wishlist .product-page__wishlist_icon {
    height: 30px;
    width: 30px;
    display: grid;
    place-items: center;
    margin-right: 10px;
}
.product-page__wishlist .product-page__wishlist_icon svg path {
    stroke: #8E8E8E;
    fill: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product-page__wishlist.selected .product-page__wishlist_icon svg path {
    stroke: var(--button-text);
    fill: var(--button-text);
}
.product-page__wishlist .product-page__wishlist_text {
    line-height: 1;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    color: var(--body-heading);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product-page__wishlist:hover .product-page__wishlist_text {
    text-decoration-color: var(--body-heading);
}
.product-page__wishlist:hover .product-page__wishlist_icon svg path {
    stroke: var(--button-text);
}
.product-page__wishlist.selected:hover .product-page__wishlist_icon svg path {
    opacity: .7;
}
.details_boxed__share{
    padding-top: 10px;
    padding-bottom: 10px;
}
.share{
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.share__text{
    color: var(--body-text);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    margin-right: 10px;
}
.share__icons .jssocials-share-logo {
    font-size: 16px;
}
.share__icons .jssocials-share-link {
    padding: 5px 10px;
    border-radius: 4px;
}

/***** #Features ********************************************************************/
.features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.features__item{
    padding: 0 15px;
}
.features__wrap {
    border-bottom: 1px dotted #dbdbdb;
    padding: 10px 0;
}
.features__name,
.features__value {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    min-height: 1px;
    font-size: 13px;
    color: var(--body-text);
}
.features .features__value {
    font-weight: 600;
    text-align: right;
}

/***** #Pager ***********************************************************************/
.pager {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    overflow: hidden;
}
.pager li{
    margin-bottom: 10px;
}
.pager a{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-decoration: none;
    color: var(--body-text);
    position: relative;
    background-color: #fff;
    padding: 14px 16px;
    min-height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    line-height: 1.2;
}
.pager a svg {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    /* -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg); */
}
.pager .prev svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.pager .prev a {
    justify-content: flex-end;
}
.pager .next a {
    justify-content: flex-start;
    flex-direction: row;
}
.pager_name__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.pager_subttl {
    font-size: 14px;
    font-weight: 400;
    color: #A3A3A3;
    margin-bottom: 6px;
}
.pager_ttl {
    font-size: 18px;
    font-weight: 700;
    color: var(--body-heading);
    text-overflow: ellipsis;
    line-height: 1.2;
    height: calc(1.2em * 2);
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    
}
.block_padding {
    padding-bottom: 80px;
}
.block_section__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}
.form_wrap {
    margin-bottom: 24px;
    background: var(--bg);
    border-radius: 5px;
    overflow: hidden;
    padding: 20px 24px;
}
.form_title__rating {
    font-size: 18px;
    font-weight: 700;
    color: var(--body-heading);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 30px;
    row-gap: 16px;
    flex-wrap: wrap;
}
.form_title__rating .post_rating {
    height: 18px;
}
.comment_form  .form__body{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 80%;
    width: 100%;
}
.comment_form .form__group {
    width: 100%;
    margin-bottom: 10px;
}
.comment_form .form__group.half {
    width: 49%;
}
.comment_form .form__footer {
    margin-top: 20px;
    margin-bottom: 0;
}
.comment_form .form__button {
    margin-bottom: 0;
    max-width: 200px;
}
.comment__name_wrap {
    column-gap: 12px;
    row-gap: 5px;
}






/***** #Mini preview products ***********************************************************/
.sidebar_card{

}
.sidebar_card__item{
    margin-top: 5px;
    margin-bottom: 5px;
    min-height: 80px;
    padding: 0 5px!important;
}
.sidebar_card__link{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #dbdbdb;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    min-height: 80px;
    padding: 5px;
}
.sidebar_card__image{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 70px;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    max-width: 70px;
}
.sidebar_card__no_image{height: 70px;}
.sidebar_card__no_image svg{width: 40px;height: 40px;}
.sidebar_card__content{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 70px);
    -ms-flex: 0 0 calc(100% - 70px);
    flex: 0 0 calc(100% - 70px);
    max-width: calc(100% - 70px);
    padding-left: 10px;
}
.sidebar_card__title{
    color: rgb(34, 34, 34);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 8px;
}
.sidebar_card__prices{
    font-size: 12px;
}
.sidebar_card__prices .old_price {
    margin: 0 10px 0 0;
    color: rgb(87, 87, 87);
    font-size: 12px;
    position: relative;
    font-weight: 400;
    line-height: 1;
}
.sidebar_card__prices .old_price::after {
    border-bottom: 1px solid rgb(87, 87, 87);
    content: "";
    left: 0;
    position: absolute;
    top: 45%;
    width: 100%;
    transform: rotate(-10deg);
}
.sidebar_card__prices .price {
    color: rgb(34, 34, 34);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.sidebar_card__prices .price--red {
    color: RGB(177, 7, 7);
}
.sidebar_card__more{
    white-space: nowrap;
    margin: 5px 0;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s
}
.sidebar_card__more svg {
    position: relative;
    top: 1px;
    width: 11px;
    height: 11px;
    margin-left: 3px;
    transition: all 0.3s;
}


/***** #Browsed products ***********************************************************/
.browsed__item{
    margin-top: 5px;
    margin-bottom: 5px;
    height: 80px;
    padding: 0 5px!important;
}
.browsed__link{
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    width: 100%;
    height: 80px;
    padding: 5px;
}
.browsed__no_image{height: 70px;}
.browsed__no_image svg{width: 40px;height: 40px;}

/***** #Footer  **********************************************************************/
footer {
    background: var(--footer-bg);
    color: var(--boxed-text);
    -ms-flex-negative: 0;
    margin-top: 0;
}
.footer_column {
    width: 100%;
    position: relative;
    padding: 0 15px;
    flex-grow: 1;
}
.footer_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 26px;
    padding: 60px 0;
}
.footer_logo_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.footer_logo_wrap .logo__link {
    height: 140px;
    width: fit-content;
}
.footer_logo_wrap .logo__link img, .footer_logo_wrap .logo__link svg{
    width: auto;
}
.footer_logo_wrap .callback {
    margin-left: 0;
    margin-top: 24px;
}
.footer__title{
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--boxed-text);
    opacity: .5;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}
.footer__title_arrow{
    position: absolute;
    top: 0;
    cursor: pointer;
    transition: all .2s ease;
    width: 100%;
    text-align: right;
    left: 0;
    padding-right: 15px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer__title_arrow svg{
    height: 14px;
    width: 14px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.footer__title_arrow.down svg,
.footer__title.active .footer__title_arrow svg{
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.footer__content{
    color: var(--boxed-text);
    margin-bottom: 20px;
}
.footer__contact_item{
    position: relative;
    padding-left: 0;
}
.footer__contact_item .email,
.footer__contact_item .open_hours,
.footer__contact_item .phone,
.footer__contact_item .address {
    position: relative;
    margin-bottom: 15px;
    color: var(--boxed-text);
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    line-height: 1.3;
    transition: all 0.2s;
}
.footer__contact_item .email, .footer__contact_item .phone {
    white-space: nowrap;
}
.footer__contact_item .phone {
    padding-left: 32px;
}
.footer__contact_item .email svg,
.footer__contact_item .open_hours svg,
.footer__contact_item .phone svg,
.footer__contact_item .address svg{
    width: 24px;
    min-width: 24px;
    max-width: 24px;
    height: auto;
    margin-right: 12px;
    position: relative;
    top: 0;
    display: block;
}
.footer__contact_item.phones svg {
    position: absolute;
    left: 0;
    top: -2px;
}
.footer__contact_item .open_hours,
.footer__contact_item .open_hours p,
.footer__contact_item .open_hours span{
    color: var(--boxed-text)!important;
    font-size: 12px!important;
    font-weight: 400!important;
}
.footer__contact_item .callback {
    margin: 0;
}
.footer__menu_item{margin-bottom: 10px;}
.footer__content .footer__menu_item.closed {display: none;}
.footer__content.opened .footer__menu_item.closed {display: block;}
.footer__view_all{
    color: var(--boxed-text);
    font-size: 14px;
    border-bottom: 1px dashed;
    border-color: var(--boxed-text);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}
.footer__view_all:hover,
.footer__view_all:focus {
    color: var(--boxed-text);
    /* border-color: transparent; */
}
.footer__menu_link {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    -webkit-user-select: no-select;
    -moz-user-select: no-select;
    -ms-user-select: no-select;
    user-select: no-select;
    background: transparent;
    color: var(--boxed-text);
    font-weight: 400;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.1s ease 0s;
    line-height: 1.2;
}
.footer__social {
    gap: 24px;
    margin-top: 24px;
}
.subscribe_form__group{position: relative;}
.subscribe__title{
    color: var(--second-company-text);
    font-weight: 400;
    font-size: 12px;
    margin: 0 0 8px;
}
.form__button--subscribe{
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    height: 24px;
    position: absolute;
    right: 4px;
    top: 4px;
    border: none;
    background: #232f3e;
    color: #fff;
    opacity: .8;
    transition: all .2s;
    line-height: 24px;
    padding: 0 7px;
    text-transform: capitalize;
    font-weight: 500;
}
.subscribe_form__group .form__group--subscribe{
    width: 100%;
    margin-bottom: 10px;
}
.social{overflow: hidden;}
.social__link{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    position: relative;
    text-decoration: none;
    transition: all 400ms;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 4px;
}
.social__link svg {
    width: 35px;
    height: 35px;
    display: block;
}
.footer__payments{text-align: right;}
.payments__list{
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    width: auto;
    text-align: right;
}
.payments__item{
    border: 1px solid rgb(219, 219, 219);
    background-color: rgb(255, 253, 253);
    height: 32px;
    padding: 0 5px;
    margin: 0 0 0 5px;
    border-radius: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.payments__item picture,
.payments__item img{
    display: block;
    max-height: 30px;
    min-width: 30px;
}
.footer__copyright{
    background: var(--copyright-bg);
    padding: 15px 0;
    color: #ffffff85;
}
.footer__copyright span{
    padding-right: 5px;
}
.footer__copyright a{
    text-decoration: none;
    color: #ffffff85;
}
.copyright svg{
    height: 24px;
    width: auto;
    margin-left: 5px;
}
.footer__text {
    color: var(--boxed-text);
    opacity: .6;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}
.copyright {
    width: 100%;
    column-gap: 24px;
    flex-wrap: wrap;
}
.copyright_image {
    height: 33px;
    width: fit-content;
}
.copyright_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain!important;
}

/***** #Comparison page ***************************************************************/
.comparison_block { padding-bottom: 40px;}
.comparison_block__left {float: left;width: 25%;}
.comparison_block__products {
    float: right;
    width: 75%!important;
    position: relative;
    margin: 0;
    border-left: 1px solid #dbdbdb;
}
.comparison_block__item {border-right: 1px solid #dbdbdb;}
.comparison_block__item .product_item{margin-bottom: 0;overflow: hidden;}
.cell {
    padding: 13px 15px;
    line-height: 1;
    font-size: 13px;
    position: relative;
    font-weight: 500;
}
.cell span {display: block;}
.comparison_block__item .cell,
.comparison_block__item .cprs_rating {text-align: center;}
.cprs_rating {
    padding: 10px 15px;
    border-top: 1px solid #dbdbdb;
    font-size: 13px;
    font-weight: 500;
    height: 40px;
}
.cell:nth-child(odd) {background: #dbdbdb;}
.compare_controls {position: relative;}
.compare_show {
    position: absolute;
    left: 0;
    bottom: 5px;
}
.compare_show a {
    display: inline-block;
    margin: 0 5px 5px 0;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--basic-company);
    text-decoration: none;
    border: 1px solid;
    border-color: var(--basic-company);
}
.compare_show .active {
    background: var(--basic-company);
    color: var(--second-company-text);
    text-decoration: none;
}

/***** #Purchases *********************************************************************/
.purchase__item {
    box-shadow: 0px 3px 13px 0px #00082721;
    margin-bottom: 10px;
    background: #fff;
    padding: 10px;
    padding-right: 50px;
    border-radius: 5px;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    column-gap: 10px;
    grid-template-rows: auto;
    align-items: center;
}
.purchase__image{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    --webkit-flex: 0 0 130px;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    max-width: 130px;
    min-height: 130px;
    border-radius: 5px;
    min-height: 100px;
    overflow: hidden;
    aspect-ratio: 1/1;
    grid-column: 1;
    grid-row: span 2;
}
.purchase__image a {
    width: 100%;
    height: 100%;
    display: block;
}
.purchase__image img{display: block;width: 100%;height: 100%;object-fit: cover;}
.purchase__image svg{width: 40px;height: 40px;}
.purchase__content{
    position: relative;
    width: 100%;

}
.purchase__name{margin-bottom: 10px;width: 100%;}
.purchase__name .purchase__name_link{
    color: var(--body-heading);
    line-height: 1.2;
    font-size: 18px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: block;
    position: relative;
    font-weight: 600;
    text-decoration: none;
    text-overflow: ellipsis;
    width: 100%;
    height: calc(1.2em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
}
.purchase__name i{
    font-style: italic;
    font-size: 13px;
    display: block;
    line-height: 1;
    font-weight: 500;
    color: rgb(122, 122, 122);
    margin-top: 5px;
}
.purchase__group{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.block__popup_cart, .n_purchases_wrap {
    grid-column: 2;
}
.purchase__group_title{
    font-size: 11px;
    font-weight: 400;
    color: rgb(128, 128, 128);
    margin-bottom: 5px;
}
.purchase__group_content{
    min-height: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
    column-gap: 10px;
}
.purchase__group_price, .purchase__group_oldprice {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 5px;
}
.purchase__group_oldprice {
    color: var(--body-text);
    font-size: 16px;
    position: relative;
    font-weight: 400;
    line-height: 1;
}
.purchase__group_oldprice::after {
    border-bottom: 1px solid var(--body-text);
    content: "";
    left: 0;
    position: absolute;
    top: 45%;
    width: 100%;
}
.purchase__price{
    color: var(--body-text);
    font-size: 16px;
    font-weight: 600;
    padding-right: 15px;
}
.purchase__price .currency {
    font-size: 11px;
    font-weight: 600;
    position: relative;
    top: 0px;
}
.purchase__price_total{
    color: var(--body-heading);
    font-size: 20px;
    font-weight: 800;
}
.purchase__price_total .price--red {
    color: #F73E42;
}
.purchase__price_total .currency {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    top: 0px;
}
.purchase__price_total .purchase__group_oldprice .currency {
    font-weight: 400;
}
.purchase__category {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
    margin-bottom: 13px;
}
.purchase__amount{padding-right: 15px;}
.purchase__amount .amount{height: 40px;max-width: 150px;}
.purchase__amount .amount__plus,
.purchase__amount .amount__minus {
    font-size: 20px;
    height: 100%;
    width: 50px;
}
.purchase__amount .amount__input {
    font-size: 18px;
    height: 100%;
    padding: 0;
    width: fit-content;
    order: unset;
    max-width: 50px;
    min-width: 50px;
}
.purchase__remove{
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    color: var(--body-heading);
    transform: translate(0, -50%);
}
.purchase__remove svg{width: 24px;height: auto;aspect-ratio: 1/1;display: block;}
.coupon{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dbdbdb;
}
.coupon__group{position: relative;}
.coupon__title{
    font-size: 16px;
    line-height: 1.2;
    margin: 0px 0 15px;
    font-weight: 600;
    color: var(--body-text);
}
.form__button--coupon{
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    height: 32px;
    width: auto !important;
    position: absolute;
    right: 4px;
    top: 4px;
    border: none;
    background: var(--second-company);
    color: var(--second-company-text);
    opacity: 0.8;
    transition: all 0.2s;
    line-height: 32px;
    padding: 0 10px;
}
.coupon__group .form__group--coupon{width: 100%;}
.purchase_detail{margin: 15px 0 0;}
.purchase_detail.total {
    border: 1px solid #F1EAD0;
    background: #FFFCEE;
    border-radius: 5px;
    padding: 16px 20px;
}
.purchase_detail__item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
}
.purchase_detail__item:not(:last-child) {
    margin-bottom: 10px;
}
.popup_btns {
    background: #fff;
    gap: 16px;
    margin-bottom: 0;
    height: 164px;
}
.popup_btns .btn, .popup_btns .btn_border_black {
    max-width: 100%;
    flex-grow: 1;
}
.purchase_detail__column_name{
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.purchase_detail__name{
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--body-text);
    text-align: left;
}
.purchase_detail__name--total{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--body-heading);
}
.purchase_detail__price{
    color: var(--body-text);
    font-size: 22px;
    font-weight: 800;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.purchase_detail__price .currency{
    font-size: 18px;
    font-weight: 800;
    position: relative;
    top: 0px;
}
.purchase_detail__price i{
    background: rgb(246, 80, 80);
    padding: 3px 5px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    margin-right: 10px;
    border-radius: 4px;
    line-height: 1;
    display: inline-block;
}
.purchase_detail__price--total{
    color: var(--body-heading);
    font-size: 22px;
}
.purchase_detail_popup_total{
    margin-bottom: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
}
.purchase_detail__price--total .currency{
    font-size: 18px;
    top: 0px;
}
.block__popup_cart{
    width: 100%;
    max-width: 100%;
    flex: 1 0 auto;
    height: fit-content;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}
.fn_purchases_wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: fit-content;
}
.block__popup_cart .scroll {
    height: 100%;
    overflow-y: auto;
    padding: 10px 40px;
}
.block__popup_cart, .block__popup_cart .scroll {
    max-height: calc(100vh - 300px);
}
.block__popup_cart:before, .block__popup_cart:after {
    content: '';
    position: absolute;
    z-index: 99;
    left: 0;
    width: 100%;
    height: 30px;
}
/* .block__popup_cart:before {
    top: 0;
    background: linear-gradient(to bottom, #F4F5F7, rgba(244,245,247,0));
} */
.block__popup_cart:after {
    bottom: 0;
     background: linear-gradient(to bottom, rgba(244, 245, 247, 0) 0%, #F4F5F7 100%);
}
.purchase_detail,
.purchases--user{
    padding-left: 40px;
}

/***** #Delivery & Payment ************************************************************/
.payment_method__item, 
.delivery__item{margin-bottom: 20px;width: 100%;}
.delivery__item .select2-results__option[aria-disabled=true] {
    display: none;
}
.block_order_details .delivery__item:last-child {
    margin-bottom: 0;
}
.delivery__label{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0px;
}
.delivery__image{
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 80px;
	-ms-flex: 0 0 80px;
	flex: 0 0 80px;
	max-width: 80px;
	text-align: center;
	padding-left: 3px;
}
.delivery__image img{display: block;margin: 0 auto; max-height: 30px;}
.delivery__name{
    display: block;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 calc(100% - 80px);
	-ms-flex: 0 0 calc(100% - 80px);
	flex: 0 0 calc(100% - 80px);
	max-width: calc(100% - 80px);
	padding-left: 5px;
    color: var(--body-text);
	font-size: 18px;
	font-weight: 600;
    line-height: 1.2;
}
.delivery__label .checkbox__icon{top: calc(50% - 11px);}
.delivery__name_price{
    color: var(--body-text);
	font-style: italic;
	font-weight: 600;
    white-space: nowrap;
}
.delivery__description{
    display: none;
    margin: 10px 0 0 35px;
    padding: 10px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 12px;
    background: #FFFCEE;
    color: #6f6f6f;
    line-height: 1.3;
}
.order_boxeded{max-width: 100%;}
table.order_details {min-width: auto;}
.order_purchase_count{
    font-size: 14px;
    font-weight: 600;
    position: relative;
    width: 30px;
    top: -3px;
    left: 0;
    text-align: center;
}
.order_payment__description{
    margin: 15px 0;
    padding: 10px 10px;
    border-left: 4px solid rgb(188, 188, 188);
    background: #FFFCEE;
    border-radius: 5px;
    font-weight: 400;
    font-size: 12px;
    color: var(--body-text);
    line-height: 1.3;
}
.order_payment__title{
    color: #222;
    line-height: 1.2;
    font-size: 14px;
    position: relative;
    font-weight: 500;
}
.order_payment__name{
    font-weight: 600;
    font-size: 15px;
    margin-left: 10px;
}
.order_payment__form{margin: 5px 0;}
.order_payment__button{
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: var(--button-color);
    border: none;
    background: transparent;
    text-decoration: underline;
}
.order_payment__button:hover,
.order_payment__button:focus{
    color: var(--button-color);
    text-decoration: none;
}
.order_payment__checkout .button{
    display: block;
    color: var(--button-text);
    background-color: var(--button-color);
    border: 1px solid;
    border-color: var(--button-color);
    text-align: center;
    white-space: nowrap;
    border-radius: 3px;
    height: 40px;
    line-height: 38px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    padding: 0 20px;
    font-size: 12px;
    font-family: inherit;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.order_payment__checkout .button:hover {opacity: .8;}
.delivery__description p{margin-bottom: 0;}
.checkbox.active + .delivery__description {display: block;}

/***** #Profile user *****/
.profile{
    padding: 20px 0;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 0px;
}
.profile__image{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60px;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    max-width: 60px;
}
.profile__icon svg{
    width: 60px;
    height: 60px;
}
.profile__icon img{
    width: 60px;
    border-radius: 50%;
}
.profile__information{
    padding-left: 15px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 60px);
    -ms-flex: 0 0 calc(100% - 60px);
    flex: 0 0 calc(100% - 60px);
    max-width: calc(100% - 60px);
}
.profile__name{
    font-size: 18px;
    font-weight: 500;
    color: rgb(34, 34, 34);
    line-height: 1.2;
}
.profile__logout{margin: 10px 0 5px;}
.profile__logout a{
    font-size: 12px;
    color: var(--button-color);
    font-weight: 500;
    text-decoration: none;
}
.profile__logout a svg{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.user_tab__switch{
    position: relative;
    cursor: pointer;
}
.tabs--user .table_wrapper{
    max-height: inherit;
}
.user_tab__switch:after {
    width: 8px; 
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-color: rgb(34, 34, 34);
    position: absolute;
    content: " ";
    top: calc(50% - 2px);
    right: 20px;
    left: inherit;
    margin-left: 10px;
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.user_tab__switch.active::after {
    top: calc(50% - 3px);
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.button__logout {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    margin: 0px;
    border-bottom:none;
    cursor: pointer;
    text-decoration: none;
    padding: 18px 0px;
    color: rgb(34, 34, 34);
    font-size: 13px;
    font-weight: 500;
    min-height: 40px;
    height: inherit;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.button__logout svg{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.button__logout:hover{
    color: var(--basic-company);
}
.user_orders_hidden{
    display: none;
}
.user_orders_hidden.fn_user_orders_show{
    display: table-row;
}
.fn_user_orders_switch{
    margin: auto;
    display: block;
    width: 10px;
    padding: 5px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.75 0C5.33582 0 5 0.335815 5 0.75V5.25H0.75C0.335815 5.25 0 5.58582 0 6C0 6.41418 0.335815 6.75 0.75 6.75H5V11.25C5 11.6642 5.33582 12 5.75 12C6.16418 12 6.5 11.6642 6.5 11.25V6.75H11.25C11.6642 6.75 12 6.41418 12 6C12 5.58582 11.6642 5.25 11.25 5.25H6.5V0.75C6.5 0.335815 6.16418 0 5.75 0Z' fill='%23030F4B'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.fn_user_orders_active .fn_user_orders_switch{
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='2' viewBox='0 0 12 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='1.75' width='1.5' height='12' rx='0.75' transform='rotate(-90 0 1.75)' fill='%23030F4B'/%3E%3C/svg%3E%0A");
}

/***** #Mobile navigation ************************************************************/
.menu_switcher{
    -webkit-box-flex: 0;
    -webkit-flex: 1 0 100px;
    -ms-flex: 1 0 100px;
    flex: 1 0 100px;
    max-width: 100px;
    position: relative;
    margin: 10px 0 10px;
    border-radius: 4px;
}
.menu_switcher__heading{
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 10px;
    width: 100%;
    background: var(--basic-company);
    border-radius: 4px;
    height: 40px;
}
.menu_switcher__heading svg {
    margin-right: 5px;
    display: inline-block;
    height: 18px;
    position: relative;
    width: 18px;
}

/***** #Button to Top ****************************************************************/
.to_top {
    position: fixed;
    z-index: 100;
    left: 2%;
    bottom: 40px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    visibility: hidden;
    color: var(--basic-company-text);
    border-radius: 50%;
    background-color: var(--basic-company);
    opacity: 0;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: grid;
    place-items: center;
}
.to_top.show {
    visibility: visible;
    opacity: 0.8;
}
.to_top svg{
    width: 20px;
    height: 20px;
    color: var(--body-text);
    display: block;
}
.to_top:hover {opacity: 1;}


/***** #Advantages *****/
.advantages__item{
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}
.advantages__item:last-child{margin-bottom: 0;}
.advantages__preview{
    text-align: center;
    height: 100%;
    color: rgb(58, 58, 58);
    background: rgb(255, 255, 255);
    border-right: 1px solid;
    border-color:  #dbdbdb;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.advantages__item:last-child .advantages__preview{border: none;}
.advantages__icon{
    max-width: 65px;
    text-align: center;
    margin-bottom: 5px;
}
.advantages__icon svg{
    width: 55px;
    height: 55px;
    color: var(--basic-company);
}
.advantages__title{
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    padding-left: 0;
    max-width: 150px;
    line-height: 1.2;
    min-height: 36px;
}
/***** #Page 404 ********************************************************/
.not_found{
    width: 900px;
    max-width: 100%;
    text-align: center;
    margin: 20px auto 40px;
}
.not_found__image{color: var(--basic-company)};
.not_found__image svg{width: 300px;height: 300px;}
.not_found__menu{text-align: center;}
.not_found__description{
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}
.purchase_discount__item{
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid rgb(219, 219, 219);
}
.purchase_discount__item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.purchase_discount__name {
    margin-bottom: 10px;
    color: rgb(34, 34, 34);
    line-height: 1.2;
    font-size: 14px;
    display: block;
    position: relative;
    font-weight: 600;
}
.purchase_discount__group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.purchase_discount__title {
    font-size: 11px;
    font-weight: 400;
    color: rgb(128, 128, 128);
    margin-bottom: 5px;
}
.purchase_discount__group_content {
    min-height: 25px;
}
.purchase_discount__price_before {
    color: rgb(34, 34, 34);
    font-size: 16px;
    font-weight: 600;
    padding-right: 25px;
}
.purchase_discount__discount {
    padding-right: 25px;
}
.purchase_discount__price_after {
    color: rgb(0, 175, 238);
    font-size: 16px;
    font-weight: 600;
}
.purchase_discount__price_before .currency,
.purchase_discount__price_after .currency {
    font-size: 11px;
    font-weight: 600;
    position: relative;
    top: 0px;
}
.purchase__price .price--red{
    color: #B10707;
}
.discount_tooltip{
    width: 16px;
    height: 16px;
    margin-left: 3px;
    position:relative;
    top:-3px;
    color:rgb(246, 80, 80);
    transition: all 0.3s;
}
.discount_tooltip svg{
    width: 16px;
    height: 16px;
}
.discount_tooltip:focus,
.discount_tooltip:hover{
    color: #B10707;
}
.novaposhta_types_inputs {
    margin: 20px 0px;
}
.novaposhta_delivery .form-group {
    max-width: 348px;
}
.novaposhta_redelivery_input {
    margin: 20px 0 0;
}

select.error ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #f00;
}

select.error ~ .select2-container--default .select2-selection--single {
    
    display: block;
    border: 1px solid #f00;
}
.header_menu__tablet {
    min-width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: auto;
}
.header_menu__tablet .menu_arrow {
    display: block;
    height: 100%;
    width: 11px;
    transform: rotate(-90deg);
}
.mobile_menu, .mobile_contacts {
    position: fixed;
    top: 0;
    max-height: calc(100vh - 70px);
    height: 100%;
    background-color: #fff;
    z-index: 99992;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
    overflow-y: scroll;
    width: 50%;
    left: 0px;
    transform: translate(-101%);
    transition: all .3s linear;
}
.mobile_contacts__content {
    padding: 20px 16px;
}
.mobile_menu__wrap {
    max-height: calc(95vh - 85px);
    overflow: auto;
    padding: 0 0 30px 0;
}
.open-menu {
    overflow: hidden;
}
.open-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 99991;
    left: 0;
    top: 0px;
}
.mobile_menu__header {
    padding: 40px 16px 10px 16px;
}
.menu_close {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
}
.menu_close svg {
    width: 22px;
    height: 22px;
    display: block;
}
.menu_close svg path {
    stroke: var(--body-text);
}
.menu_close:hover svg path {
    stroke: var(--second-company);
}
.mobile_menu__ttl {
    font-size: 22px;
    font-weight: 800;
    color: var(--body-heading);
    line-height: 1;
}
.comments .boxed--big {
    margin: 0;
}
.empty {
    font-size: 18px;
}
