:root {
  --box-shadow: #ccc;
  --modal-background-color: #fff;
  --border-color: #e9e9e9;
  --inverse-color: #000;
  --overlay-background: rgb(0, 0, 0, 0.35);
  --danger-background: #f7e0de;
  --warning-background: #e7dab0;
  --success-background: #1d9922;
  --success-light-background: #e3fbe4;
  --error-background: #991d1d;
  --error-light-background: #991d1d;
    /* Fix Swiper */
    --animate-duration: .5s !important;
    --animate-delay: .5s !important;
}
@media (prefers-color-scheme: dark) {
  :root {
    --box-shadow: #0f0f0f;
    --modal-background-color: #151515;
    --border-color: #333;
    --inverse-color: #fff;
    --overlay-background: rgb(0, 0, 0, 0.90);
    --danger-background: #a92b22;
    --warning-background: #84540d;
  }
}
html[mode="light"] {
  --box-shadow: #ccc;
  --modal-background-color: #fff;
  --border-color: #e9e9e9;
  --inverse-color: #000;
  --overlay-background: rgb(0, 0, 0, 0.35);
  --danger-background: #f7e0de;
  --warning-background: #e7dab0;
}
html[mode="dark"] {
  --box-shadow: #0f0f0f;
  --modal-background-color: #151515;
  --border-color: #333;
  --inverse-color: #fff;
  --overlay-background: rgb(0, 0, 0, 0.90);
  --danger-background: #a92b22;
  --warning-background: #84540d;
}
/*** Main ***/
  * {
    margin: 0px;
    padding: 0px;
    list-style: none;
    resize: none;
    outline: none;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    -webkit-appearance: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -ms-tap-highlight-color: transparent;
    -o-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  body {
    color: var(--font-color);
    background: var(--background-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  body.fixed {
    padding-top: 60px;
  }
  h1 {
    font-size: 38.6px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.3px;
  }
  h2 {
    font-size: 26.6px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.3px;
    margin-bottom: 12px;
  }
  h3 {
    font-size: 19.4px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -.3px;
    margin-bottom: 12px;
  }
  h4 {
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.3px;
  }
  h5 {
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: -.3px;
  }
  @media (max-width: 1024px) {
    h1 {
      font-size: 30.2px;
    }
    h2 {
      font-size: 22.4px;
    }
    h3 {
      font-size: 18.4px;
    }
  }
  a {
    color: var(--font-color);
  }
  a:hover {
    text-decoration: underline;
  }
  img {
    max-width: 100%;
  }
  .breadcrumb {
    display: flex;
    overflow: auto;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .breadcrumb li {
    margin-right: 5px;
    color: var(--font-color);
    font-size: 12px;
    display: flex;
    align-items: center;
  }
  .breadcrumb li:after {
    content: '';
    position: relative;
    -webkit-mask: url(../icons/arrow.svg) no-repeat center;
    mask: url(../icons/arrow.svg) no-repeat center;
    background-color: #666;
    -webkit-mask-size: 14px;
    mask-size: 14px;
    height: 14px;
    width: 14px;
    transform: rotate(-90deg);
    margin-left: 5px;
  }
  .breadcrumb li:last-child:after {
    display: none;
  }
  .breadcrumb li * {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
  }

/*** Critical ***/
  .logo,
  .logo * {
    display: flex;
  }
  .module {
    margin-top: 42px;
    overflow-x: clip;
  }
  .module_title,
    /* Fix title with swiper */
    .module_title h3,
  .module_title_small {
    color: var(--font-color);
    font-size: 19.4px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
  }
    /* Fix title with swiper */
    .module_title h3 {
      margin-bottom: 0px;
    }
  .module_title_small {
    font-size: 15.4px;
    font-weight: 400;
  }
  .module .module_title {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .module:hover .products_slider {
    z-index: 2;
  }
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 44px;
    padding-right: 44px;
  }
  .mobile_link {
    display: none;
  }
  @media (max-width: 1024px) {
    .logo img {
      max-height: 36px;
    }
    .container_menu_wrap_home {
      display: none;
    }
    .module_title,
    .module_title_small {
      font-size: 20.4px;
    }
    .module_title_small {
      font-size: 14.4px;
    }
    .container {
      padding-left: 12px;
      padding-right: 12px;
    }
  }

/*** Top ***/
  #top {
    background: var(--top-background-color);
    height: 58px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
/*    box-shadow: 0px 0px 10px var(--box-shadow);*/
  }
  #top .container {
    align-items: center;
    display: flex;
    height: 50px;
  }
  #top .logo {
    margin-right: 24px;
  }
  .top_links {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 24px;
  }
  .top_setting {
    margin-left: auto;
  }
  .top_setting .icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
  .top_setting .icon:before {
    width: 20px;
    height: 20px;
    -webkit-mask-size: 20px;
    mask-size: 20px;
  }
  .top_auth,
  .top_contacts {
    min-height: 30px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    margin-left: 16px;
    border-left: 1px solid var(--border-color);
  }
  .dropdown_top {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
  .dropdown_top .setting_item_header,
  .dropdown_top .contacts_item_header {
    font-size: 13.6px;
    margin-bottom: 8px;
  }
  .dropdown_top .contacts_item,
  .dropdown_top .contacts_item_address p,
  .dropdown_top .contacts_item_time p,
  .dropdown_top .contacts_item_email a {
    font-size: 12.6px;
  }
  .dropdown_top .contacts_item_phones ul li a {
    font-size: 13.6px;
  }
  .dropdown_top .contacts_item_socials_links ul {
    display: grid;
    grid-template-columns: initial;
    grid-auto-flow: column;
    grid-gap: 8px;
  }
  .dropdown_top .contacts_item_socials_links ul li a p {
    display: none;
  }
  .dropdown_top .contacts_item_socials_links ul .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 0px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
  }
  .dropdown_top .contacts_item_socials_links ul .icon:hover {
    border: 1px solid var(--main-color) !important;
  }
  .dropdown_top .contacts_item_socials_links ul .icon:before {
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
    background-color: #666;
  }
  .dropdown_top .contacts_item_socials_links ul .icon:hover:before {
    background-color: var(--main-color);
  }
  @media (max-width: 1023px) {
    .dropdown_top .contacts_item_socials_links ul {
      grid-gap: 2px;
    }
  }
  #top .dropdown_link p,
  .top_links a {
    font-size: 13.2px;
    font-weight: 400;
    color: var(--font-color);
  }
  #top .dropdown_link#topContacts p {
    font-weight: 500;
    font-size: 13.6px;
  }
  .top_links li ul {
    min-width: 250px;
  }
  .top_links li ul li {
    border-bottom: 1px solid var(--border-color);
  }
  .top_links li ul li:last-child {
    border-bottom: none;
  }
  .top_links li ul li a {
    background: var(--top-background-color);
    color: var(--font-color);
    padding: 8px 16px;
    line-height: 1.3;
    display: flex;
    transition: background 0.3s ease-in-out;
  }
  .top_links li ul li a:hover {
    background: var(--background-color);
  }
  #top .top_auth > .button {
    height: 30px;
    padding: 0px 10px;
    border-radius: 100px;
    background: var(--background-color);
    border: none;
  }
  #top .top_auth > .button > p {
    color: var(--font-color);
    font-weight: 400;
    font-size: 12.4px;
  }
  #top .top_auth > .button .icon:before {
    background-color: #676767;
  }
  #top .top_auth > .button_icon:before, 
  #top .top_auth > .button_icon:after {
    width: 14px;
    height: 14px;
    -webkit-mask-size: 14px;
    mask-size: 14px;
  }
  #top .top_auth > .button_icon_left:before {
    margin-right: 5px;
  }
  #top .top_auth > .button_icon_right:before {
    margin-left: 5px;
  }
  #top .top_auth ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }
  #top .top_auth ul li a {
    color: var(--font-color);
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 0px 16px;
    height: 40px;
    border-radius: 7px;
    font-size: 13.6px;
    font-weight: 400;
    transition: background .5s;
  }
  #top .top_auth ul li a:hover {
    background: #e9e9e9;
  }
  #top .top_auth ul .icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
  #top .top_auth ul .icon:before {
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
  }
  .setting_item_header,
  .contacts_item_header {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14.6px;
    margin-bottom: 16px;
  }
  .setting_item_header .icon,
  .contacts_item_header .icon {
    width: 20px;
    height: 20px;
  }
  .setting_item_header .icon:before,
  .contacts_item_header .icon:before {
    background-color: var(--inverse-color);
    -webkit-mask-size: 20px;
    mask-size: 20px;
    width: 20px;
    height: 20px;
  }
  
  #form-currency ul,
  .form-language ul {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 8px;
    width: fit-content;
  }
  #form-currency ul button,
  .form-language ul button {
    border: 1px solid var(--border-color);
    background: var(--top-background-color);
    color: var(--font-color);
    padding: 0px 16px;
    height: 34px;
    line-height: 1.3;
    font-size: 12.4px;
    font-weight: 400;
    border-radius: 7px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease-in-out;
  }
  #form-currency ul button.active,
  .form-language ul button.active {
    border-color: var(--main-color);
    color: var(--main-color);
  }
  #form-currency ul button:hover,
  .form-language ul button:hover {
    background: #e9e9e9;
    color: #333;
    cursor: pointer;
  }
  #form-currency ul button.active:hover,
  .form-language ul button.active:hover {
    pointer-events: none;
    background: transparent;
  }
  .color_scheme ul {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 8px;
    width: fit-content;
  }
  .color_scheme ul li {
    background: var(--top-background-color);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
  }
  .color_scheme ul li:hover {
    background: var(--border-color);
    border-color: var(--border-color);
    cursor: pointer;
  }
  .color_scheme ul li.active {
    background: var(--top-background-color);
    border-color: var(--main-color-2);
  }
  .color_scheme ul li.active:hover {
    pointer-events: none;
    background: transparent;
  }
  .color_scheme ul .icon:before {
    background-color: var(--main-color-2);
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
  }
  .color_scheme .auto_mode p {
    font-size: 9.4px;
    font-weight: 700;
    color: var(--main-color-2);
    text-transform: uppercase;
  }
  .color_scheme .auto_mode p:hover {
    cursor: pointer;
  }
  .top_buttons_mobile {
    display: none;
  }
  @media (max-width: 1024px) {
    #top .top_auth > .button .icon:before {
      background-color: var(--inverse-color);
    }
    #top .container > .top_contacts {
      border: none;
      padding: 0px;
      margin: 0px;
    }
    #top .container > .top_links,
    #top .container > .top_setting,
    #top .container > .top_contacts .dropdown_link {
      display: none;
    }
    #top {
      transition: top 0.2s ease-in-out;
    }
    #top.fixed {
      position: fixed;
      left: 0;
      top: -64px;
      width: 100%;
      z-index: 9;
      background: var(--top-background-color);
      box-shadow: 0px 0px 10px var(--box-shadow);
    }
    #top.scroll {
      top: 0;
    }
    #top.hide {
      top: -100%;
    }
    #top .logo {
      margin-right: 0px;
    }
    #top .top_auth {
      margin-left: auto;
      border-left: none;
      padding-left: 0px;
    }
    #top .top_auth > .button,
    .top_buttons_mobile .button {
      padding: 0px;
      background: transparent;
      border: none;
    }
    #top .top_auth > .button > p,
    .top_buttons_mobile .button > p {
      display: none;
    }
    .top_buttons_mobile .button {
      margin-left: 16px;
      height: fit-content;
    }
    #top .top_auth > .button .icon_left {
      margin-right: 0px;
    }
    #top .top_buttons {
      margin-right: 16px;
    }
    .top_buttons_mobile {
      display: flex;
    }
    .top_buttons_mobile .button .icon:before {
      background-color: var(--inverse-color);
    }
    .top_buttons_mobile .button .icon_search:before {
      -webkit-mask-size: 22px;
      mask-size: 22px;
    }
  }

/*** Header ***/
  #header {
    height: 68px;
    background: var(--header-background-color);
    transition: top 0.2s ease-in-out;
  }
  #header.fixed {
    position: fixed;
    left: 0;
    top: -66px;
    width: 100%;
    z-index: 9;
    background: var(--top-background-color);
    box-shadow: 0px 0px 10px var(--box-shadow);
  }
  #header.scroll {
    top: 0;
  }
  #header.hide {
    top: -100%;
  }
  #header .container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .wishlist-total,
  .compare-total {
    height: 40px;
    display: flex;
    align-items: center;
    margin-right: 16px;
    padding-right: 16px;
  }
  .header_icon {
    position: relative;
  }
  .header_icon .icon {
    width: 28px;
    height: 28px;
  }
  .header_icon span.icon:before {
    width: 28px;
    height: 28px;
    -webkit-mask-size: 28px;
    mask-size: 28px;
  }
  .header_icon .count {
    position: absolute;
    top: -4px;
    left: 22px;
    color: #fff;
    background: var(--main-color-2);
    min-width: 12.4px;
    border-radius: 3px;
    height: 12.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.4px;
    font-weight: 700;
  }
  #header.fixed .icon:before {
    background-color: var(--main-color);
  }
  .header_info {
    padding: 8px 16px;
    text-align: center;
    line-height: 1.3;
    background: var(--header-info-background-color);
    position: relative;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_info,
  .header_info * {
    font-size: 12.4px;
    color: var(--font-color);
    font-weight: 400;
    line-height: 1.2;
  }
  .header_info a {
    font-weight: 500;
    text-decoration: underline;
  }
  .header_info a:hover {
    color: var(--main-color);
  }
  .header_info_close {
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0%, -50%);
    background: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
  }
  .header_info_close:hover {
    cursor: pointer;
    color: var(--main-color);
  }
  .header_info_close .icon:before {
    background-color: var(--font-color);
  }
  .header_info_close:hover .icon:before {
    background-color: var(--main-color);
  }
  .header_link_menu {
    display: none;
  }
  @media (max-width: 1024px) {
    #header {
      display: none;
    }
    .header_info {
      text-align: left;
      padding: 8px 10px;
      padding-right: 44px;
    }
    .header_info p {
      width: 100%;
    }
    .header_info_close {
      text-indent: -9999px;
      position: absolute;
      right: 10px;
    }
    .header_info_close .icon {
      margin-left: 0px;
    }
    .header_link_menu {
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--border-color);
      margin: 15px 12px 0px 12px;
      border-radius: 10px;
      height: 58px;
      grid-gap: 10px;
    }
    .header_link_menu p {
      font-weight: 500;
      font-size: 14.4px;
    }
    .header_link_menu .icon:before {
      background-color: var(--main-color);
    }
  }

/*** Main menu ***/
  .menu_link {
    padding-left: 16px;
    min-width: 300px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 16px;
    border-radius: 8px;
    overflow: hidden;
  }
  .menu_link:hover {
    cursor: pointer;
  }
  .menu_link:before {
    position: absolute;
    content: '';
    background: var(--background-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* opacity: .88; */
  }
  .menu_link.active .arrow:before {
    transform: rotate(-180deg);
  }
  .menu_icon {
    width: 20px;
    height: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4px;
    margin-right: 16px;
    position: relative;
  }
  .menu_icon .dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    border: 2px solid var(--main-color);
    transition: border-radius 1s ease-in-out, border-color 1s ease-in-out;
  }
  .menu_icon .dot:nth-of-type(1),
  .menu_link:hover .menu_icon .dot:nth-of-type(4),
  .menu_link.active .menu_icon .dot:nth-of-type(4) {
    border-radius: 100px;
    border-color: var(--main-color-2);
  }
  .menu_link:hover .menu_icon .dot:nth-of-type(1),
  .menu_link.active .menu_icon .dot:nth-of-type(1) {
    border-color: #fff;
    border-radius: 2px;
  }
  .menu_link p {
    color: var(--main-color);
    font-weight: 500;
    font-size: 15.2px;
    position: relative;
  }
  .menu_link .arrow {
    position: absolute;
    right: 16px;
  }
  .menu_link .arrow:before {
    background-color: var(--font-color);
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
  }
  .menu_modal {
    position: absolute;
    top: 100%;
    z-index: 11;
    opacity: 0;
    transform: scale(0);
    min-width: 300px;
  }
  .menu_modal.active {
    opacity: 1;
    transform: scale(1);
  }
  .container_menu_wrap {
    position: relative;
    z-index: 10;
  }
  .container_menu_wrap_home {
    z-index: 9;
  }
  .container_menu_wrap_home.active {
    z-index: 10;
  }
  .container_menu {
    position: absolute;
    top: 100%;
    width: 100%;
  }
  body.fixed .container_menu_wrap_home.active,
  body.fixed .container_menu_wrap:not(.container_menu_wrap_home) {
    z-index: 10;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #menu {
    height: 480px;
    background: var(--modal-background-color);
    overflow-y: auto;
  }
  #menu li > a.item:hover > a {
    text-decoration: none;
    background: var(--background-color);
    color: var(--main-color);
  }
  #menu .item a {
    color: var(--font-color);
    font-size: 13.6px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    padding: 8px;
    position: relative;
    min-height: 40px;
  }
  #menu .item a .image {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }
  #menu .item a .image img {
    max-width: 100%;
    max-height: 100%;
  }
  #menu .item a .arrow {
    position: absolute;
    right: 8px;
  }

    /*** Menu for children ***/
    #menu .item .menu_children_content > ul > li > a {
      font-weight: 400;
      color: var(--main-color);
    }
    #menu .item .menu_children_content > ul > li > a:hover {
      background: transparent
    }
    #menu .menu_children_content {
      top: 0;
      position: absolute;
      left: 100%;
      width: 300px;
      background: var(--modal-background-color);
      height: 100%;
      transform: scale(0);
      border-left: 1px solid var(--border-color);
    }
    #menu .menu_children_content.menu_manufacturer_content {
      overflow-y: auto;
    }
    #menu .menu_children_content ul.scroll {
      overflow-y: auto;
      height: 100%;
    }
    #menu .menu_children_content.active {
      transform: scale(1);
    }

    /*** Menu for Masonry ***/
    #menu.menu_masonry .menu_children_content {
      width: calc(100% - 300px);
    }
    .masonry > li {
      width: calc(25% - 24px);
    }
    .masonry .item_child_menu {
      display: flex;
      flex-direction: column;
    }
    .masonry .item_child_menu ul {
      border-top: 1px solid var(--border-color);
    }
    #menu .item.item_masonry ul a {
      font-size: 12.4px;
      padding: 4px 8px;
      min-height: initial;
    }

    /*** Menu for Grid ***/
    #menu.menu_grid .menu_children_content ul {
      height: fit-content;
      overflow-x: hidden;
      overflow-y: auto;
    }
    #menu.menu_grid .item_child_menu ul {
      position: absolute;
      top: 0;
      left: 100%;
      width: 300px;
      background: var(--modal-background-color);
      height: 100%;
      display: none;
      border-left: 1px solid var(--border-color);
    }
    #menu.menu_grid .item_child_menu.active ul {
      display: initial;
    }

    /*** Menu > manufacturers ***/
    .menu_manufacturer_content ul {
      display: grid;
      grid-gap: 16px;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
    .menu_manufacturer_content ul li a {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--font-color);
      font-size: 14.4px;
    }
      /*** Fix hover background for manufs ***/
      #menu .item:hover .menu_manufacturer_content ul li a:hover {
        background: none;
      }
    #menu .item.item_manufacturer .menu_manufacturer_content .image {
      width: 64px;
      height: 64px;
      margin-bottom: 10px;
      margin-right: 0px;
    }

    @media (max-width: 1024px) {
      #menu.menu_grid .menu_children_content ul {
        display: grid;
        grid-gap: 10px;
      }
      #menu .menu_children_content ul {
        padding: 16px 10px;
      }
      #menu.menu_grid .item_child_menu.active ul,
      #menu .menu_children_content {
        width: 100%;
        z-index: 3;
        background-color: var(--top-background-color);
      }
      #menu.menu_grid .item_child_menu.active ul {
        display: flex;
        flex-direction: column;
      }
      #menu.menu_grid .item_child_menu ul {
        display: grid;
        grid-gap: 10px;
      }
      #menu.menu_grid .item_child_menu.active ul,
      #menu .menu_children_content.active {
        left: 0;
      }
      #menu .item .menu_children_content > ul > li > a {
        color: var(--font-color);
      }
    }
  
