:root {
    --main-color: #e11d48;
    --second-color: #707070;
    --bg-white: #fafafa;
    --black: #000000;
    --black-2: #171717;
    --white: #fff;
    --gray: #d9d9d9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-sb);
    font-weight: 600;
    color: var(--black-2);
}

b,
strong {
    color: var(--black-2);
}

body {
    color: var(--black-2);
}

a,
a:hover {
    transition: all 0.5s ease;
}

.text_center {
    text-align: center;
}

.default_ul {
    list-style: none;
}
.header_mb, .only_mb,.filter_mb {
    display: none !important;
}
.header_pc,.only_pc ,.filter_pc{
    display: block !important;
}
.default_ul li:last-child {
    margin-bottom: 0;
}

.text_white,
.text_white * {
    color: var(--white) !important;
}

.d_none {
    display: none !important;
}

section {
    position: relative;
}

.wrap_search_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgb(0 0 0 / 0.5);
    opacity: 0;
    transition: 0.3s all;
    pointer-events: none;
}

.wrap_search_popup.show {
    opacity: 1;
    pointer-events: unset;
}

.wrap_search_popup .inner {
    background: #353535e8;
    padding: 20px;
    position: relative;
    z-index: 2;
    transform: translateY(-120%);
    transition: 0.3s all;
}

.wrap_search_popup.show .inner {
    transform: translateY(0%);
    transition-delay: 0.3s;
}

.wrap_search_popup .inner .button_close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 45px;
    cursor: pointer;
}

.wrap_search_popup .inner .button_close path {
    fill: #fff;
}

.wrap_search_popup .inner h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.wrap_search_popup input::placeholder {
    font-size: 25px;
    color: #929292 !important;
}

.wrap_search_popup input#s {
    margin-bottom: 0;
    height: 50px;
    width: 100%;
    margin-right: 10px;
    outline: none;
    background-color: #232323;
    border-radius: 0;
    border: 1px solid #fff0;
    color: #fff;
    font-size: 16px;
    transition: 0.5s all;
    padding: 0 20px;
}

.wrap_search_popup input#s:focus {
    border-color: #3877c8;
}

.wrap_search_popup input#s::placeholder {
    font-size: 18px;
}

.wrap_search_popup input#searchsubmit {
    height: 50px;
    width: 240px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    flex: 0 0 auto;
    background: var(--main-color);
    border-radius: 5px;
    position: unset;
    opacity: 1;
}

.wrap_search_popup form {
    display: flex;
    margin-bottom: 0;
}

.wrap_search_popup form input {
    margin-bottom: 0;
}

.bg_close {
    position: absolute;
    inset: 0;
}

.search_item.search_open {
    margin-right: 30px;
    position: relative;
    top: 5px;
}

.wrap_search_popup h2 {
    color: #fff;
}

.toggle_menu {
    height: 100%;
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggle_menu span,
.toggle_menu span::before,
.toggle_menu span::after {
    background: var(--black);
    content: "";
    position: absolute;
    width: 32px;
    height: 3px;
    margin-top: 0;
    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
    opacity: 1;
    border-radius: 8px;
}

.toggle_menu.active span,
.toggle_menu.active span::before,
.toggle_menu.active span::after {
    -webkit-transition: 0.5s ease-in-out 0.5s;
    -moz-transition: 0.5s ease-in-out 0.5s;
    -o-transition: 0.5s ease-in-out 0.5s;
    transition: 0.5s ease-in-out 0.3s;
}

.toggle_menu span::before {
    margin-top: -8px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.toggle_menu span::after {
    margin-top: 9px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.toggle_menu.active span {
    background: #fff0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.toggle_menu.active span::before {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.toggle_menu.active span::after {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.5s;
}

div#menu_mobi .inner_menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    height: 100%;
    transform: translateX(100%);
    transition: 0.3s all;
    width: 70%;
    background: #fff !important;
    padding: 50px 20px 20px;
    overflow: scroll;
}
div#menu_mobi .inner_menu .menu-main-menu-mobi-container {
    overflow: scroll;
    height: 100%;
}
div#menu_mobi .mobi_overlay {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    inset: 0;
    transition: all 0.5s;
    background: rgb(0 0 0 / 0.5);
    opacity: 0;
    transform: translateX(-100%);
    transition-delay: 0.3s;
}

div#menu_mobi.active .mobi_overlay {
    opacity: 1;
    transform: translateX(0%);
    transition: all 0.5s;
}

div#menu_mobi .toggle_menu span::before,
div#menu_mobi .toggle_menu span::after {
    background: #000;
}

div#menu_mobi.active .inner_menu {
    transform: translateX(0%);
}

#menu_mobi .toggle_menu {
    border-radius: 50%;
    border: 3px solid #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 10px;
}
div#menu_mobi a {
    color : var(--text-color);
}
div#menu_mobi .toggle_menu span {
    margin-top: 0;
}

div#menu_mobi div#primary-menu {
    padding: 70px 40px;
}

div#menu_mobi div#primary-menu a {
    color: #fff;
}

div#menu_mobi div#primary-menu > ul {
    list-style: none;
    margin: 0;
    overflow: auto;
    height: 100vh;
}

.btn_search {
    cursor: pointer;
}

div#menu_mobi div#primary-menu > ul ul {
    list-style: none;
}

.wrapper {
    position: relative;
    z-index: 3;
}

.wrapper a.cover_link {
    position: absolute;
    inset: 0;
    z-index: 11;
}

footer {
    background: var(--black);
}

footer .bottom_footer {
    background-color: var(--black-2);
    padding-top: 80px;
    padding-bottom: 65px;
    border-radius: 0 0 40px 40px;
}

.copyright,
.copyright strong {
    color: #fff;
}

.top_footer {
    margin-bottom: -40px;
    position: relative;
    z-index: 13;
}

.top_footer .list_box_icon {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid #d9d9d9;
    background: var(--bg-white);
}

.top_footer .list_box_icon .box_item {
    border-right: 1px solid #7f7f7f;
    padding-right: 10px;
}

.top_footer .list_box_icon .swiper {
    padding: 40px 0;
}
footer .bottom_footer * {
    color: #fff;
}

.title_footer {
    font-size: 18px;
    margin-bottom: 11px;
}

.menu_footer li {
    border: none !important;
}

footer a {
    position: relative;
}

footer a::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: all 0.5s;
}

footer a:hover {
    color: currentColor;
}

footer a:hover::before {
    transition: all 0.5s;
    width: 100%;
}

.method_contact ul li {
    display: flex;
    gap: 10px;
}

.method_contact ul li .box_icon--icon {
    width: 22px;
}

.method_contact ul li .box_icon--text {
    width: calc(100% - 32px);
}

footer .form_social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.form_social .phone_email a {
    display: block;
    margin-bottom: 8px;
    border-bottom: 1px solid #fff;
    width: max-content;
}

.phone_email a:hover {
    border-color: var(--main-color);
}

.share_social ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
}

.share_social ul li {
    margin-bottom: 0;
}

.form_contact_footer .inner_form {
    position: relative;
}

.form_contact_footer .inner_form input[type="email"] {
    border-radius: 100px;
    margin: 0;
    height: 54px;
}

.form_contact_footer .wpcf7-form-control-wrap {
    width: 80%;
    margin: 0 auto;
}

.btn_form_submit {
    position: absolute;
    background: url(../image/send.png);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.btn_form_submit input {
    position: absolute !important;
    opacity: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.btn_form_submit input:hover {
    opacity: 0 !important;
}

span.wpcf7-spinner {
    position: absolute;
}

footer form {
    margin: 0;
}

footer .end_footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.payload_mehod img {
    height: 40px;
    object-fit: contain;
    object-position: right;
}

header .inner_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_header {
    background: var(--black);
    padding: 15px 0;
    color: #fff;
    position: relative;
    z-index: 10;
}

.top_header:before,
.top_header:after {
    content: "";
    position: absolute;
}

.header_btn .list_icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.header_btn .list_icon li,.header_btn .list_icon li a {
    margin: 0;
    display: flex;
    align-items: center;
}

.function_icon {
    cursor: pointer;
}

.bot_header {
    background: #fff;
    position: relative;
    z-index: 10;
    border-radius: 25px 25px 0 0;
    transition: all 0.5s;
    padding: 24px 0;
}
.top_header:before {
    content: '';
    position: absolute;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: #000;
    z-index: -1;
    border-start-end-radius: 25px;
    border-start-start-radius: 25px;
}

body.sticky .bot_header {border-radius: 0;transition: all 0.5s;}
nav#nav-menu> ul > li >a {
    font-size: 20px;
    font-weight: 500;
    color: #171717;
    text-transform: unset;
    /* height: 78px; */
    padding: 0 1rem;
    border-radius: 50px;
}

nav#nav-menu> ul > li> a:hover {
    color: #fff;
    background: #333;
}
.menu-item-design-full-width .sub-menu.nav-dropdown {
    transform: translateY(77px);
    border: none !important;
    box-shadow: none !important;
}
header#header {
    position: fixed;
}

main#main {
    padding-top: 193px;
    transition: all 0.5s;
}

body.sticky main#main {
    padding-top: 78px;
    transition: all 0.5s;
}

footer#footer {
    z-index: 5;
    overflow: hidden;
}

.text_maquee_content.animated {
    animation-name: scrolling-left;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 70s;
    animation-play-state: running;
    width: max-content;
}

.img_marquee.animated {
    animation-name: scrolling-left;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 160s;
    animation-play-state: running;
    width: max-content;
}

.img_marquee.animated {
    animation-duration: 130s;
}

.marquee_container:hover .img_marquee.animated {
    animation-play-state: paused;
}

.img_marquee {
    display: flex;
    gap: 40px;
}

.img_marquee--red {
    transform: rotate(-2.842deg);
}

.img_marquee--red .img_marquee .inner_img_marquee {
    background: #e11d48;
}
.marquee_container.img_marquee--red {
    position: relative;
    z-index: 90;
    margin: 0 -10px;
}
.marquee_container.img_marquee--red .swiper {
    background: #e11d48;
}
.home_page_7 .marquee_container.img_marquee--red {
    margin-top: 100px;
}

.text_maquee_content {
    font-size: 180px;
    font-family: "Roboto", sans-serif;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: var(--black-2);
    line-height: 1;
    gap: 40px;
}

.text_maquee_content .dot_marquee {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    background: var(--black-2);
    display: block;
}

.inner_marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

@keyframes scrolling-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.inner_marquee:hover .text_maquee_content.animated {
    animation-play-state: paused;
}

.text_maquee_content strong.text_marquee--white {
    -webkit-text-stroke: 0.01em currentColor;
    -webkit-text-fill-color: #fff0;
}

.text_marquee {
    padding: 80px 0;
}

.section_padding--8 {
    padding: 80px 0;
}

.home_banner {
    padding-top: 0;
}

.slide_banner .wrap_item_main {
    height: 530px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.slide_banner .wrap_item_main img,
.slide_banner .wrap_item_main video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sldie_banner .item_slide {
    position: relative;
}

.slide_banner .wrap_item_content {
    position: absolute;
    left: 50%;
    width: calc(100% - 84px);
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.slide_banner .wrap_item_content .banner_content:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 1px;
    background: #fff;
    bottom: -19px;
}

.slide_banner .wrap_item_content .banner_content {
    position: relative;
    margin-bottom: 50px;
    font-size: 20px;
}

.slide_banner .wrap_item_content .banner_title h2 {
    color: #fff;
    font-size: 64px;
}

.slide_banner .banner_navigation {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    width: calc(100% - 160px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}

.slide_banner .btn_main {
    /* position: absolute; */
    /* right: 160px; */
    /* bottom: 150px; */
}

.btn_center {
    margin: 0 auto;
}

.btn_main br {
    display: none;
}

.btn_main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--black-2) !important;
    width: max-content;
    position: relative;
    overflow: hidden;
    z-index: 3;
    color: var(--black-2);
}

.btn_main .btn_fill {
    background: var(--black-2);
    display: block;
    border-radius: 50%;
    width: 150%;
    height: 200%;
    inset-block-start: -50%;
    inset-inline-start: -25%;
    position: absolute;
    transform: translate3d(0, -76%, 0);
    transition: all 0.5s;
    z-index: -1;
}

.btn_main.btn_main--black .btn_fill {
    background: #fff;
}

.btn_main svg path {
    transition: all 0.5s;
}

.btn_main--filter {
    line-height: 1;
    text-transform: unset;
    font-size: 14px;
}

.btn_main.btn_main--black {
    background: var(--black-2) !important;
    color: #fff;
    font-size: 16px;
}

.btn_main.btn_main--black:hover {
    border-color: var(--black-2);
    color: var(--black-2);
}

.user-registration-Button.btn_main:hover {
    color: var(--black-2) !important;
}

.btn_main.btn_main--white {
    background: #fff !important;
    color: var(--black-2) !important;
}

.btn_main.btn_main--white:hover {
    color: #fff !important;
    border-color: #fff;
}

.btn_main.btn_main--white:hover svg path {
    fill: #fff;
    transition: all 0.5s;
}

.btn_main.btn_main--black:hover svg path {
    transition: all 0.5s;
    fill: var(--black-2);
}

.btn_main:hover .btn_fill {
    transform: translateY(0%);
    transition: all 0.5s;
}

.btn_main.btn_main--white:hover svg path {
    stroke: #fff;
    transition: all 0.5s;
}

.banner_btn {
    position: relative;
    z-index: 11;
    cursor: pointer;
}
.slide_banner .custom_swiper_pagination span.swiper-pagination-bullet{
    background: #fff;
    border: 1px solid #fff;
}
.custom_swiper_pagination span.swiper-pagination-bullet {
    background: #000;
    border: 1px solid #000;
    opacity: 1;
    transition: all 0.5s;
}

.custom_swiper_pagination
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff0;
    transition: all 0.5s;
    transform: scale(1.5);
}

.slide_banner {
    padding: 0 40px;
}

.slide_banner .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-20px);
}

.title_splitting .word {
    opacity: 0;

    animation: titleWordFadeUp 0.6s ease forwards;
    animation-delay: calc(var(--word-index) * 0.05s);

}

