::selection {
    background-color: #333;
    color: #fff
}

body {
    font-family: 'Montserrat', 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.333;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px
}

html.sidebar-is-open {
    overflow: hidden
}

.height-auto {
    height: auto
}

#spotlight {
    background-color: rgba(97, 93, 93, 0.5) !important;
}


@media (min-width:1200px) {
    body {
        font-size: 18px;
        padding-top: 154px
    }

    .container-xl {
        max-width: calc(1448px + var(--bs-gutter-x))
    }
}

.header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 995;
    transition: top .3s
}

/* 
.header_top {
    border-bottom: 1px solid #E8D9D9;
    padding: 10px 0
}

.header_top a {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #FF5252
}

.header_lang a {
    font-weight: 500;
    font-size: 18px;
    color: #9B9B9B
}

.header_lang a:first-child {
    margin-right: 30px
}

.header_lang a.active {
    color: #000
} */

.header_middle {
    padding: 8px 0;
}

.header_logo img {
    width: auto;
    max-height: 64px;
}

.header-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    border: 1px solid #333;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
}

.header-ico::after {
    content: "";
    width: 50%;
    height: 50%;
    background-color: #fff;
}

.header-ico--search::after {
    -webkit-mask: url(../img/ui/search.svg) center center /contain no-repeat;
    mask: url(../img/ui/search.svg) center center /contain no-repeat
}

.header-ico--fav::after {
    -webkit-mask: url(../img/ui/heart.svg) center center /contain no-repeat;
    mask: url(../img/ui/heart.svg) center center /contain no-repeat
}

.header-ico--cart::after {
    -webkit-mask: url(../img/ui/cart.svg) center center /contain no-repeat;
    mask: url(../img/ui/cart.svg) center center /contain no-repeat
}

.header-ico--user::after {
    -webkit-mask: url(../img/ui/user.svg) center center /contain no-repeat;
    mask: url(../img/ui/user.svg) center center /contain no-repeat
}

.header-ico--back::after {
    -webkit-mask: url(../img/ui/chevron-left-svgrepo-com.svg?v=1.1) center center /contain no-repeat;
    mask: url(../img/ui/chevron-left-svgrepo-com.svg?v=1.1) center center /contain no-repeat;
}

.header-ico--close::after {
    -webkit-mask: url(../img/ui/close_svgrepo.com.svg) center center /contain no-repeat;
    mask: url(../img/ui/close_svgrepo.com.svg) center center /contain no-repeat
}

.header-ico--menu::after {
    -webkit-mask: url(../img/ui/menu_svgrepo.com.svg) center center /contain no-repeat;
    mask: url(../img/ui/menu_svgrepo.com.svg) center center /contain no-repeat;
}

.header-search_dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding-top: 24px;
    padding-bottom: 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-filter: drop-shadow(0 4px 4px rgba(186, 186, 186, 0.25));
    filter: drop-shadow(0 4px 4px rgba(186, 186, 186, 0.25));
}

.header-search .header-ico--search.active+.header-search_dropdown {
    transform: translateY(0)
}

.header-search_form {
    background-color: #F7F7F8;
    border-radius: 10px;
    overflow: hidden;
}

.header-search_input {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #333;
    width: 100%;
    height: 48px;
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 10px 0 0 10px;
    padding: 0 16px
}

.header-search_input::placeholder {
    color: #666;
}

.header-search_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 124px;
    background-color: #333;
    border: 1px solid #333;
    outline: 0;
    border-radius: 10px;
    transition: background-color .3s
}

.header-search_submit::after {
    content: "";
    width: 50%;
    height: 50%;
    background-color: #fff;
    -webkit-mask: url(../img/ui/search.svg) center center /contain no-repeat;
    mask: url(../img/ui/search.svg) center center /contain no-repeat;
    transition: background-color .3s
}

.header-ico--close,
.header-nav .header-ico--back {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 14px;
    right: 14px
}

.header-nav .header-ico--back,
.header-nav .header-ico--close {
    width: 38px;
    height: 38px;
    position: static;
}

.header-ico--close::after,
.header-nav .header-ico--back::after {
    width: 80%;
    height: 80%;
    background-color: #000;
}

.header-search_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    display: block;
    margin-bottom: 16px;
}

.header-search_autocomplete {
    display: none;
    width: 100%;
    max-height: 50vh;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    overflow-y: auto
}

.header-search .header-ico--search.active+.header-search_dropdown .header-search_autocomplete {
    display: block;
}

.header-search_autocomplete .product-item_img,
.header-search_autocomplete .product-item_title,
.header-search_autocomplete .product-item_price {
    margin-bottom: 8px;
}

.header-search_autocomplete .product-item_img {
    height: 168px;
}

.header-search_autocomplete .product-item_price {
    font-size: 18px;
}

.header-search_autocomplete .product-item_title,
.header-search_autocomplete .btn-cart {
    font-size: 14px;
}