/*** Search ***/
  #search {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin-right: 32px;
    position: relative;
  }
  #search input,
  #search button {
    height: 100%;
    border: none;
    background: var(--top-background-color);
  }
    /* Fix for header fixed */
    #search input,
    #search button {
      background: var(--background-color);
    }
  #search input {
    border-radius: 10px 0px 0px 10px;
    width: 100%;
    font-weight: 400;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 13.6px;
    letter-spacing: 0.4px;
    color: var(--main-color);
  }
  #search input::placeholder {
    color: #444;
  }
  #search button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    border-radius: 0px 10px 10px 0px;
  }
  #search button:after {
    position: absolute;
    content: '';
    -webkit-mask: url(../icons/search.svg) no-repeat center;
    mask: url(../icons/search.svg) no-repeat center;
    background-color: #676767;
    -webkit-mask-size: 24px;
    mask-size: 24px;
    width: 24px;
    height: 24px;
  }
  .live-search {
    width: 100%;
    position: absolute;
    z-index: 9;
    top: 48px;
    left: 0;
    display: none;
    opacity: 1;
    box-shadow: 0px 10px 15px var(--box-shadow);
    transition: opacity 0.25s ease-in-out;
  }
  .live-search.active {
    display: initial;
  }
    /*** Fix for scroll page ***/
    body.fixed .live-search {
      top: -999px;
      opacity: 0;
    }
    body.header_scroll .live-search {
      opacity: 1;
      top: 48px;
    }
  .live-search ul {
    background: var(--background-color);
    display: grid;
    grid-gap: 8px;
    padding: 8px;
    max-height: 444px;
    overflow-y: auto;
  }
  .live-search ul li {
    background: var(--background-color);
    position: relative;
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-gap: 8px;
    flex-direction: column;
    border-radius: 7px;
  }
  .live-search ul li.empty {
    grid-template-columns: 1fr;
    text-align: center;
    font-weight: 500;
    font-size: 12.4px;
  }
  .live-search ul li .image {
    display: flex;
    align-items: center;
  }
  .live-search ul li .image,
  .live-search ul li .caption {
    border-radius: 8px;
    padding: 8px;
    background: var(--modal-background-color);
  }
  .live-search ul li .stock_status {
    margin-top: 5px;
    border: none;
    border-radius: 0px;
    padding: 0px;
    font-size: 12px;
    font-weight: 400;
  }
  .live-search ul li .info {
    font-weight: 400;
    font-size: 12px;
    color: #666;
  }
  .live-search ul li .product-image {
    float:left;
    margin-right:5px;
  }
  .live-search ul li .description {
    font-size: 12px;
    line-height: 1.3;
    height: 43px;
    color: #666;
    margin-top: 10px;
  }
  .live-search ul li .name a {
    color: var(--font-color);
    line-height: 1.2;
    font-size: 13.6px;
    display: inline-flex;
    font-weight: 500;
  }
  .live-search ul li .price {
    display: flex;
    margin-bottom: 10px;
  }
  .live-search ul li .price-stock {
    font-size: 17px;
    font-weight: 600;
  }
  .live-search ul li .price-new {
    color: var(--main-color-2);
  }
  .live-search ul li .price-old {
    margin-left: 10px;
    font-size: 13px;
    text-decoration: line-through;
    color: #666;
  }
  .live-search .result-text {
    display: flex;
    align-items: center;
    background: var(--background-color);
  }
  .live-search .view-all-results {
    width: 100%;
    color: #fff;
    font-size: 12.4px;
    text-align: center;
    font-weight: 500;
    background: var(--main-color);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    margin: 8px;
    margin-top: 0px;
  }
  .live-search .view-all-results:hover {
    background: var(--main-color-2);
  }
  @media (max-width: 1024px) {
    #search {
      display: none;
    }
  }

/*** Cart ***/
  #cart > button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
  }
  #cart > button p {
    white-space: nowrap;
    /* color: #fff; */
    color: var(--font-color);
    font-weight: 500;
    font-size: 12.6px;
    margin-left: 8px;
  }
  .modal.modal_cart {
    width: 600px;
  }
  .modal_cart_items {
    display: flex;
    flex-direction: column;
  }
  .modal.modal_cart_empty {
    width: 40%;
  }
  .modal.modal_cart_empty .modal_buttons {
    display: none;
  }
  .modal.modal_cart .modal_buttons .button {
    height: 50px;
    font-size: 16px;
    font-weight: 500;
  }
  .modal.modal_cart .modal_buttons .button:hover {
    text-decoration: none;
  }
  .modal.modal_cart .modal_buttons .button .icon:before {
    background-color: #fff;
  }
  .modal_cart_items .button_buy_1_click {
    padding-top: 14px;
  }
  .modal_cart_items .empty {
    margin-top: auto;
    margin-bottom: auto;
  }
  .cart_products {
    overflow: auto;
    max-height: calc(100% - 200px);
    margin-bottom: auto;
  }
    /*** Fix for modal cart ***/
    #checkout_page:not(.checkout_page_empty) .modal_cart_items .cart_products {
      grid-template-columns: 1fr;
    }
  .cart_products .item {
    padding: 8px;
    border-radius: 7px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 16px;
  }
  .cart_products .item .image,
  .cart_products .item .image * {
    display: flex;
    align-items: flex-start;
  }
  .cart_products .item .caption {
    display: flex;
    flex-direction: column;
  }
  .cart_products .item .additional {
    margin-top: 8px;
    display: flex;
    align-items: center;
  }
  .cart_products .item .caption {
    display: flex;
    flex-direction: column;
  }
  .cart_products .item .caption .name {
    display: flex;
    align-items: center;
  }
  .cart_products .item .caption .name a {
    font-weight: 500;
    color: var(--font-color);
  }
  .cart_products .item .caption .model {
    font-size: 12.4px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 4px;
  }
  .cart_products .item .total {
    font-size: 12.4px;
    color: var(--font-color);
    display: flex;
    align-items: center;
    font-weight: 600;
  }
  .cart_products .item .total span {
    margin-left: 4px;
    padding: 0px 4px;
    border-radius: 4px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.4px;
    font-weight: 700;
    color: #fff;
    background: var(--main-color-2);
  }
  .cart_products .item .reward,
  .cart_products .item .option,
  .cart_products .item .recurring {
/*    border-bottom: 1px solid var(--border-color);*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4px;
    padding-top: 8px;
  }
  .cart_products .item .reward li,
  .cart_products .item .option li,
  .cart_products .item .recurring li {
    font-size: 12px;
    line-height: 1;
  }
  .cart_products .item .reward li {
    color: var(--main-color-2);
  }
  .cart_products .item .option li span,
  .cart_products .item .recurring li span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
  }
  .cart_products .item .quantity_wrap {
    margin-left: auto;
    margin-right: 8px;
  }
  .cart_products .item:last-child {
    margin-bottom: 0px;
  }
  .cart_products .item .button_remove {
    height: 36px;
    width: 36px;
    border-radius: 7px;
    background: var(--danger-background);
    border: 2px solid var(--danger-background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }
  .cart_products .item .button_remove:hover {
    background: transparent;
    cursor: pointer;
  }
  .cart_products .item .button_remove span:before {
    background-color: var(--error-background);
    -webkit-mask-size: 14px;
    mask-size: 14px;
    width: 14px;
    height: 14px;
  }
  .cart_products .item .total_quantity {
    display: flex;
    align-items: center;
  }
  .cart_totals {
    padding-top: 14px;
  }
  .cart_totals {
    padding-top: 14px;
    text-align: center;
    white-space: nowrap;
  }
  .cart_totals * {
    font-size: 12.4px;
    font-weight: 600;
    white-space: pre-wrap;
  }
  .cart_totals *.cart_totals_title {
    font-weight: 400;
  }
  .cart_free_shipping, .cart_free_shipping_total {
    padding: 16px;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    margin-top: 14px;
    min-height: 68px;
  }
  .cart_free_shipping_total {
    margin-top: 0px;
  }
  .cart_free_shipping:before, .cart_free_shipping_total:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    background: var(--background-color);
  }
  .cart_free_shipping p,
  .cart_free_shipping_total p,
  .cart_free_shipping .loading,
  .cart_free_shipping_total .loading {
    position: relative;
  }
  .cart_free_shipping p,
  .cart_free_shipping_total p {
    text-align: center;
    font-size: 12.4px;
    font-weight: 400;
  }
  .cart_free_shipping p span,
  .cart_free_shipping_total p span {
    font-size: 12.4px;
    font-weight: 600;
  }
  @media (max-width: 1024px) {
    .modal.modal_cart {
      width: 100%;
    }
  }

/*** Home ***/
  #home_start {
    height: 480px;
    display: flex;
    position: relative;
  }
  #home_start .left {
    min-width: 300px;
    background: var(--modal-background-color);
  }
  #home_start .right {
    padding-left: 16px;
    padding-top: 16px;
    position: relative;
    width: calc(100% - 300px);
  }
  .home_edge_items {
    display: flex;
    grid-gap: 8px;
    margin-top: 44px;
    overflow-x: auto;
  }
  .home_edge_items .item {
    display: flex;
    background: var(--modal-background-color);
    padding: 24px 16px;
    border-radius: 7px;
    width: 100%;
  }
  .home_edge_items .item .icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: -6px;
  }
  .home_edge_items .item .caption {
    display: flex;
    flex-direction: column;
    width: calc(100% - 46px);
  }
  .home_edge_items .item .caption p {
    font-weight: 500;
    font-size: 13.4px;
    line-height: 1.3;
    display: flex;
    margin-bottom: 10px;
  }
  .home_edge_items .item .caption span {
    font-size: 12px;
    line-height: 1.3;
  }
  @media (max-width: 1024px) {
    #home_start .left {
      display: none;
    }
    #home_start .right {
      width: 100%;
      padding-left: 0px;
    }
    .home_edge_items {
      grid-auto-columns: max-content;
    }
    .home_edge_items .item {
      padding: 16px 10px;
      min-width: 240px;
    }
  }

/*** Main Slider && Main Carousel ***/
  .homeSlider {
    height: 100%;
    padding-bottom: 16px;
  }
  .homeSlider_empty {
    background-color: var(--header-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--font-color);
    opacity: .15;
    font-weight: 300;
  }
  .homeSlider .swiper-slide {
    height: 100%;
    padding-bottom: 16px;
    margin-right: 16px;
  }
  .homeSlider .item {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
  }
  .homeSlider .item .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .homeSlider .item.item_image_empty,
  .homeSlider .item.item_image_empty .image {
    background: var(--header-background-color);
  }
  .homeSlider .item .image a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .homeSlider .item .image a:hover {
    text-decoration: none;
  }
  .homeSlider .item.item_image_and_text {
    flex-direction: column;
  }
  .homeSlider .item.item_image_and_text {
    flex-direction: column;
    padding: 36px 24px;
  }
  .homeSlider .item.item_image_and_text .title {
    font-size: 17.4px;
    font-weight: 700;
    overflow: hidden;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }
  .homeSlider .item.item_image_and_text .desc {
    font-size: 17px;
    overflow: hidden;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
  }
  .homeSlider .item.item_image_and_text .image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .homeSlider .item.item_image_and_text .image.image_lazy {
    background: transparent;
  }
  .homeSlider .item.item_image_and_text:not(.item_image_empty) .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
  }
  .homeSlider .item.item_image_and_text .link {
    position: relative;
  }
  .homeSlider .item.item_image_and_text .link a {
    display: inline-flex;
    justify-content: center;
    min-width: 120px;
    text-align: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13.4px;
    border-radius: 100px;
    padding: 12px 16px;
    font-weight: 700;
    transition: background .25s ease-in-out, color .25s ease-in-out;
  }
  .homeSlider .item.item_image_and_text .link a:hover {
    background: #fff;
    color: var(--main-color);
  }

  .homeSlider.homeSlider_carousel .swiper-slide {
    margin-right: 16px;
  }
  .homeSlider.homeSlider_carousel .item:not(.item_image_empty) .image img {
    /* Slider type Image */
      object-fit: cover;
      width: 100%;
    }
    .homeSlider.homeSlider_slider .item {
      align-items: flex-start;
    }
    .homeSlider.homeSlider_slider .item .image img {
      width: 100%;
      object-fit: contain;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
    
    /* Slider type Image and Text */
    .homeSlider.homeSlider_carousel .item.item_image_and_text:not(.item_image_empty) .image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .homeSlider.homeSlider_carousel .item.item_image_and_text .title,
    .homeSlider.homeSlider_carousel .item.item_image_and_text .desc {
      min-height: 40px;
      max-height: 40px;
      margin-bottom: 0px;
      text-align: center;
    }
    .homeSlider.homeSlider_carousel .item.item_image_and_text .title {
      margin-bottom: 16px;
    }
    .homeSlider.homeSlider_carousel  .item.item_image_and_text .image {
      margin-top: 24px;
      margin-bottom: 24px;
      max-width: 80%;
      position: relative;
    }
    .homeSlider.homeSlider_carousel .item.item_image_and_text:before {
      position: absolute;
      width: 100%;
      height: 100%;
      content: '';
      background: rgb(255,255,255);
      background: linear-gradient(297deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.19) 50%, rgba(255,255,255,0) 100%);
      left: 0;
      top: 0;
    }
    .homeSlider.homeSlider_slider .item.item_image_and_text {
      padding: 36px 48px;
    }
    .homeSlider.homeSlider_slider  .item.item_image_and_text .image {
      max-width: 50%;
      max-height: 70%;
      position: absolute;
      right: 48px;
      top: 50%;
      transform: translate(0%, -50%);
    }
    .homeSlider.homeSlider_slider .item.item_image_and_text .title,
    .homeSlider.homeSlider_slider .item.item_image_and_text .desc,
    .homeSlider.homeSlider_slider .item.item_image_and_text .link {
      width: 50%;
      text-align: center;
    }

  .homeSlider_arrow.swiper_arrow {
    bottom: 34px;
  }
  .homeSlider .swiper-pagination-progressbar {
    top: initial !important;
    bottom: 0;
    height: 2px !important;
    background: var(--top-background-color) !important;
    overflow: hidden;
    border-radius: 7px;
  }
  .banner_placeholder_text {
    font-size: 40px;
    letter-spacing: 12px;
    color: var(--font-color);
    opacity: .15;
    font-weight: 300;
    position: relative;
  }
  .homeSlider.homeSlider_carousel .banner_placeholder_text {
    font-size: 30px;
    letter-spacing: 8px;
  }

/*** Columns ***/
  .columns {
    display: flex;
    grid-gap: 24px;
  }
  .columns #content {
    width: 100%;
  }
  .columns_2 #content {
    width: calc(100% - 324px);
  }
  .columns_3 #content {
    width: calc(100% - 648px);
  }
  .columns .column_left,
  .columns .column_right {
    width: 300px;
  }
  @media (max-width: 1024px) {
    .columns {
      grid-gap: 16px;
      flex-direction: column-reverse;
    }
    .columns #content {
      width: 100%;
    }
    .columns .column_left,
    .columns .column_right {
      width: 100%;
    }
  }