.slide_banner .word.animate {
    animation: wordFadeUp 0.6s ease forwards;
    animation-delay: calc(var(--word-index) * 0.05s);
}

@keyframes wordFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleWordFadeUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 40px 0;
}

.title_section {
    font-size: 48px;
    color: var(--black-2);

}

.title_section__2 {
    font-size: 30px;
    color: var(--black-2);
}

.home_page_1 .title_section {
    /*max-width: 75%;*/
}
.home_page_1 .content {
    max-width: 90%;
}
.item_product--1 {
    position: relative;
}

p:last-child {
    margin-bottom: 0;
}

.item_product--1 .item_cotennt {
    position: absolute;
    padding: 20px;
    bottom: 0;
}

.item_post_product--all .item_cotennt .item_title {
    font-size: 26px;
    margin-bottom: 0;
}

.item_post_product--all2 .item_cotennt .item_title {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--black-2);
}

.item_post_product--all2 .item_content,
.item_post_product--all2 .item_subtitle {
    font-size: 14px;
}

.item_product--1 .item_arow {
    position: absolute;
    bottom: 52px;
    right: 22px;
}

.home_page_1 .list_product {
    margin-top: 60px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.item_post .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
    transform: scale(1);
}

.item_post {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.countdown-container {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.countdown-container .icon {
    margin-right: 8px;
}

.countdown-container .label {
    margin-right: 10px;
    color: var(--black-2);
    font-size: 17px;
}

.countdown-container .countdown {
    display: flex;
    gap: 4px;
    font-weight: 700;
}

.countdown .box_count {
    background-color: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    width: 44px;
    text-align: center;
    padding: 5px 10px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_page_2 .group_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.home_page_2 .title_flash_sale {
    display: flex;
    align-items: center;
    gap: 30px;
}

.list_product_item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.item_post.item_product--2 {
    position: relative;
}

.item_post.item_product--2 .item_img {
    position: relative;
    min-height: 200px;
    height: auto;
    aspect-ratio: 1;
}

.item_post.item_product--2 .item_sale,
.item_post.item_product--2 .item_rate {
    position: absolute;
    top: 20px;
    z-index: 12;
}

.item_post.item_product--2 .item_rate {
    right: 20px;
    opacity: 1;
    transition: all 0.5s;
    border-radius: 15px;
    padding: 4px;
    background: #fff;
}

.item_post.item_product--2 .item_img {
    overflow: hidden;
    position: relative;
}

.item_post.item_product--2 .list_card_hover {
    display: flex;
    height: 100%;
    transition: all 1s;
}

.item_post.item_product--2 .list_card_hover .item_card_img {
    width: 100%;
    flex: 0 0 auto;
    transition: all 0.5s;
    overflow: hidden;
    height: 100%;
    border-radius: 20px;
}

.item_post.item_product--2 .item_img::before,
.item_post.item_product--2 .item_img::after,
.item_post.item_product--2 .item_img .hover-center {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.3333%;
    z-index: 10;
}

.item_post.item_product--2 .item_img::before {
    left: 0;
    cursor: pointer;
}

.item_post.item_product--2 .item_img .hover-center {
    left: 33.3333%;
    cursor: pointer;
}

.item_post.item_product--2 .item_img::after {
    right: 0;
    cursor: pointer;
}
span.item_dots_change {
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s;
    gap: 2px;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
}
.item_post.item_product--2 .item_img:hover span.item_dots_change {
    transform: translateX(-50%) translateY(0px);
    opacity: 1;
}
span.item_dots_change .item_dots {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .5s cubic-bezier(.3, 1, .3, 1);
}

span.item_dots_change .item_dots.is-select:before {
    width: 4px;
    height: 4px;
    background-color: transparent;
    box-shadow: 0 0 0 2px rgb(23 23 23);
}

span.item_dots_change .item_dots:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    transition: .5s cubic-bezier(.3, 1, .3, 1);
    transition-property: background-color, box-shadow;
}
.item_quick_view {
    position: absolute;
    top: 20px;
    right: 20px;
    background: red;
    width: 36px;
    height: 36px;
    padding: 6px;
    opacity: 0;
    transition: all 0.5s;
    z-index: 14;
}

.item_post:hover .item_rate {
    opacity: 0;
    transition: all 0.5s;
}

.item_post:hover .item_quick_view {
    opacity: 1;
    transition: all 0.5s;
}

.item_post.item_product--2 .item_sale {
    left: 20px;
    background: #e11d48;
    color: #fff;
    border-radius: 15px;
    padding: 4px 8px;
}

.item_post.item_product--2 .item_cotennt {
    display: flex;
    align-items: start;
    padding: 10px 15px;
}

.item_post.item_product--2 .item_cotennt .item_name_product {
    width: 65%;
}

.item_post.item_product--2 .item_cotennt .item_price {
    width: 35%;
    text-align: right;
}

.item_post.item_product--2 .item_cotennt span.item_subtitle {
    font-size: 13px;
    margin-bottom: 10px;
}

.item_post.item_product--2 .item_cotennt .item_title ,.item_post.item_product--2 .item_cotennt .item_title a{
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.attribute-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.item_post.item_product--2 .item_cotennt .sale_price {
    text-decoration: line-through;
    font-size: 13px;
    margin-bottom: 7px;
}

.item_post.item_product--2 .item_cotennt .prime_price {
    font-size: 15px;
    color: var(--black);
    line-height: 18px
}

.item_bottom_product {
    /*padding: 15px;*/
}

.item_attr .product_attr .list_attr_product {
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
}

.item_attr .product_attr .list_attr_product .item_attr_img {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    padding: 1px;
}

.boxicon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.boxicon .boxicon_content--title {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.boxicon .boxicon_content--sub {
    font-size: 14px;
    font-weight: 300;
    color: #605861;
}

.item_attr--2.list_boxicon {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.item_attr--2.list_boxicon::-webkit-scrollbar {
    height: 3px;
    width: 4px;
    background-color: #777;
}

.item_attr--2.list_boxicon::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 0;
    height: 1px;
}

.item_attr--2.list_boxicon {
    scrollbar-color: #ccc #fff0;
    padding: 15px;
    border: 1px solid rgb(217 217 217 / 42%);
    border-top: none;
    border-radius: 0 0 20px 20px;
    scrollbar-width: none;
    /*min-height: 70px;*/
}

.item_attr--2.list_boxicon > * {
    flex: 0 0 auto;
    border-right: 1px solid #cdcdcdb8;
    padding-right: 15px;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
    opacity: 1;
    bottom: 50px !important;
    background: #fff0;
    color: #fff;
    font-size: 30px;
}

.twentytwenty-before-label {
    left: 30px !important;
}

.twentytwenty-after-label {
    right: 30px !important;
}

.title_border {
    position: relative;
    width: max-content;
    z-index: 3;
}

.title_border::before {
    content: "";
    position: absolute;
    background-image: url(../image/title_border.svg);
    width: 85%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    bottom: -90%;
    left: 50%;
    transform: translateX(-50%);
}

.title_border--2 {
    position: relative;
    padding-bottom: 15px;
}

.title_border--2:before {
    content: '';
    position: absolute;
    width: 75%;
    height: 2px;
    background: currentColor;
    bottom: 0;
}

.title_border.text_center {
    margin: 0 auto 70px;
}

.mb--40 {
    margin-bottom: 40px;
}

.mb--60 {
    margin-bottom: 60px;
}
.label_attr {
    margin-bottom: 0.5rem;
}
.slider-video .flickity-slider .img {
    margin-right: 15px !important;
}

.marquee-container {
    overflow: hidden;
    transform: rotate(-2.842deg);
    width: max-content;
    margin-left: -1%;
}

.marquee-nature {
    background: #e11d48;
    white-space: nowrap;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-two {
    transform: rotate(-0.295deg);
}

.marquee-two .marquee-nature {
    background: #f8f8f8;
}

.marquee-nature .track {
    display: inline-block;
    animation: scroll-seamless 20s linear infinite;
}

.marquee-nature .img {
    display: inline-block;
    margin: 0 20px;
    text-align: center;
    vertical-align: middle;
    width: auto !important;
}

.marquee-nature img {
    width: auto;
    height: 65.217px;
    object-fit: cover;
}

.marquee-nature .nature-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 8px;
}

.marquee-nature .nature-name {
    font-size: 12px;
    color: #2d5016;
    font-weight: 700;
    background: rgb(255 255 255 / 0.7);
    padding: 3px 8px;
    border-radius: 10px;
}

.z-2 {
    z-index: 2;
}

@keyframes scroll-seamless {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.marquee-container:hover .track {
    animation-play-state: paused;
}

.radius-40 {
    border-radius: 55px !important;
}

.showroom_map {
    width: 75%;
    margin: 0 auto 0;
    border-radius: 30px;
    overflow: hidden;
    transform: translateY(-100px);
}

.showroom_map iframe {
    width: 100%;
}

.twentytwenty-container {
    border-radius: 20px !important;
}

.home_page_3 .inner_content,
.section_product_final .inner_content {
    padding: 90px 155px 200px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
}

.home_page_3 .wrap_content_tabs {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 40px 40px 0 0;
}

.home_page_3 .inner_content .col_content,
.section_product_final .inner_content .col_content {
    width: 60%;
    color: #fff;
}

.section_product_final {
    padding-bottom: 0 !important;
}

.home_page_3 .wrap_content_products {
    padding-top: 80px;
    background: #fff;
    border-radius: 40px 40px 0 0;
    transform: translateY(-100px);
    margin-bottom: -100px;
}

.block_product .slide_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.block_product .product_gal {
    display: flex;
    gap: 20px;
}

.block_product--1 .product_gal ,.block_product--1 .col_slider.col_left {
    height: 525px;
}

.block_product--1 .col_slider.col_left {
    width: calc(100% - 100px);
}

.block_product--1 .col_slider.col_right {
    width: 100px;
    height: 525px;
    display: flex;
    flex: 0 0 auto;
}

.block_product--2 .product_gal {
    flex-direction: row-reverse;
    height: 625px;
}

.block_product--2 .col_slider.col_left {
    height: 625px;
    width: calc(100% - 130px);
}

.block_product--2 .col_slider.col_right {
    height: 625px;
    width: 120px;
    display: flex;
    flex: 0 0 auto;
}

.block_product.block_product--3 .product_gal {
    flex-direction: column;
}

.block_product.block_product--3 .swiper.sub_product_gal {
    /*height: 120px;*/
}

.block_product .main_product_gal .slide_img {
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
}

.block_product .sub_product_gal .slide_img {
    border-radius: 12px;
    overflow: hidden;
}

.product_price--sale {
    color: #d81f26 !important;
    font-size: 24px;
    font-weight: 700;
}

.product_price--sale span.amount {
    color: #d81f26 !important;
}

.product_price--sale + .product_price--regular bdi {
    text-decoration: line-through;
}

.list_attr_product {
    display: flex;
    gap: 10px;
    /*margin-top: 12px;*/
    overflow: auto;
    scrollbar-width: none;
    /*min-height: 45px;*/
    padding: 0 20px;
}

.list_attr_product .item_attr.item_attr_img {
    width: 45px;
    height: 45px;
}

.list_attr_product .item_attr.item_attr_img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.list_attr_product .item_attr {
    margin: 0;
    min-width: 45px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 4px;
    transition: all 0.5s;
    border: 1px solid var(--gray);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.list_attr_product .item_attr.no_attr {
    pointer-events: none;
    opacity: 0.4;
}

.block_product .list_attr_product .item_attr:hover,
.block_product .list_attr_product .item_attr.active {
    border-color: var(--black-2);
    transition: all 0.5s;
}

.block_product .product_attr {
    font-size: 16px;
    color: var(--black-2);
    /* margin-bottom: 15px; */
}

.col_info_product {
    position: relative;
}

.block_product .col_slider.col_left .swiper {
    height: 100%;
}

.block_product.block_product--3 .swiper.main_product_gal {
    height: 600px;
}

.product_table_box {
    padding: 32px;
    margin-block-start: 16px;
    border-radius: 10px;
    background-color: #fff0;
    border: 1px solid rgb(217 217 217 / 23%);
    position: relative;
}

.product_tinhnang .boxicon {
    background: rgb(217 217 217 / 23%);
    padding: 10px;
    border-radius: 8px;
}

.product_tinhnang .list_boxicon {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.product_table_box .product_table_box__title {
    position: absolute;
    padding: 10px;
    inset-block-start: -1px;
    inset-inline-start: 22px;
    transform: translateY(-50%);
    background-color: #fff;
}

.share_product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share_product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.col_info_product button.btn_buy_now {
    width: 100%;
}

.share_product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share_product a {
    display: block;
}

.col_info_product button.btn_buy_now {
    width: 100%;
}

.add_item_for_product {
    background: #fafafa;
    padding: 15px 30px;
    border-radius: 16px;
}

.add_item_for_product .add_item_for_product__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-2);
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
}

.col_info_product .group_to_cart {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    /* margin: 20px 0; */
}

.group_to_cart .quantity {
    display: inline-flex;
    position: relative;
    flex-shrink: 0;
    height: 52px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    color: var(--black-2);
    margin: 0;
}

.group_to_cart .quantity button {
    height: 50px;
    margin: 0;
}

.group_to_cart .quantity input {
    height: 49px;
    border: none;
    z-index: 1;
    outline: none;
    color: var(--black-2);
    background: #fff0;
}

.col_info_product .btn_main {
    height: 50px;
    text-transform: unset;
    width: 100%;
    margin: 0;
}

.box_flash_sale {
    border: 1px solid #d9d9d9;
    padding: 20px 17px;
    border-radius: 30px;
}

.box_flash_sale .title_flash_sale {
    display: flex;
    gap: 20px;
    padding: 7px 14px;
    background: #f5f5f5;
    border-radius: 20px;
}

.box_flash_sale .title_flash_sale img {
    width: 100px;
}

.box_flash_sale .title_flash_sale .countdown .box_count {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.box_flash_sale .title_flash_sale {
    margin-bottom: 20px;
}
.box_flash_sale .product_price {
    display: flex;
    align-items: end;
    justify-content: center;
    /*margin-top: 20px;*/
    gap: 20px;
}

.box_flash_sale {
    border: 1px solid #d9d9d9;
    padding: 20px 17px;
    border-radius: 30px;
}

.box_flash_sale .title_flash_sale {
    display: flex;
    gap: 20px;
    padding: 7px 14px;
    background: #f5f5f5;
    border-radius: 20px;
}

.box_flash_sale .title_flash_sale img {
    width: 100px;
}

.box_flash_sale .title_flash_sale .countdown .box_count {
    width: 30px;
    height: 30px;
    font-size: 15px;
}

.meta_product {
    display: flex;
    align-items: center;
    gap: 20px;
}

a.btn_compare {
    border-radius: 8px;
    background: #f5f5f5;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 10px;
    margin: 20px 0;
    display: block;
    width: max-content;
}

.meta_product > *:not(:last-child):before {
    content: "";
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--black-2);
    right: -11px;
    bottom: 5px;
}

.meta_product > * {
    position: relative;
}

.meta_review {
    display: flex;
    align-items: center;
}

.meta_review .review_star {
    margin-bottom: -5px;
    margin-left: 10px;
}

.col_info_product .product_name {
    font-size: 40px;
    font-weight: 600;
    color: var(--black-2);
}

.grid-40.col_info_product > *:not(:last-child) {
    margin-bottom: 30px;
}

.label_moreproduct .moreproduct_process {
    background: #d9d9d9;
    width: 100%;
    height: 8px;
    border-radius: 20px;
    display: flex;
    position: relative;
}

.label_moreproduct .moreproduct_process:before {
    content: "";
    position: absolute;
    height: 8px;
    background: var(--black-2);
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s;
}

.label_moreproduct .moreproduct_process.moreproduct_process--1:before {
    width: 25%;
}

.label_moreproduct .moreproduct_process.moreproduct_process--2:before {
    width: 50%;
}

.label_moreproduct .moreproduct_process.moreproduct_process--3:before {
    width: 75%;
}

.block_product .grid-60.col_galary {
    padding-right: 40px;
    position: sticky;
    top: 210px;
}

.section_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section_border {
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 3;
    padding-bottom: 80px;
}

.section_border + .section_border {
    margin-top: -40px;
    z-index: 4;
    padding-bottom: 80px;
}

.section_border--black {
    background-color: var(--black-2);
    color: #fff;
}

.section_border--white {
    background-color: #fff;
}

.item_product--video .icon_video {
    position: absolute;
    top: 20px;
    right: 20px;
}

.item_post.item_product--video .item_content {
    position: absolute;
    bottom: 0;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(0deg, rgb(0 0 0 / 0.08) 0%, #fff0 80%);
    backdrop-filter: blur(21.600000381469727px);
    padding: 15px 20px;
    width: 100%;
}

.item_post.item_product--video .item_content .item_updated {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.item_post.item_product--video .item_content .item_title h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    color: #fff;
}

.slide_marquee .swiper-slide {
    width: auto;
}

.img_marquee_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.home_page_6 .group_head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.home_page_6 .group_head h2.title_section {
    margin-bottom: 0;
}

.home_page_6 .des_section {
    max-width: 70%;
    margin-bottom: 50px;
}
.home_page_6 .group_head .group_title {
    width: 60%;
}

.des_section p:last-of-type {
    margin-bottom: 0;
}

.inner_img_marquee {
    display: flex;
}

.list_category .ul_category {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.list_category .ul_category li {
    position: relative;
    font-size: 16px;
    color: var(--black-2);
    cursor: pointer;
    margin: 0;
    padding-bottom: 10px;
}

.list_category .ul_category li:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--black-2);
    bottom: 0;
    transition: all 0.5s ease;
}

.list_category .ul_category li:hover:before,
.list_category .ul_category li.active:before {
    width: 100%;
    transition: all 0.5s ease;
}

.list_category .ul_category li.active {
    font-weight: 700;
}

.item_post--1 .item_post__content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    color: #fff;
    padding: 45px;
}

.item_post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.inner_list_post_category {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 290px);
    grid-column-gap: 45px;
    grid-row-gap: 60px;
}

.inner_list_post_category .item_post:nth-child(1) {
    grid-area: 1 / 1 / 3 / 4;
}

.inner_list_post_category .item_post:nth-child(2) {
    grid-area: 1 / 4 / 2 / 6;
}

.inner_list_post_category .item_post:nth-child(3) {
    grid-area: 2 / 4 / 3 / 6;
}

.item_post--2 {
    display: flex;
    gap: 35px;
}

.item_post--2 .item_post__img {
    width: 230px;
}

.item_post--2 .item_post__content {
    width: calc(100% - 255px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item_post .item_post__img {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.item_post__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 100px;
    background: var(--black-2);
    font-size: 14px;
    padding: 10px;
    color: #fff;
    transition: all 0.5s;
    font-weight: 700;
}

.item_post:hover .item_post__tag {
    background: var(--main-color);
    transition: all 0.5s;
}

.item_post__meta {
    display: flex;
    align-items: center;
}

.item_post.item_post--2 .item_post__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item_post.item_post--1 .item_post__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}

.item_post.item_post--1 .item_post__excerpt {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item_post.item_post--2 .item_post__excerpt {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item_post .item_post__link {
    border-bottom: 1px solid #848485;
    font-weight: 700;
    display: block;
    width: max-content;
}

.list_post_category .btn_main {
    margin: 30px auto;
}

.list_post_category_item {
    display: none;
}

.list_post_category_item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item_post--video .icon_video {
    position: absolute;
    top: 20px;
    right: 20px;
}
.mega_menu .tab-panels .panel:not(.active) {
    display: none;
}

.mega_menu .tab-panels .panel.active {
    animation: fadeLeft 0.5s ease-in-out;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.item_post--video .item_content {
    position: absolute;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(0deg, rgb(0 0 0 / 0.08) 0%, #fff0 80%);
    backdrop-filter: blur(21.600000381469727px);
    bottom: 0;
    padding: 20px 30px;
    width: 100%;
}

.item_post--video .item_content .item_title h2 {
    color: #fff;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item_post .item_img {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.item_post.item_post--video .item_img {
    min-height: 400px;
}

.item_post--video .item_img img {
    height: 100%;
    aspect-ratio: unset;
}

.home_page_9 .wrap_inner_content {
    margin: 0 100px;
}

.home_page_9 .list_showroom {
    display: flex;
    color: #fff;
    align-items: start;
    justify-content: space-between;
    flex-wrap : wrap;
}

.home_page_9 .list_showroom .item_showroom {
    display: flex;
    align-items: start;
    gap: 10px;
    width: calc(25% - 30px);
}

.home_page_9 .list_showroom .item_showroom__content {
    width: calc(100% - 40px);
}

.home_page_9 .list_showroom .item_showroom__icon {
    width: 20px;
}

.home_page_9 .list_showroom .item_showroom__content h3 {
    color: #fff;
    font-size: 18px;
}

.home_page_9 .wrap_inner_content {
    padding: 150px 100px;
}

.home_page_9 .list_showroom {
    display: flex;
    color: #fff;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
}

.home_page_9 .list_showroom .item_showroom:nth-child(n + 3) {
    justify-content: end;
}

.inner_home_page_9 {
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner_home_page_9 .btn_main {
    margin: 30px auto;
}

.inner_homepage_map iframe {
    width: 100%;
    height: 350px;
    display: block;
}

.inner_homepage_map {
    width: 75%;
    margin: -40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 12.6px 0 rgb(0 0 0 / 0.1);
}

.item_feedback__header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.item_feedback__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.item_feedback__avatar {
    width: 85px;
    height: 85px;
    overflow: hidden;
    border-radius: 50%;
}

.item_feedback__name {
    color: var(--black-2);
}

.item_feedback__rating {
    color: #ffcb00;
}

.info-product-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.item_feedback__date {
    font-size: 13px;
    color: #777;
}

.item_feedback__product {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: var(--black-2);
}

.slide_feedback .swiper-slide .item_feedback__slide {
    transition: all 0.5s ease;
    transform: scale(0.7);
    width: 100%;
}

.slide_feedback .swiper-slide.swiper-slide-active .item_feedback__slide {
    transition: all 0.5s ease;
    transform: scale(1);
}

p.item_feedback__message {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.5s;
}

.item_feedback__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.nocodevn-list-store {
    grid-template-columns: 2fr 1fr;
    height: 530px;
}

.nocodevn-list-store .nocodevn-card {
    order: 2;
    border: none;
    height: 530px;
    box-shadow: none;
}

.nocodevn-card .address-detail a.link_map {
    display: flex;
    align-items: center;
    width: auto;
    position: absolute;
    right: 30px;
    top: 15px;
    border-radius: 100px;
    background: #eee8e3;
    padding: 6px 20px;
    color: #605861;
}

.store-item {
    position: relative;
}

.filter-gr:has(select#parent_province) + .filter-gr {
    display: none;
}

.list-filter {
    display: flex;
    gap: 20px;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #d9d9d9;
    background: #fff;
}

.list-filter select,
.list-filter input {
    border-radius: 20px;
    border: 1px solid rgb(0 0 0 / 0.24);
    height: 40px;
    padding-left: 12px;
}

.nocodevn-card .store-item {
    border-bottom: 1px solid rgb(96 88 97 / 0.12);
}

.nocodevn-card .address-detail {
    height: 403px;
}

.home_page_12 {
    border-radius: 40px;
    background: var(--black-2);
}

.home_page_12 .col_content {
    margin-top: 90px;
}

.home_page_12 .list_item__img {
    display: grid;
    gap: 130px;
    grid-template-columns: 1fr 1fr;
}

.home_page_12 .list_item__img img {
    width: 100%;
}

.home_page_12 .list_item__img .item_item__img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.home_page_12 .list_item__img .item_icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.home_page_12 .list_item__img .item_content {
    position: absolute;
    bottom: 30px;
    width: 100%;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.inner_form__login form {
    max-width: 500px;
    margin: 40px auto;
}

p.user-registration-form-row.user-registration-form-row--first.form-row.form-row-first {
    display: none;
}

p.user-registration-form-row.form-row {
    margin-top: 20px;
}

.ur-frontend-form {
    box-shadow: none !important;
}

a.back-to-home-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-registration-form__submit {
    display: flex !important;
    gap: 20px;
    flex-direction: row !important;
}

.user-registration-form__submit button.user-registration-Button.button {
    margin: 0;
}

.user-registration-form__submit p.user-registration-register.register {
    padding: 0 !important;
}

.ur-button-container {
    width: 100% !important;
    margin: 0 auto !important;
    justify-content: center;
    gap: 30px !important;
}

.ur-button-container button {
    margin: 0 !important;
}

.ur-frontend-form .ur-button-container > * {
    height: 50px;
    width: 50% !important;
}

.inner_form__login form {
    width: 500px;
}

div#ur-frontend-form {
    padding: 0;
}

p.user-registration-register.register a {
    display: block !important;
    color: var(--black-2) !important;
    text-align: center;
    width: 100%;
}

.flash_sale__page {
    padding: 80px 0 200px;
}

.flash_sale__page .countdown .box_count {
    background: #fff0;
    font-size: 70px;
    min-width: 120px;
    font-weight: 700;
    line-height: 1.2;
    height: auto;
}

.flash_sale__page .countdown-container {
    justify-content: center;
}

.flash_sale__page .countdown {
    align-items: center;
    gap: 43px;
}

.flash_sale__page span.countdown__label {
    font-size: 30px;
}

.box_count__item {
    text-align: center;
    color: #fff;
}

.flash_sale__page .countdown__label--dot {
    color: var(--main-color);
    font-size: 50px;
    font-weight: 700;
}

.flash_sale__page .btn_main {
    margin: 30px auto;
}

.group_question {
    border-radius: 20px;
    border: 1px solid #e2e0e0;
    background: #fff;
    padding: 35px 40px;
    margin-bottom: 65px;
}

.group_question__content {
    border-bottom: 1px solid #eeecec;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.group_question .group_question__item:not(:last-of-type) {
    border-bottom: 1px solid #e2e0e0;
    padding-bottom: 25px;
}

.group_question .group_question__item {
    position: relative;
    margin-bottom: 15px;
}

.group_question .group_question__item .item_que__title {
    width: calc(100% - 30px);
}

.group_question .item_que__ans p:last-of-type {
    margin-bottom: 0;
}

.group_question .item_que__icon {
    position: absolute;
    top: 14px;
    right: 20px;
    transition: all 0.5s ease;
}

.group_question .item_que__icon::before,
.group_question .item_que__icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--black);
}

.group_question .item_que__icon::after {
    transform: rotate(90deg);
}

.col_form__inner {
    border-radius: 20px;
    border: 1px solid #e2e0e0;
    background: #fff;
    margin-left: 50px;
    padding: 30px 40px;
}

.col_form__inner .des_form {
    margin-bottom: 30px;
}

.list_inner_form input:not([type="submit"]),
.list_inner_form textarea {
    height: 48px;
    background: #fafafa;
    border-radius: 12px !important;
    border: none;
    box-shadow: none;
    margin: 0;
}

.btn_main.btn_main--black input[type="submit"] {
    background: none !important;
    margin: 0;
    min-width: 150px;
    box-shadow: none !important;
}

.flash_sale__page_4 .content_des {
    margin-bottom: 40px;
}

.col_form__inner .btn_main {
    margin-top: 40px;
}

.group_to_cart span.woocommerce-Price-amount.amount {
    color: #fff;
    transition: all 0.5s;
}

.btn_main.btn_main--black:hover .amount {
    color: var(--black-2);
    transition: all 0.5s;
}

.sub_product_gal .slide_img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.product_single_banner_layout_1 {
    min-height: 600px;
    padding-top: 200px;
    background-position: top;
}

.product_single_banner_layout_1. + .product_single_page_2 {
    margin-top: -90px;
}

.list_tabs_product ul {
    display: flex;
    gap: 80px;
    margin-bottom: 0;
    justify-content: center;
    font-size: 24px;
}

.list_tabs_product ul li {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.list_tabs_product ul li:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--black-2);
    bottom: 0;
    left: 0;
    transition: all 0.5s ease;
}

.list_tabs_product ul li:hover:before,
.list_tabs_product ul li.active:before {
    width: 100%;
    transition: all 0.5s ease;
}

.list_tabs_product ul li.active {
    font-weight: 700;
}

.list_tabs_product ul li a {
    color: var(--black-2);
}

.add_item_layout--1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 0.5fr 1fr;
    gap: 20px;
}

.add_item_layout--1 .item_layout--1 {
    position: relative;
}

{
}
.add_item_layout--1 .item_layout--1:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.add_item_layout--1 .item_layout--1:nth-child(3) {
    grid-area: 2 / 1 / 4 / 2;
}

.add_item_layout--1 .item_layout--1:nth-child(2) {
    grid-area: 3 / 2 / 4 / 3;
}

.add_item_layout--1 .item_layout--1:nth-child(4) {
    grid-area: 1 / 2 / 3 / 3;
}

.add_item_layout--1 .item_layout--1 .item_content {
    position: absolute;
    inset: 0;
    padding: 20px;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s;
}

.content_scroll {
    overflow-y: auto;
    height: 100%;
}

.content_scroll::-webkit-scrollbar {
    width: 4px;
}

.add_item_layout--1 .item_layout--1 .item_img {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.add_item_layout--1 .item_layout--1 img {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.add_item_layout--1 .item_layout--1:before {
    content: "";
    position: absolute;
    border-radius: 20px;
    border: 1px solid #fafafa;
    background: linear-gradient(
            0deg,
            rgb(255 255 255 / 0.85) 0%,
            rgb(255 255 255 / 0.85) 100%
    ),
    lightgray -88.168px -146.603px / 134.214% 167.542% no-repeat;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
}

.add_item_layout--1 .item_layout--1:hover:before {
    opacity: 0.85;
    transition: all 0.5s ease;
}

.add_item_layout--1 .item_layout--1:hover .item_content {
    opacity: 1;
    transition: all 0.5s;
}

.product_content_layout--1 .content {
    margin-right: 50px;
}

.product_content_layout:not(:last-of-type) {
    margin-bottom: 60px;
}

.wrapper_product_content_layout--content {
    display: grid;
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.wrapper_product_content_layout--content > * {
    width: 100%;
    height: max-content;
}

.wrapper_product_content_layout--content .col_content {
    padding: 30px 80px;
}

.wrapper_product_content_layout--content .col_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wrapper_product_content_layout--content  .col_img {
    height: 100%;
}
.list_img_layout--4 {
    display: flex;
    align-items: start;
    gap: 20px;
}

.list_img_layout--4 .item_layout--4 {
    width: calc(25% - 20px);
}

.list_img_layout--4 .item_layout--4:nth-child(even) {
    margin-top: 75px;
}

.list_img_layout--4 .item_layout--4 .item_img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.list_img_layout--4 .item_layout--4 .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list_img_layout--4 .item_layout--4:nth-child(even) .item_img {
    height: 250px;
}

.list_img_layout--4 .item_layout--4:nth-child(odd) .item_img {
    height: 450px;
}

.product_single_tabs_change {
    padding-bottom: 0;
}

.product_single_page_content_tabs_2 .content table {
    border: 1px solid #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.product_single_page_content_tabs_2 .content table td {
    border: 1px solid #fafafa;
    padding: 10px;
}

.product_single_page_content_tabs_2
.content
table
tr:first-child
td:first-child {
    border-radius: 8px 0 0 0;
}

.product_single_page_content_tabs_2
.content
table
tr:last-child
td:first-child {
    border-radius: 0 0 0 8px;
}

.product_single_page_content_tabs_2 .content table tr:not(:last-child) td {
    border-bottom: 1px dashed #b7b7b7;
    position: relative;
}

.item_song_demo__icon {
    background-color: var(--black-2);
    display: flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.item_song_demo__icon_button {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border-style: solid;
    border-width: 18px 0 18px 36px;
    border-color: #fff0 #fff0 #fff0 #fff;
    transition: 100ms all ease;
    cursor: pointer;
}

.item_song_demo__icon_button.paused {
    border-style: double;
    border-width: 0 0 0 36px;
}

.item_song_demo__icon_button:hover {
    border-color: #fff0 #fff0 #fff0 #fff;
}

.item_song_demo--audio--progress {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 480px;
    margin-top: 5px;
}

.item_song_demo--audio--progress .progress {
    flex: 1;
    appearance: none;
    height: 4px;
    background: #ccc;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.item_song_demo--audio--progress .progress::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.time {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
}

.aWrap .svg-inline--fa {
    color: white !important;
}

.aWrap {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: end;
    padding: 12px;
    margin: 5px 0;
    border-radius: 10px;
    background: #fafafa;
    gap: 1rem;
    gap: 30px;
    border-radius: 5px;
}

.aWrap,
.aWrap * {
    box-sizing: border-box;
}

.aPlay {
    padding: 0;
    margin: 0;
    background: 0;
    border: 0;
    cursor: pointer;
    border-radius: 100px;
    background: #010101;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aCron {
    font-size: 14px;
    color: #cbcbcb;
    margin: 0 10px;
}

.aWrap input[type="range"] {
    appearance: none;
    border: none;
    outline: none;
    box-shadow: none;
    width: calc(100%);
    padding: 0;
    margin: 0;
    background: 0;
}

.range,
.range-volume {
    position: relative;
    display: flex;
    align-items: center;
}

.range input,
.range-volume input {
    position: relative;
    z-index: 1;
}

.range .change-range,
.range-volume .change-range {
    position: absolute;
    left: 0;
    top: 0;
    height: 6px;
    width: 0px;
    background-color: var(--main-color);
    border-radius: 10px 0 0 10px;
}

.range-volume .change-range {
    height: 10px;
    width: 95%;
}

.under-ranger {
    position: absolute;
    left: 0;
    top: 0;
    height: 6px;
    width: 100%;
    background-color: #d9d9d9;
    border-radius: 10px;
}

.range-volume .under-ranger {
    height: 10px;
}

.aWrap input[type="range"]::-webkit-slider-thumb {
    appearance: none;
}

.aWrap input[type="range"]::-webkit-slider-runnable-track {
    background: #fff0;
    height: 6px;
    border-radius: 10px;
}

.aWrap input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0;
    background: #d9d9d9;
    position: relative;
    cursor: pointer;
    margin-top: -5px;
}

.aWrap input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    position: relative;
    cursor: pointer;
    margin-top: -5px;
}

.aVolIco {
    margin: 0 10px;
    cursor: pointer;
}

input.aVolume {
    width: 100px !important;
}

.aVolume::-webkit-slider-runnable-track {
    height: 10px !important;
}

.aVolume::-webkit-slider-thumb {
    margin-top: -3px !important;
}

.aVolume::-moz-range-thumb {
    margin-top: -3px !important;
}

.volume-container {
    display: flex;
    align-items: center;
}

.item_song_demo__label {
    font-size: 16px;
    color: var(--black-2);
    margin-bottom: 10px;
    display: flex;
}

span.aPlayIco {
    color: #fff;
    font-size: 28px;
}

.list_song_demo_product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.item_song_demo__content h3 {
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.item_song_demo__content {
    width: calc(100% - 90px);
}

.item_song_demo__content .item_song_demo__time {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.item_song_demo__content .item_song_demo__time .range {
    width: calc(100% - 120px);
}

.group_title--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product_single_page_content_tabs {
    display: none;
}

.product_single_page_content_tabs.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.section_song_demo {
    display: block;
}

.product_single_category {
    background: #171717;
    border-radius: 40px;
}

.list_product_cat__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 20px;
    color: #fff;
    justify-content: center;
}

.list_product_cat__list .item_product_cat {
    min-width: 160px;
}

.list_product_cat__list .item_product_cat__item {
    margin-bottom: 8px;
}

.list_product_cat__list .item_product_cat__parent a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.list_product_cat__list a:hover {
    color: var(--main-color);
    transition: all 0.5s ease;
}

.list_product_cat__list .item_product_cat__child a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.5s ease;
}

.list_product_cat__list .list_product_cat__list {
    max-width: 100%;
    overflow-x: auto;
}

.product_info_additional__1 .list_info_additional {
    border-radius: 16px;
    background: #fafafa;
    padding: 20px 30px;
}

.product_info_additional__1
.list_info_additional
.item_info_additional:nth-child(odd) {
    background: #fff;
}

.product_info_additional__1 .list_info_additional .item_info_additional {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
}

.product_info_additional__1
.list_info_additional
.item_info_additional
.item_info_additional--content {
    display: flex;
    gap: 10px;
}

.product_excerpt {
    margin-top: 20px;
}

.list_product {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.block_product:not(.block_product--1) .col_info_product {
    border-radius: 20px;
    background: #fafafa;
    padding: 15px 30px;
}

.block_product:not(.block_product--1) .add_item_for_product {
    background: #dadada;
}

.filters_after {
    display: flex;
    gap: 20px;
}

.filters_after button {
    margin: 0 !important;
}

.title_filter {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.title_filter h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black-2);
    margin-bottom: 0;
    transition: all 0.5s;
}
.title_filter:hover h3 {
    color:#fff;
}
.product_category__layout--1 .title_filter:hover h3 {
    transition: all 0.5s;
    color: #fff;
}

.wrap_order {
    position: relative;
    display: flex;
    justify-content: end;
}

.product_category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 100%;
}

.open_custom_order {
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
}

.wrap_order .custom-orderby-wrapper {
    position: absolute;
    z-index: 100;
    top: 30px;
    min-width: 300px;
    width: max-content;
}

.open_custom_order .wrap_order {
    cursor: pointer;
}

.wrap_order {
    position: relative;
    display: flex;
    justify-content: end;
}

.wrap_order .custom-orderby-wrapper {
    position: absolute;
    z-index: 100;
    top: 30px;
}

.close_order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    padding: 0;
}

.order_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.custom-orderby-wrapper {
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
}

.orderby-title {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    text-transform: uppercase;
    width: calc(100% - 60px);
}

.custom-orderby-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-orderby-list li {
    margin-bottom: 10px;
}

.custom-orderby-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
}

.custom-orderby-list a.active,
.custom-orderby-list a:hover {
    background: #333;
}

.open_custom_order,
.close_order {
    cursor: pointer;
}

.product_category__banner, .about_us_1 {
    min-height: 75vh;
}

.product_category__layout--2 .filters-container form {
    display: flex;
    align-items: start;
    gap: 50px;
}

.product_category__layout--2 .filters-container {
    border-radius: 20px;
    background: #fafafa;
    padding: 35px 80px;
}

.product_category__layout--2 .filters-container form .filters_content {
    /*width: 70%;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 60px;
}

.product_category__layout--2 .filters-container form .filters_content > * {
    margin: 0 !important;
}

.product_category__layout--2 .filters-container form .filters_content > * .filter-title {
    margin: 0 !important;
    border: none !important;
    border-radius: 12px !important;
    background: #fff;
}
.filter.filter_fix .yith-wcan-filters.horizontal .yith-wcan-filter {
    width: 100%;
}
.filter-content-footer {
    display: none;
}

.product_category__layout--1 .title_filter.open_filter {
    border-radius: 100px;
    border: 1px solid var(--black-2);
    background: #fff;
    padding: 20px;
    width: max-content;
    font-size: 16px;
    cursor: pointer;
}

.product_category__layout--1 .title_filter.open_filter {
    border-radius: 100px;
    border: 1px solid var(--black-2);
    background: #fff;
    padding: 20px;
    width: max-content;
    font-size: 16px;
}

.filter .inner_filter {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 100;
    transition: all 0.5s;
    transform: translateX(-100%);
    width: 504px;
    height: 100%;
    border-radius: 0 50px 50px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filter .inner_filter .list_filter {
    padding: 37px;
    overflow-y: scroll;
}

.filter.active .inner_filter {
    transform: translateX(0%);
    z-index: 100000;
}

.filter.active .inner_filter list_filter__inner {
    overflow-x: hidden;
    height: 100%;
}

.filter_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 37px;
    border-bottom: 1px solid #d9d9d9;
}

.close_filter {
    border-radius: 50px;
    border: 1px solid var(--nn-chnh, #efece5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close_filter:hover path,
.close_order:hover path {
    stroke: #fff;
    transition: all 0.5s ease;
}

.close_filter:hover svg,
.close_order:hover svg {
    transition: all 0.5s;
    transform: rotate(90deg);
}

.close_filter svg,
.close_order svg {
    transition: all 0.5s;
    transform: rotate(0deg);
}

.inner_product_category__header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product_category__header .list_product_cat {
    display: flex;
    gap: 20px;
}

.product_category__header .item_product_cat:after {
    content: "/";
    margin-left: 30px;
    color: #777;
    font-size: 20px;
}

.product_category__header .item_product_cat a {
    color: #777;
    font-size: 22px;
    position: relative;
}

.product_category__header .item_product_cat:last-of-type:after {
    display: none;
}

.product_category__header .item_product_cat a span.cat_count {
    position: absolute;
    font-size: 13px;
    top: -4px;
}

.product_category__header .item_product_cat a:hover {
    color: var(--main-color);
}

.product_category__header .item_product_cat a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: all 0.5s;
}

.product_category__header .item_product_cat a:hover:before {
    width: 100%;
    transition: all 0.5s;
}

.custom-orderby-list--label {
    color: #777;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.wrap_inner_search_compare input {
    background: #fafafa !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    height: 60px !important;
}

.wrap_inner_search_compare .btn_search_compare {
    position: absolute;
    right: 30px;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap_inner_search_compare {
    position: relative;
}

.wrap_inner_search_compare .btn_search_compare input#searchsubmit {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
}

.form_compare {
    max-width: 70%;
    margin: 0 auto;
}

.wrap_inner_search_compare form {
    position: relative;
    margin: 0;
}

.compare_popup {
    display: none;
}

.inner_popup_compare {
    width: 864px;
    fill: #fff;
    filter: drop-shadow(0 4px 23.3px rgb(0 0 0 / 0.08));
    min-height: 75vh;
}

.list_product_compare {
    display: flex;
    gap: 20px;
}

.list_product_compare > * {
    width: calc(33% - 20px);
}

.wrap_inner_search_compare #compare_result_search {
    position: absolute;
    z-index: -1;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    filter: drop-shadow(2px 2px 4.8px rgb(0 0 0 / 0.04));
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    min-height: 100px;
    opacity: 0;
    transition: all 0.5s;
    max-height: 500px;
    overflow: auto;
}

.wrap_inner_search_compare.active #compare_result_search {
    opacity: 1;
    transition: all 0.5s;
    z-index: 20;
}

#compare_result_search .loading {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#compare_result_search .loading--icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

#compare_result_search .loading--icon::before,
#compare_result_search .loading--icon::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid var(--gray);
    animation: prixClipFix 2s linear infinite;
}

#compare_result_search .loading--icon::after {
    inset: 8px;
    transform: rotate3d(90, 90, 0, 180deg);
    border-color: #ff3d00;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }
    75%,
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
    }
}

.fancybox__viewport.is-draggable {
    cursor: default !important;
}

.compare_noti {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: red;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    display: none;
}

.clear_product_compare {
    border: 1px solid #efece5;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    cursor: pointer;
}

.product_compare_item {
    position: relative;
}

.btn_compare_list {
    margin: 40px auto 0;
}

.inner_product_search {
    display: flex;
    gap: 10px;
}

.inner_product_search .item_product_search__img {
    width: 30%;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
}

.item_product_search.item_not_compare,
.item_product_search:hover {
    background: #e7e7e7;
    transition: all 0.5s;
}

.item_product_search.item_not_compare {
    cursor: not-allowed;
}

.item_product_search {
    transition: all 0.5s;
    padding: 12px;
    cursor: pointer;
}

.inner_product_search .item_product_search__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.inner_product_search .item_info {
    width: 70%;
    display: flex;
    align-items: start;
    gap: 25px;
}

.item_product_search .item_product_search__title {
    font-size: 18px;
}

.inner_product_search .item_info .item_info_left {
    width: 70%;
}

.inner_product_search .item_info .item_info_right {
    width: 30%;
    text-align: right;
}

.sale_product_cp span.item_product_search__price--regular bdi {
    text-decoration: line-through;
    opacity: 0.5;
}

.item_product_search .label_attr {
    font-size: 14px;
}

.item_product_search .list_attr_product {
    margin: 0;
}

.product_compare_item:has(.clear_product_compare) .item_rate {
    right: 60px;
}

.product_compare_search .wrap_inner_search_compare, .search_order_ctv{
    max-width: 70%;
    margin: 0 auto;
}

.compare-table td:first-child,
.compare-table th:first-child {
    width: 20%;
}

table.compare-table {
    border: none !important;
    color: #000;
}

table.compare-table th,
table.compare-table td {
    border: none;
}

table.compare-table tbody tr:nth-child(odd) {
    background: #fafafa;
}

table.compare-table tbody tr td,
table.compare-table tbody tr th {
    padding: 10px;
}

table.compare-table tbody tr td {
    text-align: center;
}

table.compare-table {
    width: 100%;
}

table.compare-table thead.product_compare_table__item th {
    width: 25% !important;
    min-height: 300px;
}

table.compare-table .product_compare_table__item th {
    padding: 20px;
    position: relative;
}

.compare-table th {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.compare-table th strong {
    font-weight: 600;
}

table.compare-table tr,
table.compare-table td,
table.compare-table th {
    color: #000;
    text-transform: unset;
}

.compare-product-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.compare-flex-header {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

.compare-flex-row {
    display: flex;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    gap: 10px;
}

.compare-flex-col {
    flex: 1;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    font-size: 14px;
}

.compare-flex-col-label {
    flex: 0 0 25%;
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    padding-left: 0;
}

.product-col {
    position: relative;
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-col {
    flex: 0 0 25%;
    justify-content: center;
    text-align: center;
}

.clear_product_compare {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.15);
    z-index: 10;
}

.clear_product_compare svg {
    width: 12px;
    height: 12px;
}

.compare-flex-row.attr-group {
    background-color: #f8f8f8;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 0;
}

.compare-flex-row.attr-group .compare-flex-col-label.group-label {
    font-weight: 700;
}

.attribute-header {
    height: 580px;
}

.product-data-columns-wrapper > * {
    width: 33%;
    position: relative;
}

.item_product_compare_table__head .item_post {
    padding: 0 10px;
}

.product-compare-container {
    display: flex;
    width: 100%;
}

.compare-attributes-column {
    flex: 0 0 25%;
}

.product-data-columns-wrapper {
    flex: 1 1 75%;
    display: flex;
    width: 75%;
}

.product-column {
    flex: 1 1 33.33%;
    border-right: 1px solid #ccc;
}

.product-column:last-child {
    border-right: none;
}

.attribute-header,
.attribute-label,
.attribute-group-label,
.product-card-wrapper,
.attribute-value,
.attribute-group-value {
    padding: 10px;
    border-bottom: 1px solid #eee;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.attribute-group-label,
.attribute-group-value {
    font-weight: 700;

}
.attribute-group-label,
.attribute-group-value ,.attribute-label{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.attribute-value:nth-child(odd),
.attribute-label:nth-child(odd) {
    background: #fafafa;
}

.custom-cart-popup .custom-cart-popup--layout {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s;
    transform: translateX(100%);
    background: linear-gradient(
            to right,
            rgb(23 23 23 / 0.2) 40%,
            rgb(23 23 23 / 0.5) 80%
    );
    overflow: hidden;
    cursor: none;
}

.custom-cart-popup .popup-inner {
    background: #fff;
    width: 720px;
    border-radius: 10px;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.5s;
    transform: translateX(100%);
    height: 100%;
    transition: all 0.5s;
    transition-delay: 0.5s;
    z-index: 100000;
}

.custom-cart-popup.active .popup-inner {
    transition: all 0.5s;
    transform: translateX(0%);
    transition: all 0.5s;
    transition-delay: 0.5s;
}

.custom-cart-popup .close-popup {
    position: absolute;
    top: 39px;
    right: 60px;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    width: 50px;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.custom-cart-popup .close-popup svg {
    transition: all 0.5s;
    transform: rotate(0deg);
}

.custom-cart-popup .close-popup:hover svg {
    transition: all 0.5s;
    transform: rotate(180deg);
}

.item_attr.selected, .item_attr.active {
    border: 2px solid #000;
}

.add-to-cart-custom .loading {
    position: absolute;
    top: 50%;
    left: 50px;
    background: #fff0;
    width: 100%;
    inset: 0;
}

.loading .loader_icon,
.loading .loader_icon:after,
.loading .loader_icon:before {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loading .loader_icon {
    color: #000;
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.loading .loader_icon:after,
.loading .loader_icon:before {
    content: "";
    position: absolute;
    top: 0;
}

.loading .loader_icon:after {
    left: 3.5em;
}

.loading .loader_icon:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

@keyframes bblFadInOut {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.add-to-cart-custom:has(.loading) > * {
    background: #fff !important;
    color: transparent !important;
}

.product_price--sale:empty + .product_price--regular bdi {
    text-decoration: none;
    font-size: 24px;
}

.col_info_product .loading_product_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.5s;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.col_info_product .loading_product_content .loading_icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: var(--main-color);
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
}

@keyframes animloader {
    0% {
        box-shadow: -38px -12px, -14px 0, 14px 0, 38px 0;
    }
    33% {
        box-shadow: -38px 0, -14px -12px, 14px 0, 38px 0;
    }
    66% {
        box-shadow: -38px 0, -14px 0, 14px -12px, 38px 0;
    }
    100% {
        box-shadow: -38px 0, -14px 0, 14px 0, 38px -12px;
    }
}

.custom-cart-popup.active .custom-cart-popup--layout {
    transition: all 0.5s;
    transform: translateX(0%);
}

.custom-cart-popup .btn-checkout {
    width: 100%;
    margin-top: 31px;
}

.custom-cart-popup .btn-checkout {
    width: 100%;
    margin-top: 31px;
}

.custom-cart-popup .popup-inner .popup_cart_header {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 37px;
    border-bottom: 1px solid #d9d9d9;
}

div#custom-cart-content {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    height: calc(100% - 125px);
}

.custom-cart-popup .popup-inner .popup_cart_header h3 {
    font-size: 36px;
    margin: 0;
}

.custom-cart-item {
    display: flex;
    gap: 20px;
    width: 100%;
}

.custom-cart-item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
}

div#custom-cart-content .custom-cart-items_body {
    height: 100%;
    overflow-y: scroll;
    padding: 2rem 3rem;
    width: 100%;
}

.custom-cart-item .cart-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.custom-cart-total {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
}

.custom-cart-items_bottom {
    padding: 1rem 3rem;
    border-block-start: 1px solid rgba(23 23 23 / 0.06);
    width: 100%;
}

.text_cart_price strong {
    font-size: 18px;
}

.text_cart_price {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 16px;
}

.text_cart_price .total_item_product {
    font-size: 14px;
}

.text_cart_price span.woocommerce-Price-amount.amount {
    font-size: 18px;
}

.custom-cart-item .cart-thumbnail {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.custom-cart-items {
    width: 100%;
}

.custom-cart-item .cart-info {
    width: calc(100% - 120px);
    display: flex;
    justify-content: space-between;
}

.custom-cart-item .cart-info a {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-2);
}

dl.variation dt {
    display: none;
}

.cart-variant {
    font-size: 14px;
    font-weight: 300;
}

.cart-price {
    font-size: 16px;
    color: #000 !important;
}

.cart-price del.price-old {
    font-size: 12px;
}

.cart-price .amount {
    color: #000;
}

.cart-actions .qty-btn {
    margin: 0;
    padding: 5px;
    font-size: 5px;
}

.cart-actions .group_qty {
    display: flex;
    flex-direction: column;
}

.cart-actions .qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-actions span.qty-value {
    font-size: 15px;
}

li#custom-cart-toggle {
    position: relative;
    z-index: 3;
}

li#custom-cart-toggle span.product_cart_count {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    top: -18px;
    right: -21px;
    z-index: 0;
    font-size: 12px;
}

.popup_cart_header__header {
    position: relative;
}

.popup_cart_header__header span.product_cart_count {
    position: absolute;
    top: 0;
    right: -24px;
    font-size: 20px;
    font-weight: 500;
}

.remove-cart-item.loading_remove {
    position: relative;
    color: #fff0b3;
}

.remove-cart-item.loading_remove, .coupon_input_wrapper .loading .loading_icon {
    width: 24px;
    height: 24px;
    border: 3px solid var(--black-2);
    border-bottom-color: #fff0;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.item_post.item_product--1 .item_img {
    height: 100%;
}

.empty_cart {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding: 2rem 3rem;
}

.list_cart_cat .item_cart_cat {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
    background: #fafafa;
    padding: 10px 30px;
    margin-bottom: 25px;
}

.list_cart_cat {
    /*padding: 0 50px;*/
    width: 100%;
}

.item_cart_cat__content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.item_cart_cat__content .item_cart_cat__name {
    font-size: 28px;
    font-weight: 400;
}

.list_cart_cat .item_cart_cat svg {
    transition: all 0.5s;
    transform: translateX(-15px);
}

.list_cart_cat .item_cart_cat:hover svg {
    transition: all 0.5s;
    transform: translateX(10px);
}

.empty_cart .group_content h3 {
    font-size: 40px;
    line-height: normal;
}

.empty_cart .group_content {
    margin: 0 auto;
}

.empty_cart .group_content span {
    font-size: 24px;
    font-weight: 300;
    line-height: normal;
}

.list_post_full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 70px 0;
}

.list_post_video {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

div#block_quickview {
    width: 1325px;
    position: relative;
}

#block_quickview .grid-container {
    padding: 0;
}

#block_quickview .loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
#block_quickview .grid-container .col_galary {
    top: 0;
}
#block_quickview .loading .loading--icon {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-bottom-color: #ff3d00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation-ajax 1s linear infinite;
}
div#block_quickview div#loading_ajax {
    background: #fff;
    min-height: 50vh;
}
div#block_quickview:has(.loading):before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #17171780;
    z-index: 10;
}