.header-search_autocomplete .btn-cart {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-actions {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.header-actions_item {
    position: relative;
    margin-left: 16px;
}

.header-actions_item.btn-inline {
    text-decoration: none;
}

.header-actions_counter {
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 14px;
    min-width: 14px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 0 2px;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none
}

.header-nav,
.mobmenu_dropdown {
    display: flex;
    flex-direction: column;
    width: 500px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1005;
    -webkit-filter: drop-shadow(0 4px 4px rgba(186, 186, 186, 0.25));
    filter: drop-shadow(0 4px 4px rgba(186, 186, 186, 0.25));
    overflow: hidden;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform .3s ease-in-out;
}

.mobmenu_dropdown {
    transform: translateX(100%);
    overflow-x: hidden;
    overflow-y: auto;
}

.header-nav {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.header-nav_header {
    background-color: #fff;
}

.header-nav.submenu-open {
    overflow: hidden;
}

.header-nav.active,
.mobmenu_title.active~.mobmenu_dropdown {
    visibility: visible;
    transform: translateX(0);
}

.header-nav_list {
    flex: 1 0 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.header-nav_list li:first-child:not(.mobmenu_item) {
    border-bottom: 1px solid #eee;
}

.mobmenu_item {
    margin-bottom: 16px;
}

.mobmenu_title,
.mobmenu_item a {
    font-size: 18px;
    font-weight: 400;
}

.mobmenu_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobmenu_title::after {
    content: "";
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    background: url('../img/ui/plus.svg') center center /contain no-repeat;
    margin-left: 8px;
}

.mobmenu_dropdown {
    padding: 16px;
}

.mobmenu_dropdown-header {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    padding-bottom: 8px;
    margin-bottom: 24px;
    position: sticky;
    top: 0;
}

.mobmenu_dropdown-header button {
    flex: 0 0 auto;
}

.mobmenu_dropdown-item:not(:last-child) {
    margin-bottom: 16px;
}

/* 
.header-nav_item {
    padding-bottom: 24px;
    margin-left: 24px
}

.header-nav_item:first-child {
    margin-left: 0
}

.header-nav_item>a {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.333;
    display: inline-block;
    position: relative
}

.header-nav_item>a:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #009C84;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: width .3s
}

.header-nav_item:hover>a:after,
.header-nav_item>a.active:after {
    width: 100%
}
.header-nav_dropdown {
    display: none;
    width: 100%;
    min-height: 216px;
    max-height: 576px;
    background-color: #fff;
    list-style-type: none;
    padding: 28px;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.102);
    overflow-y: auto;
}
.header-nav_item:hover .header-nav_dropdown {
    display: block;
}

.header-nav_dropdown-item {
    padding: 0 0 8px;
    position: relative
}

.header-nav_dropdown-title,
.header-nav_dropdown-item a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.333;
    color: #212121;
    margin-bottom: 16px;
    transition: color .3s
}

.header-nav_dropdown-title {
    padding-left: 24px;
    margin-bottom: 0;
}

.header-nav_dropdown-item a.active,
.header-nav_dropdown-item a:hover {
    color: #009C84
}

.header-nav_dropdown-title {
    display: inline-block;
    position: relative;
    cursor: pointer
}

.header-nav_dropdown-title::before,
.header-nav_dropdown-title::after {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #212121;
    position: absolute;
    top: 12px;
    left: 0
}

.header-nav_dropdown-title::after {
    transform: rotate(-90deg)
}

.header-nav_dropdown-title.active::after {
    transform: rotate(0)
}

.header-nav_dropdown-submenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    padding-left: 24px;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
}

.header-nav_dropdown-title.active+.header-nav_dropdown-submenu {
    max-height: 600px;
    padding-top: 16px;
} */

.fullscreen-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(97, 93, 93, 0.502);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000
}

.header-sidebar,
.mobmenu {
    display: flex;
    flex-direction: column;
    width: 700px;
    max-width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(0.19, 1, 0.22, 1)
}

.mobmenu {
    display: none;
    right: auto;
    left: 0;
    z-index: 1005;
    transform: translateX(-100%)
}

.header-sidebar.active,
.mobmenu.active {
    z-index: 1005;
    transform: translateX(0)
}

.header-sidebar_top {
    border-bottom: 1px solid #CACACA;
    padding: 8px
}

.header-sidebar_top .header-ico--close {
    position: static;
    width: 32px;
    height: 32px;
    background-size: contain
}

.header-sidebar_tabs {
    display: flex;
    justify-content: space-around;
    overflow-x: auto;
    padding: 20px 0
}

.header-sidebar_tabs a {
    font-weight: 500;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    padding: 0 2px 14px;
    margin: 0 14px;
    position: relative
}

.header-sidebar_tabs a.active {
    font-size: 18px;
}

.header-sidebar_tabs a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: width .3s
}

.header-sidebar_tabs a.active::after,
.header-sidebar_tabs a:hover::after {
    width: 85px
}

.header-sidebar_tab-content {
    display: none;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    overflow-y: auto
}

.header-sidebar_tab-content.active {
    display: flex;
    flex-direction: column
}

.header-sidebar_title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    color: #333;
    text-align: center;
    margin: 0
}

.header-sidebar_desc {
    line-height: 1.2;
    font-weight: 500;
    color: #666;
    text-align: center;
    margin: 0 0 20px
}

.header-sidebar_form {
    max-width: 472px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    margin: 0 auto 12px
}

.header-sidebar_tab-footer {
    display: block;
    background-color: #eee;
    padding: 24px 0
}

.header-sidebar_tab-footer::before {
    left: calc(var(--bs-gutter-x) * -0.5)
}

.header-sidebar_tab-footer::after {
    right: calc(var(--bs-gutter-x) * -0.5)
}

.header-sidebar_tab-footer .btn {
    max-width: 472px;
    margin: 0 auto
}

.header-sidebar_cart-list {
    overflow-y: auto
}

.header-sidebar_cart {
    display: flex;
    flex-direction: column;
    padding: 0 18px 30px
}

.header-sidebar_cart-item {
    display: flex;
    border-bottom: 1px solid #D7CFCF;
    padding: 0 30px 14px 0;
    margin-bottom: 14px;
    position: relative
}

.header-sidebar_cart-item .header-ico--close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0
}

.header-sidebar_cart-item-img {
    flex: 0 0 auto;
    width: 130px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    border-radius: 12px
}

.header-sidebar_cart-item-img img {
    max-height: 100%;
}

.header-sidebar_cart-item-info {
    padding-left: 12px;
    padding-right: 8px;
}

.header-sidebar_cart-item-title,
.header-sidebar_cart-item-price {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    display: block;
    max-width: 256px;
    margin-bottom: 16px
}

.header-sidebar_cart-item-price s {
    color: #0000007a;
    display: inline-block;
    margin-right: 8px
}

.header-sidebar_cart-item-price s~* {
    color: #ED4052
}

.header-sidebar_cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

.header-sidebar_cart-total-title,
.header-sidebar_cart-total-price {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2
}

.header-sidebar_cart-total-price {
    font-size: 24px
}

.header-sidebar_cart-item--fav {
    align-items: center;
    padding-right: 0;
    padding-left: 46px
}

.header-sidebar_cart-item--fav .header-ico--close {
    top: calc(50% - 14px);
    right: auto;
    left: 0;
    transform: translateY(-50%)
}

.external-auth {
    padding: 16px 0
}

.external-auth_title {
    font-size: 16px;
    line-height: 1.2;
    color: #7B7777;
    display: flex;
    align-items: center
}

.external-auth_title::before,
.external-auth_title::after {
    content: "";
    flex: 1 0 0;
    height: 1px;
    background-color: #A4A4A4
}

.external-auth_title::before {
    margin-right: 16px
}

.external-auth_title::after {
    margin-left: 16px
}

.external-auth_link {
    width: 48px;
    height: 48px;
    border: 1px solid #B5A6A6;
    border-radius: 50%;
    margin: 0 12px
}

.external-auth_link--google {
    background: url(../img/ui/google_svgrepo.com.svg) center center /24px no-repeat
}

.external-auth_link--fb {
    background: url(../img/ui/facebook-option_svgrepo.com.svg) center center /24px no-repeat
}

@media(max-width:1199.98px) {
    /* .mobmenu {
        display: flex;
        flex-direction: column;
        width: 400px
    }

    .mobmenu_top {
        position: relative
    }

    .mobmenu_top .header-ico--close {
        width: 32px;
        height: 32px;
        background-size: 24px
    }

    .mobmenu_search {
        border-top: 1px solid #0000001a;
        border-bottom: 1px solid #0000001a;
        position: relative
    }

    .mobmenu_search .header-ico--search {
        width: 32px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0
    }

    .header-search_input {
        font-size: 18px;
        text-align: left;
        padding: 16px 36px 16px 16px
    }

    .mobmenu_actions {
        display: flex;
        flex-direction: column
    }

    .mobmenu_actions a {
        border-bottom: 1px solid #0000001a;
        padding: 8px 12px
    }

    .mobmenu_actions .header-ico {
        width: 18px;
        height: 18px;
        background-size: contain
    }

    .mobmenu_content {
        flex: 1 0 0;
        overflow-y: auto
    }

    .mobmenu_list {
        list-style-type: none;
        padding: 0;
        margin: 0
    }

    .mobmenu_item {
        margin-bottom: 16px;
    }

    .mobmenu_item a,
    .mobmenu_title {
        font-weight: 500;
        font-size: 16px;
        line-height: 1.5;
        display: inline-block;
        padding: 8px 4px 8px 0;
        cursor: pointer
    }

    .mobmenu_title {
        display: inline-block;
        padding-left: 24px;
        position: relative
    }

    .mobmenu_title::before,
    .mobmenu_title::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 2px;
        background-color: #212121;
        position: absolute;
        top: calc(50% - 1px);
        left: 0
    }

    .mobmenu_title::after {
        transform: rotate(-90deg)
    }

    .mobmenu_title.active::after {
        transform: rotate(0)
    }

    .mobmenu_dropdown,
    .mobmenu_dropdown-submenu {
        display: none;
        padding-left: 24px
    }

    .mobmenu_dropdown-submenu {
        flex-direction: column;
        align-items: flex-start
    }

    .mobmenu_title.active+.mobmenu_dropdown {
        display: block
    }

    .mobmenu_title.active+.mobmenu_dropdown-submenu {
        display: flex
    }

    .mobmenu_dropdown-submenu a {
        margin-bottom: 8px
    } */
}