/*** Catalog ***/
  .products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 8px;
  }
    /*** Adaptation for modules products ***/
    .module .products {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    /*** Adaptation for columns ***/
    .columns_2 .products {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .columns_3 .products {
      grid-template-columns: 1fr 1fr 1fr;
    }
    /*** Adaptation for aside ***/
    .column_left .products,
    .column_right .products {
      grid-template-columns: 1fr;
    }
    /*** Fix for swiper ***/
    .products_slider {
      position: relative;
    }
  .product_list {
    background: var(--modal-background-color);
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
  }
    /*** Fix for swiper ***/
    .product_list.swiper-slide {
      display: flex !important;
    }
  .product_list_header {
    position: relative;
  }
  .product_list_header .stickers,
  .product_list_header .buttons {
    position: absolute;
    top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.4px;
  }
  .product_list_header .stickers {
    left: 10px;
  }
  .product_list_header .stickers li {
    line-height: 1;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 100px;
    background: #000;
    color: #fff;
    -webkit-transform: scaleY(0.96);
    transform: scaleY(0.96);
    width: fit-content;
  }
  .product_list_header .stickers li.percent {
    background: var(--main-color-2);
  }
  .product_list_header .stickers li.popular {
    background: var(--sticker_popular);
  }
  .product_list_header .stickers li.special {
    background: var(--sticker_special);
  }
  .product_list_header .stickers li.hot {
    background: var(--sticker_hot);
  }
  .product_list_header .stickers li.new {
    background: var(--sticker_new);
  }
  .product_list_header .buttons {
    right: 10px;
  }
  .product_list_header .buttons button {
    background: rgba(0, 0, 0, 0.02);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }
  .product_list_header .buttons button:hover {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  .product_list_header .buttons button:before {
    background-color: #666;
    -webkit-mask-size: 16px;
    mask-size: 16px;
  }
  .product_list_header .buttons .icon:before {
    background-color: #666;
    -webkit-mask-size: 16px;
    mask-size: 16px;
  }
  .product_list_header .image a {
    display: flex;
    justify-content: center;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 24px;
  }
  .product_list_middle {
    padding: 0px 10px;
  }
  .product_list_middle .name {
    height: 36px;
    overflow: hidden;
  }
  .product_list_middle .name a {
    color: var(--font-color);
    line-height: 1.2;
    font-size: 14.2px;
    display: inline-flex;
    font-weight: 500;
  }
  .product_list_middle .description {
    font-size: 12px;
    line-height: 1.3;
    height: 32px;
    overflow: hidden;
    color: #666;
    margin-top: 6px;
  }
  .product_list_middle .stock_status {
    margin-top: 10px;
    padding: 0px;
    border: none;
    font-size: 12.8px;
    font-weight: 400;
  }
  .product_list_middle .rating {
    margin-top: 8px;
  }
  .product_list_middle .rating p {
    font-size: 12.8px;
  }
  .product_list_bottom {
    padding: 10px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
  }
  .product_list_bottom .reward {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0px 7px;
    border-radius: 100px;
    overflow: hidden;
    color: var(--main-color-2);
    font-size: 10px;
    line-height: 1;
    white-space: pre-wrap;
    font-weight: 400;
  }
  .product_list_bottom .reward span {
    font-size: 10px;
    font-weight: 600;
  }
  .product_list_bottom .reward:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-color-2);
    content: '';
    top: 0;
    left: 0;
    opacity: .1;
  }
  .product_list_bottom .price {
    display: flex;
    margin-bottom: 16px;
  }
  .product_list_bottom .price-stock {
    font-size: 17px;
    font-weight: 600;
  }
  .product_list_bottom .price-new {
    color: var(--main-color-2);
  }
  .product_list_bottom .price-old {
    margin-left: 10px;
    font-size: 13px;
    text-decoration: line-through;
    color: #666;
  }
  .product_list_bottom_button {
    display: flex;
    justify-content: space-between;
  }
  .product_list_bottom .button_cart {
    width: 56px;
    height: 36px;
    padding: 0px;
    border: none;
    position: relative;
    overflow: hidden;
  }
  .product_list_bottom .button_cart:before {
    position: absolute;
    content: '';
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.05;
    transition: background 0.3s ease-in-out;
  }
  .product_list_bottom .button_cart:hover:before {
    background-color: var(--main-color-2);
  }
  .product_list_dropdown .attributes {
    padding: 15px 10px 10px 10px;
  }
  .product_list_dropdown .attributes > a {
    font-size: 11.6px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--inverse-color);
    text-decoration: underline;
  }
  .product_list_dropdown {
    transform: scale(0);
    margin-top: -7px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--modal-background-color);
    box-shadow: 3px 6px 5px var(--box-shadow);
    width: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
  }
  .product_list:hover .product_list_dropdown {
    transform: scale(1);
    opacity: 1;
  }
    /*** Fix for related products ***/
    #product_related .products_slider {
      overflow-x: hidden;
    }
    #product_related .product_list {
      border: 1px solid var(--border-color);
      padding: 8px;
    }
    #product_related .product_list_middle,
    #product_related .product_list_bottom {
      padding-left: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
    }
    @media (max-width: 1024px) {
      .products,
      .columns_2 .products,
      .columns_3 .products,
      .module .products {
        grid-template-columns: 1fr 1fr;
      }
      .products_slider {
        overflow-x: hidden;
      }
      .module .products {
        grid-template-columns: 1fr 1fr;
      }
      .product_list_header .image a {
        padding: 16px 10px;
      }
      .product_list_header .buttons {
        grid-template-columns: 1fr;
      }
      .product_list_header .stickers li {
        font-size: 8px;
        padding: 2px 5px;
      }
      .product_list_bottom .price {
        margin-bottom: 8px;
        height: 40px;
      }
      .product_list_bottom .price-stock {
        font-size: 15.4px;
      }
      .product_list_bottom .price-old {
        font-size: 12.4px;
        margin-left: 0px;
      }
    }

/*** Pagination ***/
  #content .products {
    margin-bottom: 24px;
  }
  .pagination {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }
  .pagination li {
    display: flex;
  }
  .pagination li * {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-weight: 400;
    border-radius: 7px;
    font-size: 13.6px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
  }
  .pagination li a:hover {
    background: var(--main-color-2);
    border-color: var(--main-color-2);
  }
  .pagination li span {
    background: transparent;
    color: var(--main-color);
  }
  .results {
    text-align: center;
    font-size: 11.4px;
/*    font-weight: 400;*/
    margin-top: 16px;
  }