div#block_quickview:has(.loading) {
    overflow: auto;
}

@keyframes rotation-ajax {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.list_inner_form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.list_inner_form .inner_form__input {
    width: 100%;
}

.list_inner_form .inner_form__input--2 {
    width: calc(50% - 5px);
}

.contact_page .title_form {
    font-size: 100px;
    line-height: 1;
    margin-bottom: 20px;
}

.contact_page .des_form {
    margin-bottom: 30px;
}

.list_map {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-left: 50px;
}

.list_map .item_map .item_map_title {
    color: #777;
    font-size: 20px;
    font-weight: 400;
}

.list_map .item_map .item_map_img img {
    width: 100%;
    border-radius: 20px;
}

.btn_main.btn_main--black:hover input[type="submit"] {
    color: var(--black-2);
    background: #fff0;
}

.btn_main.btn_main--blackinput[type="submit"]:hover {
    box-shadow: none;
}

.custom-close-icon {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

div#search_inner .inner_form_search {
    padding: 50px;
    width: 100%;
}

div#search_inner {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    height: calc(100% - 125px);
    overflow-y: auto;
}

.footer-parallax {
    transition: transform 0.1s linear;
    will-change: transform;
}

div#search_inner form#searchform input#s {
    border-radius: 16px;
    background: rgba(188, 188, 188, 0.20);
    height: 60px;
    padding-left: 50px;
}

div#search_inner form#searchform .btn_submit_search {
    position: absolute;
    top: 18px;
    left: 20px;
    width: auto;
    height: auto;
    display: flex;
}

div#search_inner form#searchform .btn_submit_search input#searchsubmit {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
}

.search_sub_menu {
    width: 100%;
}


form#searchform input {
    margin: 0;
}

.btn_remove_search_input {
    position: absolute;
    right: 20px;
    top: 18px;
    display: none;
    cursor: pointer;
}

.btn_remove_search_input .btn_remove_search_input__text {
    opacity: 1;
    transition: .3s cubic-bezier(.7, 0, .3, 1);
    transition-property: opacity, visibility;
}

.btn_remove_search_input.active .btn_remove_search_input__text {
    opacity: 0;
}

.btn_remove_search_input.active svg {
    opacity: 1;

}

.btn_remove_search_input svg {
    width: 43px;
    height: 20px;
    animation: spin_svg 1s linear infinite;
    transition: .3s cubic-bezier(.7, 0, .3, 1);
    transition-property: opacity, visibility;
    right: 0;
    position: absolute;
    opacity: 0;
    top: 0;
}

@keyframes spin_svg {
    to {
        rotate: -360deg;
    }
}

.item_up_sell {
    border-radius: 12px;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px;
}

.item_up_sell .item_img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
}

.item_up_sell:not(:last-child) {
    margin-bottom: 8px;
}

.item_up_sell .item_img img {
    width: 100%;
    height: 100%;
}

.product_variations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list_card_hover .loading_img {
    width: 40%;
    height: 4.8px;
    display: inline-block;
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list_card_hover .loading_img::after {
    content: '';
    box-sizing: border-box;
    width: 0;
    height: 4.8px;
    background: var(--black-2);
    position: absolute;
    top: 0;
    left: 0;
    animation: animFw 4s linear infinite;
}

@keyframes animFw {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

tr.cart_item {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

tr.cart_item .product__thumb {
    position: relative;
    width: 120px;
    height: 120px;
}

.product__thumb .product_qty__badge {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 20px;
    height: 20px;
    background: rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.product__thumb {
    position: relative;

}

.product__thumb img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
}

tr.cart_item td.product-name, tr.cart_item td.product-total,
tr.order_item td.product-name, tr.order_item td.product-total {
    border: none;
}

.product__meta strong.wc-item-meta-label {
    display: none;
}

tr.cart_item .product__info-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

tr.cart_item .product__title {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--black-2);
}


tr.cart_item td.product-total {
    width: 27%;
    text-align: right;
}

tr.cart_item .product__meta {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.product_checkout__price del {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
}

.checkout_coupon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.coupon_input_wrapper .loading {
    display: none;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.checkout_coupon button.btn_voucher {
    text-transform: unset;
    width: auto;
    margin: 0;
    padding: 10px;
    border-radius: 0px 100px 100px 0px;
    background: var(--black-2);
    color: #fff;
    min-width: 100px;
    line-height: 50px;
    height: 50px;
    padding: 0;
    min-width: 200px;
}

.checkout_coupon input.voucher_code_input {
    margin: 0;
    box-shadow: none;
    border: none;
    border-radius: 20px 0px 0px 20px;
    background: #FFF;
    height: 50px;
    width: calc(100% - 200px);
}

.inner_checkout {
    border-radius: 20px;
    background: #FAFAFA;
    padding: 30px;
}

.voucher_item .inner_voucher {
    display: flex;
    align-items: center;

}

.voucher_item .voucher_label {
    writing-mode: sideways-lr;
    font-size: 20px;
    color: #fff;
    padding: 0 20px;
    line-height: 1;
}

.voucher_item {
    border-radius: 20px;
    background: #000;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.voucher_item:not(:last-of-type) {
    margin-bottom: 30px;
}

.voucher_item:not(:last-of-type) {
    margin-bottom: 30px;
}


.voucher_item .voucher_code {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #5B5760;
}

.voucher_item .voucher_name {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.voucher_item .voucher_description {
    font-size: 14px;
    font-weight: 700;
    color: #393540;
}

.voucher_item .inner_voucher .voucher_box {
    background: #fff;
    width: 100%;
}

.voucher_item .inner_voucher .voucher_box {
    padding: 12px;
}

.voucher_item .inner_voucher .voucher_box p {
    margin: 0;
}

div#applied_coupons_list {
    margin-bottom: 30px;
}

.applied_coupon_box:not(:last-child) {
    margin-bottom: 15px;
}

.voucher_item button.btn_main {
    margin: 0;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    text-transform: unset;
    padding: 6px;
}

button#place_order {
    display: none !important;
}

.wrap_checkout {
    display: flex;
    gap: 50px;
}

.wrap_checkout > * {
    width: 50%;
}

button#externalPlaceOrder {
    width: auto;
    margin: 30px auto 0;
    text-transform: unset !important;
    font-size: 16px;
    line-height: 1;
    padding: 20px;
}

.checkout_right {
    border-radius: 20px;
    background: #FAFAFA;
    padding: 30px;
}


.toggle_payment__item {
    border: 1px solid #000;
    padding: 12px;

}

.payment_sepay.toggle_payment__item {
    border-radius: 12px 12px 0 0;
}

.payment_baokim.toggle_payment__item {
    border-radius: 0 0 12px 12px;
}

.toggle_payment__content {
    padding: 10px 30px;
}

ul.wc_payment_methods.payment_methods.methods {
    margin: 0;
}

.toggle_payment {
    /* border: 1px solid #000; */
    /* border-radius: 12px; */
}

.toggle_payment__item {
    border: 1px solid #000;
    /* padding: 12px; */
}

.payment_sepay.toggle_payment__item {
    border-radius: 12px 12px 0 0;
}

.payment_baokim.toggle_payment__item {
    border-radius: 0 0 12px 12px;
}

.toggle_payment__content {
    padding: 10px 50px;
}

ul.wc_payment_methods.payment_methods.methods {
    margin: 0;
}


.toggle_payment__title {
    /* padding-top: 15px; */
    padding-left: 30px;
    position: relative;
}

.toggle_payment__title h3 {
    padding: 0 !important;
    margin: 0 !important;
}

.toggle_payment__title:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    left: 10px;
    top: 9px;
}

.toggle_payment__item.active .toggle_payment__title:before {
    background: #000;
}

del.product__price--regular {
    display: block;
}

tfoot tr:not(.order-total) th, tfoot tr:not(.order-total) td {
    border: none;
}

tfoot tr.order-total th, tfoot tr.order-total td {
    border-top: 1px solid #D2D2D2;
    border-bottom: 1px solid #D2D2D2;
    border-width: 1px !important;
    padding: 30px 0;
    margin-top: 15px;
}

.check_order_table tr > th, .check_order_table tr > td {
    width: 50%;
    vertical-align: top;
}

.order-ship td {
    color: #FB0000;
    font-weight: 600;
}

tfoot tr.order-total {
    margin-top: 15px;
}

div#show_order_search .col_content_order_table .check_order_table {
    padding-right: 50px;
}