@media(max-width: 575.98px) {
    .header-sidebar_cart-item--fav {
        flex-wrap: wrap;
    }

    .header-sidebar_cart-item--fav .header-sidebar_cart-item-img {
        width: 25%;
        height: 90px;
        padding: 4px;
    }

    .header-sidebar_cart-item--fav .header-sidebar_cart-item-info {
        flex: 0 0 auto;
        width: 75%;
    }

    .header-sidebar_cart-item--fav .btn {
        margin-top: 8px;
    }
}

@media(min-width:1200px) {

    .header-search_submit:hover {
        background-color: #fff
    }

    .header-search_submit:hover::after {
        background-color: #333;
    }
}

@media(min-width:1400px) {
    .header-sidebar_tabs {
        padding-bottom: 30px
    }

    .header-sidebar_tabs a {
        margin: 0 28px
    }
}

@media(min-width:1568px) {
    .header_logo img {
        max-height: 122px;
        transition: max-height .3s
    }

    .header.is-scrolled .header_logo img {
        max-height: 64px
    }

    .header_middle {
        padding: 16px 0;
        transition: padding .3s
    }

    .header.is-scrolled .header_middle {
        padding: 8px 0
    }

    .header-ico {
        width: 54px;
        height: 54px;
        transition: opacity .3s
    }

    .header-actions_item {
        margin-left: 30px
    }

    .header-actions_item.btn-inline {
        font-size: 20px;
    }

    .header-search_dropdown {
        padding-top: 42px;
        padding-bottom: 30px;
    }

    .header-search_title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .header-search .header-ico--close,
    .header-nav .header-ico--close,
    .header-nav .header-ico--back {
        width: 42px;
        height: 42px;
        top: 20px;
        right: 20px
    }

    .header-search_input {
        height: 54px;
        padding: 0 24px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    position: relative
}

.form-group_label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px
}

.form-group_label--req::after {
    content: "*";
    color: #DF4033
}

.form-group--checkbox,
.form-group--radio {
    display: inline-flex;
    padding-left: 26px
}

.form-group--checkbox input,
.form-group--radio input {
    position: absolute;
    visibility: hidden
}

.form-group--checkbox,
.form-group_label--checkbox,
.form-group--radio,
.form-group_label--radio {
    margin-bottom: 0
}

.form-group_label--checkbox,
.form-group_label--radio {
    line-height: 1;
    color: #212121;
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.form-group_label--checkbox a:not([class]) {
    text-decoration: underline;
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
}

.form-group_label--checkbox a:not([class]):hover {
    text-decoration: none;
}

.form-group.has-error .form-group_error {
    display: block
}

.form-group_label--policy {
    font-weight: 400;
    font-weight: 14px;
    line-height: 1.2;
    flex-direction: column
}

.form-group_label--policy a {
    text-decoration: underline
}

.form-group_label--policy a:hover {
    text-decoration: none;
}

.form-group.has-error .form-group_label--policy {
    color: #FF5252
}

.form-group_label--checkbox::before,
.form-group_label--radio::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0
}

.form-group_label--checkbox::after,
.form-group_label--radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 2px;
    position: absolute;
    top: 3px;
    left: 3px;
    transform: scale(0)
}

.form-group_label--radio::before,
.form-group_label--radio::after {
    border-radius: 50%
}

.form-group--checkbox input:checked+.form-group_label--checkbox::after,
.form-group--radio input:checked+.form-group_label--radio::after {
    transform: scale(1)
}

.form-group_input,
.form-group_select,
.form-group_textarea {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #696565;
    border: 1px solid #D4CECE;
    border-radius: 12px;
    outline: none;
    padding: 12px 16px
}

.form-group.has-error .form-group_input,
.form-group.has-error .form-group_select,
.form-group.has-error .form-group_textarea {
    border-color: #FF5252
}

.form-group_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/ui/dropdown-arrow_svgrepo.com.svg) center right 4px /24px no-repeat;
    padding-right: 34px
}

.form-group_textarea {
    height: 284px
}

.form-group_error {
    display: none;
    color: #FF5252;
    font-size: 14px;
    line-height: 1.2;
    padding: 4px 0 0 12px
}

.form-group.has-error .form-group_error {
    display: block
}

.form-group_input:focus {
    border-color: #000
}

.form-group_p-show {
    padding-left: 34px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.form-group_p-show::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/ui/see.svg) center center /contain no-repeat;
    position: absolute;
    top: 0;
    left: 0
}

.btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.333;
    color: #fff;
    text-align: center;
    display: inline-block;
    background-color: #313130;
    border: none;
    border-radius: 12px;
    outline: 0;
    padding: 12px 16px;
    transition: background-color .3s
}

.btn:hover {
    background-color: #000
}

.btn--block {
    display: block;
    width: 100%
}

.btn--inverted {
    color: #312D2D;
    background-color: #fff;
    border: 1px solid #BFBFBF;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color .3s
}

.btn--inverted:hover {
    background-color: #BFBFBF
}

.btn-inline {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    text-decoration: underline;
    display: inline-block;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 0
}

.btn-inline:hover {
    text-decoration: none
}

.btn-cart {
    position: relative;
    overflow: hidden
}

.btn-cart_success {
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #313130;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s, opacity .3s
}

.btn-cart.in-cart>* {
    opacity: 0
}

.btn-cart.in-cart .btn-cart_success {
    transform: translateY(0);
    opacity: 1
}

.btn-cart_success::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    -webkit-mask: url(../img/ui/cart.svg) center center /contain no-repeat;
    mask: url(../img/ui/cart.svg) center center /contain no-repeat;
    margin-right: 4px
}

.btn--inverted .btn-cart_success {
    width: 101%;
    height: 101%;
    background-color: #BFBFBF;
}

.btn--inverted .btn-cart_success::before {
    background-color: #312D2D;
}

.btn-fav {
    display: block;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: 1px solid #EDEEF1;
    border-radius: 50%;
    outline: none;
}

.btn-fav::before,
.btn-fav::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/ui/heart.svg) center center /50% no-repeat;
    position: absolute;
    top: 0;
    left: 0
}

.btn-fav::after {
    background: url(../img/ui/heart-filled.svg) center center /50% no-repeat;
    opacity: 0
}

.btn-fav.active::after {
    opacity: 1
}

.btn-remove {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/ui/close_svgrepo.com.svg) center center /contain no-repeat, transparent;
    border: none;
    border-radius: 0;
    outline: none
}

.btn-remove:hover {
    opacity: .7
}

.btn-remove-all {
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #ABABAB;
    padding: 4px 0
}

.btn-remove-all .btn-remove {
    width: 24px;
    height: 24px;
    margin-bottom: -4px;
}