/*** Category page ***/
  .category_description {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 16px;
    background: var(--top-background-color);
    padding: 16px;
    border-radius: 7px;
    margin-top: 16px;
    padding-bottom: 6px;
  }
  .category_description.category_description_without_thumb {
    grid-template-columns: 1fr;
  }
  .category_description .image {
    width: 80px;
  }
  .categories {
    background: var(--top-background-color);
    padding-top: 16px;
    border-radius: 7px;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .categories .categories_items {
    padding: 0px 16px;
    padding-bottom: 16px;
    display: flex;
    position: relative;
  }
  .categories .categories_items .item {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 8px;
    width: 120px;
  }
  .categories .categories_items .item > .image,
  .categories .categories_items .item > .image a {
    display: flex;
  }
  .categories .categories_items .item > a {
    margin-top: 12px;
    font-size: 12.6px;
    font-weight: 400;
    color: var(--font-color);
    line-height: 1.3;
    text-align: center;
    min-height: 47px;
    max-height: 47px;
    overflow: hidden;
  }
  .categories .swiper-pagination-progressbar {
    top: initial !important;
    bottom: 0;
    height: 2px !important;
    background: var(--top-background-color) !important;
    overflow: hidden;
    border-radius: 7px;
  }
  .sorting {
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 7px;
    background: var(--modal-background-color);
  }
  .sorting.form_template {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 16px;
  }
  .sorting .item {
    display: flex;
    align-items: center;
  }
  .sorting > p {
    font-size: 12.4px;
    font-weight: 400;
  }
  .sorting.form_template select {
    height: inherit;
    padding: 4px 8px;
    font-size: 12.4px;
    width: 300px;
    border-radius: 4px;
    background-position: right 6px top 50%, 0 0;
  }
  .sorting.form_template .item:last-child select {
    width: 60px;
  }
  @media (max-width: 1024px) {
    .sorting.form_template select {
      width: initial;
      max-width: 160px;
    }
  }

/*** Product page ***/
  .product_page_nav {
    height: 44px;
    margin-top: 16px;
    margin-bottom: 6px;
    position: sticky;
    top: -1px;
    transition: top 0.2s ease-in-out;
    background: var(--top-background-color);
    z-index: 8;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 2px solid var(--background-color);
  }
  body.header_scroll .product_page_nav {
    top: 65px;
  }
  .product_page_nav li {
    box-shadow: inset 0px 0px 0px var(--main-color);
    font-size: 13.6px;
    font-weight: 400;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color);
  }
  .product_page_nav li:last-child {
    margin-right: 0px;
  }
  .product_page_nav li.link_to_buy {
    transform: scale(0);
    opacity: 0;
    position: absolute;
    right: 0;
    font-size: 12.4px;
    font-weight: 500;
    transition: opacity 0.3s ease-in-out;
  }
  .product_page_nav li.link_to_buy.active {
    opacity: 1;
    transform: scale(1);
  }
  .product_page_nav li.active {
    box-shadow: inset 0px -3px 0px var(--main-color);
  }
  .product_page_nav li .icon {
    margin-right: 6px;
    width: 18px;
    min-width: 18px;
    height: 18px;
  }
  .product_page_nav li .icon:before {
    background-color: var(--main-color);
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
  }
  .product_page_nav li:hover {
    cursor: pointer;
    box-shadow: inset 0px -3px 0px var(--main-color-2);
  }
  .product_page_nav li:hover .icon:before {
    background-color: var(--main-color-2);
  }
  .product_section {
    margin-bottom: 8px;
    background: var(--top-background-color);
    padding: 16px;
  }
  .product_section:last-child {
    margin-bottom: 0px;
  }
  .product_section.product_main {
    display: grid;
    grid-template-columns: 1fr 560px;
    padding: 0px;
    background: var(--top-background-color);
  }
  .product_main_left,
  .product_main_right {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 16px;
  }
  .product_main_left {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: fit-content;
    position: sticky;
    top: 49px;
    transition: top 0.2s ease-in-out;
  }
  body.header_scroll .product_main_left {
    top: 105px;
  }
    /*** Product thumbnail ***/
    .product_main_left .thumbnail {
      width: 80px;
      margin-right: 24px;
    }
    .product_main_left .thumbnail .productSliderThumbnail {
      max-height: 540px;
      overflow: hidden;
    }
    .product_main_left .thumbnail .productSliderThumbnail .item {
      height: fit-content !important;
      overflow: hidden;
    }
    .product_main_left .thumbnail .productSliderThumbnail .item .image_wrap {
      padding: 8px;
      border: 1px solid var(--border-color);
      border-radius: 7px;
      overflow: hidden;
      transition: border 0.6s ease-in-out;
    }
    .product_main_left .thumbnail .productSliderThumbnail .item.swiper-slide-thumb-active .image_wrap {
      border-color: #999;
    }
    .product_main_left .thumbnail .productSliderThumbnail .item img {
      width: 100%;
      height: 100%;
    }
    .product_main_left .thumbnail .productSliderThumbnail_arrow {
      position: relative;
      margin-top: 8px;
      height: 24px;
      width: 100%;
    }
    .product_main_left .thumbnail .productSliderThumbnail_arrow .swiper_arrow_wrap {
      width: 100%;
      height: 24px;
    }
    .product_main_left .thumbnail .productSliderThumbnail_arrow .swiper_arrow_wrap:before {
      -webkit-mask-size: 24px;
      mask-size: 24px;
      width: 24px;
      height: 24px;
    }
    .product_main_left .thumbnail .productSliderThumbnail_arrow:hover {
      opacity: 1;
    }
    /*** Product thumbnail ***/
    .product_main_left .thumb {
      position: relative;
      overflow: hidden;
      width: calc(100% - 104px);
      height: fit-content;
    }
    .product_main_left .thumb_full {
      width: 100%;
    }
    .product_main_left .thumb .productSlider {
      position: relative;
    }
    .product_main_left .thumb .productSlider .item a {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      background: #fff;
    }
    .product_main_left .thumb .productSlider_arrow.swiper_arrow_left {
      bottom: 16px;
    }
    .product_main_left .thumb .productSlider_arrow.swiper_arrow_right {
      bottom: 16px;
    }
    .product_main_left .thumb .productSlider_arrow.swiper_arrow .swiper_arrow_wrap {
      width: 100%;
      height: 100%;
    }
    .product_main_left .thumb_full .productSlider .item a img {
      max-width: calc(100% - 80px);
    }
    .product_main_left .thumb_full .productSlider_arrow {
      display: none;
    }
  .product_main_right {
    border-left: 8px solid var(--background-color);
  }
  .product_main_right .product_info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .product_main_right .product_info_left {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 8px;
  }
  .product_main_right .product_info_left .button {
    border: 1px solid var(--border-color);
    height: inherit;
    padding: 8px;
  }
  .product_main_right .product_info_left .button:hover {
    border: 1px solid var(--main-color-2);
  }
  .product_main_right .product_info_left .icon {
    width: 14px;
    height: 14px;
  }
  .product_main_right .product_info_left .icon:before {
    -webkit-mask-size: 14px;
    mask-size: 14px;
    width: 14px;
    height: 14px;
    background-color: #666;
  }
  .product_main_right .product_info_right {
    margin-left: auto;
    display: flex;
    align-items: center;
  }
  .product_main_right .product_info_right .model,
  .product_main_right .product_info_right .model * {
    color: #666;
    font-size: 12.4px;
  }
  .product_main_right .product_info_right #copy_model {
    margin-left: 6px;
    width: 14px;
    min-width: 14px;
    height: 14px;
  }
  .product_main_right .product_info_right #copy_model:before {
    width: 14px;
    height: 14px;
    -webkit-mask-size: 14px;
    mask-size: 14px;
    transform: rotate(0deg);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .product_main_right .product_info_right #copy_model:hover:before {
    background-color: var(--main-color-2);
    cursor: pointer;
  }
  .product_main_right .product_info_right #copy_model.active:before {
    transform: rotate(360deg);
    background-color: var(--main-color-2);
  }
  .product_main_right .price .price_cheaper_link {
    margin-top: 4px;
  }
  .product_main_right .price .price_cheaper_link button {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    font-size: 11.4px;
    line-height: 1;
    color: var(--font-color);
    text-decoration: underline;
    background: transparent;
    border: none;
  }
  .product_main_right .price {
    display: flex;
    align-items: center;
    margin-top: 34px;
    position: relative;
  }
  .product_main_right .price .price_stock {
    font-size: 26px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
  }
  .product_main_right .price .price_special {
    color: var(--main-color-2);
  }
  .product_main_right .price .price_economy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 10px;
    background: var(--main-color-2);
    color: #fff;
    margin-left: 16px;
    border-radius: 14px 0px 14px 0px;
  }
  .product_main_right .price .price_economy span {
    font-size: 11.4px;
    font-weight: 400;
    line-height: 1.35;
  }
  .product_main_right .price .price_economy p {
    font-size: 14.6px;
    font-weight: 700;
    line-height: 1.35;
  }
  .product_main_right .price .price_old {
    margin-left: auto;
    display: flex;
    align-items: center;
  }
  .product_main_right .price .price_old span {
    border: 1px solid var(--main-color-2);
    color: var(--main-color-2);
    display: inline-flex;
    padding: 6px;
    border-radius: 7px;
    margin-right: 8px;
    font-weight: 600;
    font-size: 11.4px;
    line-height: 1;
  }
  .product_main_right .price .price_old p {
    font-size: 12.4px;
    text-decoration: line-through;
    color: #666;
    font-weight: 400;
  }
  .product_main_right .price_additional {
    margin-top: 16px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
  }
  .product_main_right .price_additional * {
    font-size: 12.4px;
  }
  .product_main_right .manufacturer {
    display: flex;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 13.6px;
  }
  .product_main_right .manufacturer a {
    margin-left: 8px;
    display: flex;
    align-items: center;
    color: var(--font-color);
    font-size: 13.6px;
    font-weight: 400;
    line-height: 1.3;
  }
  .product_main_right .manufacturer .image {
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
    margin-right: 8px;
    border-radius: 100%;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product_main_right .manufacturer img {
    width: 90%;
  }
  .product_main_right .options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
  }
  .product_main_right .options h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .product_main_right .buttons {
    margin-top: 32px;
    padding: 24px;
    background: var(--background-color);
    display: flex;
    align-items: center;
    border-radius: 7px 7px 0px 0px;
  }
  .product_main_right .buttons .quantity_wrap {
    display: flex;
    align-items: center;
    margin-right: 16px;
  }
  .product_main_right .buttons .quantity_wrap button,
  .product_main_right .buttons .quantity_wrap input {
    border: 1px solid var(--border-color);
    color: #666;
    font-size: 12.4px;
    font-weight: 400;
    height: 48px;
    background: transparent;
  }
  .product_main_right .buttons .quantity_wrap input {
    width: 50px;
    text-align: center;
  }
  .product_main_right .buttons .quantity_wrap button {
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product_main_right .buttons .quantity_wrap button.button_minus {
    border-right: none;
    border-radius: 7px 0px 0px 7px;
  }
  .product_main_right .buttons .quantity_wrap button.button_plus {
    border-left: none;
    border-radius: 0px 7px 7px 0px;
  }
  .product_main_right .buttons .quantity_wrap button .icon {
    width: 16px;
    height: 16px;
  }
  .product_main_right .buttons .quantity_wrap button .icon:before {
    width: 16px;
    height: 16px;
    background-color: #666;
    -webkit-mask-size: 16px;
    mask-size: 16px;
  }
  .product_main_right .buttons .button {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
  .product_main_right .buttons .button.button_2 {
    font-size: 16px;
  }
  .product_main_right .buttons .button .icon {
    margin-right: 8px;
  }
  .product_main_right .buttons .button .icon:before {
    background-color: #fff;
  }
  .product_main_right .button_fast_order {
    border-radius: 0px 0px 7px 7px;
    background: var(--background-color);
    padding: 24px;
    padding-top: 0px;
  }
  .product_main_right .button_fast_order .button {
    width: 100%;
    font-size: 13.6px;
  }
  .product_main_right .button_fast_order .button .icon {
    margin-right: 6px;
  }
  .product_main_right .button_buy_1_click {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
  }
  .product_main_right .alert {
    margin-top: 8px;
  }
  .product_main_right .rating {
    margin-top: 24px;
  }
  .product_main_right .rating .icon_star,
  .product_main_right .rating .icon_comment {
    width: 14px;
    height: 14px;
  }
  .product_main_right .rating .icon_star:before {
    width: 14px;
    height: 14px;
    mask-size: 14px;
    -webkit-mask-size: 14px;
  }
  .product_main_right .rating .icon_comment:before {
    width: 14px;
    height: 14px;
  }
  .product_main_right .tags {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
  }
  .product_middle {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-gap: 8px;
  }
  .product_middle_left button.modal_link {
    height: 52px;
    width: 100%;
    border-width: 1px;
  }
  .product_middle_left {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .product_middle_right {
    background: var(--top-background-color);
  }
  .product_middle_right_mini_product {
    padding: 16px;
    position: sticky;
    top: 100px;
  }
  .product_middle_right_mini_product .thumb {
    margin-bottom: 16px;
    padding: 7px;
    border-radius: 7px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .product_middle_right_mini_product .thumb img {
    border-radius: 3px;
  }
  .product_middle_right_mini_product .name {
    font-size: 13.6px;
    font-weight: 600;
    display: flex;
    line-height: 1.15;
    max-height: 60px;
    overflow: hidden;
  }
  .product_middle_right_mini_product .price {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .product_middle_right_mini_product .price .price_stock {
    font-size: 16.4px;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
  }
  .product_middle_right_mini_product .price .price_special {
    color: var(--main-color-2);
  }
  .product_middle_right_mini_product .price .price_old {
    display: flex;
    align-items: center;
  }
  .product_middle_right_mini_product .price .price_old span {
    border: 1px solid var(--main-color-2);
    color: var(--main-color-2);
    display: inline-flex;
    padding: 6px;
    border-radius: 7px;
    margin-right: 8px;
    font-weight: 600;
    font-size: 11.4px;
    line-height: 1;
  }
  .product_middle_right_mini_product .price .price_old p {
    font-size: 11.4px;
    text-decoration: line-through;
    color: #666;
    font-weight: 400;
  }
  .product_middle_right_mini_product .attributes {
    padding: 8px;
    background: var(--background-color);
    margin-bottom: 16px;
    border-radius: 7px;
    overflow: hidden;
  }
  .product_middle_right_mini_product .attributes .item .attribute_wrap {
    background: var(--background-color);
  }
  .product_middle_right_mini_product .attributes * {
    font-size: 12.4px;
  }
  .product_middle_right_mini_product .button {
    width: 100%;
    font-size: 12.4px;
    font-weight: 500;
    border-width: 1px;
  }
  .product_middle_right_mini_product .button .icon:before {
    background-color: #fff;
  }
  @media (max-width: 1024px) {
    body.header_scroll .product_page_nav {
      top: 58px;
    }
    .product_section.product_main {
      grid-template-columns: 1fr;
    }
    .product_main_left {
      position: relative;
      top: initial;
      flex-direction: column-reverse;
    }
    body.header_scroll .product_main_left {
      top: initial;
    }
    .product_main_left .thumbnail .productSliderThumbnail .item {
      width: 80px;
    }
    .product_main_left .thumbnail .productSliderThumbnail_arrow {
      display: none;
    }
    .product_page_nav li.link_to_buy {
      display: none;
    }
    .product_main_left, .product_main_right {
      padding: 16px 10px;
    }
    .product_main_right {
      border-left: none;
      border-top: 8px solid var(--background-color);
    }
    .product_main_right .price {
      margin-top: 22px;
    }
    .product_main_right .price .price_stock {
      font-size: 22px;
    }
    .product_main_right .price .price_old {
      position: absolute;
      right: 0;
      bottom: 32px;
    }
    .product_main_right .price .price_economy {
      margin-left: auto;
      padding: 2.5px 10px;
      flex-direction: row;
      position: absolute;
      bottom: 0;
      right: 0;
    }
    .product_main_right .price .price_economy p {
      font-size: 13.4px;
      margin-left: 4px;
    }
    .product_main_left .thumb {
      width: 100%;
    }
    .product_main_left .thumbnail {
      margin-top: 10px;
      margin-right: 0px;
      width: 100%;
    }
    .product_main_left .thumb .productSlider_arrow.swiper_arrow {
      display: none;
    }
    .product_main_right .product_info_right .model, .product_main_right .product_info_right .model * {
      font-size: 10.4px;
    }
    .product_main_right .buttons {
      flex-direction: column-reverse;
      margin-top: 20px;
    }
    .product_main_right .buttons {
      padding: 16px 10px;
    }
    .product_main_right .buttons .quantity_wrap {
      margin-right: 0px;
      margin-top: 16px;
      width: 100%;
    }
    .product_main_right .buttons .quantity_wrap button {
      width: 20%;
    }
    .product_main_right .buttons .quantity_wrap input,
    .product_main_right .buttons .quantity_wrap button {
      height: 40px;
    }
    .product_main_right .buttons .quantity_wrap input {
      width: 60%;
    }
    .product_main_right .button_fast_order {
      padding: 16px 10px;
      padding-top: 0px;
    }
    .product_main_right .button_buy_1_click {
      flex-direction: column;
    }
    .product_main_right .button_buy_1_click p {
      margin-right: 0px;
      margin-bottom: 8px;
    }
    .product_middle {
      grid-template-columns:  1fr;
    }
    .product_section {
      padding: 16px 10px;
    }
    .product_middle_right_mini_product {
      position: relative;
      top: initial;
      display: grid;
      grid-template-columns: 120px 1fr;
      grid-gap: 16px;
      padding: 16px 10px;
      padding-bottom: 56px;
      justify-content: center;
    }
    .product_middle_right_mini_product .button {
      position: absolute;
      left: 50%;
      bottom: 16px;
      width: calc(100% - 20px);
      transform: translate(-50%, 0%);
    }
  }
  
    /*** Reviews & Ask answers ***/
    .reviews_thumbnail {
      margin-bottom: 24px;
    }
    .reviews_thumbnail ul {
      display: grid;
      grid-auto-flow: column;
      grid-gap: 8px;
      width: fit-content;
    }
    .reviews_thumbnail li a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      padding: 8px;
      border: 1px solid var(--border-color);
      border-radius: 7px;
      transition: border 0.3s ease-in-out;
    }
    .reviews_thumbnail li a:hover {
      border-color: #999;
    }
    .reviews_thumbnail li a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .reviews_all_rating {
      padding: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 24px;
      border: 1px solid var(--border-color);
      margin-bottom: 24px;
      border-radius: 7px;
    }
    .reviews_all_rating_left,
    .reviews_all_rating_right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .reviews_all_rating_left p {
      font-size: 15.4px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .reviews_all_rating_right .item {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }
    .reviews_all_rating_right .item:last-child {
      margin-bottom: 0px;
    }
    .reviews_all_rating_right .percent_bar {
      margin-left: 16px;
      height: 3px;
      border-radius: 7px;
      background: var(--background-color);
      position: relative;
      width: 200px;
      overflow: hidden;
    }
    .reviews_all_rating_right .percent_bar span {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background: var(--main-color);
    }
    .reviews_all_rating_right .item_4 .percent_bar span {
      width: 33%;
    }
    .reviews_all_rating_right p {
      font-size: 13.6px;
      margin-left: 16px;
    }
    .reviews_all_rating_right .rating_count {
      grid-gap: 8px;
    }
    .reviews_all_rating_right .rating_count .icon {
      width: 20px;
      min-width: 20px;
      height: 20px;
    }
    .reviews_all_rating_right .rating_count .icon:before {
      -webkit-mask-size: 20px;
      mask-size: 20px;
      width: 20px;
      height: 20px;
    }
    #review,
    #askanswer {
      margin-bottom: 16px;
    }
    .reviews {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 8px;
    }
    .reviews .item {
      padding: 16px;
      border: 1px solid var(--border-color);
      display: grid;
      grid-template-columns: 200px 1fr;
      grid-gap: 16px;
      border-radius: 7px;
      min-height: 120px;
    }
    .reviews .item_left {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .reviews .item_left .image {
      width: 56px;
      height: 56px;
      border-radius: 100%;
      background: var(--box-shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .reviews .item_left .image p {
      line-height: 1;
      font-size: 15.4px;
      font-weight: 500;
      text-transform: uppercase;
    }
    .reviews .item_right_header {
      display: flex;
      align-items: center;
      font-size: 13.6px;
      margin-bottom: 16px;
    }
    .reviews .item_right_header .author {
      font-weight: 400;
    }
    .reviews .item_right_header .date {
      display: flex;
      align-items: center;
      margin-left: auto;
      font-size: 12.4px;
    }
    .reviews .item_right_header .icon_date {
      width: 14px;
      min-width: 14px;
      height: 14px;
    }
    .reviews .item_right_header .icon_date:before {
      background-color: #666;
      mask-size: 14px;
      -webkit-mask-size: 14px;
      width: 14px;
      height: 14px;
    }
    .reviews .item_right .text {
      font-size: 13.6px;
    }
    .reviews .item_right .answer,
    .reviews .item_right .review,
    .reviews .item_right .plus,
    .reviews .item_right .minus {
      margin-top: 16px;
      display: flex;
    }
    .reviews .item_right .answer p,
    .reviews .item_right .review p,
    .reviews .item_right .plus p,
    .reviews .item_right .minus p,
    .reviews .item_right .thumbnail p {
      margin-right: 6px;
      font-weight: 500;
      font-size: 13.6px;
      white-space: nowrap;
    }
    .reviews .item_right .answer {
      background: var(--background-color);
      padding: 16px 10px;
      border-radius: 7px;
    }
    .reviews .item_right .review p {
      display: flex;
      color: var(--main-color);
    }
    .reviews .item_right .review p .icon_left {
      margin-right: 4px;
    }
    .reviews .item_right .review p .icon {
      width: 20px;
      min-width: 20px;
      height: 20px;
    }
    .reviews .item_right .review p .icon:before {
      background-color: var(--main-color);
      width: 20px;
      height: 20px;
      -webkit-mask-size: 20px;
      mask-size: 20px;
    }
    .reviews .item_right .thumbnail {
      margin-top: 16px;
    }
    .reviews .item_right .thumbnail p {
      margin-right: 0px;
      margin-bottom: 8px;
    }
      /*** Fix for ask answer ***/
      .reviews.askanswers .item_left .image {
        margin-bottom: 0px;
      }
      .reviews.askanswers .item_right .review p {
        color: var(--main-color-2);
      }
      .reviews.askanswers .item_right .review p .icon:before {
        background-color: var(--main-color-2);
      }
    @media (max-width: 1024px) {
      .reviews .item {
        grid-template-columns: 80px 1fr;
      }
      .reviews .item_right .text {
        word-break: break-all;
      }
      .reviews .item_right .answer,
      .reviews .item_right .review,
      .reviews .item_right .plus,
      .reviews .item_right .minus,
      .reviews .item_right_header {
        flex-direction: column;
        word-break: break-all;
        align-items: flex-start;
      }
      .reviews .item_right_header .date {
        margin-left: initial;
      }
      .reviews_all_rating {
        grid-template-columns: 1fr;
      }
      .reviews_all_rating_right .percent_bar {
        width: 100px;
      }
      .reviews_all_rating_right .rating_count .icon {
        width: 16px;
        min-width: 16px;
        height: 16px;
      }
      .reviews_all_rating_right .rating_count .icon:before {
        -webkit-mask-size: 16px;
        mask-size: 16px;
        width: 16px;
        height: 16px;
      }
      .reviews_thumbnail li a {
        width: 50px;
        height: 50px;
      }
    }

/*** Contact page ***/
  .contact_page_header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px;
    margin-bottom: 24px;
  }
  .contact_page_header .contacts_item {
    min-width: 200px;
    background: var(--top-background-color);
    padding: 16px;
    border-radius: 7px;
  }
  .locations_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px;
    margin-bottom: 24px;
  }
  .locations_items .item {
    display: flex;
    padding: 16px;
    background: var(--top-background-color);
  }
  .locations_items .item .image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    width: 300px;
    height: 300px;
    position: relative;
  }
  .locations_items .item .image img {
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .locations_items .item .name {
    font-weight: 500;
  }
  @media (max-width: 1024px) {
    .contact_page_header,
    .locations_items {
      grid-template-columns: 1fr;
    }
    .locations_items .item {
      flex-direction: column;
    }
  }

/*** Account ***/
  .account {
    padding: 16px;
    border-radius: 7px;
    background: var(--top-background-color);
  }
  .account_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  .account .item,
  .account_row .item {
    padding: 16px;
    border-radius: 7px;
    background: var(--top-background-color);
  }
  .account_row .item li a {
    line-height: 1.7;
    font-size: 12.4px;
    text-decoration: underline;
    font-weight: 400;
    color: var(--font-color);
  }
  @media (max-width: 1024px) {
    .account_row {
      grid-template-columns: 1fr;
    }
  }

/*** 404 ***/
  #error-not-found {
    margin-bottom: -40px;
    background: #333;
    min-height: 334px;
    display: flex;
    align-items: center;
  }
  .error_404 {
    text-align: center;
  }
  .error_404 h1 {
    color: #fff;
  }
  .error_404 .buttons {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }

/*** Manufacturer ***/
  .manufacturer_list a {
    color: var(--font-color);
    font-size: 12.4px;
    text-decoration: underline;
  }
  .manufacturer_list h2 {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 4px;
    margin-top: 16px;
  }
  .manufacturer_list_items {
    display: flex;
    flex-direction: column;
  }

/*** Footer ***/
  #footer {
    margin-top: auto;
  }
  #footer .footer_inner {
    background: var(--footer-background-color);
    margin-top: 40px;
  }
  #footer .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #footer .footer_items {
    display: grid;
    grid-template-columns: 500px 1fr 1fr 1fr;
    grid-gap: 24px;
  }
  #footer .edge_items {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
  }
  #footer .edge_items .item {
    display: flex;
  }
  #footer .edge_items .item .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }
  #footer .edge_items .item .caption {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
  }
  #footer .edge_items .item .caption p {
    font-weight: 500;
    font-size: 14.6px;
    display: flex;
    margin-bottom: 6px;
  }
  #footer .edge_items .item .caption span {
    font-size: 12px;
    line-height: 1.3;
  }
  @media (max-width: 1024px) {
    #footer .edge_items .item {
      max-width: 240px;
    }
  }
  #footer .footer_title {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14.6px;
    margin-bottom: 16px;
  }
  #footer .footer_title .icon {
    width: 20px;
    height: 20px;
  }
  #footer .footer_title .icon:before {
    background-color: var(--inverse-color);
    -webkit-mask-size: 20px;
    mask-size: 20px;
    width: 20px;
    height: 20px;
  }
  #footer .footer_contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #footer .contacts_item_phones,
  #footer .contacts_item_address,
  #footer .contacts_item_time {
    margin-bottom: 24px;
  }
  #footer .contacts_item_messengers {
    margin-bottom: 16px;
  }
  #footer .footer_links ul li {
    line-height: 1.8;
  }
  #footer .footer_links ul li a {
    font-size: 12.4px;
    text-decoration: underline;
    font-weight: 400;
    color: var(--font-color);
  }
  #footer #subscription {
    padding: 12px 20px;
    border-radius: 7px;
    border: 1px solid var(--border-color);
    margin-top: 24px;
  }
  #footer #subscription > p {
    font-size: 12.4px;
    font-weight: 500;
    display: flex;
  }
  #footer #subscription .radio_item p,
  #footer #subscription .radio_item p * {
    font-size: 11.4px;
  }
  #footer #subscription form {
    display: flex;
    align-items: center;
    margin: 10px 0px;
  }
  #footer #subscription form input,
  #footer #subscription form button {
    height: 40px;
  }
  #footer #subscription form input {
    padding: 0px 16px;
    border-radius: 7px 0px 0px 7px;
    background: var(--background-color);
    font-size: 12.4px;
    color: var(--main-color);
    border: none;
    width: calc(100% - 40px);
    font-weight: 400;
  }
  #footer #subscription form input::placeholder {
    color: #444;
  }
  #footer #subscription form button {
    background: var(--border-color);
    border: none;
    font-weight: 400;
    font-size: 12.4px;
    border-radius: 0px 7px 7px 0px;
    width: 40px;
  }
  #footer #subscription form button:before {
    -webkit-mask-size: 16px;
    mask-size: 16px;
    background-color: var(--main-color-2);
  }
  #footer #subscription form button:hover {
    cursor: pointer;
  }
  #footer .footer_bottom {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #footer .footer_bottom .footer_payments {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 16px;
  }
  #footer .footer_bottom .footer_payments li {
    display: flex;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    overflow: hidden;
  }
  #footer .footer_bottom .footer_payments li:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--border-color);
    opacity: 1;
  }
  #footer .footer_bottom .footer_payments li img {
    transform: scale(0.7);
  }
  #footer .footer_bottom .footer_copyright {
    text-align: right;
  }
  #footer .footer_bottom .footer_copyright p,
  #footer .footer_bottom .footer_copyright a {
    font-size: 11.4px;
    color: #666;
  }
  #footer .footer_bottom .footer_copyright a {
    text-decoration: underline;
  }
  @media (max-width: 1024px) {
    #footer .footer_items {
      grid-template-columns: 1fr;
    }
    #footer .edge_items {
      grid-auto-columns: max-content;
    }
    #footer #subscription {
      padding: 16px;
    }
    #footer .footer_bottom {
      flex-direction: column;
    }
    #footer .footer_bottom .footer_payments {
      grid-gap: 8px;
    }
    #footer .footer_bottom .footer_copyright {
      text-align: center;
      margin-top: 8px;
    }
  }