.table_order_details {
    padding-left: 50px;
}

.check_order_table tr.order-total th, .check_order_table tr.order-total td {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 15px;
}

.check_order_table tr.order-ship th, .check_order_table tr.order-ship td {
    border-bottom: 1px solid #D2D2D2;
    padding-bottom: 15px;
}

tfoot tr.coupon-total th, tfoot tr.coupon-total td {
    padding-bottom: 25px;
}

.toggle_payment__title h3 {
    font-weight: 400 !important;
    text-transform: unset !important;
}

form.checkout.woocommerce-checkout textarea,
form.checkout.woocommerce-checkout input, form.checkout.woocommerce-checkout select {
    border: none;
    box-shadow: none;
    border-radius: 12px;
    background: #FAFAFA;
}

.method_payment {
    margin-top: 40px;
}

.wrapper_thankyou-order-details {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.wrapper_thankyou-order-details > * {
    width: 50%;
}

p.woocommerce-notice.woocommerce-notice--success, span.optional {
    display: none;
}

.sepay-pay-info {
    flex-direction: column !important;
    align-items: center !important;
}

section.woocommerce-customer-details {
    display: none;
}

.table_order_details ul.woocommerce-order-overview li {
    display: flex;
    justify-content: space-between;
}

tr.notice-payment td {
    text-align: center !important;
}

.thankyou_message {
    border-radius: 20px;
    border: 1px solid #00BE23;
    background: rgba(0, 190, 35, 0.10);
    padding: 24px;
}

.thankyou_message .btn_main {
    margin: 0 auto;
}

.voucher-tabs {
    font-family: sans-serif;
}

.voucher-tabs .tabs {
    display: flex;
    list-style: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
}

.voucher-tabs .tabs li {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.voucher-tabs .tabs li.active {
    border-color: black;
    font-weight: bold;
}

.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

.nav-vertical.nav-line > li > a:before {
    display: none;
}

.order-status-tabs .tabs {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D8D8D8;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.order-status-tabs .tabs li {
    /* background: #eee; */
    padding: 8px 14px;
    border-radius: 4px;
    flex: 0 0 auto;
}

.order-status-tabs .tabs li.active {
    /* background: #000; */
    color: #fff;
    ont-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.custom-order-card {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 20px;
    background: #FFF;
    border-bottom: 1px solid #D2D2D2;

}

.custom-order-card ul.order-items {
    border-bottom: 1px solid #D2D2D2;
}

.custom-order-card ul.order-items .order_items_img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.custom-order-card:not(:last-of-type) {
    margin-bottom: 35px;
}

.order-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D2D2D2;
    margin-bottom: 35px;
    padding-bottom: 8px;
}

.toggle-order-detail {
    background: transparent;
    border: none;
    color: var(--black-2);
    cursor: pointer;
    width: max-content;
    margin: 30px auto 0;
    display: block;
}

.col_account_content {
    border-radius: 20px;
    background: #FAFAFA;
    padding: 20px;
}

.order-status-tabs .tabs li a {
    display: flex;
    flex-wrap: nowrap;
}

.toggle-order-detail svg {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.toggle-order-detail svg.rotated {
    transform: rotate(180deg);
}

.order_items_content__attr .order_items_content__attr--item {
    display: flex;
}

.order_items_content__attr .order_items_content__attr--item p {
    margin-bottom: 0;
}

.order_items_content__title {
    font-size: 16px;
    color: var(--black-2);
    font-weight: 700;
}

.order_items_content__attr .order_items_content__attr--item {
    display: flex;
}

.order_items_content__attr .order_items_content__attr--item p {
    margin-bottom: 0;
}

.order_items_content__title {
    font-size: 16px;
    color: var(--black-2);
    font-weight: 700;
}

.order-meta .order_meta__item {
    display: flex;
    gap: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.order-meta span.order_meta__label {
    min-width: 226px;
}

.order_meta__item {
}

.order-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-meta p {
    margin: 0;
}

.order_product__sale_rate {
    font-weight: 600;
}

.custom-order-card ul.order-items .order_items_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-order-card ul.order-items li:not(:last-child) {
    margin-bottom: 30px;
}

.custom-order-card ul.order-items li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

span.custom_order__id {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.custom_order__id {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-pagination > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
    transition: all 0.5s;
}

.order-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.order-pagination .next, .order-pagination .prev {
    border: none;
}

.order-pagination .current, .order-pagination .page-numbers:not(.next):hover, .order-pagination .page-numbers:not(.prev):hover {
    transition: all 0.5s;
    color: #fff;
    background: var(--black-2);
}

.account-user.circle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.account-user.circle span.image {
    margin: 0;
}

.account-user.circle span.image img {
    width: 120px;
}

.my-account form input {
    border: none;
    box-shadow: none;
    border-radius: 20px;
}

.my_account_sidebar {
    border-radius: 20px;
    background: #FAFAFA;
    padding: 20px 40px;
}

ul#my-account-nav li a {
    text-transform: unset;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

ul#my-account-nav li.active a {
    font-weight: 700;
}

.about_us_1__content {
    position: absolute;
    bottom: 70px;
    left: 40px;
}

.about_us_1__content h2.about_us_1__title {
    font-size: 60px;
    line-height: 1;
    margin: 0;
}

.about_us_1__content .about_us_1__subtitle {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 1rem;
}

.list_content_menu .item_content {
    display: flex;
    gap: 20px;
}

.list_content_menu .item_content .item_content__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-2);
    width: 320px;
}

.list_content_menu .item_content .item_content__content {
    width: calc(100% - 320px);
}

.slide_about_5 .swiper-slide {
    text-align: center;
}

.inner_search_order {
    width: 65%;
    margin: 60px auto;
}

.content_contact_order {
    width: 75%;
    margin: 40px auto 0;
}

.content_contact_order p {
    font-style: italic;
}

.content_contact_order .btn_main {
    margin: 30px auto;
}

.list_item_bh .item_product_bh {
    display: flex;
    gap: 120px;
}

.list_item_bh .item_product_bh .info_product_bh {
    width: calc(50%);
    /*display: flex;*/
    /*align-items: end;*/
    /*justify-content: space-between;*/
}

.list_item_bh .item_product_bh .image_product_bh {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
}

.list_item_bh .item_product_bh .info_product_bh p {
    margin-bottom: 6px;
}

.click_see_bh a {
    display: flex;
    align-items: center;
}

.list_item_bh .item_product_bh .info_product_bh .info_item__content {
    display: flex;
}

.list_item_bh .item_product_bh .info_product_bh .info_item__content span.info_label {
    width: 44%;
}

.title_bh {
    border-bottom: 1px solid #D2D2D2;
    margin-bottom: 40px;
}

.title_bh h4 {
    font-size: 24px;
    font-weight: 500;
}

.list_item_bh .item_product_bh .image_product_bh a {
    display: block;
    text-align: center;
    text-decoration: underline;
    font-weight: 500;
    color: #000;
}

.list_item_bh .item_product_bh .image_product_bh img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.table_history_bh span.status {
    padding: 10px;
    text-align: center;
    display: block;
    width: 80%;
    margin: 0 auto;
    font-weight: 500;
}

.table_history_bh span.status.status-1 {
    background: #D9D9D9;
}

.table_history_bh span.status.status-2 {
    background: #FFC0C0;
}

.table_history_bh span.status.status-3 {
    background-color: #34C759;
}

.table_history_bh {
    overflow-x: scroll;
    scrollbar-width: thin;
}

.table_history_bh table th {
    width: max-content;
    white-space: nowrap;
    text-transform: unset;
}


.table_history_bh table th:not(:first-child) {
    padding: 0 12px;
}

.table_history_bh table th, .table_history_bh table td {
    color: #000 !important;
    text-align: center;
}

.check_file_request {
    display: flex;
    gap: 50px;
}

.check_file_request > * {
    width: 50%;
}

.check_file_request .block_product.block_product--3 .swiper.main_product_gal {
    height: 400px;
}

.check_file_request .block_product.block_product--3 .swiper.sub_product_gal {
    /*height: 100px;*/
}

.block_product.block_product--3 .swiper.sub_product_gal .swiper-slide {
    aspect-ratio: 1/ 1;
}

.product_file_item_content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.product_file_item_content span.label {
    width: 40%;
    font-weight: 700;
}

.product_file_item_content.product-detail-block span.label {
    width: 100%;
    text-decoration: underline;
    cursor: pointer;
}

.product-detail-block .value {
    margin: 15px 0;
}

.item_file_setup {
    background: #fff;
    border-radius: 20px;
    width: calc(25% - 30px);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

svg, path {
    transition: all 0.5s;

}

.list_file_request_content {
    padding: 30px;
    border-radius: 20px;
    background: #FAFAFA;
    display: flex;
    gap: 60px;
}

.item_file_setup .inner_file_setup {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.item_file_setup:hover {
    background: var(--main-color);
    color: #fff;
    transition: all 0.5s;
}

.item_file_setup:hover path {
    fill: #fff;
    transition: all 0.5s;
}

.shop_look_items {
    display: flex;
    gap: 40px;
}

.shop_look_items .shop_look_items__img {
    width: 60%;
    position: relative;

}

.shop_look_items .shop_look_items__gal {
    width: 40%;
    position: relative;
    border-radius: 20px;
    background: #FAFAFA;
    padding: 35px;
}
.shop_look_swiper {
    position: unset;
}
.shop_look_swiper .swiper-pagination {
    bottom: 10px;
}

.shop_look_swiper .swiper-pagination-bullet {
    opacity: 1;
    transition: all 0.5s;
}

.shop_look_swiper span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    scale: 1.5;
    background: transparent;
    border: 1px solid #333;
    transition: all 0.5s;

}

.list_shop_look_slide__img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list_shop_look_slide__img .list_shop_look_slide__img--item {
    width: 33%;
}

.list_shop_look_slide__img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 12px;
}

.shop_look_img img {
    border-radius: 20px;
    width: 100%;
}

.shop_look_dot__item {
    position: absolute;
    z-index: 5;
    transition: all 0.5s;
    transform: translate(-50%, -50%);
}

.shop_look_dot__item .shop_look_dot__item--inner {
    opacity: 0;
    position: absolute;
    width: max-content;
    max-width: 320px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    padding: 10px 20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -106px;
    transition: all 0.5s;

}
.shop_look_dot__item.active .shop_look_dot__item--inner {
    opacity: 1;
    transition: all 0.5s;
}
.shop_look_dot__item .shop_look_dot__item--inner .shop_look_dot__item--thumb img {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 12px;
}

.shop_look_dot__item .shop_look_dot__item--inner h3.shop_look_dot__item--title {
    font-size: 16px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.shop_look_dot__item .shop_look_dot__item--inner .shop_look_dot__item--price {
    font-size: 14px;
}
.shop_look_dot__item .shop_look_dot__item--inner .shop_look_dot__item--price bdi {
    font-weight: 400;
}
.shop_look_items:not(:last-of-type) {
    margin-bottom: 80px;
}

.shop_look_dot__item.shop_look_dot__item--right .shop_look_dot__item--inner {
    top: -21px;
    left: 69px;
    transform: none;
    bottom: unset;
}


.shop_look_dot__item.shop_look_dot__item--up .shop_look_dot__item--inner {
    bottom: 75px;
}


.shop_look_dot__item.shop_look_dot__item--up.shop_look_dot__item--left .shop_look_dot__item--inner {
    bottom: -15px;
    left: calc(100% - 227px);
}

.shop_look_dot__item .shop_look_dot__item--inner .shop_look_dot__item--info {
    width: calc(100% - 90px);
}
.shop_look_dot__item .shop_look_dot__item--inner:before {
    content: '';
    position: absolute;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    width: 24px;
    height: 24px;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}
.shop_look_dot__item.shop_look_dot__item--right .shop_look_dot__item--inner:before {
    top: 50%;
    left: 0;
    transform: translate(-16px, -50%) rotate(-90deg);
}

.shop_look_dot__item.shop_look_dot__item--up .shop_look_dot__item--inner::before {
    top: unset;
    bottom: -17px;
    transform: translateX(-50%) rotate(180deg);
}

.shop_look_dot__item.shop_look_dot__item--up.shop_look_dot__item--left .shop_look_dot__item--inner::before {
    left: unset;
    right: -5px;
    bottom: 37%;
    transform: translateX(50%) rotate(90deg);
}
.shop_look_slide  .inner_slide {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 10px;
}

.shop_look_swiper .swiper-wrapper,.shop_look_slide {
    height: 100%;
}
.shop_look_slide .inner_slide .shop_look_slide__thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.shop_look_slide__meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.shop_look_slide__thumb {
    text-align: center;
}
.item_style {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item_style .item_img {
    width: 100px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

.item_style .item_content {
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item_style:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 20px;
}

.styles_music .list_filter ul {
    list-style: none;
}

.styles_music .list_filter >ul>li> a,.styles_music .list_filter >ul>li.active> a {
    font-weight: 700;
    color: #000;
}

.styles_music .list_filter ul a {
    color: #000;
    position: relative;
}

.styles_music .list_filter ul a:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
}
.toggle-icon,.item_style .item_content__icon {
    cursor:pointer;
}
.item_style .item_content h3 {
    font-size: 28px;
    margin-bottom: 0;
}

.item_style .item_content .item_desc {
    font-size: 16px;
    color: #777;
}
.search_style .wrap_inner_search_compare {
    width: 75%;
    margin: 0 auto 40px;
}
.item_style .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.styles_music .list_filter ul li >ul {
    margin-left: 15px;
    margin-top: 12px;
}
.styles_music .list_filter {
    margin-top: 40px;
}
.styles_music .list_filter li.has-children {
    position: relative;
}

.styles_music .list_filter li.has-children span.toggle-icon {
    position: absolute;
    right: 30px;
}
.list_product_info_spec  span.value {
    font-weight: 700;
}
.cross_sell_product__title {
    display: flex;
    align-items: end;
    gap: 15px;
    margin-bottom: 20px;
}

.cross_sell_product__group_btn {
    display: flex;
    gap: 15px;
}

.cross_sell_product__title  h4 {
    font-weight: 500;
    border-bottom: 1px solid #D9D9D9;
}

.item_cross_sell_slide {
    display: flex;
    gap: 20px;
}

.item_cross_sell_slide .item_img {
    width: 110px;
    border-radius: 12px;
    overflow: hidden;
}

.item_cross_sell_slide .item_img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.item_cross_sell_slide .item_content {
    display: flex;
    width: calc(100% - 130px);
    justify-content: space-between;
    align-items: center;
}

.item_cross_sell_slide .item_content .btn_add_to_cart {
    width: max-content;
    cursor:pointer;
    height: 40px;
}

.item_cross_sell_slide .item_content .item_title {
    font-weight: 500;
}

.item_cross_sell_slide .item_content .item_price bdi {
    font-weight: 400;
}
.wrap_ctv_info {
    border-radius: 20px;
    background: #FAFAFA;
    padding: 20px 30px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.wrap_ctv_info .ctv_info_content {width: calc(100% - 150px);display: flex;}

.wrap_ctv_info .ctv_info_content .inner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
}

.ctv_info_item {
    display: flex;        /* Label và value trên 1 hàng */
    width: calc(40% - 25px);
}
.wrap_ctv_info .ctv_info_content .ctv_info_content__inner {width: auto;}

.wrap_ctv_info .label {
    font-weight: 600;
    min-width: 130px;
}
.ctv_coupon {
    width: 30%;
    text-align: center;
}
.order-filter-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.order-filter-tabs a {
    position: relative;
    display: block;
    width: max-content;
    padding-bottom: 5px;
}

.order-filter-tabs a:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #000;
    transition: all 0.5s;
    bottom: 0;
    left: 0;
}

.order-filter-tabs a:hover:before,.order-filter-tabs a.active:before {
    transition: all 0.5s;
    width: 100%;
}

li.tabs_ctv__item.active {
    font-weight: 700;
}

li.tabs_ctv__item {
    cursor: pointer;
}
.order-list_ctv_tabs__fee {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.order-list_ctv_tabs__fee .order-list_ctv {
    width: 80%;
}

.order-list_ctv_tabs__fee .order-fee {
    width: 20%;
    text-align: center;
    position: relative;
}
.order-list_ctv_tabs__fee .order-list_ctv__sticky {
    position: sticky;
    top: 120px;
}
h4.order-fee__title {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.tabs_ctv__content {
    display: none;
}

.tabs_ctv__content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
.table_ctv {
    border-radius: 20px;
    background: #FAFAFA;
    padding: 20px 30px;
}
.table_ctv td img {
    max-height: 150px;
}
li.search_product_item {
    display: flex;
    align-items: center;
    gap: 15px;
}

li.search_product_item .item_img {
    width: 30%;
    aspect-ratio: 1;
}

li.search_product_item .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
li.search_product_item {
    display: flex;
    align-items: center;
    gap: 20px;
}

li.search_product_item .item_img {
    width: 15%;
    aspect-ratio: 1;
}

li.search_product_item .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.search_footer a {
    width: 100%;
}
.item_up_sell >* {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.home_page_1 .col_product_category {
    padding-top: 30px;
}
.slider_view_4 {
    height: 430px;
}

.slider_view_4 .swiper-wrapper ,.slider_view_4 .item_post {
    height: 100%;
}
.item_post:not(.item_product--2):hover .item_img img {
    transition: all 0.5s;
    transform: scale(1.3);
}
.corner {
    width: 25px;
    height: 25px;
    color: #fff;
    transform: rotate(0) scaleX(1) scaleY(1);
    position: absolute;
    left: 0;
    z-index: 1000;
    color: #fff;
}
.corner.corner--right {
    transform: rotate(0) scaleX(-1) scaleY(1);
    left:unset;
    right: 0;
}
.boxicon img {
    width: 36px;
    aspect-ratio: 1;
}
.banner_title p,.banner_title h2 {
    margin: 0;
}
.compare_container {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    user-select: none;
    touch-action: none;
}

.compare_layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.compare_layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compare_label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: 600;
}

.compare_label.label_left {
    left: unset;
    right: 20px;
    text-align: right;
}
.compare_label span {
    font-size: 18px;
    font-weight: 400;
}
.compare_before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.compare_after {
    z-index: 1;
}
#backTop {
    cursor: pointer;
}
.compare_handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
    z-index: 3;
    left: 50%;
    transform: translateX(-1px);
    cursor: ew-resize;
}

.compare_handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 20px;
    border: 2px solid #888;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    background-image: url(../image/skjugkmd.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 38px;
    height: 62px;
    border: none;
    background-color: #fff;
    opacity: 1;
    box-shadow: none;
}
.custom_breadcrumbs {
    position: absolute;
    z-index: 20;
    bottom: 60px;
}

.custom_breadcrumbs p {
    margin-bottom: 0;
}

.custom_breadcrumbs a {
    color: #fff;
}
.section_border:last-of-type {
    padding-bottom: 40px;
}
.shop_look_items .shop_look_items__img .shop_look_img,.shop_look_items .shop_look_items__img img {
    height: 100%;
    object-fit: cover;
}
.my_account_sidebar--mb {
    display: none;
}
button.btn_main.add-to-cart-custom .btn_text {
    line-height: 1.2;
}
.custom-order-card ul.order-items .inner_order_content {
    width: 100%;
    display: flex;
}
.method_contact_list ul {
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 6.3px 0 rgba(0, 0, 0, 0.19);
    position: fixed;
    top: 50%;
    z-index: 999;
    right: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-50%);
    margin-bottom: 0;
}
ul.sub-menu {
    list-style: none;
    margin-left: 1rem;
}
ul.sub-menu.nav-dropdown.nav-dropdown-default {
    transform: translateY(50%);
    transition: all 0.5s;
    left: -15px !important;
    position: absolute;
    z-index: -1;
    border: none;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
    padding-top: 80px;
}
.nav>li li.menu-item {
    z-index: 10;
}
li.current-dropdown ul.sub-menu.nav-dropdown.nav-dropdown-default {
    transform: translateY(0);
    transition: all 0.5s;
    z-index: 100;
    opacity:1;
}
ul.sub-menu.nav-dropdown.nav-dropdown-default a:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #333;
    transition: all 0.5s;
    bottom: 0;
}

ul.sub-menu.nav-dropdown.nav-dropdown-default a:hover:before {
    width: 100%;
    transition: all 0.5s;
}

ul.sub-menu.nav-dropdown.nav-dropdown-default a{
    position:relative;
}
.nav-dropdown:after {
    display: none;
}

.nav-dropdown-has-arrow.nav-dropdown-has-border li.has-dropdown:before,.nav-dropdown-has-arrow.nav-dropdown-has-border li.has-dropdown:after {
    display: none;
}
.corner.corner--line {
    z-index: 0;
    height: 1px;
    background-color: rgb(23 23 23 / .115);
    transition: opacity var(--animation-nav);
    width: 100%;
}


.corner svg.w-full.h-auto {
    stroke-width: 3px;
    stroke: rgb(23 23 23 / .115);
}
.btn_out_stock {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform:translateX(-50%);
    z-index:5;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 3px 10px;
    opacity: 0.5;
    transition: all 0.5s;
    background: #fff;
}
.item_post:hover .btn_out_stock{
    bottom: 65px;
    opacity: 1;
    transition: all 0.5s;
}
.product_single_tabs_change {
    padding-bottom: 0 !important;
}
.slide_marque .swiper-wrapper{
    transition-timing-function: linear !important;
}
.img_marquee_item {
    text-align: center;
}
@media screen and (max-width: 1200px) {
    blockquote, dl, figure, form, ol, p, pre, ul {
        margin-bottom: 0.8em;
    }
    section {
        padding: 20px 0;
    }
    .title_section{
        font-size: 32px;
    }
    .home_page_1 .title_section {
        max-width: 100%;
    }
    .item_post_product--all2 .item_cotennt .item_title {
        font-size: 18px;
    }
    .shop_look_items:not(:last-of-type) {
        margin-bottom: 40px;
    }
    .item_post_product--all2 .item_content, .item_post_product--all2 .item_subtitle {
        font-size: 12px;
    }
    .item_product--1 .item_arow {
        bottom: 52px;
    }
    .btn_main {
        font-size: 16px;
    }
    .content {
        font-size: 15px
    }
    img.size-full.alignnone {
        margin-bottom: 0 !important;
    }
    .home_page_3 .wrap_content_products {
        padding-top: 20px;
    }

    .product_table_box {
        padding: 24px;
    }

    .home_page_3 .inner_content, .section_product_final .inner_content {
        padding: 60px 50px 160px;
    }

    .col_info_product .product_name {
        font-size: 32px;
    }

    .grid-container {
        padding: 0 15px;
    }

    .block_product .grid-60.col_galary {
        padding-right: 20px;
        width: 55%;
    }

    .block_product--1 .col_slider.col_left, .block_product--1 .col_slider.col_right,.block_product--1 .product_gal {
        height: 400px;
    }
    .box_flash_sale .title_flash_sale {
        flex-direction: column;
        gap: 10px;
    }
    .item_up_sell {
        gap: 10px;
    }

    .item_up_sell .item_price {
        font-size: 14px;
    }

    .item_up_sell .item_img {
        width: 40px;
        aspect-ratio: 1;
        height: auto;
    }

    .item_up_sell .item_title {
        font-size: 16px;
        line-height: 1.1;
        width: auto;
    }

    .add_item_for_product {
        padding: 15px;
    }

    .item_up_sell input.check_upsell {
        margin: 0;
    }

    .item_up_sell .item_price {
        text-align: right;
        display: block;
    }

    .item_up_sell .item_up_sell__right {
        width: 100%;
    }

    button.btn_main.add-to-cart-custom .btn_text {
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .block_product .grid-40.col_info_product {
        width: 45%;
    }
    .group_to_cart .quantity button.quantity_button {
        padding: 0 10px;
    }
    .col_info_product .group_to_cart {
        gap: 15px;
    }
    .text_marquee {
        padding: 40px 0;
    }

    .text_maquee_content {
        font-size: 120px;
        gap: 30px;
        letter-spacing: -5.9px;
    }
    .home_page_7 .marquee_container.img_marquee--red {
        margin-top: 40px;
    }
    .section_border + .section_border {
        margin-top: -40px;
        padding-bottom: 60px;
    }

    .inner_list_post_category {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr 300px 300px;
        gap: 30px;
    }

    .inner_list_post_category>* {
        grid-area: unset !important;
    }

    .item_post--2 .item_post__img, .item_post--2 .item_post__content {
        width: 50%;
    }

    .home_page_9 .wrap_inner_content {
        padding: 70px 50px;
        margin: 0;
    }
    .nocodevn-list-store {
        grid-template-columns: 1fr;
        height: auto;
    }

    .nocodevn-list-store .nocodevn-card {
        order: 0;
        height: auto;
    }

    .nocodevn-card .address-detail {
        height: 300px;
    }
    .header_pc ,.only_pc,.filter_pc{
        display: none !important;
    }
    .header_mb ,.only_mb,.filter_mb{
        display: block !important;
    }
    .inner_header_mb {
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.12);

    }
    .header_mb .top_header .inner_header {
        justify-content: center;
    }
    .slide_banner .wrap_item_content .banner_title h2 {
        font-size: 48px;
    }
    .wrapper_product_content_layout--content .col_content {
        padding: 20px;
    }
    .grid-80.tablet-grid-80.product_list {
        width: 100%;
    }
    .inner_product_category__header {
        justify-content: space-between;
        margin-top: 10px;
    }

    .product_category__header {
        margin-bottom: 15px;
    }
    .product_category__layout--1 .title_filter.open_filter {
        padding: 10px 15px;
    }
    .list_product {grid-template-columns: repeat(3,1fr);}
    .list_post_full {
        margin: 30px 0;
        grid-template-columns: 1fr;
    }
    .contact_page .title_form {
        font-size: 75px;
    }
    .list_styles_post.grid-75.tablet-grid-70 {
        width: 100%;
    }

    .list_styles_post.grid-75.tablet-grid-70 .toggle_filter {
        margin-bottom: 20px;
    }
    .table_order_details {
        padding-left: 0px;
    }

    div#show_order_search .col_content_order_table .check_order_table {padding-right: 0;}
    .product-data-columns-wrapper {
        overflow-x: scroll;
        flex-wrap: nowrap;
    }
    .product-data-columns-wrapper > * {
        width: 45%;
        flex: 0 0 auto;
    }
    .list_song_demo_product {
        gap: 20px;
    }
    .product_viewed_item .group_title,.product_related_item .group_title {
        justify-content: center;
    }
}
@media screen and (max-width: 992px) {
    .list_product_cat__list {
        gap: 20px;
    }
    .list_product_cat__list {
        gap: 20px;
        padding: 20px;
    }
    .list_map {
        margin-left: 15px;
    }
    .list_song_demo_product {
        grid-template-columns: repeat(2, 1fr);
    }

    .product_single_category {
        border-radius: 20px;
    }
    .list_product {grid-template-columns: repeat(2,1fr);}
    .item_post.item_post--1.item_post img {
        aspect-ratio: 2/1;
    }
    .list_tabs_product ul {
        flex-wrap: nowrap;
        justify-content: start;
        gap: 30px;
    }

    .list_tabs_product ul li {
        flex: 0 0 auto;
    }
    .list_img_layout--4 .item_layout--4 {
        width: calc(50% - 20px);
    }

    .list_img_layout--4 {
        gap: 10px;
        flex-wrap: wrap;
    }

    .list_img_layout--4 .item_layout--4:nth-child(4) {
        order: 3;
    }

    .list_img_layout--4 .item_layout--4:nth-child(3) {
        order: 4;
    }
    .my_account_sidebar {
        padding: 10px;
    }
}
@media screen and (max-width: 767px) {
    .slide_banner .wrap_item_content {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
        gap: 20px;
    }
    .product-data-columns-wrapper {
        overflow-x: scroll;
        flex-wrap: nowrap;
    }
    .product-data-columns-wrapper > * {
        width: 100%;
        flex: 0 0 auto;
    }
    .list_map .item_map .item_map_img img {
        aspect-ratio: 1;
        object-fit: cover;
    }
    .list_map {
        margin-left: 0;
    }
    .list_product {grid-template-columns: repeat(1,1fr);}
    .slide_banner .btn_main {
        width: 100%;
    }

    .slide_banner .banner_navigation {
        display: none;
    }
    .home_page_1 .title_section {
        text-align: center;
    }

    .home_page_1 a.btn_main {
        width: 100%;
        margin-top: 20px;
    }
    .home_page_2 .title_flash_sale {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: start;
    }

    .home_page_2 .group_title {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        margin-bottom: 20px;
    }

    .home_page_2 .title_flash_sale>* {
        width: 100%;
    }

    .home_page_2 .title_flash_sale img {
        width: 50%;
    }

    .home_page_2 .title_flash_sale .countdown-container {
        justify-content: space-around;
    }
    .home_page_3 .inner_content, .section_product_final .inner_content {
        padding: 0 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .home_page_3 .inner_content .col_content, .section_product_final .inner_content .col_content {
        width: 100%;
    }

    .home_page_3 .wrap_content_products {
        transform: translateY(0px);
        margin-bottom: 0px;
    }

    .home_page_3 .inner_content .col_img ,.home_page_3 .inner_content .col_img a.btn_main, .section_product_final .inner_content ,.section_product_final .inner_content a.btn_main {
        width: 100%;
    }

    .block_product .grid-container>* {
        width: 100% !important;
    }
    .block_product .grid-60.col_galary {
        position: static;
    }
    .product_tinhnang .list_boxicon {
        gap: 10px;
    }

    .product_table_box {
        padding: 12px;
    }

    .product_table_box .product_table_box__title {
        position: unset;
        background: unset;
        margin: 0;
        text-align: center;
    }
    .item_cross_sell_slide .item_content {
        flex-direction: column;
        align-items: start;
    }

    .item_cross_sell_slide .item_content .btn_add_to_cart {
        width: 100%;
    }
    .compare_label {
        bottom: 0;
        left: 0;
        font-size: 24px;
    }

    .compare_label.label_left {
        right: 0;
    }

    .compare_label span {
        font-size: 16px;
    }
    .compare_container {
        aspect-ratio: 1;
    }
    .home_page_6 .des_section {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .inner_list_post_category {
        grid-template-rows: 1fr auto auto;
    }

    .item_post--2 {
        gap: 10px;
    }

    .inner_list_post_category .item_post:nth-child(1) {
        aspect-ratio: 1;
    }

    .item_post--1 .item_post__content {
        padding: 15px;
    }

    .item_post.item_post--1 .item_post__excerpt {
        margin-bottom: 0;
    }

    .item_post.item_post--2 .item_post__title {
        -webkit-line-clamp: 3;
        margin-bottom: 0;
        font-size: 16px;
    }

    .item_post.item_post--2 .item_post__excerpt {
        -webkit-line-clamp: 3;
        margin-bottom: 0;
        font-size: 12px;
    }

    .item_post--2 .item_post__img {
        aspect-ratio: 1;
        height: auto;
    }

    .item_post--2 .item_post__img img {
        aspect-ratio: 1;
    }

    .item_post--2 .item_post__content {
        gap: 10px;
    }

    .item_post .item_post__link {
        font-size: 12px;
    }
    .item_post__tag {
        top: 10px;
        left: 10px;
        padding: 5px;
        font-size: 13px;
    }
    .home_page_9 .list_showroom {
        flex-direction: column;
        gap: 10px;
    }

    .home_page_9 .list_showroom .item_showroom {
        width: 100%;
        justify-content: start;
    }

    .home_page_9 .list_showroom .item_showroom:nth-child(n + 3) {
        justify-content: start;
    }

    .home_page_9 .wrap_inner_content {
        padding: 30px 35px;
    }

    .inner_homepage_map {
        width: 90%;
    }

    p:last-child {
        margin-bottom: 0;
    }
    .title_border.text_center {
        margin-bottom: 40px;
    }
    .list-filter .filter-gr {
        width: 50%;
    }

    .list-filter select, .list-filter input {
        width: 100%;
    }

    .nocodevn-card .list-filter {
        padding: 0;
    }

    .home_page_12 .list_item__img {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .section_padding--8 {
        padding: 30px 0;
    }

    .top_footer .list_box_icon .box_item {
        border: none;
    }

    .top_footer .list_box_icon .box_item .box_icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }



    footer .form_social {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    footer .end_footer .inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px 0;
    }

    .payload_mehod img {
        object-position: center;
    }
    footer .bottom_footer {
        padding-bottom: 30px;
    }
    footer .content {
        margin-bottom: 30px;
    }
    .wrapper_product_content_layout--content {
        grid-template-columns: 1fr;
    }
    .product_category__header .item_product_cat a {
        font-size: 14px;
    }

    .product_category__header .list_product_cat {
        gap: 10px;
    }

    .product_category__header .item_product_cat {
        flex: 0 0 auto;
    }

    .product_category__header .item_product_cat:after {
        margin-left: 25px;
    }

    .grid-100.product_list {
        padding: 0;
    }

    .inner_product_category__header {margin-top: 25px;}

    section.product_category__layout--1.product_content.section_border.section_border--white {
        padding-top: 40px;
    }

    .filter .inner_filter {
        width: 100%;
        border-radius: 0;
    }
    .list_content_menu .item_content {
        flex-direction: column;
        margin-bottom: 20px;
        gap: 0px;
    }

    .list_content_menu .item_content>* {
        width: 100% !important;
    }
    .section_border + .section_border {
        padding-bottom: 30px;
    }
    .section_border:last-of-type {
        padding-bottom: 20px;
    }
    .shop_look_items {
        flex-direction: column;
        gap: 20px;
    }

    .shop_look_items >* {
        width: 100% !important;
    }

    .shop_look_dot__item .shop_look_dot__item--inner {
        max-width: 220px;
    }
    .shop_look_dot__item.shop_look_dot__item--up.shop_look_dot__item--left .shop_look_dot__item--inner {
        left: calc(100% - 180px);
    }
    .search_style .wrap_inner_search_compare {
        width: 100%;
        margin: 0;
    }
    .compare-attributes-column {
        flex: 0 0 35%;
        width: 35%;
    }
    .list_img_layout--4 .item_layout--4 {
        width: calc(100%);
    }

    .list_img_layout--4 .item_layout--4:nth-child(even) {
        margin-top: 0;
    }
    .list_img_layout--4 {
        gap: 15px;
    }
    .text_marquee {
        padding: 20px 0;
    }
    .my_account_sidebar--mb {
        display: block;
    }
    .my_account_sidebar--pc {
        display: none;
    }
    .account-user.circle {
        width: auto;
    }

    .account-user.circle span.user-name {
        display: none;
    }

    .my_account_sidebar--mb {
        margin-bottom: 20px;
        width: max-content;
        position: sticky;
        top: 302px;
    }

    .my_account_sidebar--mb img.avatar {
        width: 32px !important;
        height: 32px;
    }

    .vertical-tabs {
        position: relative;
    }
    .custom-order-card ul.order-items li {
        gap: 0;
    }

    .custom-order-card ul.order-items .inner_order_content {
        width: 50%;
        flex-direction: column;
    }

    .custom-order-card ul.order-items .inner_order_content div {
        text-align: left;
    }
    .order-meta span.order_meta__label {
        min-width: 120px;
    }
    .custom-order-card {
        padding: 15px;
    }
    .toggle-order-detail {
        margin-top: 10px;
    }
    .custom-order-card:not(:last-of-type) {
        margin-bottom: 10px;
    }
    .inner_search_order {
        width: 100%;
        margin: 0;
    }

    .check_file_request {
        flex-direction: column;
        gap: 0;
    }

    .check_file_request>* {
        width: 100%;
    }

    .item_file_setup {
        width: 100%;
        aspect-ratio: 6/ 1;
    }

    .list_file_request_content {
        flex-direction: column;
        gap: 16px;
        padding: 10px;
    }
}