.qty-widget {
    display: flex;
    width: 132px;
    height: 40px;
    border: 1px solid #E3E3E3;
    border-radius: 12px;
    overflow: hidden
}

.qty-widget>* {
    flex: 1 0 0;
    width: 100%
}

.qty-widget button {
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 0;
    position: relative
}

.qty-widget button::before,
.qty-widget button::after {
    content: "";
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #191919;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.qty-widget button:last-child:after {
    transform: translate(-50%, -50%) rotate(90deg)
}

.qty-widget button:active::before,
.qty-widget button:active::after {
    width: 11px
}

.qty-widget input {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #191919;
    text-align: center;
    border: none;
    border-left: 1px solid #E3E3E3;
    border-right: 1px solid #E3E3E3;
    border-radius: 0;
    outline: none;
    padding: 0 2px
}

.carousel-nav {
    display: flex;
    align-items: center;
    padding: 30px 0 8px;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-size: 0;
    width: 46px;
    height: 46px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 4px 0 rgba(200, 200, 200, 0.25);

}

.carousel-nav .swiper-button-prev {
    margin-right: 20px;
}

.carousel-nav .swiper-button-next,
.carousel-nav .swiper-button-prev {
    flex: 0 0 auto;
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-size: 0;
    position: static;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #000;
}

.swiper-button-prev::after {
    -webkit-mask: url(../img/ui/arrow-left.svg) center center /contain no-repeat;
    mask: url(../img/ui/arrow-left.svg) center center /contain no-repeat
}

.swiper-button-next::after {
    -webkit-mask: url(../img/ui/arrow-right.svg) center center /contain no-repeat;
    mask: url(../img/ui/arrow-right.svg) center center /contain no-repeat
}

.swiper-scrollbar {
    --swiper-scrollbar-drag-bg-color: #303130;
    --swiper-scrollbar-bg-color: #E4E4E7;
    --swiper-scrollbar-size: 8px;
}

.carousel-nav .swiper-scrollbar.swiper-scrollbar-horizontal {
    --swiper-scrollbar-sides-offset: 6.9%;
    margin-right: var(--swiper-scrollbar-sides-offset);
    position: static;
}

.swiper-pagination-bullet {
    display: flex;
    flex: 0 0 auto;
    border: 2px solid #fff;
    position: relative
}

.swiper-pagination-bullet::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #303130;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: -2px;
    opacity: 0
}

.swiper-pagination-bullet-active {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.251);
}

.swiper-pagination-bullet-active::after {
    opacity: 1
}

.scrollbar {
    scrollbar-color: #757474 transparent;
    scrollbar-width: thin
}

.scrollbar::-webkit-scrollbar {
    width: 6px
}

.scrollbar::-webkit-scrollbar-track {
    background: transparent
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #757474;
    border-radius: 5px
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #757474
}

.breadcrumbs {
    list-style-type: none;
    display: flex;
    background-color: #F7F7F8;
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    overflow-x: auto
}

.breadcrumbs_item {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #999;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-right: 8px
}

.breadcrumbs_item::after {
    content: "";
    width: 38px;
    height: 1px;
    background-color: #999;
    margin-left: 8px
}

.breadcrumbs_item:last-child {
    color: #000;
    margin-right: 0
}

.breadcrumbs_item:last-child::after {
    display: none
}

@media(min-width:1200px) {

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-button-next::after,
    .swiper-button-prev::after {
        transition: background-color .15s ease-in-out;

    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: #333;
    }

    .swiper-button-next:hover:after,
    .swiper-button-prev:hover::after {
        background-color: #fff;
    }

    .form-group_label--checkbox {
        font-size: 18px
    }

    .form-group_label--policy {
        font-size: 16px
    }

    .swiper-button-next:not(.swiper-button-lock),
    .swiper-button-prev:not(.swiper-button-lock) {
        display: flex
    }

    .breadcrumbs {
        justify-content: center;
        padding-top: 24px;
        padding-bottom: 24px;
        margin: 48px 0;
    }

    .breadcrumbs_item {
        margin-right: 16px
    }

    .breadcrumbs_item::after {
        margin-left: 16px
    }
}

@media(min-width:1400px) {
    .form-group {
        margin-bottom: 24px
    }

    .form-group--checkbox {
        margin-bottom: 0
    }

    .form-group_input,
    .form-group_select,
    .form-group_textarea {
        font-size: 18px;
        padding: 15px 20px
    }

    .form-group_select {
        padding-right: 34px
    }
}

.section {
    margin-bottom: 60px
}

@media(min-width:1200px) {
    .section {
        margin-bottom: 80px
    }
}

.hero-slider_slide {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    position: relative
}

.hero-slider_slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-slider_slide--left {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8
}

.hero-slider_content {
    padding: 12px 24px
}

.hero-slider_subtitle {
    font-weight: 500;
    font-size: 18px;
    color: #283502;
    display: block;
    margin-bottom: 10px
}

.hero-slider_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    display: block;
    margin-bottom: 12px
}

.hero-slider_desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.333;
    color: #7E7E7E;
    display: block;
    margin-bottom: 12px
}

@media(max-width:767.98px) {
    .hero-slider_slide--left {
        width: 100%;
        min-height: 480px;
        background-color: #ffffffbf
    }

    .hero-slider_slide--right {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1
    }

    .hero-slider_desc {
        color: #000
    }
}

@media(min-width:1200px) {
    .hero-slider_content {
        padding-left: 64px;
        padding-right: 64px
    }

    .hero-slider_subtitle {
        font-size: 20px
    }

    .hero-slider_title {
        font-size: 32px
    }

    .hero-slider_desc {
        font-size: 16px
    }

    .hero-slider_slide .btn {
        min-width: 235px
    }
}

@media(min-width:1400px) {
    .hero-slider_content {
        padding-left: 100px;
        padding-right: 100px
    }

    .hero-slider_subtitle {
        font-size: 24px;
        margin-bottom: 20px
    }

    .hero-slider_title {
        font-size: 48px;
        margin-bottom: 24px
    }

    .hero-slider_desc {
        font-size: 18px;
        margin-bottom: 24px
    }
}

.page-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 14px
}

.page-title--centered {
    text-align: center;
    max-width: 815px;
    margin-left: auto;
    margin-right: auto;
}

.page-title--medium {
    font-size: 26px
}

.page-desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    max-width: 1064px;
    margin: 0 auto 18px
}

.page-desc--fw400 {
    font-weight: 400
}

.search-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2
}

.page-text {
    padding-top: 24px
}

.page-text img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 16px;
    margin-bottom: 16px
}

.page-text a {
    text-decoration: underline;
    color: #939393
}

.page-text a:hover {
    color: #333;
    text-decoration: none
}

@media(min-width:1200px) {
    .page-title {
        font-size: 38px
    }

    .page-title--medium {
        font-size: 32px
    }

    .page-desc {
        font-size: 20px;
        margin-bottom: 30px
    }

    .search-title {
        font-size: 20px
    }
}

.cat-preview {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #333;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    background-color: #F7F7F8;
    border-radius: 10px;
    padding: 16px 20px;
    overflow: hidden;
    position: relative;
}

.cat-preview>.col {
    max-width: 236px;
}

.cat-preview .btn-inline {
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
}

.cat-preview .btn-inline::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    transition: width .15s ease-in-out;
}