/*** Buttons && Inputs && Form && Alerts && Icons ***/
  .alert_modal {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    position: fixed;
    z-index: 10;
  }
  .alert_list {
    position: fixed;
    top: 24px;
    transition: top .2s ease-in-out;
    z-index: 9;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 8px;
    padding-left: 16px;
    max-width: 400px;
  }
  .header_scroll .alert_list {
    top: 80px;
  }
  .alert,
    /* Fix stock OC */
    .text-danger {
      padding: 16px;
      color: var(--font-color);
      border-radius: 7px;
      font-weight: 500;
      padding-left: 44px;
      position: relative;
      display: flex;
      font-size: 13.6px;
  }
  .text-danger {
    align-items: center;
  }
  .alert_column {
    align-items: flex-start;
    flex-direction: column;
  }
    /* Fix stock OC */
    .text-danger {
      margin-top: 8px;
      padding-top: 0px;
      padding-bottom: 0px;
      height: 40px;
      font-size: 12.4px;
    }
  .alert:before,
    /* Fix stock OC */
    .text-danger:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    left: 16px;
  }
  .alert_static {
    margin-bottom: 16px;
  }
  .alert_popup {
    padding: 16px;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    grid-gap: 16px;
    position: relative;
    background: var(--top-background-color);
    box-shadow: 0px 0px 10px var(--box-shadow);
  }
  .alert_popup:before {
    display: none;
  }
  .alert_popup .icon_push,
  .alert_popup_image {
    width: 30px;
    height: 30px;
/*    padding: 4px;*/
    background: #fff;
    border: 1px solid transparent;
    overflow: hidden;
    border-radius: 4px;
  }
  .alert_popup_image img {
    width: 30px;
  }
  .alert_popup .icon_push:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: .15;
  }
  .alert_popup.alert_popup_error .icon_push:after {
    background: var(--error-background);
  }
  .alert_popup.alert_popup_success .icon_push:after {
    background: var(--success-background);
  }
  .alert_popup .icon_push {
    padding: 0px;
    background: transparent;
    overflow: hidden;
    border-radius: 100%;
  }
  .alert_popup .icon_push:before {
    -webkit-mask-size: 16px;
    mask-size: 16px;
    width: 30px;
    height: 30px;
    z-index: 1;
  }
  .alert_popup.alert_popup_error .icon_push:before {
    background-color: var(--error-background);
  }
  .alert_popup.alert_popup_success .icon_push:before {
    background-color: var(--success-background);
  }
  .alert_popup p,
  .alert_popup p * {
    font-weight: 400;
    font-size: 12.4px;
    line-height: 1.25;
  }
  .alert_popup p a {
    color: var(--main-color);
    font-weight: 500;
  }
  .alert_popup_close {
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
  }
  .alert_popup_close:hover {
    cursor: pointer;
  }
  .alert_popup_close:before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-mask: url(../icons/close.svg) no-repeat center;
    mask: url(../icons/close.svg) no-repeat center;
    background-color: var(--inverse-color);
    -webkit-mask-size: 30px;
    mask-size: 30px;
    width: 30px;
    height: 30px;
  }
  .alert_success {
    background: #4caf50;
  }
  .alert_success:before {
    webkit-mask: url(../icons/check.svg) no-repeat center;
    mask: url(../icons/check.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 20px;
    mask-size: 20px;
  }
  .alert_danger,
    /* Fix stock OC */
    .text-danger {
      background: var(--danger-background);
    }
  .alert_danger:before,
    /* Fix stock OC */
    .text-danger:before {
      webkit-mask: url(../icons/close.svg) no-repeat center;
      mask: url(../icons/close.svg) no-repeat center;
      background-color: var(--font-color);
      -webkit-mask-size: 20px;
      mask-size: 20px;
  }
  .alert_warning {
    background: var(--warning-background);
  }
  .alert_warning:before {
    webkit-mask: url(../icons/info.svg) no-repeat center;
    mask: url(../icons/info.svg) no-repeat center;
    background-color: var(--font-color);
    -webkit-mask-size: 20px;
    mask-size: 20px;
  }
  .alert_info {
    background: var(--background-color);
  }
  .alert_info:before {
    webkit-mask: url(../icons/info.svg) no-repeat center;
    mask: url(../icons/info.svg) no-repeat center;
    background-color: var(--font-color);
    -webkit-mask-size: 20px;
    mask-size: 20px;
  }
  .alert_with_button {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 7px;
    background: var(--background-color);
    margin-top: 16px;
  }
  .alert_with_button p {
    width: 100%;
    text-align: center;
    font-size: 13.6px;
    color: var(--font-color);
    margin-right: 15px;
  }
  .alert_with_button .button {
    margin-left: auto;
  }
  .form_template,
    /* Fix stock OC */
    .form_template > fieldset,
    .form_template > fieldset > *:not(.form-group) {
      display: flex;
      flex-direction: column;
      grid-gap: 8px;
  }
  .form_template.form_template_columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .form_template_background {
      padding: 16px;
      border-radius: 7px;
      background: var(--top-background-color);
  }
  .form_template input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset;
    -webkit-text-fill-color: var(--main-color);
  }
  .input_required_fail {
    border-color: var(--main-color-2) !important;
  }
  .input_required_fail::placeholder {
    color: var(--main-color-2) !important;
  }
  .form_template input[type="email"],
  .form_template input[type="password"],
  .form_template input[type="tel"],
  .form_template input[type="text"],
  .form_template input[type="url"],
  .form_template textarea,
  .form_template select {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0px 16px;
    height: 40px;
    border-radius: 0px 0px 3px 3px;
    font-size: 13.6px;
    font-weight: 400;
    color: var(--font-color);
  }
  .form_template textarea {
    height: inherit;
    padding: 16px;
    border-radius: 3px;
  }
  .form_template input::placeholder,
  .form_template textarea::placeholder {
    color: #888;
  }
  .form_template span {
    position: relative;
  }
  .form_template textarea[name="plus"] {
    color: var(--success-background);
  }
  .form_template textarea[name="minus"] {
    color: var(--error-background);
  } 
  .form_template textarea[name="plus"],
  .form_template textarea[name="minus"] {
    padding-left: 48px;
    font-size: 12.6px;
  }
  .form_template .icon_plus,
  .form_template .icon_minus {
    position: absolute;
    top: 14px;
    left: 14px;
    border: 1px solid var(--success-background);
    border-radius: 100%;
  }
  .form_template .icon_minus {
    border-color: var(--error-background);
  }
  .form_template .icon_plus:before {
    background-color: var(--success-background);
    -webkit-mask-size: 14px;
    mask-size: 14px;
  }
  .form_template .icon_minus:before {
    background-color: var(--error-background);
    -webkit-mask-size: 14px;
    mask-size: 14px;
  }
  .form_template select {
    position: relative;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url('../icons/arrow.svg');
    background-repeat: no-repeat, repeat;
    background-position: right 16px top 50%, 0 0;
    background-size: 14px auto, 100%;
  }
  .form_template .link {
    margin-top: 8px;
    color: var(--font-color);
    display: inline-flex;
    align-items: center;
    font-size: 11.4px;
    line-height: 1.3;
    text-decoration: underline;
    margin-left: auto;
    margin-right: auto;
  }
  .form_template .button {
    border-width: 1px;
    border-radius: 3px;
  }
  .form_template .button .icon:before {
    background-color: #fff;
  }
  .form_template .input_group {
    position: relative;
    display: flex;
    align-items: center;
  }
  .form_template .input_group_background {
    background: var(--background-color);
    padding: 8px 16px;
    border-radius: 7px;
  }
  .form_template .image_review_background {
    background: var(--background-color);
    height: 66px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
  }
  .form_template .image_review_background input::file-selector-button {
    font-weight: 400;
    font-size: 13.6px;
    height: 40px;
    padding: 0px 16px;
    background: transparent;
    color: var(--main-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    margin-right: 8px;
  }
  .form_template #images_review {
    font-size: 13.6px;
    font-weight: 400;
  }
  .form_template #image_preview {
    display: flex;
    grid-gap: 8px;
  }
  .form_template #image_preview img {
    border-radius: 3px;
  }
  .form_template #image_preview_container {
    margin-left: auto;
    grid-gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form_template #image_preview_container .button {
    width: 40px;
  }
  .form_template .input_group.input_group_icon input {
    border-radius: 0px 3px 3px 0px;
  }
  .form_template .input_group .icon:before {
    background-color: #666;
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
  }
    /*** Fix for size any icons ***/
    .form_template .input_group .icon.icon_link:before {
      -webkit-mask-size: 20px;
      mask-size: 20px;
      width: 20px;
      height: 20px;
    }
  .form_template .input_group .icon {
    border-radius: 3px 0px 0px 3px;
    height: 40px;
    width: 54px;
    border: 1px solid var(--border-color);
    background: var(--background-color);
    border-right: none;
  }
  .form_template .form_columns_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px;
  }
    /* Fix stock OC */
    .form_template .form-group > label {
      display: flex;
      align-items: center;
      height: 40px;
      background: var(--background-color);
      padding: 0px 16px;
      font-size: 12.6px;
      font-weight: 400;
      display: flex;
      border-radius: 3px 3px 0px 0px;
    }
    .form_template.form_template_hide_label_text legend,
    .form_template.form_template_hide_label_text .form-group > label.control-label {
      display: none;
    }
  .form_template .small_text {
    margin-top: auto;
  }


    .chous {
        width: 180px;
        height: 50px;
        border-radius: 4px;
        text-align: center;
        margin: 25px;
        cursor: pointer;
        display: block;
        font: 14px/50px Tahoma;
        transition: all 0.18s ease-in-out;
        border: 1px solid #4FD666;
        background: linear-gradient(to top right, #3EC97A, #69EA49 20%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0)) top right/500% 500%;
        color: #4FD666;
    }

    .chous:hover {
        color: white;
        background-position: bottom left;
    }
        
    .my {
      width: 0.1px;
      height: 0.1px;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      z-index: -1;
    }


  .checkbox_items,
  .radio_items {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 8px;
    width: fit-content;
  }
  .checkbox_items_row,
  .radio_items_row {
    grid-template-columns: initial;
    grid-auto-flow: column;
    grid-gap: 16px;
  }
  .checkbox_item,
  .radio_item,
    /* Fix stock OC */
    .form-group .checkbox,
    .form-group .radio {
      display: flex;
      align-items: center;
      position: relative;
      padding-left: 36px;
      min-height: 24px;
  }
    /* Fix stock OC */
    .form-group .checkbox,
    .form-group .radio {
      margin-top: 8px;
    }
  .checkbox_item input,
  .radio_item input,
    /* Fix stock OC */
    .form-group .checkbox input,
    .form-group .radio input {
      display: none;
  }
  .checkbox_item label,
  .radio_item label,
    /* Fix stock OC */
    .form-group .checkbox > label > label,
    .form-group .radio > label > label {
      border-radius: 4px;
      border: 2px solid var(--border-color);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      position: absolute;
      left: 0;
      top: 0;
      transition: box-shadow .5s, border .5s;
  }
  .checkbox_item label:before,
  .radio_item label:before,
    /* Fix stock OC */
    .form-group .checkbox > label > label:before,
    .form-group .radio > label > label:before {
      position: absolute;
      content: '';
      webkit-mask: url(../icons/check.svg) no-repeat center;
      mask: url(../icons/check.svg) no-repeat center;
      background-color: #fff;
      -webkit-mask-size: 14px;
      mask-size: 14px;
      width: 24px;
      height: 24px;
      opacity: 0;
      transition: opacity .5s;
  }
  .checkbox_item input:checked + label,
  .radio_item input:checked + label,
    /* Fix stock OC */
    .form-group .checkbox > label > input:checked + label,
    .form-group .radio > label > input:checked + label {
      border: 2px solid var(--main-color);
  }
  .checkbox_item input:checked + label:before,
  .radio_item input:checked + label:before,
    /* Fix stock OC */
    .form-group .checkbox > label > input:checked + label:before,
    .form-group .radio > label > input:checked + label:before {
      opacity: 1;
      background-color: var(--main-color);
  }
  .checkbox_item p,
  .radio_item p,
  .checkbox_item p *,
  .radio_item p *,
    /* Fix stock OC */
    .form-group .checkbox p,
    .form-group .checkbox p *,
    .form-group .radio p,
    .form-group .radio p * {
    color: var(--font-color);
    font-size: 13.6px;
    line-height: 1.3;
    font-weight: 400;
  }
  .checkbox_item.small_text p,
  .radio_item.small_text p,
  .checkbox_item.small_text p *,
  .radio_item.small_text p *,
  .form-group .checkbox.small_text p,
  .form-group .checkbox.small_text p *,
  .form-group .radio.small_text p,
  .form-group .radio.small_text p * {
    font-size: 11.6px;
  }
  .checkbox_item a,
  .checkbox_item a > *,
  .radio_item a,
  .radio_item a > *,
  .form-group .checkbox a,
  .form-group .checkbox a > *,
  .form-group .radio a,
  .form-group .radio a > * {
    text-transform: lowercase;
    text-decoration: underline;
    color: var(--main-color);
  }
  .checkbox p a,
  .radio_item p a {
    text-decoration: underline;
  }
    /* Fix stock OC */
    .bootstrap-datetimepicker-widget {
      display: none;
    }
    .bootstrap-datetimepicker-widget.picker-open {
      display: initial;
    }
    .form-group .date,
    .form-group .time,
    .form-group .datetime {
      display: flex;
      align-items: center;
    }
    .form-group .date .button,
    .form-group .time .button,
    .form-group .datetime .button {
      padding: 0px;
      width: 40px;
      margin-left: 8px;
    }
    .datepicker,
    .timepicker {
        background: #e9e9e9;
        padding: 10px;
        border-radius: 5px;
    }
    .datepicker tbody td {
        padding: 3px 6px;
        text-align: center;
        border-radius: 3px;
    }
    .datepicker tbody td:nth-child(odd) {
        background: #f9f9f9;
    }
    .datepicker tbody td span {
        padding: 3px 6px;
        text-align: center;
        border-radius: 3px;
    }
    .datepicker tbody td span:nth-child(even) {
        background: #e9e9e9;
    }
    .datepicker tbody td span.active {
        background: var(--main_color);
        color: #fff;
    }
    .datepicker tbody td.old {
        pointer-events: none;
        opacity: .3;
    }
    .timepicker tbody td {
        padding: 3px 6px;
        text-align: center;
        border-radius: 3px;
    }
    .timepicker tbody td:nth-child(odd) {
        background: #f9f9f9;
    }
    .timepicker .btn {
        background: #f9f9f9;
        padding: 0px;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        justify-content: center;
        align-items: center;
    }
    .timepicker .btn:before {
        position: relative;
        content: '';
        -webkit-mask: url(../image/icons/arrow.svg) no-repeat center;
        mask: url(../image/icons/arrow.svg) no-repeat center;
        background-color: #000;
        -webkit-mask-size: 14px;
        mask-size: 14px;
        height: 14px;
        width: 14px;
    }
    .timepicker .btn[data-action="incrementHours"]:before,
    .timepicker .btn[data-action="incrementMinutes"]:before {
        transform: rotate(180deg);
    }
    li.picker-switch {
        display: none;
    }
  .buttons_row {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 8px;
    width: fit-content;
  }
  .buttons_center {
    margin-left: auto;
    margin-right: auto;
  }
  .button_hide {
    display: none;
  }
  .button {
    background: var(--main-color);
    border: 2px solid var(--main-color);
    color: #fff;
    height: 40px;
    padding: 0px 16px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 400;
    position: relative;
  }
  .button_2 {
    background: var(--main-color-2);
    border-color: var(--main-color-2);
  }
  .button:hover {
    background: var(--main-color-2);
    border-color: var(--main-color-2);
    cursor: pointer;
  }
  .button_2:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    cursor: pointer;
  }
  label.button:hover,
  button.button:hover {
    cursor: pointer;
  }
  .button_solid {
    background: transparent;
    color: var(--main-color);
  }
  .button_solid:hover {
    background: transparent;
    border-color: var(--main-color-2);
    color: var(--main-color-2);
  }
  .button_solid .icon:before {
    background-color: var(--main-color);
  }
  .button_solid:hover .icon:before,
  .button_solid:hover .icon.icon_solid:before {
    background-color: var(--main-color-2);
  }
    /*** button other color ***/
    .button_grey {
      background: #666;
      border-color: #666;
    }
    .button_grey.button_solid {
      background: transparent;
      color: #666;
      border-color: var(--border-color);
    }
    .button_grey.button_solid .icon:before {
      background-color: #666;
    }
    .button_grey.button_solid:hover {
      color: var(--main-color-2);
      border-color: var(--main-color-2);
    }
    .button_grey.button_solid:hover .icon:before {
      background-color: var(--main-color-2);
    }
  .animate_button {
    overflow: hidden;
    border: none;
  }
  .animate_button:after {
    animation: animateCartButton 1.5s 1s infinite linear;
    content: '';
    position: absolute;
    top: calc(50% - 37px);
    left: calc(50% - 37px);
    background: rgba(255, 255, 255, .4);
    border-radius: 100px;
    opacity: 0;
    width: 74px;
    height: 74px;
  }
  @keyframes animateCartButton {
    0% {transform:scale(.2);opacity:0}
    33% {transform:scale(1);opacity:1}
    100% {transform:scale(3);opacity:0}
  }
  @media (max-width: 1024px) {
    .button:hover {
      background: initial;
      border-color: initial;
    }
    .form_template .form_columns_2 {
      grid-template-columns: 1fr;
    }
    .alert_list {
      max-width: calc(100% - 16px);
    }
    .alert_with_button p {
      margin-right: 10px;
      line-height: 1.3;
      text-align: left;
      font-size: 11.4px;
    }
  }

  .icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .icon:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
  }
  /*** Fix for Opencart ***/
  .icon_app {
    background-color: var(--inverse-color);
  }
  .icon_app:before {
    display: none;
  }
  /*** Fix icon for button with 40 height ***/
    .button .icon {
      width: 22px;
      min-width: 22px;
      height: 22px;
    }
    .button .icon:before,
    .button .icon.icon_solid:before {
      -webkit-mask-size: 22px;
      mask-size: 22px;
      width: 22px;
      height: 22px;
    }
  .icon_left {
    margin-right: 8px;
  }
  .icon_right {
    margin-left: 8px;
  }
  .icon_minus:before {
    -webkit-mask: url(../icons/minus.svg) no-repeat center;
    mask: url(../icons/minus.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_plus:before {
    -webkit-mask: url(../icons/plus.svg) no-repeat center;
    mask: url(../icons/plus.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_push:before {
    -webkit-mask: url(../icons/alert.svg) no-repeat center;
    mask: url(../icons/alert.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_account:before {
    -webkit-mask: url(../icons/account.svg) no-repeat center;
    mask: url(../icons/account.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_wishlist:before {
    -webkit-mask: url(../icons/wishlist.svg) no-repeat center;
    mask: url(../icons/wishlist.svg) no-repeat center;
    background-color: var(--main-color);
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_continue:before {
    -webkit-mask: url(../icons/continue.svg) no-repeat center;
    mask: url(../icons/continue.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
    transform: rotate(0deg);
  }
  .icon_continue.icon_continue_rotate:before {
    transform: rotate(180deg);
  }
  .icon_compare:before {
    -webkit-mask: url(../icons/compare.svg) no-repeat center;
    mask: url(../icons/compare.svg) no-repeat center;
    background-color: var(--main-color);
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_cart_plus:before {
    -webkit-mask: url(../icons/cart_plus.svg) no-repeat center;
    mask: url(../icons/cart_plus.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_cart:before {
    -webkit-mask: url(../icons/cart.svg) no-repeat center;
    mask: url(../icons/cart.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_cart.icon_solid:before {
    -webkit-mask: url(../icons/cart_solid.svg) no-repeat center;
    mask: url(../icons/cart_solid.svg) no-repeat center;
    background-color: var(--main-color);
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_empty:before {
    -webkit-mask: url(../icons/empty.svg) no-repeat center;
    mask: url(../icons/empty.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_comment:before {
    -webkit-mask: url(../icons/comment.svg) no-repeat center;
    mask: url(../icons/comment.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_product:before {
    -webkit-mask: url(../icons/product.svg) no-repeat center;
    mask: url(../icons/product.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_description:before {
    -webkit-mask: url(../icons/description.svg) no-repeat center;
    mask: url(../icons/description.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_related:before {
    -webkit-mask: url(../icons/related.svg) no-repeat center;
    mask: url(../icons/related.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_ask:before {
    -webkit-mask: url(../icons/ask.svg) no-repeat center;
    mask: url(../icons/ask.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_attribute:before {
    -webkit-mask: url(../icons/attribute.svg) no-repeat center;
    mask: url(../icons/attribute.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_read:before {
    -webkit-mask: url(../icons/read.svg) no-repeat center;
    mask: url(../icons/read.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_view:before {
    -webkit-mask: url(../icons/eye.svg) no-repeat center;
    mask: url(../icons/eye.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_send:before {
    -webkit-mask: url(../icons/send.svg) no-repeat center;
    mask: url(../icons/send.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_coupon:before {
    -webkit-mask: url(../icons/coupon.svg) no-repeat center;
    mask: url(../icons/coupon.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_voucher:before {
    -webkit-mask: url(../icons/voucher.svg) no-repeat center;
    mask: url(../icons/voucher.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_search:before {
    -webkit-mask: url(../icons/search.svg) no-repeat center;
    mask: url(../icons/search.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_phone:before {
    -webkit-mask: url(../icons/phone.svg) no-repeat center;
    mask: url(../icons/phone.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_email:before {
    -webkit-mask: url(../icons/email.svg) no-repeat center;
    mask: url(../icons/email.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_menu_button:before {
    -webkit-mask: url(../icons/menu_button.svg) no-repeat center;
    mask: url(../icons/menu_button.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_address:before {
    -webkit-mask: url(../icons/address.svg) no-repeat center;
    mask: url(../icons/address.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_time:before {
    -webkit-mask: url(../icons/time.svg) no-repeat center;
    mask: url(../icons/time.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_date:before {
    -webkit-mask: url(../icons/date.svg) no-repeat center;
    mask: url(../icons/date.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_write:before {
    -webkit-mask: url(../icons/write.svg) no-repeat center;
    mask: url(../icons/write.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_message:before {
    -webkit-mask: url(../icons/message.svg) no-repeat center;
    mask: url(../icons/message.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_star:before {
    -webkit-mask: url(../icons/star.svg) no-repeat center;
    mask: url(../icons/star.svg) no-repeat center;
    background-color: #ccc;
    -webkit-mask-size: 12px;
    mask-size: 12px;
    width: 12px;
    height: 12px;
  }
  .icon_star.icon_solid:before {
    -webkit-mask: url(../icons/star_solid.svg) no-repeat center;
    mask: url(../icons/star_solid.svg) no-repeat center;
    background-color: #ccc;
    -webkit-mask-size: 12px;
    mask-size: 12px;
  }
    /*** Fix size icon for rating ***/
    .icon_star {
      width: 12px;
      min-width: 12px;
      height: 12px;
    }
  .icon_category:before {
    -webkit-mask: url(../icons/category.svg) no-repeat center;
    mask: url(../icons/category.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_link:before {
    -webkit-mask: url(../icons/link.svg) no-repeat center;
    mask: url(../icons/link.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_info:before {
    -webkit-mask: url(../icons/info.svg) no-repeat center;
    mask: url(../icons/info.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_copy:before {
    -webkit-mask: url(../icons/copy.svg) no-repeat center;
    mask: url(../icons/copy.svg) no-repeat center;
    background-color: #666;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_social:before {
    -webkit-mask: url(../icons/social.svg) no-repeat center;
    mask: url(../icons/social.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_payment:before {
    -webkit-mask: url(../icons/payment.svg) no-repeat center;
    mask: url(../icons/payment.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_shipping:before {
    -webkit-mask: url(../icons/shipping.svg) no-repeat center;
    mask: url(../icons/shipping.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_return:before {
    -webkit-mask: url(../icons/return.svg) no-repeat center;
    mask: url(../icons/return.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_viber {
    background: rgb(89,62,188);
    background: linear-gradient(180deg, rgba(89,62,188,1) 0%, rgba(72,51,152,1) 100%);
  }
  .icon_viber:before {
    -webkit-mask: url(../icons/viber.svg) no-repeat center;
    mask: url(../icons/viber.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_viber.icon_solid:before {
    -webkit-mask: url(../icons/viber_solid.svg) no-repeat center;
    mask: url(../icons/viber_solid.svg) no-repeat center;
    background-color: rgb(89,62,188);
  }
  .icon_telegram {
    background: rgb(42,171,238);
    background: linear-gradient(180deg, rgba(42,171,238,1) 0%, rgba(34,158,217,1) 100%);
  }
  .icon_telegram:before {
    -webkit-mask: url(../icons/telegram.svg) no-repeat center;
    mask: url(../icons/telegram.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_telegram.icon_solid:before {
    -webkit-mask: url(../icons/telegram_solid.svg) no-repeat center;
    mask: url(../icons/telegram_solid.svg) no-repeat center;
    background-color: rgb(42,171,238);
  }
  .icon_whatsapp {
    background: rgb(37,211,102);
    background: linear-gradient(180deg, rgba(37,211,102,1) 0%, rgba(43,183,65,1) 100%);
  }
  .icon_whatsapp:before {
    -webkit-mask: url(../icons/whatsapp.svg) no-repeat center;
    mask: url(../icons/whatsapp.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_whatsapp.icon_solid:before {
    background-color: rgb(37,211,102);
  }
  .icon_messenger {
    background: rgb(0,178,255);
    background: linear-gradient(180deg, rgba(0,178,255,1) 0%, rgba(0,106,255,1) 100%);
  }
  .icon_messenger:before {
    -webkit-mask: url(../icons/messenger.svg) no-repeat center;
    mask: url(../icons/messenger.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_messenger.icon_solid:before {
    background-color: rgb(0,178,255);
  }
  .icon_youtube {
    background: #FF0000;
  }
  .icon_youtube:before {
    -webkit-mask: url(../icons/youtube.svg) no-repeat center;
    mask: url(../icons/youtube.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_youtube.icon_solid:before {
    -webkit-mask: url(../icons/youtube_solid.svg) no-repeat center;
    mask: url(../icons/youtube_solid.svg) no-repeat center;
    background-color: #FF0000;
  }
  .icon_x {
    background: #eee;
  }
  .icon_x:before {
    -webkit-mask: url(../icons/x.svg) no-repeat center;
    mask: url(../icons/x.svg) no-repeat center;
    background-color: var(--inverse-color);
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_x.icon_solid:before {
    -webkit-mask: url(../icons/x_solid.svg) no-repeat center;
    mask: url(../icons/x_solid.svg) no-repeat center;
    background-color: var(--inverse-color);
  }
  .icon_instagram {
    background: rgb(64,93,230);
    background: linear-gradient(208deg, rgba(64,93,230,1) 0%, rgba(91,81,216,1) 26%, rgba(131,58,180,1) 52%, rgba(193,53,132,1) 76%, rgba(255,220,128,1) 100%);
  }
  .icon_instagram:before {
    -webkit-mask: url(../icons/instagram.svg) no-repeat center;
    mask: url(../icons/instagram.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_instagram.icon_solid:before {
    -webkit-mask: url(../icons/instagram_solid.svg) no-repeat center;
    mask: url(../icons/instagram_solid.svg) no-repeat center;
    background-color: rgba(193,53,132,1);
  }
  .icon_facebook {
    background: #2050b3;
  }
  .icon_facebook:before {
    -webkit-mask: url(../icons/facebook.svg) no-repeat center;
    mask: url(../icons/facebook.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_facebook.icon_solid:before {
    -webkit-mask: url(../icons/facebook_solid.svg) no-repeat center;
    mask: url(../icons/facebook_solid.svg) no-repeat center;
    background-color: #2050b3 ;
  }
  .icon_tiktok {
    background: #000;
  }
  .icon_tiktok:before {
    -webkit-mask: url(../icons/tiktok.svg) no-repeat center;
    mask: url(../icons/tiktok.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_tiktok.icon_solid:before {
    -webkit-mask: url(../icons/tiktok_solid.svg) no-repeat center;
    mask: url(../icons/tiktok_solid.svg) no-repeat center;
    background-color: var(--inverse-color);
  }
  .icon_pinterest {
    background: #E60023;
  }
  .icon_pinterest:before {
    -webkit-mask: url(../icons/pinterest.svg) no-repeat center;
    mask: url(../icons/pinterest.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_pinterest.icon_solid:before {
    -webkit-mask: url(../icons/pinterest_solid.svg) no-repeat center;
    mask: url(../icons/pinterest_solid.svg) no-repeat center;
    background-color: #E60023 ;
  }
  .icon_solid {
    background: transparent;
  }
  .icon_orders:before {
    -webkit-mask: url(../icons/orders.svg) no-repeat center;
    mask: url(../icons/orders.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_download:before {
    -webkit-mask: url(../icons/download.svg) no-repeat center;
    mask: url(../icons/download.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_exit:before {
    -webkit-mask: url(../icons/exit.svg) no-repeat center;
    mask: url(../icons/exit.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_delete:before {
    -webkit-mask: url(../icons/delete.svg) no-repeat center;
    mask: url(../icons/delete.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_setting:before {
    -webkit-mask: url(../icons/setting.svg) no-repeat center;
    mask: url(../icons/setting.svg) no-repeat center;
    background-color: #676767;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_language:before {
    -webkit-mask: url(../icons/language.svg) no-repeat center;
    mask: url(../icons/language.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_ua {
    border-radius: 100%;
    overflow: hidden;
  }
  .icon_ua:before {
    background-color: initial;
    background: transparent url(../icons/ua.svg) no-repeat center;
    background-size: cover;
  }
  .icon_currency:before {
    -webkit-mask: url(../icons/currency.svg) no-repeat center;
    mask: url(../icons/currency.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_design:before {
    -webkit-mask: url(../icons/design.svg) no-repeat center;
    mask: url(../icons/design.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_close:before {
    -webkit-mask: url(../icons/close.svg) no-repeat center;
    mask: url(../icons/close.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_day:before {
    -webkit-mask: url(../icons/day.svg) no-repeat center;
    mask: url(../icons/day.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_night:before {
    -webkit-mask: url(../icons/night.svg) no-repeat center;
    mask: url(../icons/night.svg) no-repeat center;
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
  }
  .icon_custom:before {
    display: none;
  }

/*** Modals && Dropdowns ***/
  .overlay,
  .loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-background);
    z-index: 10;
/*    backdrop-filter: blur(1px);*/
    align-items: center;
    justify-content: center;
  }
  .loading {
    z-index: 11;
  }
  .loading:before {
    position: absolute;
    content: '';
    width: 116px;
    height: 116px;
    -webkit-mask: url(../icons/loading.svg) no-repeat center;
    mask: url(../icons/loading.svg) no-repeat center;
    background-color: var(--main-color-2);
    -webkit-mask-size: 116px;
    mask-size: 116px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .modal {
    position: fixed;
    z-index: 10;
    background: var(--modal-background-color);
    width: 340px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 44px);
  }
  .modal_center {
    width: 900px;
    border-radius: 16px;
  }
    /*** Fix for modal auth ***/
    .modal_auth {
      width: 600px;
    }
  .modal_left {
    left: 0;
    height: 100%;
    max-height: 100%;
  }
  .modal_left.active {
    left: 0;
  }
  .modal_right {
    right: 0;
    height: 100%;
    max-height: 100%;
  }
  .modal_right.active {
    right: 0;
  }
  .modal_link:hover {
    cursor: pointer;
  }
  .modal_title {
    padding-right: 46px;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 16px;
    padding-top: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    min-height: 30px;
  }
  .modal_content {
    height: 100%;
    overflow-y: auto;
  }
    /*** Fix for modal form ***/
    .modal_content .form_template {
      height: 100%;
    }
  .modal_buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    padding-top: 24px;
    margin-top: auto;
  }
  .modal_buttons_row {
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }
  .modal_close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .modal_close:before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-mask: url(../icons/close.svg) no-repeat center;
    mask: url(../icons/close.svg) no-repeat center;
    background-color: var(--inverse-color);
    -webkit-mask-size: 30px;
    mask-size: 30px;
    width: 30px;
    height: 30px;
  }
  .modal_close:hover {
    cursor: pointer;
  }
  .modal_close:hover:before {
    background: var(--main-color-2);
  }
  .modal_back {
    background: var(--border-color);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 13.4px;
  }
  .modal_back.active {
    display: flex;
  }
  .modal_back .icon:before {
    background-color: var(--font-color);
  }
  .modal_widget {
    z-index: 10;
    position: fixed;
  }
  .modal_widget.modal_widget_top,
  .modal_widget.modal_widget_bottom {
    width: 100%;
  }
  .modal_widget.modal_widget_top {
    top: 0;
  }
  .modal_widget.modal_widget_bottom {
    bottom: 0;
  }
  .modal_widget.modal_widget_left {
    left: 110px;
  }
  .modal_widget.modal_widget_right {
    right: 110px;
  }
  .modal_widget .progress_bar {
    margin-top: 0px;
    height: 5px;
    position: absolute;
    bottom: 0;
  }
  .modal_widget_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    position: relative;
    border-radius: 7px;
    background: var(--top-background-color);
  }
  .modal_widget_inner .button .icon:before {
    background-color: #fff;
  }
  .modal_widget_inner .description {
    max-width: 700px;
    margin-right: 14px;
  }
  .modal_widget_inner .description * {
    font-size: 13px !important;
    margin-bottom: 0px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
  }
  .modal_widget_inner p {
    font-size: 13.6px;
    font-weight: 500;
    white-space: pre-wrap;
  }
  .modal_widget_inner a {
    text-decoration: underline;
  }
  .modal_widget_inner ul button {
    font-size: 13.6px;
    min-width: 150px;
    height: 44px;
    text-align: center;
    border-width: 2px;
    font-weight: 600;
    justify-content: center;
  }
  .modal_widget_inner ul {
    margin: 0px 16px;
  }
  .modal_widget_inner > .modal_widget_caption button {
    height: 44px;
  }
  .modal_widget_inner .icon:before {
    background-color: var(--main-color);
  }
  .modal_widget_caption {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .modal_widget_close {
    background: var(--top-background-color);
    position: absolute;
    right: -20px;
    top: -20px;
    border-radius: 100%;
  }
  .modal_widget_close .icon {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
    border-radius: 7px;
  }
  .modal_widget_close .icon:before {
    background-color: var(--font-color);
    width: 34px;
    height: 34px;
    -webkit-mask-size: 34px;
    mask-size: 34px;
  }
  .modal_widget_close:hover .icon {
    opacity: 1;
    cursor: pointer;
  }
  .dropdown_overlay {
    position: relative;
  }
  .dropdown_overlay .dropdown_link {
    display: flex;
    align-items: center;
  }
  .dropdown_overlay .dropdown {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0%) scale(0);
    transition: transform 0.3s ease-in-out;
    background: var(--top-background-color);
    z-index: 9;
  }
  .dropdown_overlay .dropdown.active {
    transform: translate(-50%, 0%) scale(1.0);
  }
    /*** Fix widget language ***/
    .widget_language {
      bottom: 24px;
    }
    /*** Fix widget cookies ***/
    .widget_cookies .progress_bar {
      position: relative;
    }
    .widget_cookies .modal_widget_caption {
      margin-bottom: 0px;
    }
    .widget_cookies .modal_widget_close {
      right: 24px;
      top: initial;
    }
    /*** Fix for top ***/
    #top .dropdown_overlay .dropdown {
      margin-top: 0px;
      transition: transform 0.3s ease-in-out, margin-top 0.4s ease-in-out;
      box-shadow: 0px 0px 15px var(--box-shadow);
      min-width: 200px;
      z-index: 10;
    }
    #top .dropdown_overlay .dropdown.active {
      margin-top: 16px;
    }
  @media (max-width: 1024px) {
    #top .dropdown_overlay .dropdown {
      top: 42px;
      left: 12px;
      transform: translate(0, 0) scale(0);
      margin-top: 0px;
      width: calc(100% - 24px);
      position: fixed;
    }
    #top .dropdown_overlay .dropdown.active {
      transform: translate(0, 0) scale(1.0);
    }
    /*** Fix widget cookies ***/
    .widget_cookies .modal_widget_inner .description {
      margin-right: 0px;
      margin-bottom: 14px;
    }
    .widget_cookies .modal_widget_caption {
      margin-bottom: 0px;
      flex-direction: column;
    }
    .modal_widget_inner {
      padding: 24px 10px;
    }
    .modal_buttons {
      grid-template-columns: 1fr;
      grid-gap: 8px;
    }
    .modal_widget_close {
      right: -14px;
      top: -14px;
    }
    .modal_widget,
    .modal_center {
      width: calc(100% - 24px);
    }
    .modal_widget.modal_widget_left {
      left: 12px;
    }
    .modal_widget.modal_widget_right {
      right: 12px;
    }
  }

/*** Description ***/
  .description_block {
    padding: 16px;
    border-radius: 7px;
    background: var(--top-background-color);
  }
  .description > ul,
  .description > ol {
    margin-top: 10px;
  }
  .description > * {
    margin-bottom: 10px;
  }
  .description b {
    font-weight: 700;
  }
  .description u {
    text-decoration: underline;
  }
  .description blockquote {
    /* padding: 5px 15px; */
    /* margin-top: 5px; */
    /* margin-bottom: 5px; */
    /* width: fit-content; */
    color: var(--main-color);
    font-weight: 500;
  }
  .description a {
    color: var(--main-color);
  }
  .description ol {
    padding: 16px;
    width: fit-content;
    position: relative;
  }
  .description ol:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.1;
  }
  .description ul li,
  .description ol li {
    position: relative;
    padding-left: 24px;
    text-decoration: none;

  }
  .description ul li a,
  .description ol li a {
    text-decoration: none;
  }
  .description ul li:before,
  .description ol li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    -webkit-mask: url(../icons/arrow.svg) no-repeat center;
    mask: url(../icons/arrow.svg) no-repeat center;
    background-color: var(--main-color);
    -webkit-mask-size: 16px;
    mask-size: 16px;
    height: 16px;
    width: 16px;
    content: '';
    transform: rotate(-90deg);
  }

/*** All ***/
  .contacts_item_address,
  .contacts_item_address p,
  .contacts_item_time,
  .contacts_item_time p,
  .contacts_item_email a {
    color: var(--font-color);
    font-size: 13.6px;
  }
  .contacts_item_email a {
    text-decoration: underline;
  }
  .contacts_item_phones ul li {
    line-height: 1.8;
  }
  .contacts_item_phones ul li a {
    font-weight: 400;
    font-size: 14.4px;
    color: var(--font-color);
    text-decoration: underline;
  }
  .contacts_item_messengers ul {
    display: flex;
    flex-wrap: wrap;
  }
  .contacts_item_messengers ul li {
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .contacts_item_messengers ul li a {
    border-radius: 100%;
    overflow: hidden;
    width: 30px;
    height: 30px;
    display: flex;
  }
  .contacts_item ul li.contacts_item_custom_link a .icon span {
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
  }
  .contacts_item ul li.contacts_item_custom_link a .icon:hover span {
    background-color: var(--main-color) !important;
  }
  .contacts_item_messengers ul li:last-child {
    margin-right: 0px;
  }
  .contacts_item_messengers ul .icon {
    width: 30px;
    height: 30px;
  }
  .contacts_item_messengers ul .icon:before {
    -webkit-mask-size: 18px;
    mask-size: 18px;
    width: 18px;
    height: 18px;
  }
  .contacts_item_messengers ul li.contacts_item_custom_link .icon_custom {
    background: var(--border-color);
  }
  .contacts_item_socials_links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  .contacts_item_socials_links ul li a {
    display: flex;
    align-items: center;
  }
  .contacts_item_socials_links ul li a p {
    color: var(--font-color);
    font-size: 12.4px;
    font-weight: 400;
  }
  .contacts_item_socials_links ul .icon {
    width: 22px;
    height: 22px;
  }
  .contacts_item_socials_links ul .icon:before {
    -webkit-mask-size: 22px;
    mask-size: 22px;
    width: 22px;
    height: 22px;
  }
  .contacts_item_link_to_contact_page {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    padding: 7px 16px;
    border-radius: 7px;
    color: var(--font-color);
    font-weight: 500;
    width: 100%;
    font-size: 12.6px;
    transition: background .3s ease-in-out;
  }
  .contacts_item_link_to_contact_page:hover {
    background: #e9e9e9;
  }

/*** Stock statuses ***/
  .stock_status {
    font-size: 12.4px;
    font-weight: 500;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    border-radius: 7px;
    height: inherit;
    line-height: 1;
  }
  .stock_status .icon {
    margin-right: 6px;
  }
  .stock_status.stock_in {
    color: #1d9922;
    border-color: #1d9922;
  }
  .stock_status.stock_in .icon:before {
    background-color: #1d9922;
  }
  .stock_status.stock_out {
    color: #f44336;
    border-color: #f44336;
  }
  .stock_status.stock_out .icon:before {
    background-color: #f44336;
  }

/*** Animation ***/
  @keyframes animatedCircle {
      0% {transform: translate(-50%, -50%) scale(0);opacity: 1}
      50% {opacity: .5}
      100% {transform: translate(-50%, -50%) scale(1);opacity: 0}
  }
  .animated_circle {
    animation: animatedCircle 2s infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--main-color);
    opacity: 0;
  }
  @keyframes animatedOpacity {
      0% {transform: scale(1);opacity: 1;}
      50% {transform: scale(0.75);opacity: 0.75;}
      100% {transform: scale(1);opacity: 1;}
  }
  .animated_opacity:before {
    animation: animatedOpacity 3s infinite;
    opacity: 1;
  }

/*** Other ***/
  .more_block {
    position: relative;
    max-height: 340px;
    overflow-y: hidden;
  }
  .more_block.active {
    padding-bottom: 16px;
    max-height: initial;
  }
    /*** Fix for block desc ***/
    .home_text.more_block.active {
      padding-bottom: 14px;
    }
    .category_description.more_block.active {
      padding-bottom: 6px;
    }
  .more_wrap {
    display: none;
    padding-bottom: 18px;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to top, var(--border-color), transparent);
  }
  .more_wrap.active {
    display: flex;
  }
  .more_wrap .button {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 10px var(--box-shadow);
  }
  .more_wrap .button .arrow {
    width: 24px;
    height: 24px;
  }
  .more_wrap .button .arrow:before {
    background-color: #fff;
    -webkit-mask-size: 24px;
    mask-size: 24px;
    width: 24px;
    height: 24px;
  }
  .more_block.active .more_wrap {
    display: none;
  }
  .arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
  }
  .arrow:hover {
    cursor: pointer;
  }
  .arrow_left {
    margin-right: 4px;
  }
  .arrow_right {
    margin-left: 4px;
  }
  .arrow:before {
    position: absolute;
    content: '';
    -webkit-mask: url(../icons/arrow.svg) no-repeat center;
    mask: url(../icons/arrow.svg) no-repeat center;
    background-color: var(--inverse-color);
    -webkit-mask-size: 14px;
    mask-size: 14px;
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease-in-out;
  }
  .arrow_icon_top {
    transform: rotate(180deg);
  }
  .arrow_icon_bottom {
    transform: rotate(0deg);
  }
  .arrow_icon_left {
    transform: rotate(90deg);
  }
  .arrow_icon_right {
    transform: rotate(-90deg);
  }
  .scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .scroll::-webkit-scrollbar-track {
    background: var(--background-color);
  }
  .scroll::-webkit-scrollbar-thumb {
    background: var(--box-shadow);
  }
  .scroll::-webkit-scrollbar-thumb:hover {
    background: #888;
  }
  fieldset {
    padding: 0px;
    border: none;
    background: transparent;
  }
  .tab_count {
    position: relative;
    margin-left: 4px;
    color: var(--font-color);
    background: var(--border-color);
    width: 13.6px;
    border-radius: 4px;
    height: 13.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.6px;
    font-weight: 600;
  }
  .disable {
    pointer-events: none;
    opacity: .25;
  }
    /*** Fix for product ***/
    .product_section_title .tab_count {
      display: none;
    }
  .rating {
    display: flex;
    align-items: center;
  }
  .rating_count {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 4px;
    width: fit-content;
  }
  .rating p {
    margin-left: 8px;
    display: flex;
    align-items: center;
    font-size: 12.4px;
    color: #888;
    font-weight: 400;
    line-height: 1;
    margin-left: 10px;
  }
  .rating .icon_comment {
    width: 12px;
    min-width: 12px;
    height: 12px;
    margin-right: 4px;
  }
  .rating .icon_comment:before {
    width: 12px;
    height: 12px;
    -webkit-mask-size: 14px;
    mask-size: 14px;
    background: #ccc;
  }
  .rating button {
    background: transparent;
    border: none;
    font-size: 12.4px;
    font-weight: 400;
    margin-left: auto;
    display: flex;
    color: var(--font-color);
    align-items: center;
  }
  .rating button .icon {
    width: 14px;
    min-width: 14px;
    height: 14px;
  }
  .rating button .icon:before {
    background-color: #666;
    -webkit-mask-size: 14px;
    mask-size: 14px;
    height: 14px;
    width: 14px;
  }
  .rating button:hover {
    cursor: pointer;
    color: var(--main-color);
  }
  .rating button:hover .icon:before {
    background-color: var(--main-color);
  }
  .rating_add {
    text-align: center;
    background: var(--background-color);
    padding: 12px 16px;
    border-radius: 7px;
  }
  .rating_add > label {
    font-size: 12.6px;
    font-weight: 500;
  }
  .rating_add .rating_count {
    margin-left: auto;
  }
  .rating_add .icon {
    height: 24px;
    width: 24px;
  }
  .rating_add .icon:before {
    -webkit-mask-size: 24px;
    mask-size: 24px;
    height: 24px;
    width: 24px;
    background-color: #efb300;
  }
  .rating_add .icon:hover {
    cursor: pointer;
  }
  @media (max-width: 1024px) {
    .rating_add > label {
      text-align: left;
      font-size: 10.6px;
      line-height: 1.3;
    }
  }
  .attributes {
    width: 100%;
  }
  .attribute_title {
    font-size: 13.6px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 4px;
    display: flex;
  }
  .attributes thead:first-child .attribute_title {
    margin-top: 0px;
  }
  .attributes .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
  }
  .attributes .item:last-child {
    margin-block: 0px;
  }
  .attributes .item .attribute_name,
  .attributes .item .attribute_text {
    height: fit-content;
    position: relative;
    width: 50%;
    display: flex;
  }
  .attributes .item .attribute_name:before,
  .attributes .item .attribute_text:before {
    border-bottom: 1px dotted var(--border-color);
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
  }
  .attributes .item .attribute_text {
    font-weight: 400;
    justify-content: flex-end;
  }
  .attributes .item .attribute_wrap {
    font-size: 12.6px;
    line-height: 1.2;
    position: relative;
    background: var(--top-background-color);
    color: var(--inverse-color);
  }
  .attributes .item .attribute_name .attribute_wrap {
    padding-right: 6px;
  }
  .attributes .item .attribute_text .attribute_wrap {
    font-weight: 400;
    padding-left: 6px;
    text-align: right;
  }
  .swiper_arrows {
    position: relative;
  }
  .swiper_arrow {
    position: absolute;
    width: 56px;
    height: 56px;
    z-index: 8;
    bottom: 0;
  }
  .swiper_arrow_left {
    right: 80px;
  }
  .swiper_arrow_right {
    right: 16px;
  }
  .swiper_arrow_wrap {
    width: 38px;
    height: 38px;
    background: var(--background-color);
    border-radius: 16px;
    position: absolute;
    overflow: hidden;
    opacity: .35;
    transition: opacity 0.3s ease-in-out;
  }
  .swiper_arrow_wrap:hover {
    opacity: 1;
  }
  .swiper_arrow_wrap:before {
    -webkit-mask-size: 38px;
    mask-size: 38px;
    width: 38px;
    height: 38px;
  }
  .swiper_arrows_right {
    margin-left: auto;
    display: flex;
    grid-gap: 8px;
  }
  .swiper_arrows_right .swiper_arrow_wrap {
    width: 18px;
    height: 18px;
    position: relative;
  }
  .swiper_arrows_right .swiper_arrow_wrap:before {
    -webkit-mask-size: 28px;
    mask-size: 28px;
    width: 18px;
    height: 18px;
  }
  .image_lazy {
    display: flex;
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: .6s shine linear infinite;
  }
  @keyframes shine {
    to {
      background-position-x: -200%;
    }
  }
  .thumb_full .image_lazy {
    justify-content: center;
    background: transparent;
  }
  .button_buy_1_click {
    white-space: nowrap;
  }
  .button_buy_1_click p {
    font-size: 12.4px;
    font-weight: 400;
    color: #666;
    margin-right: 16px;
  }
  .button_buy_1_click form.form_template {
    display: grid;
    grid-template-columns: 1fr 150px;
    grid-gap: 0px;
    width: 100%;
  }
  .button_buy_1_click form.form_template input {
    border-radius: 7px 0px 0px 7px;
    border-right: none;
    font-size: 12.6px;
  }
  .button_buy_1_click form.form_template .button {
    border-radius: 0px 7px 7px 0px;
    font-size: 12.4px;
    font-weight: 500;
  }
  .button_buy_1_click form.form_template .button .icon:before {
    background-color: var(--main-color);
  }
  .quantity_wrap {
    display: flex;
    align-items: center;
  }
  .quantity_wrap * {
    height: 36px;
  }
  .quantity_wrap span {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    overflow: hidden;
    color: var(--font-color);
    background: var(--background-color);
  }
  .quantity_wrap input {
    background: transparent;
    border: none;
    width: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    overflow: hidden;
    background: var(--background-color);
    color: var(--font-color);
    -moz-appearance: textfield;
  }
  .quantity_wrap input::-webkit-outer-spin-button,
  .quantity_wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  .quantity_wrap button {
    background: var(--background-color);
    color: var(--font-color);
    border: 2px solid var(--background-color);
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease-in-out;
  }
  .quantity_wrap button:hover {
    cursor: pointer;
    background: transparent;
  }
  .quantity_wrap button:before {
    position: absolute;
    content: '';
    width: 36px;
    height: 36px;
  }
  .quantity_wrap button.minus {
    border-radius: 10px 0px 0px 10px;
  }
  .quantity_wrap button.minus:before {
    -webkit-mask: url(../icons/minus.svg) no-repeat center;
    mask: url(../icons/minus.svg) no-repeat center;
    background-color: #555;
    -webkit-mask-size: 12px;
    mask-size: 12px;
  }
  .quantity_wrap button.plus {
    border-radius: 0px 10px 10px 0px;
  }
  .quantity_wrap button.plus:before {
    -webkit-mask: url(../icons/plus.svg) no-repeat center;
    mask: url(../icons/plus.svg) no-repeat center;
    background-color: #555;
    -webkit-mask-size: 12px;
    mask-size: 12px;
  }
  @media (max-width: 1024px) {
    .product_list_bottom .price {
      flex-direction: column;
    }
    .product_list_dropdown {
      display: none;
    }
    .quantity_wrap input,
    .product_list_bottom .button_cart {
      width: 40px;
    }
    .quantity_wrap button {
      width: 30px;
    }
  }
  @media (max-width: 340px) {
    .quantity_wrap input,
    .product_list_bottom .button_cart {
      width: 34px;
    }
    .quantity_wrap button {
      width: 26px;
    }
  }
  .empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
  .empty_background {
    padding: 16px;
    border-radius: 7px;
    background: var(--top-background-color);
  }
  .empty p {
    font-size: 14.4px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
  }
  .empty .icon_empty {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .empty .icon_empty:before {
    -webkit-mask-size: 64px;
    mask-size: 64px;
    background-color: var(--main-color);
    width: 64px;
    height: 64px;
  }
  .progress_bar {
    margin-top: 8px;
    width: 100%;
    height: 8px;
    border-radius: 100px;
    position: relative;
    background: var(--top-background-color);
  }
  .progress_bar span {
    display: flex;
    height: 100%;
    border-radius: 100px;
    background: transparent;
    position: absolute;
    left: 0;
  }
  .progress_bar .progress {
    background-color: var(--main-color);
  }
  .progress_bar .progress.active {
    -webkit-animation: progressBar 3s ease-in-out;
    -webkit-animation-fill-mode:both; 
    -moz-animation: progressBar 3s ease-in-out;
    -moz-animation-fill-mode:both; 
  }
  @-webkit-keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
  }
  @-moz-keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
  }
  .home_text {
    margin-top: 42px;
    padding: 24px;
    background: var(--border-color);
    border-radius: 7px;
  }
  


/*** Modules ***/

  /*** Categories wall (slider) ***/
  .module .categories_items {
    position: relative;
    overflow: hidden;
  }
  .module .categories_items .item {
    background: var(--modal-background-color);
    padding: 16px;
    border-radius: 7px;
    position: relative;
  }
  .module .categories_items .item .image {
    min-width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
  }
  .module .categories_items .item .image a {
    display: flex;
  }
  .module .categories_items .item .caption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 16px;
    height: 36px;
    overflow: hidden;
  }
  .module .categories_items .item .caption > a {
    font-weight: 500;
    font-size: 13.4px;
    line-height: 1.3;
    display: flex;
    color: var(--font-color);
    max-height: 34px;
    overflow: hidden;
    padding-right: 10px;
  }
  .module .categories_items .item .caption > button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
  }
  .module .categories_items .item .caption > button:hover {
    border-color: var(--main-color);
  }
  .module .categories_items > .item .caption > button:hover .arrow:before {
    background-color: var(--main-color);
  }
  .module .categories_items .item .hover {
    transform: scale(0);
    opacity: 0;
    transition: bottom 0.25s ease-in-out, transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 100%;
    background: var(--modal-background-color);
  }
  .module .categories_items .item.active .hover {
    transform: scale(1);
    opacity: 1;
    bottom: 0;
  }
  .module .categories_items .item .hover > ul {
    padding: 24px 16px;
    gap: 6px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
  }
  .module .categories_items .item .hover > ul li a {
    font-size: 12.6px;
    color: var(--font-color);
    text-decoration: underline;
    display: flex;
    font-weight: 400;
  }
  .module .categories_items .item .hover > ul li.item_more a {
    font-weight: 700;
    text-decoration: none;
    align-items: center;
  }
  @media (max-width: 1024px) {
    .module .categories_items .item {
      width: 200px;
      padding: 16px 10px;
    }
    .module .categories_items .item .image {
      min-width: 124px;
    }
  }

  /*** For sidebar ***/
  .aside_item {
    margin-bottom: 24px;
  }
  .aside_item:last-child {
    margin-bottom: 0px;
  }
  .aside_item_title {
    margin-bottom: 14px;
  }
  .aside_item_title,
  .aside_item_title h3 {
    font-size: 15.6px;
    font-weight: 400;
  }
  .aside_item_content {
    background: var(--top-background-color);
    padding: 8px 16px;
    border-radius: 7px;
  }

    /*** Categories wall (list) ***/
    .aside_item .categories_items_list {
      display: flex;
      flex-direction: column;
      grid-gap: 8px;
    }
    .aside_item .categories_items_list > .item {
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 8px;
    }
    .aside_item .categories_items_list > .item:last-child {
      border-bottom: none;
      padding-bottom: 0px;
    }
    .aside_item .categories_items_list .item a {
      font-size: 13.4px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .aside_item .categories_items_list .item ul {
      padding: 8px;
      background: var(--background-color);
      border-radius: 7px;
      margin-top: 8px;
    }
    .aside_item .categories_items_list .item ul li a {
      font-size: 12.6px;
      font-weight: 400;
    }

  /*** Fast Order ***/
  .fastorder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  .fastorder_left {
    border-right: 1px solid var(--border-color);
    padding-right: 16px;
    display: flex;
    flex-direction: column;
  }
  .fastorder_left .thumb {
    background: #fff;
    padding: 8px;
    display: flex;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 14px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .fastorder_left p {
    font-size: 13.6px;
    font-weight: 400;
    display: flex;
    line-height: 1.15;
    max-height: 60px;
    overflow: hidden;
    text-align: center;
    justify-content: center;
  }
  .fastorder_left .price {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fastorder_left .price .price_stock {
    font-size: 15.4px;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
  }
  .fastorder_left .price .price_special {
    color: var(--main-color-2);
  }
  .fastorder_left .price .price_old {
    display: flex;
    align-items: center;
  }
  .fastorder_left .price .price_old span {
    border: 1px solid var(--main-color-2);
    color: var(--main-color-2);
    display: inline-flex;
    padding: 6px;
    border-radius: 7px;
    margin-right: 8px;
    font-weight: 600;
    font-size: 11.4px;
    line-height: 1;
  }
  .fastorder_left .price .price_old p {
    font-size: 11.4px;
    text-decoration: line-through;
    color: #666;
    font-weight: 400;
  }
  @media (max-width: 1024px) {
    .fastorder {
      grid-template-columns: 1fr;
    }
    .fastorder_left {
      padding: 0px;
      margin-bottom: 14px;
      grid-template-columns: 80px 1fr;
    }
    .fastorder_left p {
      font-size: 13.6px;
    }
  }

  /*** Alert Stock ***/
  .alertstock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  .alertstock_left {
    border-right: 1px solid var(--border-color);
    padding-right: 16px;
    display: flex;
    flex-direction: column;
  }
  .alertstock_left .thumb {
    background: #fff;
    padding: 8px;
    display: flex;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 14px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .alertstock_left p {
    font-size: 13.6px;
    font-weight: 400;
    display: flex;
    line-height: 1.15;
    max-height: 60px;
    overflow: hidden;
    justify-content: center;
  }
  @media (max-width: 1024px) {
    .alertstock {
      grid-template-columns: 1fr;
    }
    .alertstock_left {
      padding: 0px;
      margin-bottom: 14px;
      grid-template-columns: 80px 1fr;
    }
    .alertstock_left p {
      font-size: 13.6px;
    }
  }

  /*** Cheaper ***/
  .cheaper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  .cheaper_left {
    border-right: 1px solid var(--border-color);
    padding-right: 16px;
    display: flex;
    flex-direction: column;
  }
  .cheaper_left_header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    padding: 0px 24px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
  }
  .cheaper_left_header .thumb {
    background: #fff;
    padding: 8px;
    display: flex;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid var(--border-color);
  }
  .cheaper_left_header p {
    font-size: 13.6px;
    font-weight: 400;
    display: flex;
    line-height: 1.15;
    max-height: 60px;
    overflow: hidden;
  }
  .cheaper_left_header .price {
    display: flex;
    flex-direction: column;
  }
  .cheaper_left_header .price .price_stock {
    font-size: 15.4px;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
  }
  .cheaper_left_header .price .price_special {
    color: var(--main-color-2);
  }
  .cheaper_left_header .price .price_old {
    display: flex;
    align-items: center;
  }
  .cheaper_left_header .price .price_old span {
    border: 1px solid var(--main-color-2);
    color: var(--main-color-2);
    display: inline-flex;
    padding: 6px;
    border-radius: 7px;
    margin-right: 8px;
    font-weight: 600;
    font-size: 11.4px;
    line-height: 1;
  }
  .cheaper_left_header .price .price_old p {
    font-size: 11.4px;
    text-decoration: line-through;
    color: #666;
    font-weight: 400;
  }
  .cheaper_left_bottom {
    margin-top: auto;
    padding: 16px;
    text-align: center;
    background: var(--background-color);
  }
  .cheaper_left_bottom p {
    font-size: 14.4px;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .cheaper_left_bottom span {
    color: #666;
    font-size: 12.4px;
    line-height: 1.3;
    display: flex;
  }
  @media (max-width: 1024px) {
    .cheaper {
      grid-template-columns: 1fr;
    }
    .cheaper_left_header {
      padding: 0px;
      margin-bottom: 14px;
      grid-template-columns: 80px 1fr;
    }
    .cheaper_left_bottom p {
      font-size: 13.6px;
    }
    .cheaper_left_bottom span {
      font-size: 11.6px;
    }
  }

/** Widgets **/

.widget_position_bottom.widget_up,
.widget_position_bottom.widget_callback_link {
  bottom: 30px;
}

  /** ScrollTop **/
  .widget_up {
    opacity: 0;
    transform: scale(0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 108px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 100%;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, border 0.3s ease-in-out;
    background: var(--background-color);
    z-index: 2;
  }
  .widget_up.active {
    transform: scale(1);
    opacity: 1;
  }
  .widget_up:hover {
    cursor: pointer;
    border-color: var(--main-color);
  }
  .widget_up .arrow,
  .widget_up .arrow:before {
    width: 20px;
    height: 20px;
  }
  .widget_up .arrow:before {
    -webkit-mask-size: 20px;
    mask-size: 20px;
    background-color: var(--main-color);
  }
  .widget_up.modal_widget_left {
    left: 38px;
  }
  .widget_up.modal_widget_right {
    right: 38px;
  }
  @media (max-width: 1024px) {
    .widget_up {
      bottom: 96px;
    }
    .widget_up.modal_widget_right {
      right: 24px;
    }
  }

  /** Callback **/
  .widget_callback_link .animated_circle {
    width: 78px;
    height: 78px;
    border-radius: 100%;
  }
  .widget_callback_link {
    position: fixed;
    z-index: 3;
    bottom: 30px;
    display: none;
  }
  .widget_callback_link.modal_widget_left {
    left: 30px;
  }
  .widget_callback_link.modal_widget_right {
    right: 30px;
  }
  .widget_callback_link_inner {
    border-radius: 100%;
    position: relative;
    z-index: 1;
    bottom: initial;
    background: var(--main-color);
    width: 58px;
    height: 58px;
    transition: background .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .widget_callback_link:hover .animated_circle,
  .widget_callback_link:hover .widget_callback_link_inner {
    background: var(--main-color-2);
  }
  .widget_callback_link .icon,
  .widget_callback_link .icon:before {
    width: 34px;
    height: 34px;
  }
  .widget_callback_link .icon:before {
    -webkit-mask-size: 34px;
    mask-size: 34px;
  }
  .widget_callback {
    bottom: 60px;
    border-radius: 7px;
    overflow: hidden;
    background: var(--modal-background-color);
  }
  .widget_callback_inner {
    max-height: 500px;
    overflow: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
  @media (max-width: 1024px) {
    .widget_callback_link {
      bottom: 16px;
    }
    .widget_callback_link.modal_widget_right {
      right: 16px;
    }
  }

  /** Cookies **/
  .widget_cookies {
    box-shadow: 0px 0px 10px var(--box-shadow);
  }

@media (max-width: 1024px) {
  /** Mobile **/
  .mobile_link {
    display: flex;
  }
  .mobile_link .menu_icon .dot:nth-of-type(1) {
    border-color: var(--main-color-2);
  }
  .mobile_link .menu_icon .dot {
    border-color: var(--inverse-color);
  }
  .modal_mobile {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0px;
    padding: 0px;
    background: var(--background-color);
  }
  .modal_mobile .modal_close {
    width: 24px;
    height: 24px;
    top: 12px;
    right: 10px;
  }
  .modal_mobile .modal_close:before {
    -webkit-mask-size: 24px;
    mask-size: 24px;
    width: 24px;
    height: 24px;
  }
  .modal_mobile .dropdown_top_setting {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .modal_mobile .modal_title {
    background: var(--top-background-color);
    padding: 0px 10px;
    align-items: center;
    margin-bottom: 0px;
    min-height: 50px;
    font-size: 14.4px;
    font-weight: 400;
    box-shadow: 0px 0px 10px var(--box-shadow);
  }
  .modal_mobile .menu_icon .dot:nth-of-type(1),
  .modal_mobile .menu_link:hover .menu_icon .dot:nth-of-type(4),
  .modal_mobile .menu_link.active .menu_icon .dot:nth-of-type(4) {
    border-color: var(--font-color);
  }
  .modal_mobile .menu_icon .dot {
    border-color: var(--main-color-2);
  }
  .modal_mobile .modal_title.active {
    padding-left: 54px;
  }
  .modal_mobile .modal_content {
    padding: 16px 10px;
    background: var(--top-background-color);
  }
  .modal_mobile_close {
    position: absolute;
    right: 10px;
  }
  .modal_mobile .top_links {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: initial;
    grid-gap: 10px;
    margin-top: 10px;
  }
  .modal_mobile .dropdown_overlay {
    position: initial;
  }
  .modal_mobile .modal_mobile_menu > li,
  .modal_mobile .top_links > li {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
  }
  .modal_mobile .top_links > li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
  }
  .modal_mobile .dropdown_overlay .dropdown_link .dropdown {
    transition: initial;
  }
  .modal_mobile .dropdown_overlay .dropdown {
    padding: 16px 10px;
    height: calc(100% - 50px);
    transition: height 0.25s ease-in-out;
    margin-bottom: 64px;
    position: fixed
  }
  .modal_mobile .dropdown_overlay .dropdown.active {
    width: 100%;
    height: calc(100% - 144px);
    top: 82px;
    left: 0;
    transform: initial;
  }
  .modal_mobile .dropdown_overlay .dropdown_link .dropdown > li {
    padding-left: 10px;
  }
  .modal_mobile .modal_mobile_menu .dropdown_overlay .dropdown_link,
  .modal_mobile .top_links > li a {
    color: var(--font-color);
    font-size: 13.4px;
    font-weight: 400;
    padding-left: 0px;
    padding-right: 0px;
  }
  .modal_mobile .modal_mobile_menu > .dropdown_overlay {
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px solid var(--main-color);
  }
  .modal_mobile .modal_mobile_menu > .dropdown_overlay > .dropdown_link {
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
  }
  .modal_mobile .dropdown_overlay .dropdown_link .dropdown > li > a {
    background: transparent;
    padding: 8px 0px;
  }
  .modal_mobile .dropdown_overlay .dropdown_link .arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
  }
  .modal_mobile .dropdown_overlay .dropdown_link .arrow:before {
    -webkit-mask-size: 20px;
    mask-size: 20px;
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
  }
  .modal_mobile .modal_mobile_footer {
    position: absolute;
    left: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    border-top: 1px solid var(--border-color);
    align-items: center;
  }
  .modal_mobile .modal_mobile_footer .dropdown_overlay .dropdown_link {
    font-size: 11.6px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    padding: 16px 10px;
  }
  .modal_mobile .modal_mobile_footer .dropdown_overlay .dropdown_link .icon {
    width: 20px;
    height: 20px;
  }
  .modal_mobile .modal_mobile_footer .dropdown_overlay .dropdown_link .icon:before {
    width: 20px;
    height: 20px;
    -webkit-mask-size: 20px;
    mask-size: 20px;
    background-color: var(--inverse-color);
  }
  .modal_mobile .modal_mobile_footer .dropdown_overlay:nth-of-type(1) .dropdown_link,
  .modal_mobile .modal_mobile_footer .dropdown_overlay:nth-of-type(2) .dropdown_link {
    border-right: 1px solid var(--border-color);
  }
  .modal_mobile .modal_mobile_footer .dropdown_overlay:nth-of-type(1) .dropdown_link .icon:before,
  .modal_mobile .modal_mobile_footer .dropdown_overlay:nth-of-type(2) .dropdown_link .icon:before {
    background-color: var(--font-color);
  }
    /* Fix menu main links for mobile */
    .modal_mobile #menu {
      display: grid;
      grid-gap: 10px;
      max-height: 100%;
      background: transparent;
    }
    .modal_mobile #menu .item a {
      border-bottom: 1px solid var(--border-color);
      padding: 0px;
      padding-bottom: 10px;
      min-height: initial;
      color: var(--font-color);
      font-size: 13.4px;
      font-weight: 400;
    }
    .modal_mobile #menu .item a .arrow {
      width: 16px;
      height: 16px;
    }
    .modal_mobile #menu .item a .arrow:before {
      -webkit-mask-size: 20px;
      mask-size: 20px;
      width: 16px;
      height: 16px;
    }
  }

/*** Blog ***/

  /*** Blog category & latest ***/
    .articles {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 8px;
      margin-bottom: 24px;
    }
    .articles .item {
      background-color: var(--top-background-color);
      position: relative;
      display: flex;
      flex-direction: column;
      border-radius: 7px;
      padding: 16px;
    }
    .articles .item .image,
    .articles .item .image img {
      display: flex;
    } 
    .articles .item .image a {
      display: flex;
      justify-content: center;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
    }
    .articles .item .article_list_middle {
      padding-top: 12px;
    }
    .articles .item .article_list_middle .name {
      height: 36px;
      overflow: hidden;
    }
    .articles .item .article_list_middle .name a {
      color: var(--font-color);
      line-height: 1.2;
      font-size: 14.2px;
      display: inline-flex;
      font-weight: 500;
    }
    .articles .item .article_list_middle .description {
      font-size: 12.8px;
      line-height: 1.3;
      height: 32px;
      overflow: hidden;
      color: #666;
      margin-top: 6px;
    }
    .articles .item .article_list_middle .rating {
      margin-top: 8px;
    }
    .articles .item .article_list_bottom {
      padding-top: 16px;
    }
    .article_list_bottom .informations {
      display: flex;
      align-items: center;
      justify-content: space-between;
      grid-gap: 8px;
    }
    .article_list_bottom .informations > div {
      display: flex;
      align-items: center;
      font-weight: 400;
      font-size: 12.8px;
      color: #888;
      line-height: 1;
    }
    .article_list_bottom .informations .icon {
      width: 12px;
      min-width: 12px;
      height: 12px;
      margin-right: 4px;
    }
    .article_list_bottom .informations .icon:before {
      width: 12px;
      height: 12px;
      -webkit-mask-size: 14px;
      mask-size: 14px;
      background-color: #ccc;
    }
    .articles .item .article_list_bottom .button_article:before {
      position: absolute;
      content: '';
      background-color: var(--main-color);
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      opacity: 0.05;
      transition: background 0.3s ease-in-out;
    }
    .articles .item .article_list_bottom .button_article {
      width: 56px;
      height: 36px;
      padding: 0px;
      border: none;
      position: relative;
      overflow: hidden;
      margin-left: auto;
    }
    .articles .item .article_list_bottom .button_article:hover:before {
      background-color: var(--main-color-2);
    }
    /*** Fix for module ***/
    .module .articles {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    @media (max-width: 1024px) {
      .articles {
        grid-template-columns: 1fr;
      }
      /*** Fix for module ***/
      .module .articles {
        grid-template-columns: 1fr 1fr;
      }
    }

  /*** Blog artcle ***/
    .article_header {
      display: flex;
      align-items: center;
      grid-gap: 8px;
      margin-bottom: 24px;
    }
    .article_header .article_informations {
      margin-left: auto;
    }
    .article_middle {
      margin-bottom: 8px;
      background: var(--top-background-color);
      padding: 16px;
    }
    .article_middle .image {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }