.section-gap {
    padding: 45px 0;
}

@media screen and (max-width: 991px) {
    .section-gap {
        padding: 25px 0;
    }
}

.section-heading {
    margin-bottom: 25px;
    text-align: center;
}

.section-heading .heading-title {
    font-size: 2em;
    font-weight: 700;
    color: var(--black-color);
    position: relative;
}

.section-heading .heading-title > span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.section-heading .heading-title > span::before,
.section-heading .heading-title > span::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 23px;
    background: url(/public/upload/theme/shape_theme.png) 50% no-repeat;
    margin-bottom: -2px;
}

.section-heading .heading-title > span::before {
    transform: rotate(-90deg);
    margin-right: 5px;
}

.section-heading .heading-title > span::after {
    transform: rotate(90deg);
    margin-left: 5px;
}

.section-heading .heading-sub {
    font-size: 1.75em;
    font-weight: 700;
    color: #1a1e21;
    position: relative;
}

.section-heading .heading-description {
    font-size: 1.075em;
    color: var(--dark-color);
    margin-top: 8px;
}

.section-heading .heading-description p:last-of-type,
.section-heading .heading-description ol:last-of-type,
.section-heading .heading-description ul:last-of-type {
    margin-bottom: 0;
}

.section-heading > .title {
    color: var(--bs-gray-900);
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 0;
}

.section-heading .line {
    height: 1px;
    width: 100%;
    background: #E4E4E7;
    display: block;
    position: relative;
    margin-top: 15px;
}

.section-heading .line:before {
    width: 115px;
    height: 3px;
    background: var(--primary-color);
    z-index: 2;
    display: block;
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 991px) {
    .section-heading .heading-title {
        font-size: 1.6em;
    }

    .section-heading .heading-sub {
        font-size: 1.45em;
    }

    .section-heading .heading-description {
        font-size: 1em;
    }

    .section-heading > .title {
        font-size: 1.3em;
    }

}

.slider-theme {
    position: relative;
}

.slider-theme .slider-pagination {
    position: relative;
    bottom: unset;
    left: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slider-theme .slider-pagination:not(.swiper-pagination-lock) {
    margin-top: 30px;
}

.slider-theme .slider-pagination .swiper-pagination-bullet {
    opacity: 1;
    transition: var(--transition-default);
    width: 24px;
    height: 8px;
    border-radius: 10px;
    background: var(--bs-gray-500);
    margin: 0;
}

.slider-theme .slider-pagination .swiper-pagination-bullet:hover {
    background: var(--bs-gray-700);
}

.slider-theme .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 40px;
}

@media screen and (max-width: 991px) {
    .slider-theme .slider-pagination .swiper-pagination-bullet {
        height: 6px;
        width: 20px;
    }

    .slider-theme .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 32px;
    }
}

.button-theme {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 1.15em;
    font-weight: 700;
    padding: 0.5rem 1.5rem 0.55rem;
    border-radius: 50px;
    background-color: var(--bg-1);
    color: var(--bs-white) !important;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    transition: all 500ms linear;
    outline: none;
    box-shadow: none;
    border: 0;
}

.button-theme.button-theme_sm {
    font-size: 1em;
    padding: 0.4rem 1.25rem 0.45rem;
}

.button-theme::before,
.button-theme::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.button-theme::before {
    background: var(--bg-2);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.button-theme > * {
    position: relative;
    z-index: 3;
}

.button-theme.button-theme_primary {
    --bg-1: var(--primary-color);
    --bg-2: rgba(var(--bs-white-rgb), 0.1);
}

.button-theme.button-theme_danger {
    --bg-1: var(--bs-danger);
    --bg-2: rgba(var(--bs-white-rgb), 0.1);
}

.button-theme:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1.2, 1.2, 1.2);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.floating-cart {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
    transition: visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
    -o-transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1);
    transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1);
    transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1), opacity .5s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s cubic-bezier(.645, .045, .355, 1);
    background: var(--bs-white);
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    width: 400px;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translate3d(104%, 0, 0);
    transform: translate3d(104%, 0, 0);
    z-index: 21;
    font-size: 14px;
}

.floating-cart .cart-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 50px;
    padding: 0 0 0 20px;
    border-bottom: 1px solid rgba(129, 129, 129, .2);
}

.floating-cart .cart-header .cart-title {
    text-transform: uppercase;
    font-size: 1.3em;
    color: #2c3034;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding-top: 2px;
}

.floating-cart .cart-header .cart-close {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    border: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.floating-cart .cart-header .cart-close svg {
    stroke: #9f9d9d;
    -webkit-transition: stroke .3s ease-in-out .1s;
    -o-transition: stroke .3s ease-in-out .1s;
    transition: stroke .3s ease-in-out .1s;
}

.floating-cart .cart-header .cart-close:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.floating-cart .cart-header .cart-close:hover svg {
    stroke: #2c3034;
}

.floating-cart .cart-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.floating-cart .cart-body .cart-main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.floating-cart .cart-body .cart-main .cart-main_scroll {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar {
    width: 5px;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar-track {
    background: #ffffff;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar-thumb {
    background: #d7d7d7;
}

.floating-cart .cart-body .cart-main .cart-main_scroll::-webkit-scrollbar-thumb:hover {
    background: #b9b9b9;
}

.floating-cart .cart-body .cart-list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 100%;
}

.floating-cart .cart-body .cart-list .cart-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(221, 221, 221, .8);
    overflow: hidden;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_image {
    width: 120px;
    display: block;
    margin-right: 15px;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    position: relative;
    max-width: 100%;
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_image:before {
    display: block;
    padding-top: 100%;
    content: "";
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_title {
    font-size: 1.15em;
    color: #2c3034;
    font-weight: 500;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    line-height: 1.2;
}

.floating-cart .cart-body .cart-list .cart-item .cart-item_title:hover {
    color: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-price .old {
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 10px;
    margin-left: 5px;
    font-size: 0.925em;
    color: #A1A1AA;
}

.floating-cart .cart-body .cart-list .cart-item .cart-price .current {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.075em;
}

.floating-cart .cart-body .cart-list .cart-item .cart-price .sale {
    margin-left: 3px;
    padding: 2px 5px;
    background-color: #B91C1C;
    color: var(--bs-white);
    font-size: 0.85em;
    border-radius: 4px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button {
    border-radius: 5px;
    height: 36px;
    width: 36px;
    border: 1px solid #c5c5c9;
    color: #71717A;
    background: var(--bs-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.15em;
    cursor: pointer;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button svg {
    width: 14px;
    height: 14px;
    stroke: #71717A;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button:hover {
    background: #e7e7e7;
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button:active {
    background: var(--primary-color);
    color: var(--bs-white);
    border-color: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity .quantity-button:active svg {
    stroke: var(--bs-white);
}

.floating-cart .cart-body .cart-list .cart-item .cart-quantity .quantity input {
    border: 1px solid #c5c5c9;
    color: #71717A;
    border-radius: 5px;
    padding: 5px;
    width: 60px;
    margin: 0 10px;
    text-align: center;
    font-size: 1.15em;
    height: 36px;
    -moz-appearance: textfield;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions .cart-action_item {
    border: 0;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    stroke: #2c3034;
    fill: transparent;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item svg {
    width: 20px;
    height: 20px;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item:hover {
    stroke: var(--primary-color);
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item.is-selected {
    stroke: transparent;
    fill: #d70018;
}

.floating-cart .cart-body .cart-list .cart-item .cart-actions > .cart-action_item + .cart-action_item {
    margin-left: 10px;
}

.floating-cart .cart-body .cart-bottom {
    padding: 20px 20px 15px;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    border-top: 1px solid rgba(221, 221, 221, .7);
    -webkit-box-shadow: 0 0 10px 0 rgba(221, 221, 221, .7);
    box-shadow: 0 0 10px 0 rgba(221, 221, 221, .7);
    opacity: 0;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity .35s cubic-bezier(.25, .46, .45, .94), -webkit-transform .35s cubic-bezier(.25, .46, .45, .94);
    transition: opacity .35s cubic-bezier(.25, .46, .45, .94), transform .35s cubic-bezier(.25, .46, .45, .94), -webkit-transform .35s cubic-bezier(.25, .46, .45, .94);
}

.floating-cart .cart-body .cart-bottom .cart-total {
    margin-bottom: 10px;
    color: #2c3034;
    font-size: 1.3em;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.floating-cart .cart-body .cart-bottom .cart-total .cart-price_value {
    text-align: right;
}

.floating-cart .cart-body .cart-bottom .cart-desc {
    font-size: var(--size-default);
    margin-bottom: 10px;
    color: #71717A;
}

.floating-cart .cart-body .cart-bottom .card-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.floating-cart .cart-body .cart-bottom .card-buttons > .button-theme {
    width: 100%;
    padding: 10px 0;
    border-radius: 50px;
}

.floating-cart .cart-body .cart-bottom .card-buttons > .button-theme:not(.button-theme_primary) {
    color: var(--primary-color) !important;
    font-weight: 400;
    font-size: 1.075em;
}

.floating-cart .cart-body .cart-empty {
    padding: 50px 20px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
}

.floating-cart .cart-body .cart-empty svg {
    width: 60px;
    height: auto;
    fill: #b5b5bb;
    margin-bottom: 15px;
}

.floating-cart .cart-body .cart-empty .title {
    font-weight: 400;
    color: #3b3b3d;
    font-size: 1.15em;
    margin-bottom: 15px;
}

body.js-show_cart .floating-cart {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    -ms-transform: none;
    transform: none;
    -webkit-transform: none;
}

body.js-show_cart .floating-cart .cart-body .cart-empty,
body.js-show_cart .floating-cart .cart-body .cart-bottom {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity .25s cubic-bezier(.25, .46, .45, .94) .45s, -webkit-transform .25s cubic-bezier(.25, .46, .45, .94) .45s;
    transition: opacity .25s cubic-bezier(.25, .46, .45, .94) .25s, transform .35s cubic-bezier(.25, .46, .45, .94) .25s, -webkit-transform .25s cubic-bezier(.25, .46, .45, .94) .25s;
}

.floating-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 20;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    background: rgba(0, 0, 0, .7);
    -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}

body.js-show_cart .floating-overlay {
    pointer-events: auto;
    opacity: .5;
    visibility: visible;
}

body.js-show_cart {
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .floating-cart .cart-body .cart-list .cart-item .cart-item_image {
        width: 90px;
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    z-index: 10;
    background-color: var(--bs-white);
}

.header .header-top {
    background-color: var(--primary-color);
    padding: 10px 0;
    transition: var(--transition-default);
    position: relative;
    z-index: 3;
}

.header .header-top .header-grid {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header .header-top .header-logo {
    height: 65px;
    width: calc(20% + 0.25rem - 25px);
    transition: var(--transition-default);
    flex-shrink: 0;
}

.header .header-search {
    flex: 1 0 auto;
    position: relative;
}

.header .header-search .header-search_button {
    display: none;
}

.header .header-search .header-search_form {
    flex-shrink: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header .header-search .header-search_form .header-search_form__label {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.header .header-search .header-search_form .header-search_form__label .header-search_form__input {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    height: 48px;
    font-size: 1.075em;
    color: var(--black-color);
    padding: 10px 100px 10px 20px;
    outline: none;
    border: none;
    border-radius: 25px;
    text-overflow: ellipsis;
    position: relative;
    transition: var(--transition-default);
}

.header .header-search .header-search_form .header-search_form__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 42px;
    font-size: 1.15em;
    line-height: 1;
    color: var(--bs-white);
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    z-index: 2;
    border-radius: 25px;
    background-color: var(--primary-color);
    transition: var(--transition-default);
    outline: none;
    box-shadow: none;
    border: 0;
}

.header .header-search .header-search_result {
    position: fixed;
    background: var(--bs-white);
    z-index: 100;
    width: 100%;
    right: 0;
    left: 0;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all .4s cubic-bezier(0.68, 0, 0.265, 1.55);
    -o-transition: all .4s cubic-bezier(0.68, 0, 0.265, 1.55);
    transition: all .4s cubic-bezier(0.68, 0, 0.265, 1.55);
    -webkit-box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    overflow-y: auto;
    max-height: var(--max-height);
}

.header .header-search .header-search_result.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-search .header-search_result::-webkit-scrollbar {
    width: 5px;
}

.header .header-search .header-search_result::-webkit-scrollbar-track {
    background: var(--bs-white);
}

.header .header-search .header-search_result::-webkit-scrollbar-thumb {
    background: #acacac;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.header .header-search .header-search_result::-webkit-scrollbar-thumb:hover {
    background: #7b7b7b;
}

.header .header-tools {
    flex: 0 1 auto;
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
}

.header .header-tools .header-tool_hotline {
    height: 100%;
    position: relative;
    background-color: var(--primary-bg);
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    color: var(--bs-white);
    line-height: 1.2;
    transition: var(--transition-default);
}

.header .header-tools .header-tool_hotline:hover {
    background-color: var(--primary-bg-hover);
}

.header .header-tools .header-tool_hotline .header-tool_hotline__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.header .header-tools .header-tool_hotline .header-tool_hotline__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.header .header-tools .header-tool_hotline .header-tool_hotline__content .header-tool_hotline__content___title {
    font-size: 0.85em;
}

.header .header-tools .header-tool_hotline .header-tool_hotline__content .header-tool_hotline__content___value {
    font-size: 1.15em;
    font-weight: 600;
}

.header .header-tools .header-tool_user {
    position: relative;
}

.header .header-tools .header-tool_user .header-tool_user__button {
    height: 100%;
    position: relative;
    background-color: var(--primary-bg);
    padding: 12px 18px;
    border-radius: 5px;
    display: flex;
    color: var(--bs-white);
    line-height: 1.2;
    transition: var(--transition-default);
    border: 0;
    outline: none;
    font-size: 1.45em;
    align-items: center;
    justify-content: center;
}

.header .header-tools .header-tool_user:hover .header-tool_user__button {
    background-color: var(--primary-bg-hover);
}

.header .header-tools .header-tool_user .header-tool_user__dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    padding: 15px;
    background-color: var(--bs-white);
    text-align: center;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    -webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
    box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
}

.header .header-tools .header-tool_user:hover .header-tool_user__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown:before {
    height: 15px;
    position: absolute;
    top: -15px;
    width: 100%;
    content: "";
    display: block;
    background-color: transparent;
    left: 0;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown:after {
    top: -10px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid var(--bs-white);
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    content: "";
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___button {
    text-align: center;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___button a {
    background: var(--primary-color);
    border: 1px solid var(--primary-hover);
    color: var(--bs-white);
    font-size: var(--size-default);
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___button a:hover {
    background: var(--primary-hover);
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___text {
    color: #71717A;
    margin-top: 6px;
    white-space: nowrap;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__dropdown___text a:hover {
    color: var(--primary-hover);
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 -5px;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list .header-tool_user__list___item {
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--black-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    text-align: left;
    font-size: 1.075em;
}

.header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list .header-tool_user__list___item:hover {
    color: var(--bs-white);
    background-color: var(--primary-color);
}

.header .header-tools .header-tool_cart .header-tool_cart__button {
    height: 100%;
    position: relative;
    background-color: var(--primary-bg);
    padding: 12px 18px;
    border-radius: 5px;
    display: flex;
    color: var(--bs-white);
    line-height: 1.2;
    transition: var(--transition-default);
    border: 0;
    outline: none;
    font-size: 1.45em;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.header .header-tools .header-tool_cart .header-tool_cart__button .header-tool_cart__button__number {
    background-color: #dc3545;
    color: var(--bs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    font-size: 12px;
    border: 0;
    outline: none;
    box-shadow: none;
    top: calc(50% - 12px);
    left: calc(50% + 12px);
    transform: translate(-50%, -50%);
}

.header .header-tools .header-tool_cart:hover .header-tool_cart__button {
    background-color: var(--primary-bg-hover);
}

.header .header-tools .header-tool_hamburger {
    display: none;
}

.header .header-bottom {
    background-color: var(--primary-dark);
}

.header .header-categories {
    position: relative;
}

.header .header-categories .header-categories_button {
    width: 100%;
    border-radius: 6px;
    background-color: var(--bs-white);
    color: var(--black-color);
    outline: none;
    box-shadow: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    text-align: left;
    font-size: 1.075em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
}

.header .header-categories .header-categories_button:before {
    position: absolute;
    content: "";
    bottom: -8px;
    height: 8px;
    width: 100%;
    left: 0;
    background-color: transparent;
}

.header .header-categories .header-categories_list {
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    left: 0;
    background-color: var(--bs-white);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    min-width: 200px;
    border-radius: 0 0 0.45rem 0.45rem;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.header.header-page .header-categories:hover .header-categories_list,
.header.header-home .header-categories .header-categories_list {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.header .header-categories .header-categories_list .header-categories_item {
    border-bottom: 1px solid var(--bs-gray-100)
}

.header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.075em;
    font-weight: 600;
    gap: 0.5rem;
    padding: 13px 15px;
    color: var(--black-color);
    border: 0;
    border-left: 3px solid transparent;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    width: 100%;
}

.header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle > i {
    transition: var(--transition-default);
}

.header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle[aria-expanded=true],
.header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle:hover {
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle[aria-expanded=true] {
    background-color: #f9faf8d1;
}

.header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle[aria-expanded=true] > i {
    transform: rotate(180deg);
}

.header .header-categories .header-categories_list .header-categories_item ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    border-top: 1px solid var(--bs-gray-100);
}

.header .header-categories .header-categories_list .header-categories_item ul > li {
    display: flex;
    width: 100%;
}

.header .header-categories .header-categories_list .header-categories_item ul > li > a {
    padding: 13px 25px;
    display: inline-flex;
    transition: var(--transition);
    font-weight: 500;
    color: var(--bs-gray-700);
    width: 100%;
}

.header .header-categories .header-categories_list .header-categories_item ul > li:hover > a {
    color: var(--primary-color);
}

.header .header-navigation ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
    margin-left: -10px;
    gap: 10px;
}

.header .header-navigation > ul > li {
    position: relative;
    display: flex;
    align-items: center;
}

.header .header-navigation > ul > li > .header-navigation_item {
    display: flex;
    align-items: center;
    padding: 18px;
    color: var(--bs-white);
    font-size: 1.075em;
    font-weight: 600;
    white-space: nowrap;
    gap: 5px;
    justify-content: space-between;
    transition: var(--transition-default);
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border: 0;
}

.header .header-navigation > ul > .header-navigation_categories {
    display: none;
}

.header .header-navigation > ul > li > .header-navigation_item > i {
    transition: var(--transition-default);
}

.header .header-navigation > ul > li:hover > .header-navigation_item {
    background-color: var(--primary-bg-hover);
    color: var(--bs-white);
}

.header .header-navigation > ul > li:hover > .header-navigation_item > i {
    transform: rotate(180deg);
}

.header .header-navigation > ul > li + li::before {
    display: block;
    content: '';
    height: 15px;
    width: 1px;
    border-right: 1px solid #ffffff4f;
    margin-right: 10px;
}

.header .header-navigation > ul > li > ul {
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    left: 10px;
    padding: 10px;
    background-color: var(--bs-white);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    min-width: 200px;
    border-radius: 0 0 0.45rem 0.45rem;
    z-index: 5;
    border-top: 2px solid #d9e1e2;
}

.header .header-navigation > ul > li > ul:before {
    content: "";
    height: 19px;
    background: transparent;
    top: -19px;
    width: 100%;
    position: absolute;
    left: 0;
}

.header .header-navigation > ul > li:hover > ul {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.header .header-navigation > ul > li > ul > li > a {
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--black-color);
    font-weight: 500;
    font-size: 1em;
}

.header .header-navigation > ul > li > ul > li:hover > a {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.header.is-scroll {
    position: fixed;
}

.header.is-scroll .header-top {
    padding: 6px 0;
}

.header.is-scroll .header-top .header-logo {
    height: 58px;
}

.header.is-scroll .header-search .header-search_form .header-search_form__label .header-search_form__input {
    height: 42px;
}

.header.is-scroll .header-search .header-search_form .header-search_form__button {
    height: 36px;
    width: 83px;
}

.header.is-scroll .header-search .header-search_result {
    top: 70px;
}

.header.is-scroll .header-tools .header-tool_hotline {
    padding: 8px 13px;
}

.header.is-scroll .header-tools .header-tool_user .header-tool_user__button,
.header.is-scroll .header-tools .header-tool_cart .header-tool_cart__button {
    padding: 8px 16px;
}

.header.is-scroll .header-navigation > ul > li > .header-navigation_item {
    padding: 14px 18px;
}

.header.is-scroll .header-categories .header-categories_list {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.header.is-scroll .header-categories:hover .header-categories_list {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header .header-top .header-logo {
        height: 55px;
        width: auto;
    }

    .header .header-navigation > ul > li > .header-navigation_item {
        padding: 18px 12px;
        font-size: 1em;
    }

    .header .header-categories .header-categories_button {
        font-size: 1em;
    }

    .header .header-categories .header-categories_list .header-categories_item .header-categories_item__toggle {
        font-size: 1em;
    }

    .header.is-scroll .header-top .header-logo {
        height: 50px;
    }

    .header .header-search .header-search_result {
        top: 77.59px;
    }

    .header.is-scroll .header-search .header-search_result {
        top: 62px;
    }

    .section-product-search {
        padding: 2rem 0 !important;
    }
}

@media screen and  (max-width: 991px) {
    .header .header-top .header-grid {
        gap: 0;
    }

    .header .header-top .header-logo {
        height: 45px;
        width: auto;
        margin-right: 25px;
    }

    .header.is-scroll .header-top .header-logo {
        height: 42px;
    }

    .header .header-search {
        position: static;
        margin-left: auto;
        flex: unset;
    }

    .header .header-search .header-search_button {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.225em;
        background-color: var(--primary-bg);
        border-radius: 5px;
        transition: var(--transition-default);
        border: 0;
        outline: none;
        position: relative;
        color: var(--bs-white);
    }

    .is-search .header .header-search .header-search_button i {
        font-weight: 300;
    }

    .is-search .header .header-search .header-search_button i:before {
        content: "\f00d";
    }

    .header .header-search .header-search_form {
        position: absolute;
        top: 100%;
        width: 100%;
        margin: 0 auto;
        left: 0;
        z-index: 10;
        transition: var(--transition-default);
        background-color: var(--bs-white);
        display: flex;
        flex-direction: column;
        padding: 0.75rem 1rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .is-search .header .header-search .header-search_form {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .is-search .header .header-search .header-search_result {
        max-height: calc(var(--max-height) - 66px);
        top: calc(66px + 65px);
    }

    .is-search .is-scroll.header .header-search .header-search_result {
        max-height: calc(var(--max-height) - 66px);
        top: calc(66px + 54px);
    }

    .section-product-search {
        padding: 1.5rem 0 !important;
    }

    .header .header-search .header-search_form .header-search_form__label .header-search_form__input {
        border: 1px solid var(--bs-gray-200);
        height: 42px !important;
        font-size: 1em !important;
    }

    .header .header-search .header-search_form .header-search_form__button {
        top: 50%;
        transform: translateY(-50%);
        right: calc(3px + 1rem);
        bottom: unset;
        width: 66px !important;
        height: 36px !important;
    }

    .header .header-tools {
        gap: 0.35rem;
        align-items: center;
        margin-left: 0.35rem;
    }

    .header .header-tools .header-tool_hotline .header-tool_hotline__content {
        display: none;
    }

    .header .header-tools .header-tool_hotline .header-tool_hotline__icon {
        width: 22px;
        height: 22px;
        margin-right: 0;
    }

    .header .header-tools .header-tool_hotline {
        display: none;
    }

    .header .header-tools .header-tool_user .header-tool_user__button,
    .header .header-tools .header-tool_cart .header-tool_cart__button {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.225em;
    }

    .header .header-tools .header-tool_user .header-tool_user__dropdown {
        right: -30px;
        left: unset;
        transform: translateX(0);
    }

    .header .header-tools .header-tool_user .header-tool_user__dropdown:after {
        right: 38px;
        left: unset;
        transform: translateX(0);
    }

    .header .header-tools .header-tool_user .header-tool_user__dropdown .header-tool_user__list .header-tool_user__list___item {
        font-size: 1em;
    }

    .header .header-tools .header-tool_hamburger {
        display: flex;
        align-items: center;
    }

    .header .header-tools .header-tool_hamburger .header-tool_hamburger__button {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-bg);
        border-radius: 5px;
        transition: var(--transition-default);
        border: 0;
        outline: none;
        position: relative;
    }

    .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span {
        display: block;
        position: absolute;
        height: 2px;
        background: var(--bs-white);
        border-radius: 9px;
        opacity: 1;
        left: 8px;
        right: 8px;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        backface-visibility: hidden;
        will-change: transform;
    }

    .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(1) {
        top: 12px;
    }

    .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(2),
    .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(3) {
        top: 18px;
    }

    .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(4) {
        top: 24px;
    }

    .is-navigation .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .is-navigation .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .is-navigation .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(1),
    .is-navigation .header .header-tools .header-tool_hamburger .header-tool_hamburger__button > span:nth-child(4) {
        top: 17.5px;
        width: 0;
        left: 50%;
    }

    .header .col-categories {
        display: none;
    }

    .header .header-navigation {
        position: absolute;
        top: 100%;
        width: 100%;
        margin: 0 auto;
        left: 0;
        z-index: 10;
        transition: var(--transition-default);
        background-color: var(--bs-white);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }

    .is-navigation {
        height: 100vh;
        overflow: hidden;
    }

    .is-navigation .header .header-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 65px);
    }

    .header .header-navigation > ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        flex: 1 1 auto;
        padding: 0 var(--bs-gutter-x);
        overflow-x: hidden;
        overflow-y: auto;
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header .header-navigation > ul > li > .header-navigation_item {
        width: 100%;
        text-align: left;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 1.075em;
        color: var(--black-color) !important;
        background-color: transparent !important;
    }

    .header .header-navigation > ul > li + li::before {
        display: none;
    }

    .header .header-navigation > ul > li + li, .header .header-navigation > ul > li > ul li + li {
        border-top: 1px solid var(--bs-gray-300);
    }

    .header .header-navigation > ul > .header-navigation_categories {
        display: block;
    }

    .header .header-navigation > ul > li > .header-navigation_item i {
        transform: unset !important;
    }

    .header .header-navigation > ul > li > .header-navigation_item i:before {
        content: "\f067";
    }

    .header .header-navigation > ul > li > .header-navigation_item[aria-expanded=true] > i:before {
        content: "\f068";
    }

    .header .header-navigation > ul > li > ul {
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
        min-width: 100%;
        -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        border-top: 1px solid var(--bs-gray-300);
        padding: 0 0 0 15px;
    }

    .header .header-navigation > ul > li > ul > li > a {
        padding: 12px 0;
        border-radius: 0;
        background-color: var(--bs-white) !important;
        font-weight: 500;
    }
}

@media screen and (max-width: 768px) {
    .header .header-navigation > ul {
        max-width: 540px;
    }
}

@media screen and (max-width: 575px) {
    .header .header-navigation > ul {
        max-width: 100%;
    }
}


.product-card {
    border: 0;
    border-radius: 0;
    background-color: var(--bs-white);
    height: 100%;
}

.product-card .card-header {
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: var(--bs-white);
    position: relative;
    overflow: hidden;
}

.product-card .card-header:before {
    content: "";
    background-color: var(--bs-white);
    height: calc(100% + 150px);
    left: -40%;
    position: absolute;
    top: -75px;
    transform: rotate(35deg);
    transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
    opacity: 0;
}

.product-card:hover .card-header:before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.product-card .card-header .card-image {
    -webkit-transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
    -o-transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
    transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
}

.product-card .card-header .card-image.card-image_thumb {
    opacity: 0;
    will-change: opacity;
    z-index: 1;
}

.product-card:hover .card-header .card-image {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.product-card:hover .card-header .card-image.card-image_thumb {
    opacity: 1;
}

.product-card .card-header .card-header_percent {
    display: none;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
}

.product-card .card-body .card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--black-color);
    -webkit-transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
    -o-transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
    transition: all 0.4s cubic-bezier(.28, .12, .22, 1);
}

.product-card:hover .card-body .card-title {
    color: var(--primary-color);
}

.product-card .card-body .card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1.075em;
    color: #9a9aa1;
    margin-top: auto;
}

.product-card .card-body .card-price .card-price_outstock,
.product-card .card-body .card-price .card-price_current {
    color: #d70018;
    font-weight: 700;
}

.product-card .card-body .card-price .card-price_old {
    text-decoration: line-through;
}

.product-card .card-body .card-price .card-price_percent {
    font-size: 12px;
    background-color: #d70018;
    color: var(--bs-white);
    border-radius: 4px;
    font-weight: 700;
    padding: 3px 6px;
}

.product-card .card-button__item {
    border-radius: 5px;
    padding: 5px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    color: var(--bs-gray-900);
    background-color: transparent;
    transition: var(--transition-default);
    max-width: 180px;
    width: 100%;
}

.product-card .card-button__item.item-cart {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.product-card .card-button__item:hover {
    border: 1px solid var(--primary-dark);
    background-color: var(--primary-dark);
    color: var(--bs-white);
}

.product-card .card-button.disabled-button,
.product-card .card-button__item.disabled {
    opacity: 0.6;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .product-card .card-body .card-title {
        font-size: 1.15em;
    }

    .product-card .card-body .card-price {
        flex-wrap: wrap;
    }

    .product-card .card-body .card-price .card-price_percent {
        margin-left: 0;
        display: none;
    }

    .product-card .card-header .card-header_percent {
        margin-left: auto;
        font-size: 12px;
        background-color: #d70018;
        color: var(--bs-white);
        border-radius: 4px;
        font-weight: 700;
        padding: 3px 6px;
        position: absolute;
        top: 5px;
        right: 5px;
        display: block;
    }
}

@media (max-width: 576px) {
    .product-card .card-button__item {
        font-size: 13px;
    }

    .product-card .card-button__item.item-cart {
        width: 38px;
        height: 38px;
    }
}

.section-hero {
    padding: 1rem 0;
}

.section-hero .hero-item {
    user-select: none;
    border-radius: 0.45rem;
    overflow: hidden;
    position: relative;
}

.section-hero .slider-theme .slider-pagination {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .section-hero {
        padding: 0;
    }

    .section-hero .hero-item {
        border-radius: 0;
    }
}


.section-introduction .introduction-heading {
    margin-bottom: 30px;
}

.section-introduction .introduction-heading .introduction-heading_title {
    font-size: 2em;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
}

.section-introduction .introduction-heading .introduction-heading_desc {
    color: var(--dark-color);
    font-size: 1.15em;
    margin-top: 12px;
}

.section-introduction .introduction-list {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.section-introduction .introduction-list .introduction-item {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
    width: 40%;
}

.section-introduction .introduction-list .introduction-item .introduction-item_icon {
    flex-shrink: 0;
    width: 56px;
    height: auto;
}

.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__title {
    font-size: 1.225em;
    font-weight: 700;
    color: var(--black-color);
}

.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc {
    color: var(--dark-color);
    font-size: 1em;
    margin-top: 4px;
}

.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc p:last-of-type,
.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc ol:last-of-type,
.section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__desc ul:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .section-introduction .introduction-list .introduction-item {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .section-introduction .introduction-heading .introduction-heading_title {
        font-size: 1.45em;
    }

    .section-introduction .introduction-heading .introduction-heading_desc {
        font-size: 1.075em;
    }

    .section-introduction .introduction-list .introduction-item .introduction-item_content .introduction-item_content__title {
        font-size: 1.15em;
    }
}

@media screen and (max-width: 768px) {
    .section-introduction .introduction-list {
        flex-wrap: wrap;
    }

    .section-introduction .introduction-list .introduction-item {
        width: 100%;
    }
}

.section-overview {
    background-color: var(--primary-color);
}

.section-overview .overview-item {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: var(--bs-white);
    height: 100%;
}

.section-overview .overview-item .overview-item_icon {
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.section-overview .overview-item .overview-item_content .overview-item_content__title {
    font-size: 1.225em;
    font-weight: 700;
    color: var(--black-color);
}

.section-overview .overview-item .overview-item_content .overview-item_content__desc {
    color: var(--dark-color);
    font-size: 1em;
    margin-top: 4px;
}

.section-overview .overview-item .overview-item_content .overview-item_content__desc p:last-of-type,
.section-overview .overview-item .overview-item_content .overview-item_content__desc ol:last-of-type,
.section-overview .overview-item .overview-item_content .overview-item_content__desc ul:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .section-overview .overview-item .overview-item_icon {
        width: 46px;
    }

    .section-overview .overview-item .overview-item_content .overview-item_content__title {
        font-size: 1.15em;
    }
}

.section-partner .partner-item {
    height: 100px;
    padding: 15px;
    border-radius: 12px;
    background: var(--bs-white);
    box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
}

.section-articles .section-articles_overlay {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    top: 0;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.section-articles .section-articles_overlay:after {
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--bs-black-rgb), 0.075);
    content: "";
}

.section-articles .swiper {
    padding: 0.5rem;
}

.article-card {
    border: 0;
    height: 100%;
    border-radius: 0.3rem;
}

.article-card .card-header {
    border: 0;
    position: relative;
    padding: 0;
    border-radius: 0.3rem;
    overflow: hidden;
}

.article-card .card-header::before {
    content: "";
    background-color: var(--bs-white);
    height: calc(100% + 150px);
    left: -40%;
    position: absolute;
    top: -75px;
    transform: rotate(35deg);
    transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
    opacity: 0;
}

.article-card:hover .card-header::before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.article-card .card-header img {
    transition: transform 1s cubic-bezier(.15, .75, .5, 1);
}

.article-card:hover .card-header img {
    transform: scale(1.05);
    opacity: 0.7;
}

.article-card .card-body {
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.article-card .card-body .card-title {
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.3;
    --line: 2;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--line);
    line-clamp: var(--line);
    -webkit-box-orient: vertical;
    color: var(--black-color);
    transition: var(--transition-default);
}

.article-card:hover .card-body .card-title {
    color: var(--primary-color);
}

.article-card .card-body .card-desc {
    color: var(--dark-color);
    font-weight: 400;
    --line: 3;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--line);
    line-clamp: var(--line);
    -webkit-box-orient: vertical;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.article-card .card-body .card-action {
    margin-top: auto;
    position: relative;
    padding-bottom: 5px;
    --color: #282d30;
    color: var(--color);
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 5px;
    z-index: 3;
    width: max-content;
}

.article-card .card-body .card-action:hover {
    --color: var(--primary-color);
    transition: var(--transition-default);
}

.article-card .card-body .card-action::before, .article-card .card-body .card-action::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    background-color: var(--color);
}

.article-card .card-body .card-action::before {
    transform: scaleX(1);
    transform-origin: 100% 50%;
    transition: transform .6s cubic-bezier(.165, .84, .44, 1) 0.3s;
}

.article-card .card-body .card-action::after {
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}

.article-card .card-body .card-action:hover:before {
    transform: scaleX(0);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}

.article-card .card-body .card-action:hover:after {
    transform: scaleX(1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1) 0.3s;
}

.article-card .card-body .card-date {
    font-size: 0.85em;
    padding: 6px 15px;
    width: max-content;
    position: absolute;
    left: -11px;
    top: 2px;
    z-index: 1;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.article-card .card-body .card-date::before {
    position: absolute;
    content: "";
    top: -10px;
    left: 0;
    color: var(--primary-color);
    border-bottom: solid currentColor;
    border-top: solid transparent;
    border-right: solid currentColor;
    border-left: solid transparent;
    border-width: 5px;
}

@media screen and (max-width: 991px) {
    .article-card .card-body .card-title {
        font-size: 1.075em;
    }
}

.section-highlight {
    background-color: var(--primary-color);
}

.section-highlight .highlight-item {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.section-highlight .highlight-item .highlight-item_icon {
    padding: 15px;
    border-radius: 12px;
    background: var(--bs-white);
    box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
    width: max-content;
}

.section-highlight .highlight-item .highlight-item_icon img {
    width: 32px;
}

.section-highlight .highlight-item .highlight-item_content .highlight-item_content__title {
    font-size: 1.225em;
    font-weight: 700;
    color: var(--bs-white);
}

.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc {
    color: var(--bs-white);
    font-size: 1em;
    margin-top: 4px;
}

.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc p:last-of-type,
.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc ol:last-of-type,
.section-highlight .highlight-item .highlight-item_content .highlight-item_content__desc ul:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .section-highlight .highlight-item .highlight-item_content .highlight-item_content__title {
        font-size: 1.15em;
    }
}

.footer {
    padding: 30px 0 15px 0;
    border-top: 5px solid var(--primary-color);
}

.footer .footer-logo {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    height: 80px;
    margin-top: 0;
}

.footer .footer-info_image {
    width: 180px;
    height: 69px;
}

.footer .footer-map iframe {
    height: 200px;
    width: 100% !important;
}

.footer .footer-item .footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 45px;
}

.footer .footer-item .footer-info .footer-info_name {
    font-size: 1.3em;
    color: var(--black-color);
    font-weight: 700;
}

.footer .footer-item .footer-info .footer-info_link {
    color: var(--dark-color);
    font-weight: 400;
    font-size: 1.075em;
}

.footer .footer-item .footer-info .footer-info_link span {
    font-weight: 700;
}

.footer .footer-item .footer-info .footer-info_link span i {
    margin-right: 4px;
    color: var(--primary-color);
    width: 16px;
}

.footer .footer-item .footer-info .footer-info_link a {
    color: var(--dark-color);
}

.footer .footer-item .footer-info .footer-info_link a:hover {
    color: var(--primary-color);
}


.footer .footer-item .footer-title {
    font-size: 1.3em;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.footer .footer-item .footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
}

.footer .footer-item .footer-list .footer-list_item {
    width: calc(50% - 4px);
    color: var(--dark-color);
    font-weight: 400;
    font-size: 1.075em;
}

.footer .footer-item .footer-list .footer-list_item:hover {
    color: var(--primary-color);
}

.footer .footer-item .footer-social {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer .footer-item .footer-social [class*=footer-social_] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background-color: var(--primary-color);
    transition: var(--transition-default);
}

.footer .footer-item .footer-social .footer-social_youtube {
    background-color: #CB2027;
}

.footer .footer-item .footer-social .footer-social_facebook {
    background-color: #365493;
}

.footer .footer-item .footer-social .footer-social_tiktok {
    background-color: #010101;
}

.footer .footer-item .footer-social .footer-social_mess {
    background-color: #0a7cff;
}

.footer .footer-item .footer-social .footer-social_instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer .footer-item .footer-social [class*=footer-social_]:hover {
    transform: translateY(-3px);
}

.footer .footer-item .footer-image {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.075em;
    font-weight: 700;
    color: var(--dark-color);
}

.footer .footer-item .footer-image img {
    height: 36px;
}

.footer .footer-item + .footer-item {
    margin-top: 24px;
}

.footer .footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--bs-gray-100);
}

.footer .footer-copyright {
    color: var(--gray-color);
}

@media screen and (max-width: 991px) {
    .footer .footer-logo {
        height: 60px;
    }

    .footer .footer-item .footer-info .footer-info_name,
    .footer .footer-item .footer-title {
        font-size: 1.15em;
    }

    .footer .footer-item .footer-info .footer-info_link,
    .footer .footer-item .footer-list .footer-list_item {
        font-size: 1em;
    }

    .footer .footer-copyright {
        font-size: 0.925em;
    }
}

.page-contact {
    background-color: #f5f5fa;
}

.contact-item {
    position: relative;
    display: flex;
    border-radius: 5px;
    height: 100%;
    gap: 15px;
    transition: var(--transition-default);
}

.contact-item .contact-item_icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--bs-white);
    font-size: 1.2em;
}

.contact-item .contact-item_title {
    margin-bottom: 3px;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--bs-gray-800);
}

.contact-item .contact-item_value {
    color: var(--bs-gray-600);
    font-size: 1em;
    font-weight: 500;
    transition: var(--transition-default);
}

.contact-item:hover .contact-item_value {
    color: var(--primary-color);
}

.contact-map iframe {
    vertical-align: middle;
    height: 500px;
    width: 100%;
}

.contact-form label {
    font-weight: 500;
    color: #000;
    font-size: 1.1em;
    margin-bottom: 4px;
}

.contact-form .form-control {
    font-size: 1.05em;
    color: #000;
}

.contact-form input.form-control {
    min-height: 44px;
}

.contact-form .form-control::placeholder {
    color: var(--bs-gray-600);
}

.contact-form .form-control.is-valid, .contact-form .was-validated .form-control:valid {
    padding-right: .75rem;
    border-color: #ced4da;
    background-image: none;
}

@media (max-width: 992px) {
    .contact-item {
        gap: 10px;
    }

    .contact-item .contact-item_icon {
        width: 45px;
        height: 45px;
        font-size: 1em;
    }

    .contact-item .contact-item_title {
        font-size: 1em;
    }
}

.section-account {
    background-color: #f5f5fa;
}

.account-form {
    padding: 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
}

@media screen and (max-width: 767px) {
    .account-form {
        padding: 30px 15px;
    }
}

.frm-validation .frm-validation_item {
    position: relative;
}

.frm-validation .frm-validation_item .frm-validation_label {
    font-weight: 500;
    color: #27272A;
    margin-bottom: 5px;
    font-size: 1em;
}

.frm-validation .frm-validation_item .form-control {
    border-radius: 5px;
    border: 0 !important;
    background-color: #f1f1f1;
    height: 44px;
    line-height: 44px;
    font-size: 1em;
}

.frm-validation .frm-validation_item .form-control.disabled,
.frm-validation .frm-validation_item .form-control:disabled {
    cursor: not-allowed;
}

.frm-validation .frm-validation_item .btn-pass {
    position: absolute;
    right: 5px;
    top: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-left: 1px solid var(--gray-200);
    cursor: pointer;
    z-index: 2;
    background-color: transparent;
    color: #71717A;
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item .btn-pass + .form-control {
    padding-right: 50px;
}

.frm-validation .frm-validation_item textarea.form-control {
    height: auto;
}

.frm-wrap_pass .form-control.is-invalid, .was-validated .frm-wrap_pass .form-control:invalid {
    background-position: right calc(0.375em + 0.1875rem + 50px) center;
}

.frm-validation .frm-validation_item .form-control.is-valid, .frm-validation.was-validated .frm-validation_item .form-control:valid {
    padding-right: .75rem;
    background-image: none;
}

.frm-validation .frm-validation_item .form-control::-webkit-input-placeholder {
    color: #71717A;
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item .form-control::-moz-placeholder {
    color: #71717A;
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item .form-control:-ms-input-placeholder {
    color: #71717A;
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item .form-control::-ms-input-placeholder {
    color: #71717A;
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item .form-control::placeholder {
    color: #71717A;
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item .frm-validation_valid {
    font-size: var(--size-default);
}

.frm-validation .frm-validation_item.frm-validation_button {
    margin-top: 35px !important;
}

.frm-validation .frm-validation_item.frm-validation_button .button-theme {
    padding: 11px 40px;
    border-radius: 100px;
    width: 100%;
}

.frm-validation .frm-validation_item + .frm-validation_item {
    margin-top: 25px;
}

.frm-validation .frm-validation_desc a {
    color: #27272A;
    font-weight: 700;
}

.frm-validation .frm-validation_desc a:hover {
    color: var(--primary-color);
}

.frm-validation .frm-validation_line {
    display: block;
    position: relative;
    height: 1px;
    width: 100%;
    margin: 35px 0;
    background-color: #f1f1f1;
}

.frm-validation .frm-validation_line > span {
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--bs-white);
    padding-left: 10px;
    padding-right: 10px;
    color: #808080;
    font-size: 1em;
    top: -10px;
}

.frm-validation .frm-validation_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.frm-validation .frm-validation_buttons .frm-validation_button__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(50% - 10px);
    height: 48px;
    border-radius: 8px;
    background-color: rgba(238, 151, 45, .25);
    border: 1px solid rgba(238, 151, 45, .6);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: .5px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    font-size: var(--size-default);
}

.frm-validation .frm-validation_buttons .frm-validation_button__item img {
    width: 22px;
    height: 22px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
}

.frm-validation .frm-validation_buttons .frm-validation_button__item:hover,
.frm-validation .frm-validation_buttons .frm-validation_button__item:active {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--bs-white);
}

@media (max-width: 576px) {
    .frm-validation .frm-validation_buttons {
        flex-direction: column;
        gap: 6px;
    }

    .frm-validation .frm-validation_buttons .frm-validation_button__item {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9em;
        width: 100%;
    }
}

.section-breadcrumb {
    padding: 20px 0;
    background-color: var(--bs-white);
    border-bottom: 1px solid var(--bs-gray-200);
}

.section-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.section-breadcrumb .breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.section-breadcrumb .breadcrumb .breadcrumb-item > a {
    display: inline-block;
    align-items: center;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 100%;
    color: #262626;
    text-transform: capitalize;
}

.section-breadcrumb .breadcrumb .breadcrumb-item.active,
.section-breadcrumb .breadcrumb .breadcrumb-item.active > a {
    color: #6C6E71;
    pointer-events: none;
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 5 Pro";
    font-size: 0.625rem;
    vertical-align: middle;
    color: #6C6E71;
    content: '\f054';
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .section-breadcrumb {
        padding: 15px 0;
    }

    .section-breadcrumb .breadcrumb .breadcrumb-item {
        display: none;
    }

    .section-breadcrumb .breadcrumb .breadcrumb-item:nth-child(1),
    .section-breadcrumb .breadcrumb .breadcrumb-item:nth-child(2) {
        display: flex;
    }
}

.section-pagination {
    padding-top: 40px;
}

.section-pagination .pagination {
    margin-bottom: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-pagination .pagination li {
    margin: 0 7.5px;
}

.section-pagination .pagination li a {
    padding: 0;
    width: 20px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    color: #27272A;
    border: 0;
    letter-spacing: 1px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section-pagination .pagination .page-item .page-link {
    border-radius: 50%;
    background: #D4D4D8;
    height: 30px;
    min-width: 30px;
    color: var(--bs-white);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0;
}

.section-pagination .pagination .page-item.page-arrow .page-link {
    border-radius: 0%;
    background: transparent;
    height: 30px;
    min-width: 1px;
    color: #27272A;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0;
    font-size: 1.5em;
}

.section-pagination .pagination .page-item.page-arrow .page-link:hover {
    background: transparent;
    color: var(--primary-color);
}

.section-pagination .pagination .page-item.pageactive .page-link,
.section-pagination .pagination .page-item .page-link:hover {
    background: var(--primary-color);
}

.page-category-article {
    background-color: #f5f5fa;
}

.article-inner .article-inner_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.article-inner .article-inner_shares {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bs-gray-200);
}

.article-inner .article-inner_shares .article-inner_metas {
    display: inline-flex;
    align-items: center;
    color: var(--bs-gray-600);
}

.article-inner .article-inner_shares .article-inner_metas .article-inner_meta__item + .article-inner_meta__item:before {
    content: '/';
    margin-right: 6px;
    padding-left: 10px;
}

.article-inner .article-inner_desc {
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.article-inner .article-inner_desc p:last-of-type,
.article-inner .article-inner_desc ol:last-of-type,
.article-inner .article-inner_desc ul:last-of-type {
    margin-bottom: 0;
}

.detailContent * {
    font-family: var(--font-theme);
}

.detailContent h1,
.detailContent h2 *,
.detailContent h3,
.detailContent h3 *,
.detailContent h4,
.detailContent h4 *,
.detailContent h5,
.detailContent h5 *,
.detailContent h6,
.detailContent h6 * {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.detailContent b,
.detailContent strong {
    font-weight: 600 !important;
}

.detailContent p {
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.detailContent h1,
.detailContent h1 * {
    font-size: 1.5rem;
}

.detailContent h2,
.detailContent h2 * {
    font-size: 1.4rem;
}

.detailContent h3,
.detailContent h3 * {
    font-size: 1.25rem;
}

.detailContent h4,
.detailContent h4 * {
    font-size: 1.125rem;
}

.detailContent h5,
.detailContent h5 *,
.detailContent h6,
.detailContent h6 * {
    font-size: 1rem;
}

.detailContent a,
.detailContent a * {
    color: var(--bs-primary);
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent iframe {
    max-width: 100% !important;
}

@media (max-width: 991px) {
    .article-inner .article-inner_title {
        font-size: 1.3rem;
    }

    .detailContent h2,
    .detailContent h2 * {
        font-size: 1.2rem;
    }

    .detailContent h3,
    .detailContent h3 * {
        font-size: 1.15rem;
    }

    .detailContent h4,
    .detailContent h4 * {
        font-size: 1.1rem;
    }

    .detailContent h5,
    .detailContent h5 * {
        font-size: 1rem;
    }

    .detailContent h6,
    .detailContent h6 * {
        font-size: 0.875rem;
    }
}

.page-category {
    background-color: #f5f5fa;
}

@media screen and (max-width: 991px) {
    .page-category .section-heading {
        flex-direction: column;
    }

    .page-category .section-heading .filter-button {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        padding: 0;
        outline: none;
        background-color: var(--primary-color);
        color: var(--bs-white);
    }
}

.sidebar-filter {
    background-color: var(--bs-white);
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 0.45rem
}

.sidebar-filter .search-clear {
    color: #0153ab;
    font-size: 13px;
    font-weight: 400;
}

.sidebar-filter .search-clear:hover {
    color: var(--primary-hover);
}

.sidebar-filter .sidebar-filter_close {
    width: 28px;
    height: 28px;
    background-color: #d5d5d5;
    color: var(--bs-white);
}

.sidebar-filter .sidebar-filter_close:hover {
    background-color: var(--primary-hover);
}

.sidebar-filter .sidebar-filter_close:hover i {
    transform: rotate(180deg);
}

.sidebar-filter .sidebar-filter_header {
    padding: 15px;
    border-bottom: 1px solid var(--bs-gray-300);
    width: 100%;
    font-size: 15px;
}

.sidebar-filter .sidebar-filter_body {
    padding: 15px;
}

.sidebar-filter .sidebar-filter_item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bs-gray-200);
}

.sidebar-filter .sidebar-filter_title {
    font-size: 1.075em;
    font-weight: 600;
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.sidebar-filter .sidebar-filter_header .sidebar-filter_title {
    color: #232323;
    font-size: 1.15em;
    margin-bottom: 0;
}

.sidebar-filter .sidebar-filter_title .toggle-square {
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-700);
}

.sidebar-filter .sidebar-filter_title .toggle-square i {
    transition: var(--transition-default);
}

.sidebar-filter .sidebar-filter_title .toggle-square[aria-expanded=false] i {
    transform: rotate(180deg);
}

.sidebar-filter .sidebar-filter_list ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-filter .sidebar-filter_list .form-check .form-check-input {
    width: 1.15em;
    height: 1.15em;
    margin-top: 3px;
}

.sidebar-filter .sidebar-filter_list .form-check .form-check-label {
    color: #535253;
    font-size: 1.075em;
    margin-left: 2px;
    cursor: pointer;
    user-select: none;
}

.sidebar-filter .sidebar-filter_list .form-check .form-check-input:checked + .form-check-label {
    color: #121212;
}

.sidebar-filter .sidebar-filter_select .form-select {
    font-size: 14px;
    border-radius: 25px;
    padding: 7px 12px;
}

.sidebar-filter .toggle-arrow {
    width: 20px;
    height: 18px;
    font-size: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-700);
}

.sidebar-filter .toggle-arrow[aria-expanded='true'] {
    color: var(--bs-gray-700);
}

.sidebar-filter .toggle-arrow[aria-expanded='true'] i {
    transform: rotate(180deg);
}

.sidebar-filter .sidebar-filter_body .sidebar-filter_item__radio .sidebar-filter_expand {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #F1F5F9;
}

.sidebar-filter .sidebar-filter_body .sidebar-filter_expand {
    text-align: center;
    line-height: 1;
    margin-top: 5px;
}

@keyframes bgZoomIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

@media screen and (max-width: 991px) {
    .sidebar-filter {
        position: fixed;
        top: 0;
        left: 0;
        max-width: 290px;
        width: 100%;
        height: 100vh;
        z-index: 30;
        background-color: var(--bs-white);
        border-right: 1px solid rgba(119, 119, 119, 0.12);
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        border-radius: 0 8px 8px 0 !important;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
    }

    .sidebar-filter .sidebar-filter_body {
        height: 100%;
        overflow-y: auto;
    }

    .is-show .sidebar-filter {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .sidebar-filter_overlay {
        overflow: hidden;
        background-color: rgb(23 24 26 / 83%);
        backdrop-filter: blur(4px);
        z-index: 20;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }

    .is-show .sidebar-filter_overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.section-sort {
    color: #32363af5;
}

.section-sort .product-sort {
    width: 260px;
    color: var(--bs-gray-700);
}

.section-sort .title {
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-gray-300);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-default);
    color: #121212;
    height: 42px;
}

.section-sort .list-price-sort {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 11;
    background-color: var(--bs-white);
    border-radius: 5px;
    transform: translateY(3px);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sort .list-price-sort {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-sort.sort .title {
    border: 1px solid var(--primary-color);
}

.section-sort .list-price-sort > li > a {
    padding: 15px 20px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    transition: var(--transition-default);
    color: var(--black-color);
    border-left: 3px solid transparent;
}

.section-sort .list-price-sort > li:hover > a,
.section-sort .list-price-sort > li > a.active {
    border-left-color: var(--primary-color);
}

.section-sort .list-price-sort > li > a.active {
    color: var(--primary-color);
}

.section-sort .list-price-sort > li + li {
    border-top: 1px solid var(--bs-gray-100);
}


.page-cart {
    padding: 40px 0;
    font-size: 14px;
    background-color: var(--light-color);
}

.cart-inner {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(97, 97, 97, 0.12), 0 2px 4px rgba(97, 97, 97, 0.12);
    box-shadow: 0 1px 2px rgba(97, 97, 97, 0.12), 0 2px 4px rgba(97, 97, 97, 0.12);
    background-color: #fff;
}

.cart-inner .cart-boxsize {
    padding: 14px 15px 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #9e9e9e;
    font-size: 1em;
    letter-spacing: 0.3px;
}

.cart-inner .cart-thumb {
    width: 14%;
}

.cart-inner .cart-product {
    width: 29%;
}

.cart-inner .cart-price {
    width: 18%;
}

.cart-inner .cart-quantity {
    width: 21%;
}

.cart-inner .cart-total {
    width: 18%;
}

.cart-inner .cart-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
    background-color: rgba(0, 0, 0, .015);
}

.cart-inner .cart-header .cart-boxsize {
    padding: 18px 15px 14px;
    color: #171616;
    text-transform: uppercase;
    font-weight: 700;
}

.cart-inner .cart-body .cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
}

.cart-inner .cart-body .cart-item:last-child {
    border-bottom: 0;
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image:before {
    display: block;
    content: "";
    padding-top: 100%;
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .8;
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image .cart-remove {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image .cart-remove > .btn-remove {
    height: 24px;
    width: 24px;
    border: 0;
    border-radius: 50%;
    background-color: #EF4444;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    stroke: #fff;
    padding: 5px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.cart-inner .cart-body .cart-item .cart-thumb .cart-image .cart-remove > .btn-remove:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cart-inner .cart-body .cart-item .cart-product .cart-title {
    color: #171616;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 1.075em;
}

.cart-inner .cart-body .cart-item .cart-product .cart-title:hover {
    color: var(--primary-color);
}

.cart-inner .cart-body .cart-item .cart-product .cart-property {
    margin-top: 5px;
    color: #858181;
    font-size: .95em;
}

.cart-inner .cart-body .cart-item .cart-product .cart-property b {
    color: #171616;
}

.cart-inner .cart-body .cart-item .cart-price {
    font-size: 1.1em;
    color: #171616;
}

.cart-inner .cart-body .cart-item .cart-price .text-decoration-line-through {
    opacity: 0.6;
}

.cart-inner .cart-body .cart-item .cart-quantity .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.cart-inner .cart-body .cart-item .cart-quantity .quantity .quantity-button {
    border-radius: 5px;
    height: 36px;
    width: 36px;
    border: 1px solid #71717A;
    color: #71717A;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.1em;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cart-inner .cart-body .cart-item .cart-quantity .quantity .quantity-button svg {
    width: 12px;
    height: 12px;
    stroke: #27272A;
}

.cart-inner .cart-body .cart-item .cart-quantity .quantity .quantity-button:hover {
    background: #F8FAFC;
}

.cart-inner .cart-body .cart-item .cart-quantity .quantity .quantity-button:active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.cart-inner .cart-body .cart-item .cart-quantity .quantity input {
    border: 1px solid #71717A;
    color: #71717A;
    border-radius: 5px;
    padding: 5px;
    width: 60px;
    height: 36px;
    margin: 0 5px;
    text-align: center;
    font-size: 1.1em;
}

.cart-inner .cart-body .cart-item .cart-total {
    font-size: 1.1em;
    color: #171616;
    font-weight: 700;
}

.cart-sidebar {
    background-color: #fff;
    padding: 0 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgb(97 97 97 / 12%), 0 2px 4px rgb(97 97 97 / 12%);
    box-shadow: 0 1px 2px rgb(97 97 97 / 12%), 0 2px 4px rgb(97 97 97 / 12%);
    border-radius: 5px;
}

.cart-sidebar + .cart-sidebar {
    margin-top: 25px;
}

.cart-sidebar .cart-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
    padding: 15px 0 13px;
    font-size: 1.2em;
    color: #171616;
    font-weight: 700;
}

.cart-sidebar .cart-title > span {
    color: #EF4444;
    font-weight: 400;
    font-size: .85em;
}

.cart-sidebar .cart-list {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
}

.cart-sidebar .cart-list .cart-list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.1em;
    padding-bottom: 25px;
    color: #858181;
    gap: 20px;
}

.cart-sidebar .cart-list .cart-list_item .value {
    font-weight: 700;
    color: #171616;
    text-align: right;
}

.cart-sidebar .cart-list .cart-list_item:last-child {
    padding-bottom: 0;
}

.cart-sidebar .cart-desc {
    color: #b0adad;
    font-size: .95em;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
}

.cart-sidebar .cart-button {
    padding: 15px 0 10px;
}

.cart-sidebar .cart-button > .button-theme {
    width: 100%;
    padding: 10px 15px;
    border-radius: 100px;
}

.cart-sidebar .cart-link {
    text-align: center;
    padding-bottom: 15px;
}

.cart-sidebar .cart-link > a {
    font-size: .9em;
    color: #777373;
    text-decoration: underline !important;
}

.cart-sidebar .cart-link > a:hover {
    color: #171616;
}

.cart-sidebar .cart-products .cart-product_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.025);
}

.cart-sidebar .cart-products .cart-product_item .cart-product_content {
    padding: 10px 10px 10px 0;
    width: 60%;
    color: #171616;
}

.cart-sidebar .cart-products .cart-product_item .cart-product_content .title {
    margin-bottom: 5px;
}

.cart-sidebar .cart-products .cart-product_item .cart-product_content .title span {
    color: #EF4444;
    font-weight: 700;
}

.cart-sidebar .cart-products .cart-product_item .cart-product_content .property {
    font-size: .95em;
    color: #858181;
}

.cart-sidebar .cart-products .cart-product_item .cart-product_content .property b {
    color: #171616;
}

.cart-sidebar .cart-products .cart-product_item .cart-product_total {
    padding: 10px 0 10px 10px;
    width: 40%;
    text-align: right;
    font-weight: 700;
    color: #171616;
}

.cart-from {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgb(97 97 97 / 12%), 0 2px 4px rgb(97 97 97 / 12%);
    box-shadow: 0 1px 2px rgb(97 97 97 / 12%), 0 2px 4px rgb(97 97 97 / 12%);
    border-radius: 5px;
}

.cart-from .cart-from_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
    background-color: rgba(0, 0, 0, .015);
    padding: 15px 15px 13px;
    font-size: 1.2em;
    color: #171616;
    font-weight: 700;
}


.cart-from .cart-from_header > span {
    font-weight: 400;
    color: #717177;
    font-size: .85em;
}

.cart-from .cart-from_header > span a:hover {
    color: var(--primary-color);
}

.cart-from .cart-from_body {
    padding: 15px;
}

.cart-from .cart-from_body .form-item {
    position: relative;
}

.cart-from .cart-from_body .form-item > label {
    font-size: 1em;
    font-weight: 600;
    color: var(--bs-gray-900);
    margin-bottom: 7px;
}

.cart-from .cart-from_body .form-item > .form-control,
.cart-from .cart-from_body .form-item > .form-select {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .075);
    border-radius: .25rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding: 14px 15px 14px 15px;
    background-color: #fff;
    font-size: 1em;
}


.cart-from .cart-from_body .form-item > .btn-pass {
    position: absolute;
    right: 5px;
    top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-left: 1px solid var(--gray-200);
    cursor: pointer;
    z-index: 2;
    background-color: transparent;
    color: var(--gray-500);
    font-size: var(--size-default);
}

.cart-from .cart-from_body .form-item > .btn-pass + .form-control {
    padding-right: 50px;
}

.was-validated .cart-from .cart-from_body .form-item > .btn-pass + .form-control {
    background-image: none;
}

.cart-from .cart-from_body .form-item > .form-control.is-valid, .was-validated .cart-from .cart-from_body .form-item > .form-control:valid {
    background-image: none;
    padding-right: 15px;
}

.cart-from .cart-from_body .section-text__checkout .text-checkout {
    background-color: #edf8ed;
    border-radius: 5px;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid rgb(var(--primary-rgb), 0.6);
}

.cart-from .cart-from_body .section-text__checkout .text-checkout p:last-child {
    margin-bottom: 0;
}

.cart-from .cart-from_body .form-desc {
    font-size: 1em;
    color: #48484b;
    font-weight: 700;
}

.cart-from .cart-from_body .form-desc b {
    color: #EF4444;
}

.cart-payments {
    margin-top: 25px;
}

.cart-payments .cart-payment_item {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgb(97 97 97 / 12%), 0 2px 4px rgb(97 97 97 / 12%);
    box-shadow: 0 1px 2px rgb(97 97 97 / 12%), 0 2px 4px rgb(97 97 97 / 12%);
    border-radius: 5px;
    height: 100%;
}

.cart-payments .cart-payment_item .cart-payment_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .025);
    background-color: rgba(0, 0, 0, .015);
    padding: 15px 15px 13px;
    font-size: 1.2em;
    color: #171616;
    font-weight: 700;
}

.cart-payments .cart-payment_item .cart-payment_list {
    padding: 0 15px;
    position: relative;
    min-height: 100px;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item {
    padding: 15px 0;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 1.075em;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    background: rgba(238, 151, 45, 0.1);
    color: var(--primary-color);
    cursor: pointer;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .content input {
    display: none;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .content .value-empty {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 10px;
    border-radius: 50%;
    background-color: #fff;
    height: 25px;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 1px 2px rgba(97, 97, 97, 0.2), 0 2px 4px rgba(97, 97, 97, 0.2);
    box-shadow: 0 1px 2px rgba(97, 97, 97, 0.2), 0 2px 4px rgba(97, 97, 97, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .content input:checked + .value-empty {
    opacity: 1;
    visibility: visible;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .content .value-empty svg {
    stroke: var(--bs-success);
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .content .value {
    font-weight: 700;
    color: #121212;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item .desc {
    font-size: 1.075em;
    color: #515156;
    padding: 12px 15px;
}

.cart-payments .cart-payment_item .cart-payment_list .cart-payment_list__item + .cart-payment_list__item {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
    .cart-inner .cart-body .cart-item {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px;
    }

    .cart-inner .cart-body .cart-item .cart-thumb {
        width: 30%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding: 0;
    }

    .cart-inner .cart-body .cart-item .cart-product {
        width: 60%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 0 0 0 10px;
    }

    .cart-inner .cart-body .cart-item .cart-quantity {
        width: 50%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        padding: 0;
        position: relative;
        top: 12px;
    }

    .cart-inner .cart-body .cart-item .cart-quantity .quantity input {
        width: 80px;
    }

    .cart-inner .cart-body .cart-item .cart-price {
        width: 50%;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        padding: 0;
        text-align: right;
    }

    .cart-inner .cart-body .cart-item .cart-total {
        width: 50%;
        padding: 0;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        text-align: right;
        margin-left: auto;
    }
}

.detail-product .detail-product_name {
    font-size: 1.7em;
    font-weight: 700;
    color: var(--bs-gray-900);
    line-height: 1.5;
}

.detail-product .detail-product_description {
    font-size: 1em;
    color: #6C6E71;
}

.detail-product .detail-product_categories {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bs-gray-400);
}

.detail-product .detail-product_categories + .detail-product_categories {
    margin-top: 8px;
    padding-top: 0;
    border-top: 0;
}

.detail-product .detail-product_categories > h3 {
    font-size: 1em;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 0;
}

.detail-product .detail-product_categories > ul {
    align-items: baseline;
    padding-left: 0.5rem;
}

.detail-product .detail-product_categories > ul > li {
    display: inline-block;
    padding: 0 0.25rem;
}

.detail-product .detail-product_categories > ul > li + li {
    display: grid;
    grid-template-columns: 0 1fr;
    grid-gap: 1rem;
    align-items: center;
}

.detail-product .detail-product_categories > ul > li + li::before {
    content: '/';
    color: var(--primary-color);
}

.detail-product .detail-product_categories > ul > li > a {
    color: var(--primary-color);
    white-space: nowrap;
}

.detail-product .detail-product_properties {
    margin-top: 16px;
    border: 1px solid #93d796;
    font-size: 1em;
    color: #303134;
}

.detail-product .detail-product_properties .detail-product_properties__item {
    display: flex;
    background-color: #effdef30;
    padding: 12px;
}

.detail-product .detail-product_properties .detail-product_properties__item:nth-child(odd) {
    background-color: #e8f5e9;
}

.detail-product .detail-product_properties .detail-product_properties__item .detail-product_properties__item___title {
    flex-shrink: 0;
    width: 140px;
    font-weight: 700;
    color: #262626;
}

.detail-product .detail-product_properties .detail-product_properties__item .detail-product_properties__item___text {
    border-left: 1px solid #cbcdcb47;
    padding-left: 12px;
}

.detail-product .detail-product_images .detail-product_images__photo#sliderPhoto {
    padding: 10px;
    border-radius: 0.45em;
    overflow: hidden;
    border: 1px solid var(--bs-gray-300);
}

.detail-product .detail-product_images .detail-product_images__photo .detail-product_images__item {
    position: relative;
    overflow: hidden;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.detail-product .detail-product_images .detail-product_images__photo + .detail-product_images__photo {
    margin-top: 10px;
}

.detail-product .detail-product_images .detail-product_images__photo + .detail-product_images__photo .detail-product_images__item {
    padding: 10px;
    border-radius: 0.45em;
    overflow: hidden;
    border: 1px solid var(--bs-gray-300);
    transition: var(--transition-default);
    cursor: pointer;
}

.detail-product .detail-product_images .detail-product_images__photo + .detail-product_images__photo .swiper-slide-thumb-active .detail-product_images__item {
    border: 1px solid var(--primary-color);
}

.detail-product .detail-product_price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6em;
    color: #9a9aa1;
    margin-top: 16px;
}

.detail-product .detail-product_price .detail-product_price__outstock,
.detail-product .detail-product_price .detail-product_price__current {
    color: #d70018;
    font-weight: 700;
}

.detail-product .detail-product_price .detail-product_price__old {
    text-decoration: line-through;
    font-size: 16px;
}

.detail-product .detail-product_price .detail-product_price__percent {
    font-size: 12px;
    background-color: #d70018;
    color: var(--bs-white);
    border-radius: 4px;
    font-weight: 700;
    padding: 3px 6px;
}

.detail-product .detail-product_quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.detail-product .detail-product_quantity .detail-product_quantity__title {
    font-size: 1em;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 0;
    margin-right: 12px;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .quantity .quantity-button {
    border-radius: 5px;
    height: 36px;
    width: 36px;
    border: 1px solid #D4D4D8;
    color: #71717A;
    background: var(--bs-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.45em;
    cursor: pointer;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .quantity .quantity-button svg {
    width: 12px;
    height: 12px;
    stroke: #27272A;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .quantity .quantity-button:hover {
    background: #f4f4f4;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .quantity .quantity-button:active {
    background: var(--primary-color);
    color: var(--bs-white);
    border-color: var(--primary-color);
}

.detail-product .detail-product_quantity .detail-product_quantity__item .quantity input {
    border: 1px solid #D4D4D8;
    color: #71717A;
    border-radius: 5px;
    padding: 5px;
    width: 100px;
    height: 36px;
    margin: 0 5px;
    text-align: center;
    font-size: 1.45em;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .button-theme {
    padding: 10px 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    flex-direction: row;
}

.detail-product .detail-product_quantity .detail-product_quantity__item .button-theme svg {
    width: 17px;
    height: 17px;
    margin-right: 6px;
}

.detail-product .detail-product_quantity .detail-product_quantity__item + .detail-product_quantity__item {
    margin-left: 10px;
}

.html-height .html-height__desc {
    max-height: 500px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in;
}

.html-height .html-height__desc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0),
            #fff 85%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.html-height .html-height__desc.is-open {
    max-height: 9999px;
}

.html-height .html-height__desc.is-open::after {
    opacity: 0;
}

.html-height .html-height__button {
    background: none;
    border: none;
    color: var(--primary-color);
    text-transform: capitalize;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration-line: underline;
    padding: 0;
    display: flex;
    margin: 0 auto;
}

.html-height .html-height__button.is-hidden {
    display: none;
}

@media screen and (max-width: 991px) {
    .detail-product .detail-product_name {
        font-size: 1.45em;
    }

    .detail-product .detail-product_description {
        font-size: 1em;
    }

    .detail-product .detail-product_price {
        font-size: 1.3em;
    }

    .detail-product .detail-product_properties .detail-product_properties__item {
        padding: 8px 10px;
    }

    .detail-product .detail-product_quantity .detail-product_quantity__item .quantity .quantity-button {
        width: 32px;
        height: 32px;
    }

    .detail-product .detail-product_quantity .detail-product_quantity__item .quantity input {
        height: 32px;
    }

    .detail-product .detail-product_quantity .detail-product_quantity__item .button-theme {
        padding: 8px 20px;
        font-size: 1em;
    }
}

.section-products_viewed {
    background-color: var(--bs-white);
}

.comment-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid var(--bs-gray-300);
}

.comment-title {
    color: #27272A;
    font-weight: 600;
    font-size: 1.075em;
}

.comment-overview .comment-overview_desc {
    color: #71717A;
    font-weight: 400;
    font-size: 1rem;
}

.comment-overview .comment-overview_progress {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
    max-width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment-overview .comment-overview_progress .progress-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    background: -o-radial-gradient(closest-side, #fff 85%, transparent 0 99.9%, #fff 0), conic-gradient(var(--primary-color), calc(var(--value) * 1%), #f1f1f1 0);
    background: radial-gradient(closest-side, #fff 85%, transparent 0 99.9%, #fff 0), conic-gradient(var(--primary-color), calc(var(--value) * 1%), #f1f1f1 0);
    margin: 15px 0;
}

.comment-overview .comment-overview_progress .progress-inner .progress-inner_desc {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    white-space: nowrap;
    color: #27272A;
    font-size: 1em;
    font-weight: 500;
}

.comment-overview .comment-overview_progress .progress-inner .progress-inner_desc b {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
}

.comment-overview .comment-overview_timeline {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px;
}

.comment-overview .comment-overview_timeline .timeline-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    position: relative;
}

.comment-overview .comment-overview_timeline .timeline-item .timeline-item_title {
    width: 90px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
    font-size: 1em;
    color: #27272A;
    font-weight: 500;
}

.comment-overview .comment-overview_timeline .timeline-item .timeline-item_bg {
    position: relative;
    display: block;
    overflow: hidden;
    height: 5px;
    width: 100%;
    background-color: #F4F4F5;
    border-radius: 5px;
}

.comment-overview .comment-overview_timeline .timeline-item .timeline-item_bg:before {
    position: absolute;
    content: "";
    display: block;
    overflow: hidden;
    z-index: 2;
    width: var(--value);
    top: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.comment-overview .comment-overview_timeline .timeline-item .timeline-item_count {
    min-width: 45px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 15px;
    font-size: .9rem;
    color: #71717A;
    text-align: right;
}

.comment-overview .comment-overview_timeline .timeline-button {
    margin-top: 15px;
}

.comment-overview .comment-overview_timeline .timeline-button .btn-theme_primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.comment-overview .comment-overview_images {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
    max-width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.comment-overview .comment-overview_images .images-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px -4px 0;
}

.comment-overview .comment-overview_images .images-grid .images-grid_item {
    width: 25%;
    padding: 4px;
    position: relative;
}

.comment-overview .comment-overview_images .images-grid .images-grid_item > a {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden;
}

.comment-overview .comment-overview_images .images-grid .images-grid_item > a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.comment-overview .comment-overview_images .images-grid .images-grid_item > a > img:hover {
    opacity: .6;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.comment-overview .comment-overview_images .images-grid .images-grid_item > a > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    background-color: rgb(0, 0, 0, .75);
    color: #fff;
}

.comment-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    margin-left: -15px;
    margin-right: -15px;
}

.comment-list .comment-list_sidebar {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
    max-width: 30%;
    padding: 0 15px;
}

.comment-list .comment-list_sidebar .list-sidebar_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(97, 97, 97, 0.2), 0 2px 4px rgba(97, 97, 97, 0.2);
    box-shadow: 0 1px 2px rgba(97, 97, 97, 0.2), 0 2px 4px rgba(97, 97, 97, 0.2);
    padding: 15px;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_header .sidebar-delete {
    padding-left: 10px;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_header .sidebar-delete a {
    font-size: .925em;
    border-bottom: 1px solid transparent;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_header .sidebar-delete a:hover {
    color: #27272A;
    border-bottom-color: #27272A;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-title {
    font-size: 1em;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter {
    margin-top: 15px;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item {
    position: relative;
    cursor: pointer;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-input {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 30px;
    color: #27272A;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-label:before {
    position: absolute;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    border: 1px solid #94A3B8;
    border-radius: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    cursor: pointer;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-label:after {
    content: "";
    display: block;
    position: absolute;
    border: 3px solid transparent;
    -webkit-transition: height 100ms ease-in, width 100ms ease-out 100ms, border-color cubic-bezier(0.165, 0.84, 0.44, 1) 100ms 100ms;
    -o-transition: height 100ms ease-in, width 100ms ease-out 100ms, border-color cubic-bezier(0.165, 0.84, 0.44, 1) 100ms 100ms;
    transition: height 100ms ease-in, width 100ms ease-out 100ms, border-color cubic-bezier(0.165, 0.84, 0.44, 1) 100ms 100ms;
    width: 0;
    height: 0;
    bottom: 10px;
    left: 3px;
    border-radius: 4px;
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-input:checked + .filter-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-input:checked + .filter-label::after {
    width: 8px;
    height: 13px;
    border-right-color: #fff;
    border-bottom-color: #fff;
    -webkit-transition: width 100ms ease-in, height 100ms ease-out 100ms, border-color cubic-bezier(0.165, 0.84, 0.44, 1) 100ms;
    -o-transition: width 100ms ease-in, height 100ms ease-out 100ms, border-color cubic-bezier(0.165, 0.84, 0.44, 1) 100ms;
    transition: width 100ms ease-in, height 100ms ease-out 100ms, border-color cubic-bezier(0.165, 0.84, 0.44, 1) 100ms;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item .filter-label span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    color: #E7BD47;
    font-size: 1.075em;
}

.comment-list .comment-list_sidebar .list-sidebar_inner .list-sidebar_body .comment-filter .comment-filter_item + .comment-filter_item {
    margin-top: 10px;
}

.comment-list .comment-list_inner {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
    max-width: 70%;
    padding: 0 15px;
}

.comment-list .comment-list_inner .list-inner_header {
    margin-bottom: 25px;
}

.comment-list .comment-list_inner .list-inner_header .comment-sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment-list .comment-list_inner .list-inner_header .comment-sort > .comment-sort_item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1em;
    position: relative;
    padding: 8px 0;
    color: #52525B;
}

.comment-list .comment-list_inner .list-inner_header .comment-sort > .comment-sort_item:before {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    right: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 2;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
}

.comment-list .comment-list_inner .list-inner_header .comment-sort > .comment-sort_item.active {
    color: var(--primary-color);
}

.comment-list .comment-list_inner .list-inner_header .comment-sort > .comment-sort_item.active:before {
    background-color: var(--primary-color);
    bottom: -2px;
    opacity: 1;
    visibility: visible;
}

.comment-list .comment-list_inner .list-inner_header .comment-sort > .comment-sort_item + .comment-sort_item {
    margin-left: 30px;
}

.comment-list .comment-item {
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(97, 97, 97, 0.2), 0 2px 4px rgba(97, 97, 97, 0.2);
    box-shadow: 0 1px 2px rgba(97, 97, 97, 0.2), 0 2px 4px rgba(97, 97, 97, 0.2);
    padding: 15px;
}

.comment-list .comment-item .comment-item_inner {
    margin: 0 -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.comment-list .comment-item .comment-item_inner .item-user {
    padding: 30px 15px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 180px;
    flex: 1 1 180px;
    max-width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment-list .comment-item .comment-item_inner .item-user .item-user_avatar {
    position: relative;
    margin-right: 8px;
    width: 50px;
    height: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.comment-list .comment-item .comment-item_inner .item-user .item-user_avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.comment-list .comment-item .comment-item_inner .item-user .item-user_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: .95rem;
    color: #27272A;
    width: 100%;
    overflow: hidden;
}

.comment-list .comment-item .comment-item_inner .item-user .item-user_info .item-user_name {
    font-weight: 600;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    font-size: 1rem;
}

.comment-list .comment-item .comment-item_inner .item-user .item-user_info .item-user_time {
    font-size: .85rem;
    font-style: italic;
    color: #71717A;
}

.comment-list .comment-item .comment-item_inner .item-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(100% - 360px);
    flex: 1 1 calc(100% - 360px);
    max-width: calc(100% - 360px);
    padding: 0 15px;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_title {
    font-size: 1rem;
    color: #27272A;
    font-weight: 700;
    margin-bottom: 8px;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_desc {
    line-height: 1.5;
    color: #71717A;
    font-size: .95rem;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 8px -4px 0;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_images .image {
    width: 20%;
    padding: 4px;
    position: relative;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_images .image > a {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_images .image > a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_images .image > a > img:hover {
    opacity: .6;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.comment-list .comment-item .comment-item_inner .item-content .item-content_images .image > a > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    background-color: rgb(0, 0, 0, .75);
    color: #fff;
}

.comment-list .comment-item .comment-item_inner .item-rating {
    padding: 30px 15px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 180px;
    flex: 1 1 180px;
    max-width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.comment-list .comment-item .comment-item_inner .item-rating .item-rating_value {
    background-color: #dff3e9;
    padding: 12px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    color: var(--primary-color);
    font-size: .85rem;
    font-weight: 400;
}

.comment-list .comment-item .comment-item_inner .item-rating .item-rating_value b {
    font-weight: 600;
    color: var(--primary-color);;
    font-size: 1.15rem;
    line-height: 1.2;
}

.comment-list .comment-item {
    margin-bottom: 25px;
}

.comment-list .comment-list_inner .section-pagination {
    margin-bottom: 25px;
    margin-top: 0;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form {
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgb(97 97 97 / 20%), 0 2px 4px rgb(97 97 97 / 20%);
    box-shadow: 0 1px 2px rgb(97 97 97 / 20%), 0 2px 4px rgb(97 97 97 / 20%);
    padding: 15px;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .comment-title {
    margin-bottom: 20px;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item {
    position: relative;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label {
    font-size: 1.25rem;
    padding-right: 5px;
    cursor: pointer;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked ~ label {
    color: #E7BD47;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked ~ label .far {
    font-weight: 900;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label:hover,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label:hover ~ label {
    color: #c59b08;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label:hover .far,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label:hover ~ label .far {
    font-weight: 900;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked + label:hover,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked + label:hover ~ label,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked ~ label:hover,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked ~ label:hover ~ label,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked + label:hover .far,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked + label:hover ~ label .far,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked ~ label:hover .far,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star input:checked ~ label:hover ~ label .far,
.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item.form-star label:hover ~ input:checked ~ label .far {
    font-weight: 900;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item .form-item_title {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #27272A;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item .form-item_input input {
    border: 1px solid #E4E4E7;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item .form-item_textarea textarea {
    border: 1px solid #E4E4E7;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .form-item .form-item_input input.is-valid,
.comment-list .comment-list_inner .list-inner_footer .comment-form .was-validated .form-item .form-item_input input:valid {
    padding-right: 10px;
    background-image: none;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .btn-theme_primary {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
}

.comment-list .comment-list_inner .list-inner_footer .comment-form .btn-theme_primary > span {
    background-color: var(--primary-hover);
    color: #fff;
}

.form-dropzone .dropzone {
    cursor: auto;
    min-height: unset;
    border: 0;
    padding: 0;
    background-color: #fff;
    display: -ms-grid;
    display: grid;
    grid-template-areas:
            "1 2 3 4 5 6"
            "1 7 8 9 10 11";
    -ms-grid-columns: auto 126px 126px 126px 126px 126px;
    grid-template-columns: auto 126px 126px 126px 126px 126px;
}

.form-dropzone .dropzone .dz-message {
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    grid-row: 1 / -1;
    display: block !important;
    text-align: left;
    padding-top: 5px;
}

.form-dropzone .dropzone .dz-message .dz-desc {
    background: var(--primary-color);
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.form-dropzone .dropzone .dz-desc:hover {
    background: var(--primary-hover);
}

.form-dropzone .dropzone .dz-message .dz-desc svg {
    height: 24px;
    width: 24px;
}

.form-dropzone .dropzone .dz-message .dz-desc .dz-desc_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
    line-height: 1.3;
}

.form-dropzone .dropzone .dz-message .dz-desc .dz-desc_content b {
    font-weight: 600;
}

.form-dropzone .dropzone .dz-preview {
    margin: 0;
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 127px;
    padding: 5px;
}

.form-dropzone .dropzone .dz-preview .dz-image {
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.form-dropzone .dropzone .dz-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.form-dropzone .dropzone .dz-preview .dz-remove {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    width: 22px;
    height: 22px;
    right: -25px;
    top: 5px;
    cursor: pointer;
    z-index: 11;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    border-radius: 50px;
    color: #27272A;
    text-decoration: none;
}

.form-dropzone .dropzone .dz-preview .dz-remove i {
    cursor: pointer;
}

.form-dropzone .dropzone .dz-preview:hover .dz-remove {
    right: 5px;
    opacity: 1;
    visibility: visible;
}

.form-dropzone .dropzone .dz-preview .dz-details {
    display: none;
}

.form-dropzone .dropzone .dz-preview .dz-progress {
    height: 4px;
    background-color: #14B8A6;
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .form-dropzone .dropzone {
        -ms-grid-columns: auto 100px 100px 100px 100px 100px;
        grid-template-columns: auto 100px 100px 100px 100px 100px;
    }

    .form-dropzone .dropzone .dz-message {
        white-space: nowrap;
    }

}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .comment-overview {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .comment-overview .comment-overview_progress {
        max-width: 50%;
        -webkit-box-flex: 1;
        flex: 1 1 50%;
        -ms-flex: 1 1 50%;
    }

    .comment-overview .comment-overview_timeline {
        max-width: 50%;
        -webkit-box-flex: 1;
        flex: 1 1 50%;
        -ms-flex: 1 1 50%;
    }

    .comment-overview .comment-overview_images {
        max-width: 100%;
        -webkit-box-flex: 1;
        flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

}

@media screen and (max-width: 991px) {
    .comment-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin: 0;
    }

    .comment-list .comment-list_inner {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0;
    }

    .comment-list .comment-list_inner .list-inner_header .comment-sort {
        white-space: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-y: hidden;
        overflow-x: auto;
    }

    .comment-list .comment-item .comment-item_inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
    }

    .comment-list .comment-item .comment-item_inner .item-user {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 70%;
        flex: 1 1 70%;
        max-width: 70%;
        padding: 0 15px 0 0;
    }

    .comment-list .comment-item .comment-item_inner .item-rating {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 30%;
        flex: 1 1 30%;
        max-width: 30%;
        padding: 0;
    }

    .comment-list .comment-item .comment-item_inner .item-rating .item-rating_value {
        padding: 7px 0;
        width: 100%;
        max-width: 120px;
        text-align: center;
    }

    .comment-list .comment-item .comment-item_inner .item-content {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        -ms-flex: 1 1 100%;
        -webkit-box-flex: 1;
        flex: 1 1 100%;
        max-width: 100%;
        padding: 15px 0 0;
    }

    .comment-list .comment-list_sidebar {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 25px;
        padding: 0;
    }

    .form-dropzone .dropzone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form-dropzone .dropzone .dz-message {
        width: 100%;
        text-align: center;
        margin-bottom: 5px
    }

    .form-dropzone .dropzone .dz-preview {
        width: 20%;
    }
}

@media screen and (max-width: 767px) {
    .comment-overview {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .comment-overview .comment-overview_progress {
        max-width: 100%;
        -webkit-box-flex: 1;
        flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        width: 100%;
    }

    .comment-overview .comment-overview_timeline {
        max-width: 100%;
        -webkit-box-flex: 1;
        flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .comment-overview .comment-overview_images {
        max-width: 100%;
        -webkit-box-flex: 1;
        flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .form-dropzone .dropzone .dz-preview {
        width: 25%;
    }
}

@media screen and (max-width: 425px) {
    .form-dropzone .dropzone .dz-preview {
        width: 33.3333%;
    }
}

.theme-modal .theme-modal_close {
    position: absolute;
    background: #f2f4f2;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15em;
    border: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
    top: 5px;
    right: 5px;
    color: #868686;
    transition: var(--transition-default);
}

.theme-modal .theme-modal_close:hover {
    color: #121212;
    background-color: var(--bs-white);
}

@media screen and (max-width: 768px) {
    .theme-modal .theme-modal_close {
        width: 28px;
        height: 28px;
        font-size: 1em;
    }
}

.card-gallery:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.scroll-top {
    position: fixed;
    right: 12px;
    bottom: 20px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    font-size: 1.2em;
    z-index: 4;
    border: 1px solid transparent;
    box-shadow: 0 6px 14px -6px rgb(60 84 141 / 58%), 0 10px 32px -4px rgb(37 53 93 / 10%);
}

.scroll-top:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}

.floating-cta {
    position: fixed;
    right: 0;
    bottom: 70px;
    z-index: 11;
}

.floating-cta .floating-cta__item {
    background-color: var(--organge-color);
    border: 1px solid transparent;
    position: relative;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    transition: var(--transition);
    color: var(--bs-white);
    padding: 5px;
    cursor: pointer;
}

.floating-cta .floating-cta__item .icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
    background-color: var(--bs-white);
    color: var(--organge-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.4s ease-in;
    z-index: 2;
}

.floating-cta .floating-cta__item .icon.hotline i {
    animation: zoom-icon 1s infinite ease-in-out;
}

@keyframes zoom-icon {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

.floating-cta .floating-cta__item .text {
    font-size: 11px;
}

.floating-cta .floating-cta__wrap {
    position: absolute;
    right: 90px;
    border-radius: 10px;
    width: 245px;
    transition: all 0.4s cubic-bezier(0.3, 0, 0, 1.3);
    box-shadow: rgba(0, 37, 87, 0.2) 0rem 0.4609rem 2.30445rem 0rem;
    cursor: pointer;
    background: var(--bs-white);
    bottom: -10px;
    z-index: 1;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating-cta .floating-cta__item .floating-cta__wrap.show-floating {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-cta .floating-cta__wrap::after {
    content: "";
    position: absolute;
    bottom: 12%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--bs-white);
}

.floating-cta .floating-cta__wrap .box-item {
    color: var(--bs-gray-700);
    border: 1px solid #80808040;
    border-radius: 4px;
    padding: 5px 5px 5px 8px;
    text-align: left;
}

.floating-cta .floating-cta__wrap .box-item .icon {
    background-color: var(--organge-color);
    width: 35px;
    height: 35px;
    font-size: 13px;
    position: relative;
}

.floating-cta .floating-cta__wrap .box-item .icon.hotline::after,
.floating-cta .floating-cta__wrap .box-item .icon.hotline::before {
    position: absolute;
    content: '';
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--organge-color);
    -webkit-animation: kfPhoneFixed 1.5s infinite ease-in-out;
    animation: kfPhoneFixed 1.5s infinite ease-in-out;
}

.floating-cta .floating-cta__wrap .box-item .icon.hotline::before {
    border: 2px solid var(--organge-color);
    -webkit-animation: kfPhoneFixed2 1.5s infinite ease-in-out;
    animation: kfPhoneFixed2 1.5s infinite ease-in-out;
    background-color: transparent;
}

@keyframes kfPhoneFixed2 {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }
}

@keyframes kfPhoneFixed {
    0%, 100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .3;
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .3;
    }
}

.floating-cta .floating-cta__wrap .box-item .title {
    color: var(--bs-gray-700);
    margin-bottom: 2px;
    font-size: 15px;
    transition: var(--transition-default);

}

.floating-cta .floating-cta__wrap .box-item .number {
    color: var(--bs-gray-600);

}

.floating-cta .floating-cta__wrap .box-item:hover {
    border: 1px solid var(--organge-color);
}

.floating-cta .floating-cta__wrap .box-item:hover .title {
    color: var(--organge-color);
}

@media (max-width: 767px) {
    .floating-cta {
        right: 0;
        left: 0;
        bottom: 0;
        border-top: 1px solid #6f8ead29;
        background-color: rgb(243 247 254);
    }

    .floating-cta .floating-cta__item {
        border-radius: 0;
        width: calc(100% / 4);
        background-color: var(--bs-white);
        color: var(--bs-gray-700);
        font-weight: 600;
    }

    .floating-cta .floating-cta__item + .floating-cta__item {
        border-left: 1px solid var(--bs-gray-100);
    }

    .floating-cta .floating-cta__item .icon {
        color: var(--bs-white);
        background-color: var(--primary-color);
    }

    .floating-cta .floating-cta__item .text {
        font-size: 12px;
    }

    .floating-cta .floating-cta__wrap {
        position: absolute;
        right: unset;
        left: 10px;
        border-radius: 10px;
        width: 220px;
        bottom: 78px;
    }

    .floating-cta .floating-cta__wrap::after {
        top: unset;
        right: unset;
        bottom: -28px;
        left: 10%;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--bs-white);
    }

    .floating-cta .floating-cta__wrap .box-item .title {
        font-size: 14px;
    }

    .floating-cta .floating-cta__wrap .box-item .icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .floating-cta .floating-cta__item .floating-social,
    .floating-cta .floating-cta__item .floating-shopping {
        width: 170px;
    }

    .floating-cta .floating-cta__item .floating-shopping .number {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .floating-cta .floating-cta__item .floating-shopping {
        width: 150px;
    }

    .floating-cta .floating-cta__item .floating-shopping .number {
        display: none !important;
    }
}



.video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FF0033;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item:hover .video-player {
    color: #fff;
    background-color: #c20000;
}


@media (max-width: 768px) {
    .video-player {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}