.cat-preview .btn-inline::after {
    content: "";
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    background: url('/static/projects/mondoluce.ro/assets/img/ui/arrow-right.svg?v=1.0') center center /contain no-repeat;
    margin-left: 8px;
    transform: translateX(0);
    transition: transform .15s ease-in-out;
}

.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 4px 0 rgba(219, 215, 215, 0.25);

}

.product-item_labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 0;
    position: absolute;
    top: 0;
    left: 0;
}

.product-item_label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: #312D2D;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 4px;
}

.product-item_label--new {
    box-shadow: 0 4px 4px 0 rgba(225, 225, 225, 0.25);
}

.product-item_label--promo {
    font-size: 16px;
    font-weight: 700;
    background-color: #ED4052
}

.product-item .btn-fav {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-item_img {
    height: 340px;
    background-color: #F8F8F8;
    padding: 16px 16px 20px;
    margin-bottom: 16px;
}

.product-item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.product-item_title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #262626;
    flex: 1 0 0;
    padding: 0 16px;
    margin-bottom: 6px
}

.product-item_price {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 0 12px;
    margin-bottom: 16px
}

.product-item_price s {
    font-size: 14px;
    color: #8C8C8C;
    margin-right: 8px
}

.product-item_price s+* {
    color: #ED4052
}

.product-item .btn-cart {
    margin: 0 16px 16px;
}

@media(min-width:1200px) {
    .cat-preview {
        font-size: 20px;
    }

    .cat-preview:hover .btn-inline::before {
        width: 100%;
    }

    .cat-preview:hover .btn-inline::after {
        transform: translateX(4px);
    }

    .product-item_title {
        font-size: 18px;
    }

    .product-item_price {
        font-size: 20px
    }

    .product-item_price s {
        font-size: 16px;
    }
}

.carousel-tabs {
    padding-bottom: 16px;
    margin-bottom: 14px;
    overflow-x: auto;
}

.carousel-tabs a {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    color: #939393;
    white-space: nowrap;
    flex: 0 0 auto;
    margin: 0 16px;
}

.carousel-tabs a.active {
    color: #000
}

.carousel-tabs-content_tab {
    display: none
}

.carousel-tabs-content_tab.active {
    display: block
}

@media(min-width:1200px) {
    .carousel-tabs a {
        font-size: 32px;
        margin: 0 25px
    }
}

.article-preview {
    display: flex;
    flex-direction: column;
    max-width: 462px;
    margin: 0 auto
}

.article-preview_img {
    height: 194px;
    border-radius: 10px;
    overflow: hidden;
}

.article-preview_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.article-preview_date,
.article-preview_cat,
.article-preview_title,
.article-preview_descr {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.article-preview_cat {
    color: #555;
}

.article-preview_title {
    font-weight: 600;
    font-size: 18px;
}

@media(min-width:1200px) {

    .article-preview_img {
        height: 388px;
    }

    .article-preview_img img {
        transition: transform 1s ease-in-out;
    }

    .article-preview:hover img {
        transform: scale3d(1.2, 1.2, 1.2)
    }

    .article-preview_title {
        font-size: 20px
    }

    .article-preview_descr {
        font-size: 18px
    }
}

/* 
.inst-section>.row {
    margin-bottom: 30px
}

.inst-section_logo {
    max-width: 72px;
    border-radius: 72px;
    margin-right: 16px
}

.inst-section_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.125
}

.inst-section_subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125
}

.inst-section_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 245px;
    padding: 14px
}

.inst-section_btn::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/ui/instagram-wh.svg) center center /contain no-repeat;
    margin-left: 16px
}

@media(min-width:1200px) {
    .inst-section_logo {
        margin-right: 35px
    }

    .inst-section_title {
        font-size: 26px
    }

    .inst-section_subtitle {
        font-size: 18px
    }
}

.brand-crsl-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 8px;
}

.brand-crsl-logo img {
    height: 90px;
    object-fit: contain
} */

.prod-list-heading {
    align-items: center;
    margin-bottom: 25px
}

.order-prod-select {
    font-size: 16px;
    color: #7E7E7E;
    max-width: 250px;
    border: 1px solid #eee;
    background: url(../img/ui/dropdown-arrow_svgrepo.com.svg) center right 12px /20px no-repeat, #F5F5F5;
    padding-right: 34px
}

.filter-btn {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: url(../img/ui/filter-list-svgrepo-com.svg) center center /28px no-repeat, transparent;
    border: none;
    border-radius: 0;
    outline: none
}

.filter-section {
    margin-bottom: 20px
}

.filter-section_title::marker {
    content: "";
    display: none
}

.filter-section_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #212121;
    padding-right: 24px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.filter-section_title::before,
.filter-section_title::after,
.filter-link_ico::before,
.filter-link_ico::after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #303130;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.filter-section_title::after,
.filter-link_ico::after {
    transform: translateY(-50%) rotate(90deg)
}

.filter-section[open] .filter-section_title::after,
.filter-link_item.active .filter-link_ico::after {
    transform: translateY(-50%) rotate(0)
}

.filter-section_content {
    max-height: 282px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-y: auto
}

.filter-link_item {
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    display: flex;
    align-items: center;
    padding-top: 8px;
    cursor: pointer
}

.filter-link_item a.active,
.filter-link_item a:hover {
    text-decoration: underline;
}

.filter-link_ico {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    position: relative
}

.filter-link_list {
    list-style-type: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 26px;
    margin: 0
}

.filter-link_item.active+.filter-link_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.prod-list {
    --bs-gutter-y: 30px;
    margin-bottom: 40px
}

@media(max-width:991.98px) {
    .filter-sidebar {
        display: flex;
        flex-direction: column;
        width: 360px;
        max-width: 100%;
        height: 100vh;
        background-color: #fff;
        padding: 0 16px 48px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(0.19, 1, 0.22, 1)
    }

    .filter-sidebar.active {
        z-index: 1005;
        transform: translateX(0)
    }

    .filter-sidebar .scrollbar {
        overflow-y: auto
    }

    .filter-sidebar_top {
        font-weight: 500;
        font-size: 20px;
        line-height: 1.2;
        color: #212121;
        border-bottom: 1px solid #0000001a;
        padding: 8px 0;
        margin-bottom: 20px
    }

    .filter-sidebar_top .header-ico--close {
        background-size: contain
    }

    .filter-section {
        padding-right: 8px
    }
}

@media(min-width:992px) {
    .filter-sidebar {
        margin-bottom: 40px
    }
}

@media(min-width:1200px) {
    .prod-list-heading {
        margin-bottom: 50px
    }

    .filter-sidebar {
        margin-bottom: 80px
    }

    .filter-section_title {
        font-size: 20px
    }

    .prod-list {
        --bs-gutter-x: 30px;
        margin-bottom: 80px
    }
}

.product-detail {
    --bs-gutter-y: 30px
}

.product-detail .btn-fav {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 24px;
    right: calc(24px + calc(var(--bs-gutter-x) * 0.5));
    z-index: 5
}

.product-detail .btn-fav::before,
.product-detail .btn-fav::after {
    background-size: 24px
}

.product-preview {
    height: 380px;
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 12px
}

.product-preview_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px
}

.product-preview-thumbs {
    padding: 0
}

.product-preview-thumbs_item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 96px;
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer
}

.product-preview_item img,
.product-preview-thumbs_item img {
    height: 100%;
    object-fit: contain
}

.product-detail_label {
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    display: inline-block;
    background-color: #303130;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 4px 0 #e1e1e140
}

.product-detail_review {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0 0 24px
}

.product-detail_review-item {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase
}

.product-detail_review-item a:hover {
    text-decoration: underline
}

.star-rating {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.star-rating_item {
    width: 20px;
    height: 20px;
    background: url(../img/ui/star.svg) center center /contain no-repeat;
    margin-right: 10px;
    position: relative
}

.star-rating_item:last-child {
    margin-right: 0
}

.star-rating_item::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/ui/star-filled.svg) center center /contain no-repeat, #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.star-rating_item.active::after {
    opacity: 1
}

.prod-avail {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center
}

.prod-avail::before {
    content: "";
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    margin-right: 12px
}

.prod-avail--in-stock {
    color: #169625
}

.prod-avail--in-stock::before {
    background: url(../img/ui/check-circle-green.svg) center center /contain no-repeat
}

.prod-avail--out-stock {
    color: #ED4052
}

.prod-avail--out-stock::before {
    background: url(../img/ui/times-circle-red.svg) center center /contain no-repeat
}

.product-detail_price {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 24px;
    margin-bottom: 32px
}

.product-detail_price s {
    font-size: .85em;
    color: #0000009e;
    margin-right: 16px
}

.product-detail_price s+* {
    color: #D63333
}

.product-detail_options {
    list-style-type: none;
    padding: 0;
    margin: 0 0 24px
}

.product-detail_options li {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #191919;
    margin-bottom: 12px
}

.product-detail_options li:last-child {
    margin-bottom: 0
}

.product-detail_actions {
    display: flex
}

.product-detail_actions .qty-widget {
    flex: 0 0 auto;
    height: 56px;
    margin-right: 16px
}

.product-detail_actions .btn {
    max-width: 310px
}

.prod-description {
    margin-bottom: 40px
}

.prod-descr-tabs {
    display: flex;
    padding-bottom: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative
}

.prod-descr-tabs::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid #E4E4E4;
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: -1
}

.prod-descr-tabs a {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
    padding-bottom: 12px;
    margin-right: 40px;
    position: relative
}

.prod-descr-tabs a::after {
    content: "";
    display: block;
    width: 0;
    max-width: 100%;
    height: 4px;
    background-color: #1E1E1E;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width .3s
}

.prod-descr-tabs a:first-child:after {
    left: 0;
    transform: translateX(0)
}

.prod-descr-tabs a.active::after {
    width: 128px
}

.prod-descr-tabs_content {
    font-weight: 500
}

.prod-descr-tabs_content>* {
    padding-top: 16px
}

.reviews-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 16px
}

.reviews-list_item {
    display: flex;
    margin-bottom: 30px
}

.reviews-list_item-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%
}

.reviews-list_item-name,
.reviews-list_item-date {
    font-weight: 500;
    font-size: 16px;
    line-height: 1
}

.reviews-list_item-name {
    color: #1D2939;
    margin-right: 16px
}

.reviews-list_item .star-rating {
    margin: 10px 0 20px
}

.reviews-list_item-content {
    font-weight: 500
}

.reviews-list-btn {
    font-size: 18px;
    color: #459A84
}

.review-form {
    padding-top: 30px
}

.review-form_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 16px
}

@media(min-width:576px) {
    .product-detail_review-item::before {
        content: "\\";
        margin: 0 20px
    }

    .product-detail_review-item:first-child:before {
        display: none
    }

    .reviews-list_item-img {
        width: 64px;
        height: 64px
    }

    .reviews-list_item-name,
    .reviews-list_item-date {
        font-size: 18px
    }
}

@media(min-width:1200px) {
    .product-preview {
        height: 400px;
        margin-bottom: 20px
    }

    .product-preview-thumbs_item {
        height: 128px
    }

    .product-detail {
        --bs-gutter-x: 30px
    }

    .product-detail_price {
        font-size: 32px
    }

    .product-detail_actions .qty-widget {
        width: 206px;
        height: 64px;
        margin-right: 30px
    }

    .prod-description {
        margin-bottom: 80px
    }

    .prod-descr-tabs a {
        font-size: 22px;
        padding-bottom: 24px;
        margin-right: 80px
    }

    .prod-descr-tabs a::after {
        max-width: 128px
    }

    .prod-descr-tabs_content>* {
        padding-top: 32px
    }

    .reviews-list {
        margin-bottom: 30px
    }

    .reviews-list_item-name,
    .reviews-list_item-date {
        font-size: 20px
    }

    .reviews-list_item-name {
        margin-right: 30px
    }

    .review-form_title {
        font-size: 24px
    }
}

.favorites-list {
    border: 1px solid #BFBFBF;
    border-radius: 12px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden
}

.favorites-list_item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #BFBFBF;
    padding: 16px 16px 16px 30px;
    position: relative
}

.favorites-list_item:last-child {
    border: none
}

.favorites-list_item .btn-remove {
    position: absolute;
    top: 0;
    left: 0
}

.favorites-list_item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 70px;
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 4px;
    margin-right: 8px
}

.favorites-list_item-img img {
    max-height: 100%
}

.favorites-list_item-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125;
    max-width: 306px;
    margin-bottom: 10px
}

.favorites-list_item-price {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125;
    display: flex;
    align-items: baseline
}

.favorites-list_item-price s {
    font-size: 14px;
    color: #0000007a;
    margin-right: 16px
}

.favorites-list_item-price s+* {
    color: #ED4052
}

.favorites-list_item-status {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #7E7E7E;
    text-align: center;
    width: 100px;
    margin-right: 8px
}

@media(min-width:768px) {
    .favorites-list_item {
        flex-wrap: nowrap
    }

    .favorites-list_item .btn-remove {
        position: static
    }

    .favorites-list_item-img {
        margin-right: 16px
    }

    .favorites-list_item-status {
        width: auto;
        margin-right: 30px
    }
}

@media(min-width:1200px) {
    .favorites-list_item {
        padding: 30px
    }

    .favorites-list_item .btn {
        min-width: 192px
    }
}

.cart-steps {
    list-style-type: none;
    padding: 12px 0 0;
    margin-bottom: 24px;
    counter-reset: cart-steps
}

.cart-steps_item {
    counter-increment: cart-steps;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #858080;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #858080;
    padding-bottom: 20px;
    pointer-events: none
}

.cart-steps_item.active {
    color: #000;
    border-color: #000;
    pointer-events: auto
}

.cart-steps_item::before {
    content: counter(cart-steps);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #8A8A8A;
    text-align: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    background-color: #EAEAEA;
    border-radius: 50%;
    padding: 8px;
    margin-right: 16px
}

.cart-steps_item.active::before {
    color: #fff;
    background-color: #333
}

.cart-list {
    border: 1px solid #ECE6E6;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden
}

.cart-list_heading {
    background-color: #F5F5F5;
    padding: 14px
}

.cart-product {
    border-bottom: 1px solid #ECE6E6;
    padding: 14px 38px 14px 14px;
    position: relative
}

.cart-product:last-child {
    border: none
}

.cart-product .btn-remove {
    position: absolute;
    top: 0;
    right: 0
}

.cart-product_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 70px;
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 4px;
    margin-right: 8px
}

.cart-product_img img {
    max-height: 100%
}

.cart-product_title,
.cart-product_price,
.cart-product_total {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125
}

.cart-product_title {
    margin-bottom: 10px
}

.cart-product_price {
    display: flex;
    align-items: baseline
}

.cart-product_price s {
    font-size: 14px;
    color: #0000007a;
    margin-right: 16px
}

.cart-product_price s+* {
    color: #ED4052
}

.cart-product .qty-widget {
    max-width: 100%
}

.cart-product_total {
    text-align: right
}

.cart-page-btn {
    background-color: #333
}

.cart-summary {
    background-color: #F7F7F8;
    border-radius: 12px;
    padding: 20px
}

.cart-summary_heading {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px
}

.cart-summary_details {
    font-size: 16px;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.cart-summary_footer {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px
}

.cart-summary_footer strong {
    font-weight: 500;
    font-size: 24px
}

.cart-form_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2
}

.cart-form .form-group_textarea {
    height: 140px
}

@media(min-width: 992px) {
    .cart-steps_item {
        max-width: 455px;
        margin: 0 auto
    }

    .cart-product {
        padding: 14px
    }

    .cart-product .btn-remove {
        position: static
    }

    .cart-product_total {
        text-align: left
    }
}

@media(min-width:1200px) {
    .cart-steps {
        padding-top: 24px
    }

    .cart-product_img {
        margin-right: 16px
    }
}

.job-section {
    font-weight: 400;
    border: 1px solid #BFBFBF;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 30px
}

.job-section_title {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 14px
}

.job-section_tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: -8px;
    margin-bottom: 12px
}

.job-section_tags>* {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.333;
    text-align: center;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 6px 16px;
    margin-top: 8px;
    margin-right: 12px
}

.job-section details summary::marker {
    content: "";
    display: none
}

.job-section details summary>* {
    font-weight: 500;
    color: #717171;
    padding-right: 20px;
    margin-bottom: 16px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.job-section details summary>::before,
.job-section details summary>::after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #717171;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.job-section details summary>::after {
    transform: translateY(-50%) rotate(90deg)
}

.job-section details[open] summary>::after {
    transform: translateY(-50%) rotate(0)
}

@media(min-width:1200px) {
    .job-section {
        padding: 30px
    }

    .job-section_title {
        font-size: 26px;
        margin-bottom: 20px
    }

    .job-section_tags {
        margin-bottom: 20px
    }

    .job-section_tags>* {
        min-width: 176px;
        margin-right: 20px
    }
}

.contact-info_subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    padding-left: 32px;
    margin: 0;
    position: relative
}

.contact-info_subtitle::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 0;
    left: 0
}

.contact-info_subtitle--phone::before {
    background: url(../img/ui/phone_svgrepo.com.svg) center center /contain no-repeat
}

.contact-info_subtitle--time::before {
    background: url(../img/ui/time.svg) center center /contain no-repeat
}

.contact-info_subtitle--email::before {
    background: url(../img/ui/mail_svgrepo.com.svg) center center /contain no-repeat
}

.contact-info_item {
    font-size: 16px;
    line-height: 1.2;
    color: #504D4D
}

.contact-info_item strong {
    font-weight: 500;
    color: #000
}

.contact-map {
    max-width: 100%;
    border-radius: 10px;
}

.form-group .header-ico--search {
    height: 100%;
    position: absolute;
    top: 0;
    right: 12px
}

.gm-style .gm-style-iw {
    font-family: 'Montserrat', 'Nunito', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.2 !important
}

.gm-style .gm-style-iw-c {
    min-width: 336px !important
}

.gm-style-iw-ch {
    padding: 0 !important
}

.gm-style-iw-chr button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px !important;
    height: 32px !important
}

.gm-style-iw-chr button>* {
    margin: 0 !important
}

.store-marker-title {
    font-family: 'Montserrat', 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    display: block;
    margin-bottom: 12px
}

.store-card {
    max-width: 464px;
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 30px;
    margin: 0 auto
}

.store-card_title {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    display: block;
    margin-bottom: 20px
}

.store-card_info {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.store-card_info-item {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative
}

.store-card_info-item::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0
}

.store-card_info-item--loc::before {
    background: url(../img/ui/location_svgrepo.com.svg)
}

.store-card_info-item--phone::before {
    background: url(../img/ui/phone_svgrepo.com.svg)
}

.store-card_info-item--time::before {
    background: url(../img/ui/time.svg)
}

.store-card_img {
    border-radius: 8px
}

.contact-block {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.contact-block a {
    text-decoration: underline;
}

.contact-block_ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #F7F7F8;
    border-radius: 50%;
}

.contact-block_ico img {
    flex: 0 0 auto;
    width: 42%;
    height: 42%;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact-block_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
}

.contact-map {
    width: 100%;
    height: 360px;
}

@media(min-width:992px) {
    .contact-map {
        height: 642px;
    }
}

@media(min-width:1200px) {
    .contact-block {
        font-size: 16px;
    }

    .contact-block_ico {
        width: 48px;
        height: 48px;
    }

    .contact-block_title {
        font-size: 20px;
    }

    .contact-block a:hover {
        text-decoration: none;
    }

}

.account-sidebar_heading {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.account-sidebar_heading h3 {
    font-size: 18px;
    font-weight: 500
}

.account-sidebar_heading img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px
}

.account-sidebar_link {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 8px;
    position: relative;
    transition: background-color .3s
}

.account-sidebar_link.active,
.account-sidebar_link:hover {
    background-color: #F5F5F5
}

.account-sidebar_ico {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    position: relative
}

.account-sidebar_ico img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.account-sidebar_counter {
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    color: #fff;
    height: 14px;
    background-color: #333;
    border-radius: 20px;
    padding: 0 4px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none
}

.account-sidebar_title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500
}

@media(max-width:991.98px) {
    .account-sidebar {
        width: 42px;
        overflow-x: hidden;
        position: relative
    }

    .account-sidebar_heading img {
        width: 38px;
        height: 38px;
        margin-right: 8px
    }

    .account-sidebar_link {
        white-space: nowrap;
        padding-left: 8px;
        padding-right: 8px
    }

    .account-sidebar_heading h3 {
        white-space: nowrap
    }
}

.orders-history_heading,
.orders-history_item {
    font-weight: 500;
    line-height: 1.2;
    border-bottom: 1px solid #BFBFBF
}

.orders-history_item {
    font-size: 16px;
    font-weight: 400
}

.orders-history_status {
    font-weight: 500;
    display: flex;
    align-items: center
}

.orders-history_status::before {
    content: '';
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 2px;
    margin-right: 6px
}

.orders-history_status--new::before {
    background-color: #33B36B
}

.orders-history_status--delivered::before {
    background-color: #33B36B
}

.orders-history_status--done::before {
    background-color: #33B36B
}

.orders-history_status--processing::before {
    background-color: #339ADF
}

.orders-history_status--waiting::before {
    background-color: #339ADF
}

.orders-history_status--returned::before {
    background-color: #DF4033
}

.orders-history_status--canceled::before {
    background-color: #DF4033
}

.orders-history_status--trash::before {
    background-color: #DF4033
}


.orders-history_item .btn-inline {
    display: flex;
    align-items: center;
    text-decoration: none
}

.orders-history_item .btn-inline::after {
    content: "";
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    background: url(../img/ui/next_svgrepo.com.svg) center center /contain no-repeat;
    margin-top: 2px;
    margin-left: 8px
}

.orders-history_item-details:not(.active) {
    display: none
}

.orders-history_item-details .orders-history_heading {
    background-color: #F5F5F5
}

@media(max-width:1199px) {
    .orders-history_item {
        border-width: 2px
    }

    .orders-history_item [data-label]::before {
        content: attr(data-label) ':';
        font-weight: 500;
        display: inline-block
    }
}

.review-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.review-link_prod-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 80px;
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 2px;
    margin-right: 12px
}

.review-link_prod-img img {
    max-height: 100%
}

.review-link_prod-name,
.review-link_text {
    font-size: 16px
}

.review-link_text {
    font-weight: 400;
    padding-top: 4px
}

.review-link_ico {
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/ui/next_svgrepo.com.svg) center center /contain no-repeat
}

.accordion {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.accordion_item {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px
}

.accordion_title {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    padding-right: 16px;
    position: relative;
    cursor: pointer
}

.accordion_title::before,
.accordion_title::after {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #303130;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.accordion_title:not(.active)::after {
    transform: translateY(-50%) rotate(90deg)
}

.accordion_content {
    display: none;
    font-size: 16px;
    font-weight: 400;
    padding-top: 16px
}

.accordion_title.active+.accordion_content {
    display: block
}

@media(min-width:1200px) {
    .accordion_item {
        padding: 20px;
        margin-bottom: 24px
    }

    .accordion_title {
        font-size: 20px
    }
}

/* 
.counter-section_item {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #F8F8F8;
    border: 1px solid #D1CBCB;
    padding: 16px
}

.counter-section_item-ico {
    width: 64px;
    height: 64px;
    background-color: #019C84;
    border: 10px solid #AEDCD5;
    border-radius: 50%;
    padding: 8px;
    margin-bottom: 12px
}

.counter-section_item-ico img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.counter-section_item strong {
    font-size: 24px;
    margin-bottom: 8px
} */

.subscribe-section-wrapper {
    margin-bottom: 160px;
}

.subscribe-section {
    background-color: #F7F7F8;
    border-radius: 24px;
}

.subscribe-section_img {
    margin-bottom: -83px;
}

.subscribe-section_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
}

.subscribe-section_form {
    max-width: 718px;
}

.subscribe-section_form label {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #121212;
    display: block;
}

.subscribe-section_form-group {
    display: flex;
    height: 52px;
    background-color: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.subscribe-section_form-group input {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    outline: none;
    background: url('../img/ui/mail2_svgrepo.com.svg') center left 16px /26px no-repeat, transparent;
    padding-left: 46px;
}

.subscribe-section_form-group input::placeholder {
    color: #fff;
}

.subscribe-section_form-group button {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.333;
    color: #282828;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    outline: none;
    padding: 10px 12px;
    margin: 4px;
}

.usp-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #343434;
}

.usp-item img {
    width: 48px;
    height: 48px;
    -o-object-fit: contain;
    object-fit: contain;
}

.usp-item_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: #181D25;
    margin: 0;
}

.about-section_img {
    border-radius: 10px;
}

.about-section_content {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #000;
    max-width: 534px;
}

.about-section_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}

.about-section_content hr {
    border-color: #E0E5EB;
}

.about-section_eco {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.25;
    color: #181D25;
}

.about-section_eco strong {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #445643;
}

.video-section {
    border-radius: 10px;
    padding-bottom: 60%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-section::after {
    content: attr(data-btn);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    display: block;
    background: url('/static/projects/mondoluce.ro/assets/img/ui/play.svg') center left 24px /18px no-repeat, #fff;
    border-radius: 30px;
    padding: 12px 24px 12px 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-section.is-playing::after {
    display: none;
}
.video-section img {
    -o-object-fit: cover;
    object-fit: cover;
}

.video-section img,
.video-section iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media(min-width:768px) {
    .subscribe-section_title {
        font-size: 24px;
    }

    .subscribe-section_form-group button {
        padding-left: 24px;
        padding-right: 24px;
    }

    .video-section {
        padding-bottom: 43.78453038674033%;
    }
}

@media(min-width:1200px) {
    .usp-section {
        padding-left: 94px;
        padding-right: 94px;
    }

    .usp-section .row {
        --bs-gutter-x: 64px;
    }

    .usp-item img {
        width: 60px;
        height: 60px;
    }

    .usp-item_title {
        font-size: 20px;
    }

    /* .counter-section_item {
        font-size: 24px;
        min-height: 278px
    }

    .counter-section_item-ico {
        width: 80px;
        height: 80px;
        padding: 12px;
        margin-bottom: 24px
    }

    .counter-section_item strong {
        font-size: 28px;
        margin-bottom: 12px
    } */

    .subscribe-section_title {
        font-size: 32px;
    }

    .subscribe-section_form-group button {
        font-size: 18px;
        transition: color .15s ease-in-out, background-color .15s ease-in-out;
    }

    .subscribe-section_form-group button:hover {
        color: #fff;
        background-color: #282828;
    }

    .about-section_title {
        font-size: 28px;
    }

    .about-section_eco {
        font-size: 16px;
    }

    .about-section_eco strong {
        font-size: 48px;
    }



    .video-section::after {
        -webkit-transition: -webkit-filter .15s ease-in-out;
        transition: -webkit-filter .15s ease-in-out;
        -o-transition: filter .15s ease-in-out;
        transition: filter .15s ease-in-out;
        transition: filter .15s ease-in-out, -webkit-filter .15s ease-in-out;
    }

    .video-section:hover::after {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

}

.alert--textonly {
    font-size: 14px;
    background: transparent;
    border: none;
}

.featured-img {
    border-radius: 12px;
    margin-bottom: 16px
}

.footer {
    background-color: #333;
    padding-top: 32px
}

.footer .container-xl>.row {
    --bs-gutter-y: 32px;
}

.footer_text {
    line-height: 1.2;
    color: #303130;
    margin-bottom: 20px
}

.social-links {
    display: flex
}

.social-links_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 20px;
}

.social-links_item:last-child {
    margin-right: 0
}


.footer-nav {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.footer-nav_item {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.375;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
}

.footer-nav_item--title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer_bottom {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    border-top: 1px solid #9D9D9D;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media(min-width:992px) {
    .footer_bottom {
        text-align: center;
    }
}

@media(min-width:1200px) {
    .footer {
        padding-top: 50px;
    }

    .footer .container-xl>.row {
        --bs-gutter-y: 50px;
    }

    .footer-nav_item a {
        position: relative;
    }

    .footer-nav_item a::after {
        content: "";
        display: block;
        width: 0;
        height: 1px;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 1px;
        transition: width .15s ease-in-out;
    }

    .footer-nav_item a:hover {
        color: #fff;
        text-decoration: none;
    }

    .footer-nav_item a:hover::after {
        width: 100%;
    }

    .footer_bottom {
        font-size: 16px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .social-links_item {
        -webkit-transition: -webkit-filter .15s ease-in-out;
        transition: -webkit-filter .15s ease-in-out;
        -o-transition: filter .15s ease-in-out;
        transition: filter .15s ease-in-out;
        transition: filter .15s ease-in-out, -webkit-filter .15s ease-in-out;
    }

    .social-links_item:hover {
        -webkit-filter: invert(1);
        filter: invert(1);
    }
}