/*base*/
:root{
    --color_main: #bf1e2e;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*định dạng slick*/
.slick-arrow:before{
    display: none;
}
.slick-next{
    transform: translateX(20px);
    right: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.slick-prev{
    transform: translateX(-20px);
    left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.slick-arrow{
    opacity: 0;
    z-index: 99;
    color: #fff;
    font-size: 40px;
    background: rgba(0,0,0,.5);
    height: 30px;
    padding-bottom: 11px;
    width: 26px;
    transition: all .2s ease;
}
.slick-arrow:focus,
.slick-arrow:hover{
    background: rgba(0,0,0,.5);
    color: #fff;
}
.slick-dots{
    bottom: 0;
}
.slick-dotted.slick-slider{
    margin-bottom: 0;
}
/* end định dạng slick*/

/*url*/
.breadcrumb_custom{
    margin-bottom: 20px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.breadcrumb_custom ul{
    margin: 0;
    padding: 6px 0;
}
.breadcrumb_custom li a{
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.breadcrumb_custom li:last-child span,
.breadcrumb_custom li a:hover{
    color: var(--color_main);
}
.breadcrumb_custom .breadcrumb-item:before{
    content: "\f105";
    font-family: "Font Awesome 6 Pro", serif;
    color: black;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}
.breadcrumb_custom .breadcrumb-item:first-child:before{
    content: "";
}
/*end url*/

/*Lặt vặt*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    transition: opacity 0.3s ease;
}
.rotate {
    transform: rotate(90deg) !important;
    transition: transform 0.3s ease !important;
}
.home_title{
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
    color: #333;
}
.action_social{
    z-index: 97;
    display: flex;
    gap: 10px;
    flex-direction: column;
    cursor: pointer;
}
.action_social_mes{
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background-color: #006AFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #fff;
    text-decoration: none;
}
.action_social_contact{
    position: relative;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background-color: var(--color_main);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: glowFlash 3s infinite ease-in-out;
}
.action_social_list{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color_main);
}
@keyframes glowFlash {
    0%, 66.66%, 100% {
        box-shadow: none;
    }
    70% {
        box-shadow: 0 0 10px 5px #ff4d4d;
    }
    73% {
        box-shadow: none;
    }
    76% {
        box-shadow: 0 0 10px 5px #ff4d4d;
    }
    79% {
        box-shadow: none;
    }
    82% {
        box-shadow: 0 0 10px 5px #ff4d4d;
    }
    83.33% {
        box-shadow: none;
    }
}
.action_main{
    z-index: 97;
    position: fixed;
    right: 20px;
    bottom: 35%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}
.action_social_window{
    right: 0;
    position: absolute;
    top: -240px;
    width: 300px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    user-select: none;
}
.action_social_list .fa-circle-z,
.action_social_list .fa-xmark{
    font-size: 20px;
}
.action_social_window.active{
    display: block;
}
.action_social_window_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background-color: var(--color_main);
    color: #fff;
}
.action_social_bottom_item{
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: center;
    text-decoration: none;
}
.action_social_bottom_item:hover{
    background-color: #f1f1f1;
}
.action_social_bottom_item:hover .action_social_bottom_info span:first-child{
    color: var(--color_main);
}
.action_social_bottom_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: #4EB625;
    color: #fff;
}
.action_social_bottom_item:nth-child(2) .action_social_bottom_icon{
    background-color: #0165f8;
}
.action_social_bottom_item:nth-child(3) .action_social_bottom_icon{
    background-color: var(--color_main);
}
.action_social_bottom_info span{
    display: block;
    font-weight: 600;
    color: #000;
}
.action_social_bottom_info span:nth-child(2){
    font-weight: 400;
    color: #333;
}
.action_to_the_top{
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    background-color: #000;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    z-index: 97;
}
.action_to_the_top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.action_to_the_top:hover {
    background-color: var(--color_main);
}
.bell_sitebar{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: 50%;
    position: fixed;
    bottom: 8%;
    left: 15px;
    border: 1px solid white;
    z-index: 97;
    cursor: pointer;
}
.bell_sitebar i{
    color: white;
    font-size: 20px;
    animation: shake 0.5s ease-in-out infinite;
}
@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}
.bell_sitebar_content{
    display: none;
    position: fixed;
    width: 260px;
    background-color: #000;
    padding: 10px;
    border-radius: 10px;
    bottom: 11%;
    left: 40px;
    z-index: 96;
    color: #edecec;
    animation: bellSitebarContent ease-in 0.3s;
    transform-origin: bottom left;
    font-weight: bold;
}
.bell_sitebar_content_close{
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}
.bell_sitebar_content a{
    text-decoration: none;
    color: #edecec;
}
.bell_sitebar_content a:hover{
    color: var(--color_main);
}
@keyframes bellSitebarContent {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/*end lặt vặt*/

/*responsive*/
.tablet_shows{
    display: none!important;
}
.mobile_shows{
    display: none!important;
}
@media (max-width: 1200px){
    .tablet_hidden_xl{
        display: none!important;
    }
}
@media (max-width: 1023px){
    .tablet_hidden{
        display: none!important;
    }
    .tablet_shows{
        display: block!important;
    }
}
@media (max-width: 767px){
    .mobile_shows{
        display: block!important;
    }
}
/*end responsive*/

/*paginator*/
.paginator_custom{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.paginator_custom .paging-first,
.paginator_custom .paging-last{
    display: none;
}
.paginator_custom .paging-previous,
.paginator_custom .paging-next{
    padding: 4px 6px;
}
.paginator_custom .paging-previous:before{
    content: "\f100";
    font-family: "Font Awesome 6 Pro", serif;
    color: black;
}
.paginator_custom .paging-next:before{
    content: "\f101";
    font-family: "Font Awesome 6 Pro", serif;
    color: black;
}
.paginator_custom .paging-previous:hover:before,
.paginator_custom .paging-next:hover:before {
    color: #fff;
}
.paginator_custom a:hover{
    background-color: #141414;
    color: white;
}
.paginator_custom .currentPage{
    padding: 5px 11px;
    background-color: black;
    color: white;
    border-radius: 4px;
}
.paginator_custom a{
    text-decoration: none;
    padding: 4px 10px;
    color: #141414;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #141414;
}
.paginator_custom .titlePages,
.paginator_custom .labelPages{
    display: none;
}
/*end paginator*/

/*product*/
.product{
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    box-shadow: 0 0 6px 0 rgba(50, 50, 93, 0.15), 1px 1px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}
.product:hover .product_image_img img{
    scale: 1.1;
}
.product:hover .product_work{
    right: 10px;
}
.product_image{
    position: relative;
}
.product_image_img{
    overflow: hidden;
    position: relative;
    height: 294px;
}
.product_image_img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.product_sale_percent{
    position: absolute;
    top: 5px;
    left: -18px;
    padding: 1px 10px 1px 10px;
    background-color: #e31934;
    box-shadow: rgba(60, 64, 67, 0.1) 0 1px 0 0, rgba(60, 64, 67, 0.15) 0 2px 3px 2px;
    color: #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 8px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    font-size: 12px;
}
.product_sale_percent:after{
    content: "";
    height: 0;
    width: 0;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    border-top: 4px solid #bb071f;
    border-left: 8px solid transparent;
}
.product_work{
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all .3s ease;
}
.product_work_icon{
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #000;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all .3s ease;
}
.product_work_icon:hover{
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}
.product_tooltip {
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #444;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 13px;
    z-index: 96;
}
.product_tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #444;
}
.product_work_icon:hover .product_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-4px);
}
.product_work .active i{
    font-weight: bold;
    color: red;
}
.product_info{
    margin-top: 10px;
    flex-grow: 1;
}
.product_name{
    color: #333;
    text-decoration: none;
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product_name:hover{
    color: var(--color_main);
}
.product_price{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.product_price_old{
    display: block;
    width: 100%;
    color: #9aa5b3;
    font-size: 14px;
    text-decoration: line-through;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product_price_new{
    color: var(--color_main);
    font-weight: 600;
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product_price_d{
    text-decoration: underline;
}
.product_price_option{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 36px;
    width: 36px;
    color: #fff;
    background-color: #000;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color .2s ease;
}
.product_price_option:hover{
    background-color: var(--color_main);
}
.product_price_option:hover .product_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-4px);
}
.product_sold {
    position: relative;
    margin-top: 20px;
}
.product_sold_text {
    text-align: center;
    position: relative;
    line-height: 20px;
    z-index: 2;
    color: #fff;
}
.product_sold_total{
    font-weight: bold;
}
.product_sold_bar {
    position: absolute;
    top: 0;
    height: 20px;
    width: 100%;
    border-radius: 10px;
    background: #ffcfb4;
}
.product_sold_bar_fill {
    height: 100%;
    background: linear-gradient(90deg, #f53d2d, #f63);
    border-radius: 20px;
    transition: width 0.5s ease-in-out;
}
.product_sold_text_fire{
    position: absolute;
    left: 0;
    font-size: 24px;
    bottom: -1px;
    color: #FFCC00;
    -webkit-text-stroke: 1px #FF4500;
    text-shadow: 0 0 1px #FFA500;
    font-weight: bold;
}
.modal-dialog{
    max-width: 1000px;
}
.product_quick_view{
    padding: 20px;
    display: flex;
    gap: 20px;
}
.product_quick_view_left{
    width: calc(40% - 10px);
}
.product_quick_left_img{
    margin-bottom: 10px;
}
.product_quick_left_img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product_quick_left_list img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}
.product_quick_left_list .slick-arrow{
    transform: translateX(0);
    opacity: 1;
    height: 20px;
    width: 16px;
    border-radius: 0;
    background-color: #333;
    transition: none;
}
.product_quick_left_list .slick-arrow:hover{
    background-color: var(--color_main);
}
.product_quick_view_right{
    width: calc(60% - 10px);
}
.product_quick_view_close{
    cursor: pointer;
    position: absolute;
    top: -8px;
    right: -8px;
    color: #fff;
    background-color: #000;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}
.product_quick_view_close:hover{
    transform: rotate(90deg);
}
/*end product*/
/*end_base*/

/*header*/
header{
    z-index: 9999;
    background: linear-gradient(180deg, #141414 0%, #202022 50%, #47474f 100%);
}
.main_header{
    padding: 10px 0;
}
.main_header .container{
    display: flex;
    align-items: center;
}
.main_header_left{
    width: 23%;
}
.main_header_left a{
    display: flex;
    align-items: center;
}
.main_header_left_logo{
    height: 100%;
}
.main_header_mid{
    width: 40%;
    margin: 0 20px;
    position: relative;
}
.main_header_mid_search{
    width: 95%;
    display: flex;
    position: relative;
    border-radius: 6px;
    margin: 0 auto;
}
.main_header_mid_search_input{
    width: 100%;
    border: none;
    outline: none;
    padding: 8px 16px;
    border-radius: 6px;
}
.main_header_mid_search_icon{
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 50px;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 6px;
    color: #000;
}
.header_search_keywords{
    width: 100%;
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    border-radius: 6px;
    border: solid 1px #dfe3e8;
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
}
.header_search_keywords.show {
    display: block;
}
.header_search_keywords_title{
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    margin-bottom: 12px;
}
.header_search_keywords_list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.header_search_keywords_list a{
    padding: 3px 5px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
}
.header_search_keywords_list a:hover{
    color: #fff;
    background-color: #000;
}
a:hover, .product_all_category_box:hover .product_all_category_name{
    color: #bf1e2e;
    text-decoration: none;
    cursor: pointer;
}
.header_search_sug ._searchFolding>a{
    display: none;
}
.header_search_sug .list-product-search:nth-of-type(n+5){
    display: none;
}
.header_search_sug a{
    text-decoration: none;
    color: #141414;
    width: 100%;
    float: left;
    padding: 8px 5px;
    border-bottom: 1px solid #ededed;
}
.header_search_sug a:hover{
    background-color: #f5f5f5;
}
.header_search_sug img{
    width: 60px;
    height: 65px;
    max-width: 60px;
    object-fit: cover;
    display: inline-block;
    text-align: right;
    float: left;
    margin-right: 10px;
    padding: 2px;
    border: 1px solid #f1f1f1;
}
.header_search_sug .list-product-search-title{
    margin-bottom: 2px;
    display: block;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header_search_sug .list-product-search-price{
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color_main);
}
.header_sug_sub{
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    margin-top: 10px;
}
.header_sug_sub:hover{
    color: var(--color_main);
    text-decoration: underline;
}
.main_header_right{
    width: 40%;
    display: flex;
    justify-content: end;
}
.main_header_right_item{
    position: relative;
    max-width: 30%;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    padding: 5px;
}
.main_header_right_item:nth-child(1){
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}
.main_header_right_item:nth-child(1):hover{
    background: rgba(255, 255, 255, 0.1);
}
.main_header_right_item:nth-child(1) span:nth-child(1){
    font-size: 11px;
    font-weight: 400;
}
.main_header_right_item_icon{
    color: #fff;
    font-size: 24px;
    padding: 0 6px;
    position: relative;
}
.main_header_right_item_inf span{
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.main_header_right_item:nth-child(2) .main_header_right_item_inf span:first-child,
.main_header_right_item:nth-child(3) .main_header_right_item_inf span:first-child{
    font-size: 11px;
    font-weight: 400;
}
.main_header_right_cart_total{
    position: absolute;
    border-radius: 50%;
    background-color: var(--color_main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 18px;
    width: 18px;
    top: 0;
    right: 0;
}
.header_menu{
    border-top: 1px solid rgba(255,255,255, 0.2);
}
.header_menu_list{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.header_menu_item{
    list-style: none;
    position: relative;
}
.header_menu_item:before{
    display: block;
    content: '';
    width: 30%;
    margin: 0 35%;
    height: 2px;
    background-color: #fff;
    bottom: 2px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.header_menu_item:hover::before {
    transform: scaleX(1);
}
.header_menu_item a{
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
    text-transform: capitalize;
}
.header_menu_item i{
    vertical-align: middle;
    padding-left: 6px;
}
.header_menu_sub_menu{
    position: absolute;
    top: 100%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.1s ease-in-out;
    transform: translateY(16px);
    background-color: #fff;
    z-index: 9999;
}
.header_menu_item:hover .header_menu_sub_menu{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.header_menu_sub_menu_list{
    margin: 0;
    padding: 0;
}
.header_menu_sub_menu_item{
    list-style: none;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}
.header_menu_sub_menu_item a{
    color: #000;
    width: 200px;
    padding: 8px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_menu_sub_menu_item a i{
    transform: translateX(-6px);
    transition: all 0.2s ease;
}
.header_menu_sub_menu_item:hover i{
    transform: translateX(0px);
}
.header_menu_sub_menu_two{
    position: absolute;
    left: 100%;
    top: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    background: #fff;
}
.header_menu_sub_menu_item:hover .header_menu_sub_menu_two{
    opacity: 1;
    pointer-events: auto;
}
.header_menu_sub_menu_two {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 9999;
    white-space: nowrap;
}
.header_menu_sub_menu_two.align-left {
    left: auto;
    right: 100%;
}
.main_header_right_item:hover .main_header_mini_cart,
.main_header_right_item:hover .header_user{
    display: block;
}
.header_user{
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 9999;
    top: calc(100% + 10px);
    padding: 6px;
    border-radius: 6px;
    box-shadow: 2px 4px 9px rgba(0, 0, 0, 0.329);
    min-width: 240px;
    right: 0;
}
.header_user:after{
    content: "";
    position: absolute;
    height: 20px;
    width: 50%;
    display: block;
    right: 0;
    top: -20px;
}
.header_user:before{
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
}
.header_user_list{
    display: flex;
    gap: 10px;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 4px 6px;
    font-weight: 400;
    border-radius: 4px;
}
.header_user_list:hover{
    background-color: #000;
    color: #fff;
}
.header_user_list i{
    font-weight: 500;
}
.main_header_right_cart{
    position: relative;
    display: flex;
    text-decoration: none;
    align-items: center;
}
.main_header_mini_cart{
    display: none;
    top: calc(100% + 10px);
    position: absolute;
    background-color: #fff;
    border-radius: 4px;
    z-index: 9999;
    right: 0;
    min-width: 350px;
    box-shadow: 2px 4px 9px rgba(0, 0, 0, 0.329);
}
.main_header_mini_cart:after{
    content: "";
    position: absolute;
    height: 20px;
    width: 100px;
    display: block;
    right: 0;
    top: -20px;
}
.main_header_mini_cart:before{
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
}
.main_header_mini_cart_two{
    padding: 15px;
    text-align: center;
}
.main_header_mini_cart_two svg{
    height: 60px;
}
.main_header_mini_cart_two_text{
    font-size: 14px;
    margin-top: 15px;
    color: #333;
}
.main_header_mini_cart_title{
    display: block;
    padding: 10px;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}
.main_header_mini_cart_product{
    position: relative;
    display: flex;
    gap: 10px;
    margin: 0 14px;
    padding: 14px 0;
    border-bottom: solid 1px #ebebeb;
}
.main_header_mini_cart_product:first-child{
    margin-top: 0;
}
.main_header_mini_cart_product:last-child{
    margin-bottom: 0;
    border-bottom: none;
}
.mini_cart_product_img {
    height: 62px;
    width: 62px;
}
.mini_cart_product_img img{
    max-width: 62px;
    width: 62px;
    height: 100%;
    object-fit: cover;
}
.mini_cart_product_name{
    width: 100%;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    padding-right: 36px;
    display: block;
}
.mini_cart_product_del:hover,
.mini_cart_product_name:hover{
    color: var(--color_main);
}
.mini_cart_product_info .product_view_quantity_list{
    display: inline-flex;
    border-color: #ebebeb;
    margin-top: 10px;
}
.mini_cart_product_info .product_quantity_input{
    width: 36px;
    height: 30px;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
}
.mini_cart_product_info .product_view_quantity_list button{
    height: 30px;
    background-color: #fff;
}
.mini_cart_product_price{
    position: absolute;
    bottom: 14px;
    right: 0;
    font-size: 14px;
    color: var(--color_main);
}
.mini_cart_product_del{
    position: absolute;
    top: 14px;
    right: 0;
    cursor: pointer;
}
.header_mini_cart_total{
    display: flex;
    justify-content: space-between;
    padding: 12px 14px 14px;
    align-items: center;
    border-top: solid 1px #ebebeb;
}
.header_mini_cart_total_price div{
    font-size: 14px;
    font-weight: 500;
}
.header_mini_cart_total_price span{
    font-size: 16px;
    color: var(--color_main);
    font-weight: 600;
}
.header_mini_cart_total_btn{
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all .3s ease;
    text-transform: uppercase;
    font-size: 14px;
}
.header_mini_cart_total_btn:hover{
    background-color: var(--color_main);
}
.main_header_mini_cart_product_list{
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
}
.main_header_mini_cart_product_list::-webkit-scrollbar {
    width: 4px;
}
.main_header_mini_cart_product_list::-webkit-scrollbar-thumb {
    background-color: #141414;
    border-radius: 4px;
}
.main_header_mini_cart_product_list .product_view_quantity_list  button{
    border: 1px solid #ebebeb;
}
/*end_header*/

/*footer*/
.banner_wel{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}
.banner_wel_close{
    height: 30px;
    width: 30px;
    font-size: 20px;
    border-radius: 50%;
    color: #fff;
    border: 3px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
}
.footer_top{
    padding: 20px 0 30px;
    background-color: #f5f5f5;
}
.footer_top .container{
    display: flex;
    justify-content: center;
}
.footer_top_content{
    width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer_top_sub{
    font-size: 16px;
    font-weight: 500;
    color: #585858;
}
.footer_top_form{
    position: relative;
    width: 100%;
}
.footer_top_inp{
    line-height: 38px;
    width: 100%;
    padding: 0 125px 0 20px;
    outline: none;
    border: 1px solid #141414;
    border-radius: 50px;
}
.footer_top_btn{
    position: absolute;
    right: 0;
    top: 0;
    border: initial;
    height: 40px;
    padding: 0 30px;
    background-color: #141414;
    color: #fff;
    border-radius: 50px;
    line-height: inherit;
    transition: background-color .3s ease;
}
.footer_top_btn:hover{
    background-color: var(--color_main);
}
.main_footer{
    padding: 30px 0 20px;
    background-color: #000;
}
.main_footer .container{
    display: flex;
}
.main_footer_item{
    width: 20%;
    padding: 0 16px;
    color: #fff;
}
.main_footer_item:last-child,
.main_footer_item:first-child{
    width: 30%;
    padding: 0;
}
.main_footer_logo img{
    display: block;
    height: 26px;
    width: auto;
    margin-bottom: 16px;
}
.main_footer_sub_logo{
    margin-bottom: 10px;
}
.main_footer_inf{
    font-weight: bold;
    padding: 6px 0;
}
.main_footer_inf span{
    font-weight: 400;
}
.main_footer_inf a{
    text-decoration: none;
    font-weight: 400;
    color: #fff;
}
.main_footer_inf a:hover{
    color: var(--color_main);
}
.main_footer_item_title{
    margin-bottom: 20px;
}
.main_footer_item_click a{
    text-decoration: none;
    display: block;
    padding: 2px 0;
    color: #fff;
}
.main_footer_item_click a:hover{
    color: var(--color_main);
}
.social_main_footer{
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social_main_footer a{
    text-decoration: none;
}
.footer_bottom{
    display: flex;
    justify-content: center;
}
.footer_bottom a{
    text-decoration: none;
    color: #000;
}
.footer_bottom a:hover{
    color: var(--color_main);
}
.main_footer_item_title i{
    display: none;
}
.social_main_footer img{
    width: 30px;
    height: 30px;
    display: block;
    object-fit: cover;
}
/*end_footer*/

/*category_menu*/
.category{
    padding: 10px 20px;
}
.category ul{
    margin: 0;
    padding: 0;
}
.category li{
    list-style: none;
}
.category a{
    width: calc(100% - 30px);
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    user-select: none;
}
.category a:hover{
    color: var(--color_main);
}
.category_sub_list,
.category_item_sub_item_two {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.category_item_two{
    margin-left: 20px;
}
.category_item_three{
    margin-left: 30px;
}
.category_click_two,
.category_click{
    color: #fff;
    padding: 0 10px;
    cursor: pointer;
    text-align: end;
}
/*end_category_menu*

/*home*/
.home_pbc_wrapper{
    margin-top: 10px;
}
.banner_home{
    width: 100%;
    overflow: hidden;
}
.banner_home img{
    width: 100%;
    height: auto;
}
.banner_home:hover .slick-arrow{
    transform: translateX(0);
    opacity: 1;
}
.section_service_list{
    display: flex;
    gap: 24px;
    margin: 30px 0;
}
.section_service_item_icon{
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}
.section_service_item:nth-child(1){
    background-color: #EBF2FC;
}
.section_service_item:nth-child(2){
    background-color: #FAE9EF;
}
.section_service_item:nth-child(3){
    background-color: #FFFBDB;
}
.section_service_item:nth-child(4){
    background-color: #E9FFE3;
}
.section_service_item{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    border-radius: 12px;
}
.section_service_item:hover{
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.section_service_inf span:nth-child(1){
    display: block;
    font-weight: 700;
    color: #141414;
    font-size: 16px;
}
.section_service_inf span:nth-child(2){
    font-size: 14px;
    color: #666;
}
.section_service_inf span:nth-child(1) a{
    text-decoration: none;
    color: #141414;
}
.section_service_inf span:nth-child(1) a:hover{
    color: var(--color_main);
}
.banner_product_new_list{
    display: flex;
    gap: 30px;
}
.banner_product_new_item{
    width: calc(100% / 3);
    transition: all .3s ease;
    border-radius: 12px;
}
.banner_product_new_item img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.banner_product_new_item:hover{
    transform: translateY(-5px);
}
.home_flash_sale{
    margin: 30px 0;
}
.home_flash_sale_section{
    background: linear-gradient(180deg, #BF1E2E 0%, #cc0c09 50%, #fa2c29 100%);
    border-radius: 12px;
}
.home_flash_sale_title{
    padding: 20px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home_flash_sale_title_left{
    display: flex;
    align-items: center;
    gap: 6px;
}
.home_flash_sale_title_left svg{
    height: 40px;
    width: 40px;
}
.home_flash_sale_title_left a{
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 30px;
}
.home_flash_sale_title_left a:hover{
    color: #F4A32C;
}
.countdown_time{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.countdown_item{
    list-style: none;
    color: #fff;
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    font-weight: bold;
}
.countdown_text{
    font-weight: 400;
}
.home_flash_sale_product{
    padding: 20px 10px;
    display: flex;
}
.home_flash_sale_product .product{
    width: 25%;
    margin: 0 10px;
}
.home_flash_sale_product:hover .slick-arrow{
    transform: translateX(0);
    opacity: 1;
}
.home_flash_sale_product .slick-prev{
    left: 20px;
}
.home_flash_sale_product .slick-next{
    right: 20px;
}
.home_flash_sale_btn{
    padding: 10px 0 30px;
    text-align: center;
}
.home_flash_sale_btn a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 40px;
    padding: 0 30px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    transition: all .3s ease;
}
.home_flash_sale_btn a:hover{
    border: 1px solid #141414;
    background: #141414;
}
.home_category_list{
    padding-top: 20px;
    display: flex;
    gap: 20px;
}
.home_category_item{
    width: calc(100% / 6);
    display: flex;
    text-decoration: none;
    flex-direction: column;
    padding: 20px 10px;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 12px;
    gap: 10px;
    transition: all .5s ease;
}
.home_category_item:hover{
    background: linear-gradient(31deg, #1d1d1f 0%, #7d7d88 100%);
}
.home_category_item:hover img{
    scale: 1.1;
}
.home_category_item:hover .home_category_name{
    color: #fff;
}
.home_category_item img{
    display: block;
    max-width: 100px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all .3s ease;
}
.home_category_name{
    color: #333;
    font-weight: 600;
    transition: all .3s ease;
}
.home_product_bc{
    margin: 30px 0;
}
.home_pbc_cate{
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.home_pbc_cate_name {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    padding: 4px 0;
    border: none;
    outline: none;
    background-color: transparent;
}
.home_pbc_cate_name.active{
    font-weight: 600;
}
.home_pbc_cate_name.active::after{
    width: 100%;
}
.home_pbc_cate_name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
    color: #333;
}
.home_pbc_cate_name:hover{
    color: var(--color_main);
}
.home_pbc_cate_name:hover::after{
    width: 100%;
}
.home_pbc_cate_list{
    list-style: none;
}
.home_pbc_cate_list span{
    padding: 0 20px;
}
.home_pbc_cate_list:last-child span{
    display: none;
}
.product_home_list_false{
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.product_home_list_false span{
    padding: 6px 50px;
    text-align: center;
    border: 1px solid #ffeeba;
    color: #856404;
    background-color: #fff3cd;
    border-radius: 8px;
}
.home_pbc_list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px / 3);
    padding: 20px 0;
}
.home_pbc_list .product{
    width: calc(25% - 10px);
}
.home_pbc_btn{
    text-align: center;
}
.home_pbc_btn a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 40px;
    padding: 0 30px;
    color: #000;
    border: 1px solid #000;
    border-radius: 8px;
    transition: all .3s ease;
}
.home_pbc_btn a:hover{
    background-color: var(--color_main);
    color: #fff;
    border-color: var(--color_main);
}
.home_product_latest{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.home_product_latest_info{
    display: flex;
    height: 540px;
    gap: 30px;
}
.home_product_latest_info_left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home_pli_left_name{
    color: var(--color_main);
    font-size: 16px;
    margin-bottom: 6px;
}
.home_pli_left_decs{
    margin-bottom: 16px;
    font-weight: 700;
}
.home_pli_left_sub_desc{
    color: #333;
}
.home_pli_left_btn{
    margin-top: 20px;
}
.home_pli_left_btn a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 40px;
    padding: 0 30px;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    transition: all .3s ease;
}
.home_pli_left_btn i{
    transition: all .3s ease;
}
.home_pli_left_btn a:hover{
    background-color: var(--color_main);
    color: #fff;
    border-color: var(--color_main);
}
.home_pli_left_btn a:hover i{
    transform: translateX(6px);
}
.home_product_latest_right{
    width: 50%;
    display: flex;
    align-items: center;
}
.home_product_latest_img img{
    height: auto;
    width: 100%;
    animation: moveUpDown 2s ease-in-out infinite;
}
@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.home_news .container{
    padding: 0 2px;
}
.home_news .slick-list{
    padding-bottom: 30px!important;
}
.home_news .home_title span{
    color: var(--color_main);
}
.home_news_list{
    display: flex;
    margin-top: 20px;
}
.home_news_list .slick-next{
    right: 10px;
}
.home_news_list .slick-prev{
    left: 10px;
}
.home_news_list:hover .slick-arrow{
    transform: translateX(0);
    opacity: 1;
}
.home_news_item{
    width: calc(25% - 20px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 10px;
}
.home_news_item:hover img{
    scale: 1.1;
}
.home_news_img{
    display: block;
    height: 170px;
    overflow: hidden;
}
.home_news_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale .3s ease;
}
.home_news_content{
    padding: 14px;
}
.news_index_left_left_title,
.home_news_content_title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color .1s ease;
    height: 54px;
}
.home_news_content_title:hover{
    color: var(--color_main);
}
.home_news_content_sub {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #333;
    margin: 10px 0;
    height: 63px;
}
.home_news_content_time{
    color: #333;
    opacity: .8;
}
.home_customer{
    margin: 0 0 30px 0;
}
.home_customer .home_title span{
    color: var(--color_main);
}
.home_customer_list{
    display: flex;
    gap: calc(40px / 3);
    margin-top: 20px;
}
.home_customer_item{
    width: calc(20% - 10px);
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}
.home_customer_item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home_customer_item:hover {
    transform: translateY(-5px);
}
/*end home*/

/*product view*/
.product_view_detail{
    display: flex;
    margin-left: -5px;
}
.product_view_detail_left{
    width: calc((100% / 12) * 4);
}
.product_view_left_img{
    margin-bottom: 10px;
    padding: 0 5px;
}
.product_view_left_img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product_view_left_list .slick-arrow{
    transform: translateX(6px);
    opacity: 1;
    height: 20px;
    width: 16px;
    border-radius: 0;
    background-color: #333;
    transition: none;
}
.product_view_left_list .slick-next{
    transform: translateX(-4px);
}
.product_view_left_list .slick-arrow:hover{
    background-color: var(--color_main);
}
.product_view_left_list img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ebebeb;
}
.product_view_left_list img:hover{
    border: 1px solid #141414;
}
.product_view_left_list .slick-slide {
    margin: 0 5px;
}
.product_view_left_list .slick-current img{
    border: 1px solid #141414;
}
.product_view_left_banner img{
    width: 100%;
    aspect-ratio: 400 / 140;
    object-fit: cover;
    margin: 16px 0 0 0;
    transition: all 0.3s ease;
    padding: 0 5px;
}
.product_view_left_banner img:hover{
    filter: brightness(1.2);
}
.product_view_detail_center{
    width: calc((100% / 12) * 5);
    margin: 0 20px;
    overflow: hidden;
}
.product_view_center_info{
    border-bottom: 1px solid #DDE1EF;
    padding-bottom: 10px;
}
.product_view_center_code{
    margin: 10px 0;
    font-size: 14px;
}
.product_view_center_brand_status{
    display: flex;
    font-size: 14px;
}
.product_view_center_name,
.product_view_center_status,
.product_view_center_brand{
    margin: 0;
}
.product_view_center_span{
    margin: 0 10px;
}
.product_view_center_price{
    padding-top: 10px;
}
.product_view_center_price_new{
    font-size: 24px;
    font-weight: 600;
    color: var(--color_main);
}
.product_view_center_price_old{
    font-size: 18px;
    margin-left: 10px;
    color: #acacac;
    text-decoration: line-through;
}
.product_view_color_title{
    margin: 10px 0 6px;
}
.product_view_color_title span{
    font-weight: 600;
}
.product_view_color_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.product_view_center_desc{
    margin-top: 20px;
}
.product_view_color_list .active{
    border: 2px solid #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.product_view_color_item{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: block;
    border: 1px solid #bbb;
}
.product_view_size_title{
    margin: 10px 0 6px;
}
.product_view_size_title span{
    font-weight: 600;
}
.product_view_size_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.product_view_size_item{
    padding: 4px 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    color: #333;
    transition: all .3s ease;
    font-size: 14px;
}
.product_view_size_list .active,
.product_view_size_item:hover{
    background-color: var(--color_main);
    color: #fff;
}
.product_view_size_list .deactive{
    background: #F5F5F5;
    color: #bfbfbf;
    pointer-events: none;
}
.product_view_center_quantity{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.product_view_quantity_list{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.product_quantity_input{
    text-align: center;
    width: 50px;
    border: none;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    outline: none;
    height: 40px;
}
.product_view_quantity_list button{
    width: 30px;
    height: 40px;
    box-shadow: none;
    font-size: 10px;
    outline: none;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #f8f8f8;
    font-weight: 300;
    color: #333;
}
.product_quantity_decrease{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.product_quantity_increase{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.product_view_center_by{
    display: flex;
    gap: 10px;
}
.product_view_out button{
    background: #141414;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 8px;
    transition: all .3s ease;
    padding: 10px 40px;
}
.product_view_by_now{
    width: 60%;
}
.product_view_by_now button{
    background: #141414;
    color: #fff;
    height: 65px;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 8px;
    transition: all .3s ease;
}
.product_view_by_now button:hover{
    background-color: var(--color_main);
}
.product_view_add_cart{
    width: 40%;
}
.product_view_add_cart button{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 100%;
    outline: none;
    border-radius: 8px;
    background-color: transparent;
    border: 2px solid var(--color_main);
    color: var(--color_main);
    transition: all .3s ease;
    font-weight: 600;
}
.product_view_add_cart button:hover{
    background-color: var(--color_main);
    color: #fff;
}
.product_done_main,
.product_cart_done{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    z-index: 9999;
    background-color: #fff;
    border-radius: 8px;
    display: none;
}
.product_cart_done_title{
    color: #fff;
    background-color: #141414;
    padding: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.product_cart_done_title i{
    font-size: 20px;
}
.product_cart_done_close i{
    font-size: 18px;
}
.product_cart_done_close{
    transition: transform 0.3s ease;
}
.product_cart_done_close:hover{
    cursor: pointer;
    transform: rotate(90deg);
}
.product_cart_done_prd{
    display: flex;
    padding: 10px;
    gap: 10px;
}
.product_prd_img img{
    max-width: 70px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}
.product_prd_name{
    font-weight: 600;
    font-size: 14px;
    display: block;
}
.product_prd_price{
    font-weight: 600;
}
.product_cart_done_action{
    padding: 10px;
    border-top: 1px solid #ebebeb;
}
.product_action_nb{
    color: #707070;
    font-size: 14px;
}
.product_action_nb span{
    color: #141414;
}
.product_cart_done_btn{
    display: flex;
    gap: 20px;
    padding: 0 10px 10px;
}
.product_done_btn_l{
    width: calc(50% - 10px);
    color: #fff;
    background-color: #646464;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}
.product_done_btn_l:hover{
    background-color: #444;
}
.product_done_btn_r{
    width: calc(50% - 10px);
    color: #fff;
    background-color: #141414;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
}
.product_view_detail_right{
    width: calc((100% / 12) * 3);
}
.product_view_right_gift{
    margin-bottom: 20px;
}
.product_view_right_gift_title{
    padding: 10px;
    margin: 0;
    background-color: var(--color_main);
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.product_view_right_gift_list{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid var(--color_main);
    padding: 0 8px;
}
.product_view_right_gift_list a{
    display: inline-block;
    padding: 6px 0;
    text-decoration: none;
    color: #333;
}
.product_right_gift_right{
    width: calc(100% - 70px);
}
.product_right_gift_item:first-child{
    margin-top: 10px;
}
.product_right_gift_item{
    padding: 5px 10px;
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #fff;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
    display: flex;
    gap: 10px;
}
.product_right_gift_item:hover{
    background-color: #ececec;
    border: 1px solid #ddd;
}
.product_right_gift_left{
    width: 60px;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.product_right_gift_left i{
    font-size: 24px;
    color: var(--color_main);
}
.product_right_gift_left span{
    font-size: 14px;
}
.product_right_gift_content p:nth-child(1){
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 0;
}
.product_right_gift_content p:nth-child(2){
    font-size: 12px;
    margin-bottom: 0;
}
.product_right_gift_action{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_right_gift_action span{
    font-size: 11px;
    display: block;
    color: #333;
}
.product_right_gift_action button{
    border: none;
    outline: none;
    font-size: 12px;
    height: 20px;
    padding: 0 10px;
    border-radius: 10px;
    background-color: #141414;
    color: #fff;
    transition: all .3s ease;
    text-align: center;
}
.product_right_gift_action button:hover{
    background-color: var(--color_main);
}
.product_view_service_title{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    background-color: #000;
}
.product_view_list{
    border: 1px solid #000;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0 10px;
}
.product_view_item{
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #DDE1EF;
    padding: 10px 0;
}
.product_view_item_icon{
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}
.product_view_inf span:nth-child(1){
    display: block;
    font-weight: bold;
    color: #141414;
}
.product_view_inf span:nth-child(2){
    font-size: 14px;
    color: #666;
}
.product_view_inf span:nth-child(1) a{
    text-decoration: none;
    color: #141414;
}
.product_view_inf span:nth-child(1) a:hover{
    color: var(--color_main);
}
.product_view_right_btn{
    margin-top: 20px;
}
.product_view_right_btn a{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all .3s ease;
}
.product_view_right_btn a:hover{
    background-color: #f1f1f1;
    color: var(--color_main);
}
.product_view_right_btn a:hover i{
    color: #000;
}
.product_view_right_btn .active i{
    font-weight: bold;
    color: var(--color_main);
}
.product_review_detail{
    margin: 30px 0;
}
.product_review_detail .container{
    display: flex;
    gap: 20px;
}
.product_review_detail_left{
    width: 67%;
    background: #F7F7F7;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}
.product_review_title{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product_review_detail_right{
    width: 33%;
    padding: 10px;
}
.product_review_content {
    max-height: 600px;
    overflow: hidden;
    position: relative;
    transition: max-height 1s ease;
}
.product_review_right_content tr{
    border-style: hidden;
}
.product_review_right_content tr:nth-child(odd) td{
    background-color: #F7F7F7!important;
    box-shadow: none;
}
.product_review_right_content tr td:nth-child(1){
    width: 120px;
}
.product_review_right_content td{
    padding: 6px 10px;
}
.product_review_content.expanded {
    max-height: none;
}
.product_review_detail_left_btn {
    position: relative;
    display: flex;
    justify-content: center;
}
.product_review_detail_left_btn:before{
    position: absolute;
    content: '';
    display: block;
    top: -40px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0, rgba(247, 247, 247, 0.91) 50%, #f7f7f7 55%);
}
.product_review_detail_left_btn_btn{
    position: relative;
    display: none;
    border: none;
    outline: none;
    color: #fff;
    background-color: #000;
    border-radius: 14px;
    height: 40px;
    padding: 6px 40px;
    transition: all .3s ease;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.product_review_detail_left_btn_btn:hover{
    background-color: var(--color_main);
}
.product_detail_right_btn{
    text-align: center;
}
.product_detail_right_btn_btn{
    cursor: pointer;
    display: inline-block;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    background-color: #141414;
    color: #fff;
    transition: all .3s ease;
    user-select: none;
}
.product_detail_right_btn_btn:hover{
    background-color: var(--color_main);
}
.product_table_view{
    position: fixed;
    background-color: #fff;
    border-radius: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    z-index: 9999;
    padding: 14px 20px 20px;
    display: none;
}
.product_table_view table{
    margin-bottom: 0;
}
.product_table_view_title{
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}
.product_table_view_close{
    font-size: 24px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    top: -10px;
    right: -14px;
}
.product_table_view_content td{
    border: 1px solid #dee2e6;
}
.product_table_view_content tr td:first-child{
    width: 140px;
}
.product_table_view_close:hover{
    transform: rotate(90deg);
}
.product_table_view_content tr:nth-child(odd) td{
    background-color: #F7F7F7!important;
    box-shadow: none;
}
.product_review_right_news{
    margin-top: 20px;
}
.product_review_news_content{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.product_review_news_content:last-child{
    margin-bottom: 0;
}
.product_review_news_content_img img{
    display: block;
    max-width: 100px;
    width: 100px;
    height: 66px;
    object-fit: cover;
    border-radius: 4px;
}
.product_review_news_content_title{
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    text-decoration: none;
}
.product_review_news_content_title:hover{
    color: var(--color_main);
}
.product_review_news_content_date{
    font-size: 13px;
    color: #333;
    font-style: italic;
}
.product_view_list_list .container{
    padding: 0 2px;
}
.product_view_list_list .product_info{
    min-height: 99px;
}
.product_view_list_box .product_review_title{
    margin: 0 10px;
}

.product_view_list_item_two,
.product_view_list_item_one,
.product_view_list_item{
    margin: 10px 0;
    display: flex;
}
.product_view_list_item_two:hover .slick-arrow,
.product_view_list_item_one:hover .slick-arrow,
.product_view_list_item:hover .slick-arrow{
    transform: translateX(0);
    opacity: 1;
}
.product_view_list_item_one .product,
.product_view_list_item_two .product,
.product_view_list_item .product{
    margin: 0 10px!important;
}
.product_view_list_item_two .slick-next,
.product_view_list_item_one .slick-next,
.product_view_list_item .slick-next{
    right: 10px;
}
.product_view_list_item_two .slick-prev,
.product_view_list_item_one .slick-prev,
.product_view_list_item .slick-prev{
    left: 10px;
}
.product_view_list_item_two .slick-list,
.product_view_list_item_one .slick-list,
.product_view_list_item .slick-list{
    padding: 10px 0;
}
/*end product view*/

/*news_index*/
.news_index .container{
    display: flex;
    gap: 20px;
}
.news_index_left{
    width: calc(75% - 10px);
}
.news_index_right{
    width: calc(25% - 10px);
}
.news_index_left_title{
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.news_index_lef_box{
    display: flex;
    gap: 10px;
}
.news_index_left_left{
    width: calc(60% - 5px);
}
.news_index_left_right{
    width: calc(40% - 5px);
}
.news_index_left_left_img{
    width: 100%;
}
.news_index_left_left_img img{
    width: 100%;
    aspect-ratio: 30 / 17;
    border-radius: 8px;
}
.news_index_left_left_time{
    margin: 10px 0;
    color: #898989;
}
.news_index_left_left_title:hover{
    color: var(--color_main);
}
.news_index_left_left_sub{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}
.news_index_left_right .home_news_item{
    width: 100%;
}
.news_index_left_right .product_review_news_content_title{
    font-weight: 600;
}
.news_index_left_right .product_review_right_news{
    margin-top: 0;
}
.news_index_left_right .product_review_news_content_date{
    color: #898989;
}
.news_index_left_right .product_review_news_content{
    margin-bottom: 20px;
}
.news_index_lef_boxb{
    display: flex;
    flex-wrap: wrap;
    gap: calc(45px / 2);
}
.news_index_lef_boxb .home_news_item{
    width: calc((100% / 3) - 15px);
    margin: 0;
}
.news_index_lef_line{
    display: block;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}
.news_index_right_cate{
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 6px 0 rgba(50, 50, 93, 0.15), 1px 1px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}
.news_index_cate_title{
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    background: #141414;
    color: #fff;
}
.news_index_cate_list{
    padding: 10px;
}
.news_index_cate_item{
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}
.news_index_cate_item:hover{
    color: var(--color_main);
}
.news_index_right_banner img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.news_view_content_title{
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
}
.news_view_related{
    margin-bottom: 20px;
}
.news_view_related_title{
    font-size: 24px;
    margin: 20px 0;
    font-weight: 600;
}
.news_view_content_time{
    color: #989898;
    margin: 10px 0;
}
.news_view_related_box{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.news_view_related_box .home_news_item{
    width: calc((100% / 3) - 10px);
    margin: 0;
}
.news_index_left_false{
    border: 1px solid #ffeeba;
    color: #856404;
    background-color: #fff3cd;
    padding: 8px 12px;
    border-radius: 8px;
}
.news_search_box .container{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.news_search_left{
    width: calc(75% - 10px);
}
.news_search_right{
    width: calc(25% - 10px);
}
.news_search_left_content{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.news_search_left_content .home_news_item{
    width: calc((100% / 3) - 10px);
    margin: 0;
}
.news_search_search{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #999;
    border-radius: 6px;
    overflow: hidden;
    justify-content: space-between;
}
.news_search_search_input {
    width: calc(100% - 50px);
    padding: 8px 12px;
    outline: none;
    border: none;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #000;
}
.news_search_search_icon {
    background-color: #fff;
    width: 50px;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #000;
    font-size: 18px;
}
/*end news_index*/

/*cart_index*/
.cart_index{
    margin-bottom: 30px;
}
.cart_index_title{
    margin: 20px 0;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}
.cart_index_list{
    border: solid 1px #ebebeb;
    border-radius: 8px;
    margin-bottom: 20px;
}
.cart_index_list_nav{
    display: flex;
    background-color: #f8f8f8;
    padding: 10px;
    border-bottom: 1px solid #ebebeb;
}
.cart_index_list_nav div{
    text-transform: uppercase;
    display: flex;
    font-weight: 600;
}
.cart_index_list_name{
    width: 40%;
    gap: 10px;
}
.cart_index_list_price,
.cart_index_list_total{
    width: 20%;
    justify-content: center;
}
.cart_index_list_all{
    width: 20%;
    justify-content: end;
}
.cart_index_list_product{
    display: flex;
    padding: 10px;
    border-bottom: solid 1px #ebebeb;
}
.cart_index_no{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}
.cart_index_no svg{
    width: 80px;
}
.cart_index_list_product:last-child{
    border-bottom: none;
}
.cart_index_list_product>div{
    display: flex;
    align-items: center;
}
.cart_index_img{
    width: 100px;
    height: 100px;
}
.cart_index_img img{
    display: block;
    max-width: 100px;
    width: 100px;
    height: 100%;
    object-fit: cover;
}
.cart_index_inf_name{
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 14px;
}
.cart_index_inf_name:hover{
    color: var(--color_main);
}
.cart_index_list_product .cart_index_list_price,
.cart_index_list_product .cart_index_list_all{
    color: var(--color_main);
    font-weight: 500;
    font-size: 14px;
}
.cart_index_list_total .product_quantity_input{
    width: 30px;
    height: 30px;
}
.cart_index_list_total .product_view_quantity_list{
    border-radius: 0;
}
.cart_index_list_total button{
    height: 30px;
    border-radius: 0;
    font-size: 12px;
    background-color: #fff;
    border-color: #ebebeb;
}
.cart_index_list_total .product_quantity_decrease{
    border-right: 1px solid #ebebeb;
}
.cart_index_list_total .product_quantity_increase{
    border-left: 1px solid #ebebeb;
}
.cart_index_bottom{
    display: flex;
    justify-content: space-between;
}
.cart_index_bottom_conti{
    text-decoration: none;
    background: #ededed;
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    height: 40px;
    font-size: 14px;
}
.cart_index_bottom_conti:hover{
    background-color: #e1e1e1;
}
.cart_index_bottom_pay{
    width: 400px;
}
.cart_index_bottom_pay_top{
    display: flex;
    justify-content: space-between;
}
.cart_index_bottom_pay_top>span:nth-child(1){
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
}
.cart_index_bottom_pay_top>span:nth-child(2){
    color: var(--color_main);
    font-weight: 500;
    font-size: 18px;
}
.cart_index_bottom_pay_btn{
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 6px 0;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    transition: all .3s ease;
    font-weight: 500;
    border-radius: 4px;
}
.cart_index_bottom_pay_btn:hover{
    background-color: var(--color_main);
}
/*end cart_index*/

/*checkout*/
#_formCheckOut{
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.check_out_box{
    display: flex;
    justify-content: center;
    max-width: 1400px;
}
.checkout_left{
    min-height: 100vh;
    max-height: 100%;
    width: 63%;
    padding: 30px;
    border-right: 1px solid #cecdcd;
}
.checkout_right{
    width: 37%;
    position: relative;
}
.checkout_right:after {
    content: "";
    display: block;
    width: 300%;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #fafafa;
    z-index: -1;
    left: 0;
    background-position: left top;
}
.checkout_logo{
    display: block;
    text-align: center;
    margin: 20px 0 30px;
}
.checkout_left_box{
    display: flex;
    gap: 20px;
}
.checkout_left_ship,
.checkout_left_user{
    width: calc(50% - 10px);
}
.checkout_left_user_name{
    display: flex;
    justify-content: space-between;
}
.checkout_left_user_name span{
    font-weight: bold;
}
.checkout_left_user_name a{
    text-decoration: none;
}
.checkout_left_user_inf{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout_ship_title{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
}
.checkout_ship_list{
    border-radius: 4px;
    border: 1px solid #cecdcd;
}
.checkout_ship_list ul{
    margin: 0;
    padding: 0;
}
.checkout_ship_list li{
    list-style: none;
    gap: 10px;
    margin: 16px;
}
.checkout_ship_list input{
    margin-right: 10px;
}
.checkout_right_top{
    padding: 20px 0 20px 30px;
    font-weight: 600;
    font-size: 20px;
    border-bottom: 1px solid #cecdcd;
    margin-right: 30px;
}
.checkout_right_bottom{
    padding: 20px 30px 0 30px;
}
.checkout_product_list{
    border-bottom: 1px solid #cecdcd;
}
.checkout_product{
    display: flex;
    position: relative;
    margin-bottom: 16px;
}
.checkout_product_img{
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #cecdcd;
    margin-right: 10px;
}
.checkout_product_img img{
    max-width: 50px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
}
.checkout_product_total{
    position: absolute;
    top: -6px;
    right: -6px;
    display: block;
    padding: 0 6px;
    background-color: #0c61df;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}
.checkout_product_name{
    font-size: 14px;
    color: #444;
}
.checkout_product_price{
    position: absolute;
    bottom: 0;
    right: 0;
    color: #555;
    font-size: 14px;
}
.checkout_right_voucher{
    padding: 20px 0;
    border-bottom: 1px solid #cecdcd;
}
.checkout_voucher_inp{
    display: flex;
    gap: 12px;
}
.checkout_voucher_inp_inp{
    width: calc(70% - 12px);
}
.checkout_voucher_inp_btn{
    display: flex;
    width: 30%;
    opacity: .6;
    background-color: #357ebd;
    border-color: #2f71a9;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 4px;
}
.checkout_voucher_inp_btn.active{
    opacity: 1;
}
.checkout_right_price{
    padding: 10px 0;
    border-bottom: 1px solid #cecdcd;
}
.checkout_right_price_ship,
.checkout_right_price_product{
    display: flex;
    justify-content: space-between;
    color: #555;
    margin: 6px 0;
}
#tableShipFee p{
    margin: 0 0 10px 0!important;
    font-weight: 600;
    font-size: 20px;
}
.checkout_right_all_price{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.checkout_right_all_price_text{
    font-size: 20px;
    color: #333;
}
.checkout_right_all_price ._showTotalMoney{
    font-size: 22px;
    color: #2a9dcc;
}
.checkout_right_all_by{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkout_right_all_by a{
    text-decoration: none;
    color: #2a9dcc;
}
.checkout_right_all_by button{
    outline: none;
    background-color: #357ebd;
    border: 1px solid #2f71a9;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 4px;
    padding: 6px 20px;
}
.checkout_right_all_by button:hover{
    background-color: #2a6395;
}
/*end_checkout*/

/*gign*/
.sign_box .container{
    display: flex;
    justify-content: center;
}
.sign_ctm{
    margin: 40px 0;
    padding: 20px;
    width: 400px;
    box-shadow: 0 0 6px 0 rgba(50, 50, 93, 0.15), 1px 1px 5px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.sign_title{
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
}
.sign_form ul{
    margin: 0;
    padding: 0;
}
.sign_form li{
    list-style: none;
}
.signup_ctm .sign_form input,
.signin_ctm .sign_form input{
    height: 45px;
    padding: 0 20px;
    color: #333;
    line-height: 45px;
    border: 1px solid #e1e1e1 !important;
    box-shadow: none;
    background: #fff;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    border-radius: 2px;
}
.signup_ctm .sign_form li:nth-child(6) input,
.signin_ctm .sign_form li:nth-child(4) input{
    text-transform: uppercase;
    line-height: 40px;
    height: 40px;
    background: #141414;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 6px;
    transition: all .2s ease;
}
.signup_ctm .sign_form li:nth-child(6) input:hover,
.signin_ctm .sign_form li:nth-child(4) input:hover{
    background-color: var(--color_main);
}
.sign_btn_list{
    display: flex;
    justify-content: space-between;
}
.sign_btn{
    text-decoration: none;
    color: #000;
}
.sign_btn:hover{
    color: var(--color_main);
}
.signin_text_or{
    text-align: center;
    margin: 16px 0;
}
.singin_form_option{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.singin_option_fb{
    background-color: #3b5998;
    color: white;
}
.singin_option_gg{
    color: white;
    background-color: #e14b33;
}
.singin_option_gg .singin_option_icon{
    border-right: 1px solid #c2412d;
}
.singin_form_option a{
    text-decoration: none;
    height: 36px;
    display: flex;
    width: 40%;
}
.singin_option_icon{
    display: flex;
    width: 46px;
    height: 36px;
    justify-content: center;
    border-right: 1px solid #244488;
    align-items: center;
}
.singin_option_text{
    font-size: 12px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.signin_text_or a{
    text-decoration: none;
    color: #333;
}
.signin_text_or a:hover{
    color: var(--color_main);
}
.getpassword_form li{
    display: flex;
    flex-direction: column;
}
.getpassword_form input{
    height: 45px;
    padding: 0 20px;
    color: #333;
    line-height: 45px;
    border: 1px solid #e1e1e1 !important;
    box-shadow: none;
    background: #fff;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    border-radius: 2px;
}
.getpassword_form #btnSubmit{
    text-transform: uppercase;
    line-height: 40px;
    height: 40px;
    background: #141414;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 6px;
    transition: all .2s ease;
}
.getpassword_form #btnSubmit:hover{
    background-color: var(--color_main);
}
.signup_ctm .layout-register-success a{
    text-decoration: none;
}
.profile_pass_edit{
    width: 50%;
}
.profile_pass_edit p{
    margin: 14px 0;
}
.profile_pass_edit ul{
    margin: 0;
    padding: 0;
}
.profile_pass_edit li{
    list-style: none;
    display: flex;
    flex-direction: column;
}
.profile_pass_edit label{
    margin-bottom: 4px;
}
.profile_pass_edit input{
    height: 45px;
    padding: 0 20px;
    color: #333;
    line-height: 45px;
    border: 1px solid #e1e1e1 !important;
    box-shadow: none;
    background: #fff;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    border-radius: 2px;
}
.profile_edit_btn,
.profile_pass_edit #btnSubmit{
    line-height: 40px;
    height: 40px;
    background: #141414;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 4px;
    border: 1px solid #000!important;
}
.profile_edit_btn:hover,
.profile_pass_edit #btnSubmit:hover{
    background-color: #fff;
    color: #000;
}
/*end gign*/

/*profile*/
.profile_ctm .container{
    display: flex;
    margin: 30px auto;
}
.profile_menu{
    width: 25%;
}
.profile_edit{
    width: calc(70% - 20px);
}
.profile_menu_name_title{
    font-size: 22px;
    text-transform: uppercase;
}
.profile_menu_name p{
    font-weight: 600;
}
.profile_menu_name p span{
    color: #01567f;
}
.profile_menu_list{
    display: flex;
    flex-direction: column;
}
.profile_menu_list a{
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}
.profile_menu_list .active,
.profile_menu_list a:hover{
    color: var(--color_main);
}
.profile_info_list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.profile_info_item{
    font-weight: bold;
}
.profile_info_item span{
    font-weight: 400;
}
.profile_info_list_edit{
    display: flex;
    justify-content: end;
}
.profile_info_item_edit{
    text-decoration: none;
    color: #fff;
    padding: 6px 20px;
    background-color: #000;
    border-radius: 6px;
    transition: all .2s ease;
}
.profile_info_item_edit:hover{
    background-color: var(--color_main);
}
.profile_order{
    margin-top: 20px;
}
.profile_info_top{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.profile_info_top_search{
    text-decoration: none;
    color: var(--color_main);
    padding: 6px 20px;
    border: 1px solid var(--color_main);
    font-weight: 500;
    transition: all .3s ease;
}
.profile_info_top_search:hover{
    background-color: var(--color_main);
    color: #fff;
}
.profile_order_title{
    display: flex;
    background-color: #bf1e2e;
}
.profile_order_title div{
    width: 15%;
    text-align: center;
    padding: 6px 0;
    color: #fff;
    font-weight: 500;
    border-right: 1px solid #ddd;
}
.profile_order_title div:nth-child(2){
    width: 55%;
}
.profile_order_title div:last-child{
    border-right: none;
}
.profile_order_list{
    border: 1px solid #ebebeb;
}
.profile_order_item{
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}
.profile_order_item>div{
    width: 15%;
    padding: 0 10px;
    text-align: center;
    border-right: 1px solid #ddd;
}
.profile_order_item>div:nth-child(2){
    width: 55%;
    text-align: start;
}
.profile_order_item>div:nth-child(2)>div{
    display: flex;
    gap: 8px;
}
.profile_order_item>div:last-child{
    border-right: none;
}
.profile_order_item:last-child{
    border-bottom: none;
}
.profile_order_list_no{
    margin: 20px;
    text-align: center;
}
.profile_order_list_no a{
    color: #000;
}
.profile_order_list_no a:hover{
    color: var(--color_main);
}
.profile_order_item_img{
    display: block;
}
.profile_order_item_img img{
    width: 80px;
    height: 80px;
    max-width: 80px;
    object-fit: cover;
}
.profile_order_item_total{
    display: flex;
    flex-direction: column;
}
.profile_order_item_total a{
    font-size: 13px;
    text-decoration: none;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile_order_item_total a:hover{
    color: var(--color_main);
}
.order_search_search{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    flex-direction: column;
}
.order_search_title{
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    margin: 20px;
}
.order_search_form input{
    width: 400px;
    padding: 6px 12px;
    outline: none;
}
.order_search_form button{
    padding: 8px 12px;
    border: none;
    outline: none;
    background-color: #000;
    color: #fff;
    transition: all .3s ease;
}
.order_search_form button:hover{
    background-color: var(--color_main);
}
.order_search_list th{
    white-space: nowrap;
    text-align: center;
}
.order_search_list td{
    text-align: center;
}
.order_search_list td:nth-child(3){
    text-align: start;
    min-width: 300px;
}
.order_search_product_name{
    display: block;
    text-decoration: none;
    color: #333;
}
.order_search_list td:nth-child(3)>div{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.order_search_list td:nth-child(3)>div:last-child{
    margin-bottom: 0;
}
.order_search_product_img img{
    max-width: 60px;
    height: 60px;
    width: 60px;
    object-fit: cover;
    display: block;
}
.order_search_product_new{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.order_search_no_product{
    display: flex;
    justify-content: center;
    margin: 30px 0;
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    border-radius: 6px;
    padding: 4px 0;
}
.order_search_no_product span{
    font-size: 18px;
}
/*end_profile*/

/*wishlist*/
.wishlist_title{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.wishlist_list_no{
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 4px;
}
.wishlist_list_no a{
    color: var(--color_main);
    text-decoration: none;
}
.wishlist_list_no a:hover{
    color: #750712;
}
.wishlist_list{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px /3);
}
.wishlist_list .product{
    width: calc(25% - 10px);
}
.wishlist_list .product_work{
    right: 10px;
    top: 10px;
    transform: translateY(0);
}
.wishlist_list .product_image_img img{
    transition: none;
}
/*end wishlist*/

/*maps*/
.maps_box .container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto 30px auto;
}
.maps_select{
    width: 40%;
    height: 524px;
    border-radius: 8px;
}
.shop_map_location{
    width: calc(60% - 10px);
}
.maps_select{
    padding: 12px;
    background-color: #ededed;
}
.maps_city{
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #d7d7d7;
    outline: none;
    padding: 0 10px;
    height: 40px;
    background-color: #fff;
}
.maps_detail{
    background-color: #fff;
}
.maps_detail_link{
    padding: 0;
    margin: 0;
    max-height: 400px;
    height: 400px;
    overflow: hidden;
    overflow-y: auto;
}
.maps_detail_link::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #f1f1f1;
    border: 1px solid #D6D6D6;
}
.maps_detail_link::-webkit-scrollbar-thumb {
    background-color: #959595;
    border-radius: 10px;
}
.maps_detail>ul>span{
    margin: 20px;
}
.maps_detail_item{
    list-style: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.maps_detail_item.active{
    background-color: #ddd;
}
.maps_detail_item a{
    text-decoration: none;
    color: #000;
}
.maps_detail_name{
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}
.maps_detail_sub_name{
    color: #333;
    font-size: 16px;
}
.maps_detail li:hover{
    background-color: #ddd;
    cursor: pointer;
}
.maps_detail li p{
    margin-bottom: 0;
}
.maps_detail li p:nth-child(1){
    font-weight: bold;
    margin-bottom: 4px;
}
.maps_detail li p:nth-child(2),
.maps_detail li a{
    color: #333;
}
.maps_detail li{
    padding: 12px;
}
/*end maps*/

/*contact*/
.contact{
    margin: 30px 0;
}
.contact .container{
    display: flex;
    gap: 20px;
}
.contact_info{
    width: 40%;
}
.contact_maps{
    width: calc(60% - 20px);
}
.contact_maps iframe{
    width: 100%;
    height: 100%;
}
.contact_top{
    margin-bottom: 20px;
}
.contact_top>span{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}
.contact_bottom{
    background: #f5f5f5;
    padding: 20px 15px;
    border-radius: 12px;
}
.contact_bottom form ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.contact_bottom form li{
    list-style: none;
    margin-bottom: 10px;
    width: 100%;
}
.contact_bottom form li:nth-child(2){
    width: calc(50% - 5px);
    margin-right: 10px;
}
.contact_bottom form li:nth-child(3){
    width: calc(50% - 5px);
}
.contact_bottom form li:last-child{
    width: 180px;
    margin-bottom: 0;
}
.contact_bottom form li:last-child input{
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    transition: all .2s ease;
}
.contact_bottom form li:last-child input:hover{
    background-color: var(--color_main);
}
.contact_bottom form li label{
    display: none;
}
.contact_bottom form li input{
    width: 100%;
    border: 1px solid #e1e1e1;
    padding: 6px 20px;
    outline: none;
}
.contact_bottom form li textarea{
    width: 100%;
    min-height: 160px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
    outline: none;
    resize: none;
}
.contact_bottom_title{
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 500;
}
.contact_top_info .main_footer_inf a{
    color: var(--color_main);
}
.contact_top_info .main_footer_inf a:hover{
    color: #000;
}
/*end contact*/

/*album*/
.album_box{
    margin-bottom: 30px;
}
.album_title{
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
.album_list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px / 3);
}
.album_item{
    width: calc(25% - 10px);
    border-radius: 4px;
    overflow: hidden;
}
.album_item:hover img{
    scale: 1.1;
}
.album_item_img{
    overflow: hidden;
}
.album_item_img img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all .3s ease;
}
.album_item_name{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    height: 60px;
    padding: 0 6px;
    text-align: center;
}
.album_item_name a{
    font-weight: 500;
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album_item_name a:hover{
    color: var(--color_main);
}
.album_ctm_top img{
    width: 100vw;
    height: 60vh;
    object-fit: cover;
    border-radius: 10px;
}
.album_ctm_top_content p{
    margin-bottom: 0;
    margin-top: 20px;
}
.album_ctm_center_img img{
    height: 30vh;
    width: 100vw;
    object-fit: cover;
    margin: 20px 0;
    border-radius: 5px;
}
.album_ctm_bottom{
    margin: 30px 0;
}
.album_list,
.album_ctm_center_list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px / 3);
}
.album_list .album_item,
.album_ctm_center_list .product{
    width: calc(25% - 10px);
}
/*end album*/

/*search*/
.search_list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px / 3);
}
.search_list .product{
    width: calc(25% - 10px);
}
.search_title p{
    text-transform: uppercase;
    font-weight: 500;
}
/*end search*/

/*order_success*/
.order_success_top a{
    color: #0a53be;
}
.order_success_top h1{
    color: var(--color_main);
}
.table_product th{
    width: calc(50%/3);
}
.table_product th:first-child{
    width: 50%;
}
.table_product_img img{
    display: block;
    width: 140px;
    height: 140px;
    object-fit: contain;
    max-width: 140px;
}
.table_product_name a{
    text-decoration: none;
    color: #333;
}
.table_product_name a:hover{
    color: var(--color_main);
}
.order_success_infor .w-100{
    padding: 10px 0;
}
.order_success_infor .w-100:nth-child(odd){
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
}
.order_success_infor .col-3{
    color: #977307;
}
/*end_order_success*/

/*Sản phẩm*/
.product_all_title{
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}
.product_all_category{
    display: flex;
    gap: 30px;
    margin: 20px 0;
    justify-content: center;
}
.product_all_category_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    text-decoration: none;
    transition: all .3s ease;
}
.product_all_category_box:hover{
    transform: translateY(-5px);
}
.product_all_category_box:hover .product_all_category_item{
    background-color: #141414;
}
.product_all_category_item{
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
    position: relative;
    background: #ddd;
    box-shadow: 0px 0px 6px 0px rgba(50, 50, 93, 0.15), 1px 1px 5px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px auto;
}
.product_all_category_item img{
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
    margin: auto;
    display: block;
    width: 0px;
    height: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product_all_category_name{
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.product_all_filter{
    margin-bottom: 20px;
    padding: 8px 14px;
    background: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
}
.product_filter_sort{
    display: flex;
    align-items: center;
    gap: 10px;
}
.product_filter_sort button{
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 8px;
    color: #333f48;
    background-color: transparent;
    font-weight: 600;
    text-align: right;
    border: #ccc solid 1px;
}
.product_filter_btn:hover,
.product_filter_sort button:hover{
    background-color: #000;
    color: #fff;
}
.product_filter_sort_text{
    font-weight: 600;
}
.product_filter_btn{
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 8px;
    border: #ccc solid 1px;
    color: #333f48;
    background-color: transparent;
    font-weight: 600;
}
#SortByButtons button.active {
    background-color: #000;
    color: #fff;
    border-color: black;
}
.product_filter_list{
    padding: 10px;
    background-color: #fff;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.product_filter_list.active {
    transform: translateX(0);
}
.product_filter_list::-webkit-scrollbar {
    width: 4px;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
}
.product_filter_list::-webkit-scrollbar-thumb {
    background-color: #d1d1d1;
    border-radius: 10px;
}
.product_filter_list_box{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.product_filter_list_box:last-child{
    border-bottom: none;
}
.product_filter_item_list{
    max-height: 200px;
    overflow-y: auto;
    margin: 10px 0;
}
.product_filter_item_list::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #f1f1f1;
    border: 1px solid #D6D6D6;
}
.product_filter_item_list::-webkit-scrollbar-thumb {
    background-color: #141414;
    border-radius: 10px;
}
.product_filter_item_name{
    color: #282828;
    font-size: 19px;
    text-transform: uppercase;
}
.filter_list_type{
    margin: 10px 0;
    color: #444;
}
.filter_list_type:first-child{
    margin-top: 0;
}
.filter_list_type:last-child{
    margin-bottom: 0;
}
.filter_list_type label{
    display: flex;
    gap: 10px;
    align-items: center;
}
.filter_list_type input{
    border: 1px solid #ddd;
    font-size: 18px;
    height: 15px !important;
    width: 15px;
    border-radius: 3px;
}
.filter_list_type a{
    text-decoration: none;
    color: #333;
}
.filter_list_close{
    position: fixed;
    top: 0;
    left: 300px;
    background-color: #000;
    z-index: 9999;
    transform: translateX(-335px);
    transition: transform 0.3s ease-in-out;
}
.filter_list_close.active{
    transform: translateX(0);
}
.filter_list_close:hover{
    background-color: var(--color_main);
}
.filter_list_close i{
    color: #fff;
    font-size: 20px;
    padding: 8px 10px;
}
.product_all_list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px / 3);
}
.product_all_list .product{
    width: calc(25% - 10px);
}
.product_category_banner{
    width: 100%;
    display: block;
    margin: 20px 0;
}
.product_category_banner img{
    display: block;
    width: 100%;
    aspect-ratio: 1250 / 320;
    object-fit: cover;
    border-radius: 8px;
}
/*end sản phẩm*/

.tag_list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(40px / 3);
}
.tag_list .product{
    width: calc(25% - 10px);
}
.home_flash_sale .product_info{
    min-height: 99px;
}
.check_out_box .select2 {
    width: 100% !important;
}
.check_out_box .select2-container .select2-selection--single .select2-selection__rendered{
    width: 100% !important;
    line-height: 36px;
    font-weight: 400;
    color: var(--bs-body-color);
    border: none;
}
.check_out_box .select2-container .select2-selection--single{
    width: 100% !important;
    height: 38px;
    border: var(--bs-border-width) solid var(--bs-border-color);
}

/*responsive*/
@media (max-width: 1200px){
    .product_view_by_now,
    .product_view_add_cart{
        width: 50%;
    }
}
@media (max-width: 1023px){
    .product_view_list_list .product_info{
        min-height: 92px;
    }
    .home_flash_sale .product_info{
        min-height: 92px;
    }
    .product_name{
        font-size: 17px;
    }
    .product_price_old{
        font-size: 14px;
    }
    .product_price_new{
        font-size: 15px;
    }
    .product_sold_text{
        font-size: 14px;
    }
    .product_image_img{
        height: 220px;
    }
    .product_work_icon{
        display: none;
    }
    .main_footer .container{
        flex-wrap: wrap;
    }
    .main_footer_item{
        width: 30%;
        padding: 0;
    }
    .main_footer_item:first-child{
        width: 100%;
        margin-bottom: 20px;
    }
    .main_footer_item:last-child{
        width: 40% ;
    }
    .main_header .container{
        flex-wrap: wrap;
    }
    .main_header_left{
        order: 1;
        width: 60%;
        display: flex;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .main_header_mid{
        order: 3;
        width: 100%;
        margin: 8px 0 0;
    }
    .main_header_right{
        order: 2;
        width: 40%;
    }
    .main_header_right_item{
        max-width: 50%;
    }
    .main_header_left_tablet{
        color: #fff;
        font-size: 26px;
        cursor: pointer;
    }
    .header_menu_list{
        overflow-y: auto;
        z-index: 9999;
        position: fixed;
        display: block;
        background: linear-gradient(180deg, #141414 0%, #202022 50%, #47474f 100%);
        top: 0;
        left: 0;
        height: 100vh;
        width: 300px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .header_menu_list::-webkit-scrollbar {
        width: 5px;
        background-color: #f1f1f1;
        border: 1px solid #D6D6D6;
    }
    .header_menu_list::-webkit-scrollbar-thumb {
        background-color: #141414;
    }
    .header_menu_item:before{
        display: none;
    }
    .header_menu_tablet_close{
        color: #fff;
        padding: 8px 16px;
        background-color: #000;
        display: flex!important;
        align-items: center;
        justify-content: space-between;
        text-transform: uppercase;
        font-weight: 700;
    }
    .header_menu_tablet_close i{
        font-size: 20px;
        cursor: pointer;
    }
    .header_menu_tablet_inf{
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .header_menu_tablet_inf a{
        padding: 10px 16px;
        color: #fff;
        text-decoration: none;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .header_menu_tablet_inf a:hover{
        color: var(--color_main);
    }
    .header_menu_item a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header_menu_sub_menu{
        position: relative;
        top: auto;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    .header_menu_sub_menu a{
        color: #fff;
        padding: 8px 16px 8px 26px;
        width: 100%;
    }
    .header_menu_sub_menu_item:hover>a,
    .header_menu_sub_menu a:hover{
        text-decoration: none;
    }
    .header_menu_sub_menu_item{
        border: none;
    }
    .header_menu_sub_menu_two{
        position: relative;
        left: auto;
        top: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background-color: transparent;
    }
    .header_menu_sub_menu_item a i{
        transform: translateX(0);
        transition: none;
    }
    .header_menu_sub_menu_two a{
        padding: 8px 16px 8px 36px;
        opacity: .8;
    }
    .header_menu_list.active {
        transform: translateX(0);
    }
    .header_menu_js,
    .header_menu_js_two{
        padding: 0 6px;
    }
    .section_service_item{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        gap: 1px;
        font-size: 12px;
    }
    .home_category_list{
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .home_category_item{
        width: 25%;
        flex: 0 0 auto;
    }
    .home_customer_list{
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        padding-top: 10px;
    }
    .home_customer_item{
        width: 26%;
        flex: 0 0 auto;
    }
    .home_customer .home_title{
        padding-bottom: 10px;
    }
    .home_flash_sale_title{
        justify-content: center;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .home_flash_sale_title_left{
        margin-bottom: 10px;
    }
    .product_view_detail{
        flex-wrap: wrap;
        gap: 20px;
    }
    .product_view_detail_left{
        width: calc(50% - 10px);
    }
    .product_view_detail_center{
        width: calc(50% - 10px);
        margin: 0;
    }
    .product_view_center_by{
        flex-wrap: wrap;
    }
    .product_view_by_now{
        width: calc(80% - 10px);
    }
    .product_view_add_cart{
        width: 20%;
        font-size: 0;
    }
    .product_view_add_cart i{
        font-size: 24px;
    }
    .product_view_add_cart span{
        display: none;
    }
    .product_view_detail_right{
        width: 100%;
    }
    .product_view_list{
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .product_view_item{
        width: calc(50% - 5px);
    }
    .product_review_detail_right,
    .product_review_detail_left{
        width: 100%;
    }
    .product_review_detail .container{
        flex-wrap: wrap;
    }
    .product_view_out,
    .product_view_out button{
        width: 100%;
    }
    .news_index .container{
        flex-wrap: wrap;
    }
    .news_index_left{
        width: 100%;
    }
    .news_index_right{
        width: 100%;
    }
    .news_index_right_banner{
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .news_index_right_banner img{
        width: 300px;
    }
    .news_index_left_left{
        width: 50%;
    }
    .news_index_left_right{
        width: 50%;
    }
    .main_header_right_item:hover .main_header_mini_cart{
        display: none;
    }
    .cart_index_list_product{
        position: relative;
    }
    .cart_index_list_name{
        align-items: start!important;
        width: 100%;
    }
    .cart_index_inf_name_rm{
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    .cart_index_list_price{
        width: auto;
        position: absolute;
        right: 10px;
        bottom: 30px;
    }
    .cart_index_list_total{
        width: auto;
        position: absolute;
        bottom: 10px;
        left: 120px;
    }
    .cart_index_bottom{
        flex-wrap: wrap;
    }
    .cart_index_bottom>div{
        width: 100%;
    }
    .cart_index_bottom>div:nth-child(1){
        order: 2;
        margin-top: 10px;
    }
    .cart_index_bottom_conti{
        text-align: center;
        display: block;
        width: 100%;
    }
    .cart_index_bottom_pay{
        order: 1;
    }
    .check_out_box{
        flex-wrap: wrap;
        max-width: 600px;
    }
    .checkout_left{
        width: 100%;
        border-right: none;
        order: 2;
        height: auto;
    }
    .checkout_right{
        width: 100%;
        order: 1;
    }
    .checkout_right_top{
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        margin: 0 30px;
        padding: 20px 0;
        user-select: none;
        position: relative;
        border-bottom: none;
    }
    .checkout_right_total_mobile{
        margin-left: auto;
        font-size: 16px;
        font-weight: bold;
        color: #2a9dcc;
    }
    .checkout_right_top:before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%;
        border-bottom: 1px solid #cecdcd;
    }
    .checkout_right_top::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 200%;
        border-bottom: 1px solid #cecdcd;
    }
    .checkout_left_box{
        flex-wrap: wrap;
    }
    .checkout_left_user{
        width: 100%;
    }
    .checkout_left_user_inf{
        width: 100%;
    }
    .checkout_left_ship{
        width: 100%;
    }
    .checkout_right_all_by{
        margin-top: 20px;
    }
    .checkout_right_all_price{
        padding: 10px 0 0 0;
    }
    .checkout_right_bottom{
        padding: 0 30px 0 30px;
    }
    .checkout_right .checkout_logo{
        margin: 20px 0 10px 0;
    }
    .checkout_product_list{
        margin-top: 20px;
    }
    .checkout_product_list,
    .checkout_right_price,
    .checkout_right_all_price {
        display: none;
    }
    .profile_ctm .container{
        flex-wrap: wrap;
    }
    .profile_menu{
        width: 100%;
    }
    .profile_edit{
        width: 100%;
        margin-top: 20px;
    }
    .profile_menu_name p{
        margin-bottom: 0!important;
    }
    .profile_menu_list{
        flex-wrap: wrap;
        gap: 10px;
        flex-direction: row;
        margin: 10px 0;
    }
    .profile_menu_list a{
        padding: 4px 10px;
        border-radius: 4px;
        background-color: #F7F7F7;
    }
    .profile_info_list{
        margin-top: 10px;
    }
    .profile_pass_edit{
        width: 100%;
    }
    .profile_edit_item{
        flex-direction: column;
        align-items: start!important;
        margin-bottom: 10px!important;
    }
    .profile_edit_item span,
    .profile_edit_item label,
    .profile_edit_item .col-9{
        width: 100%!important;
    }
    .profile_edit_item .col-3,
    .profile_edit_item .col-2{
        margin-bottom: 4px;
    }
    .wishlist_list{
        gap: calc(15px);
    }
    .wishlist_list .product{
        width: calc((100% / 3) - 10px);
    }
    .album_list,
    .album_ctm_center_list{
        gap: 15px;
    }
    .album_list .album_item,
    .album_ctm_center_list .product{
        width: calc((100% / 3) - 10px);
    }
    .search_list{
        gap: 15px;
    }
    .search_list .product{
        width: calc((100% / 3) - 10px);
    }
    .wishlist_list .product_work_icon{
        display: flex;!important;
    }
    .product_filter_sort_text{
        cursor: pointer;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 4px 10px;
        font-size: 14px;
        border-radius: 8px;
        border: #ccc solid 1px;
        color: #333f48;
        background-color: transparent;
        font-weight: 600;
        user-select: none;
    }
    .product_filter_sort{
        position: relative;
    }
    #SortByButtons{
        right: 0;
        top: calc(100% + 8px);
        position: absolute;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        z-index: 99;
        min-width: 155px;
        text-align: left;
        box-shadow: 2px 3px 7px 0 rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        overflow: hidden;
        max-height: 0;
        transition: all .7s ease-in-out;
        padding: 0;
        gap: 4px;
    }
    #SortByButtons.show {
        max-height: 220px;
    }
    #SortByButtons button{
        border: none;
        padding: 4px 10px;
        margin: 0 10px;
    }
    #SortByButtons button:first-child{
        margin-top: 10px;
    }
    #SortByButtons button:last-child{
        margin-bottom: 10px;
    }
    .product_all_list{
        gap: 15px;
    }
    .product_all_list .product{
        width: calc((100% / 3) - 10px);
    }
    .checkout_right:before {
        content: "";
        display: block;
        width: 300%;
        position: absolute;
        top: 0;
        bottom: 0;
        background-color: #fafafa;
        z-index: -1;
        right: 0;
        background-position: right top;
    }
    .checkout_right_all_by{
        padding-bottom: 20px;
        position: relative;
    }
    .checkout_right_all_by::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%;
        border-bottom: 1px solid #cecdcd;
    }
    .checkout_right_all_by::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 200%;
        border-bottom: 1px solid #cecdcd;
    }
    .tag_list{
        gap: 15px;
    }
    .tag_list .product{
        width: calc((100% / 3) - 10px);
    }
}

@media (max-width: 767px){
    .product_table_view{
        width: 95%;
    }
    .product_view_list_list .product_info{
        min-height: auto;
    }
    .home_flash_sale .product_info{
        min-height: auto;
    }
    .product_name{
        font-size: 16px;
    }
    .product_price_old{
        font-size: 13px;
    }
    .product_price_new{
        font-size: 14px;
    }
    .product_sold_text{
        font-size: 13px;
    }
    .product_price_option{
        padding: 1px 3px;
        font-size: 16px;
    }
    .main_footer_item:last-child,
    .main_footer_item{
        width: 100%;
    }
    .main_footer_item_title{
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
    }
    .main_footer_item_title i {
        font-size: 14px;
        font-weight: 400;
        display: block;
    }
    .main_footer_item_click {
        margin-bottom: 20px;
    }
    .main_footer_item_click_list {
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease;
    }
    .main_header_right_item i{
        font-size: 20px;
    }
    .main_header_right_item_inf span i{
        font-size: 14px;
    }
    .section_service_list{
        flex-wrap: wrap;
        gap: 10px;
    }
    .section_service_item{
        width: calc(50% - 10px);
    }
    .section_service_inf span:nth-child(1){
        font-size: 14px;
    }
    .section_service_inf span:nth-child(2){
        font-size: 13px;
    }
    .banner_product_new_list{
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .banner_product_new_item{
        width: 70%;
        flex: 0 0 auto;
    }
    .banner_product_new_item:hover{
        transform: translateY(0);
    }
    .home_flash_sale_product{
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .home_flash_sale_product::-webkit-scrollbar {
        height: 8px;
    }
    .home_flash_sale_product::-webkit-scrollbar-track {
        background: transparent;
    }
    .home_flash_sale_product::-webkit-scrollbar-thumb {
        background-color: #fff;
        border-radius: 4px;
    }
    .home_flash_sale .product{
        width: 58%;
        flex: 0 0 auto;
    }
    .home_flash_sale_title_right{
        font-size: 16px;
    }
    .home_category_item{
        width: 40%;
    }
    .home_pbc_list{
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .home_pbc_list .product{
        width: 60%;
        flex: 0 0 auto;
    }
    .home_pbc_cate_name{
        width: auto;
        flex: 0 0 auto;
        flex-shrink: 0;
    }
    .home_pbc_wrapper {
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        justify-content: center;
    }
    .home_pbc_cate {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
        justify-content: normal;
        width: calc(100% - 50px);
        flex-wrap: nowrap;
    }
    .home_pbc_cate::-webkit-scrollbar {
        display: none;
    }
    .home_pbc_btn{
        margin-top: 20px;
    }
    .category_arrow_left,
    .category_arrow_right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        z-index: 1;
        color: #333;
    }
    .category_arrow_left {
        left: 0;
    }
    .category_arrow_right {
        right: 0;
    }
    .home_product_latest_info{
        flex-wrap: wrap;
        height: auto;
    }
    .home_product_latest_info_left{
        width: 100%;
    }
    .home_product_latest_right{
        width: 100%;
    }
    .home_customer_item{
        width: 40%;
    }
    .home_news_list{
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        margin-bottom: 20px;
    }
    .home_news_item{
        width: 70%;
        flex: 0 0 auto;
    }
    .action_to_the_top{
        right: 14px;
    }
    .product_view_list_item_two,
    .product_view_list_item_one,
    .product_view_list_item{
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        margin-bottom: 20px;
    }
    .product_view_list_item_two .product,
    .product_view_list_item_one .product,
    .product_view_list_item .product{
        width: 60%!important;
        flex: 0 0 auto;
    }
    .product_view_detail_left{
        width: 100%;
    }
    .product_view_detail_center{
        width: 100%;
    }
    .product_view_item{
        width: 100%;
    }
    .product_quantity_input{
        width: 50px;
    }
    .product_review_news_content_img img{
        max-width: 66px;
        width: 66px;
    }
    .news_index_lef_box{
        flex-wrap: wrap;
    }
    .news_index_left_left{
        width: 100%;
        margin-bottom: 20px;
    }
    .news_index_left_right{
        width: 100%;
    }
    .news_view_related_box,
    .news_index_lef_boxb{
        gap: 10px;
    }
    .news_view_related_box .home_news_item,
    .news_index_lef_boxb .home_news_item{
        width: 100%;
    }
    .wishlist_list{
        gap: calc(10px);
    }
    .wishlist_list .product{
        width: calc(50% - 5px);
    }
    .maps_select{
        width: 100%;
    }
    .shop_map_location{
        width: 100%;
    }
    .maps_select{
        height: 324px;
    }
    .maps_detail_link{
        height: 200px;
        max-height: 200px;
    }
    .contact .container{
        flex-wrap: wrap;
    }
    .contact_info{
        width: 100%;
    }
    .contact_maps{
        width: 100%;
    }
    .contact_maps iframe{
        height: 300px;
    }
    .contact_bottom form li textarea{
        min-height: 80px;
    }
    .album_list{
        gap: 16px;
    }
    .album_item{
        width: calc(50% - 8px);
    }
    .album_list,
    .album_ctm_center_list{
        gap: 16px;
    }
    .album_list .album_item,
    .album_ctm_center_list .product{
        width: calc(50% - 8px);
    }
    .search_list{
        gap: 16px;
    }
    .search_list .product{
        width: calc(50% - 8px);
    }
    .table_product_img img{
        width: 80px;
        height: 80px;
        max-width: 80px;
    }
    .product_all_list{
        gap: 16px;
    }
    .product_all_list .product{
        width: calc(50% - 8px);
    }
    .product_all_category {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        justify-content: normal;
        gap: 0;
    }
    .product_all_category_box:hover{
        transform: translateY(0);
    }
    .product_all_category_box {
        width: 100px;
        flex: 0 0 auto;
        margin: 0 5px;
    }
    .product_all_category::-webkit-scrollbar {
        height: 3px;
    }
    .product_all_category::-webkit-scrollbar-thumb {
        background: #888;
    }
    .product_all_category::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    .table_product_img img{
        display: none;
    }
    .table_product_img{
        gap: 0!important;
    }
    .table_product td,
    .table_product th{
        font-size: 12px!important;
    }
    .order_success_infor{
        font-size: 12px!important;
    }
    .order_success_top{
        font-size: 12px!important;
    }
    .product_infor_body div{
        font-size: 12px!important;
        margin-bottom: 0!important;
    }
    .profile_order_title>div{
        width: 20%;
        font-size: 13px!important;
        padding: 0!important;
    }
    .profile_order_item>div{
        width: 20%;
        font-size: 12px!important;
        padding: 0!important;
    }
    .profile_order_item>div:nth-child(2){
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .profile_order_item_img{
        display: none;
    }
    .profile_order_item>div:nth-child(2){
        width: 40%;
    }
    .profile_order_title>div:nth-child(2){
        width: 40%;
    }
    .profile_order_item_total a{
        font-size: 12px!important;
    }
    .order_search_title{
        text-align: center;
    }
    .order_search_form{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 10px;
        justify-content: center;
    }
    .order_search_form input{
        width: 100%;
    }
    .tag_list{
        gap: 16px;
    }
    .tag_list .product{
        width: calc(50% - 8px);
    }
}
@media (max-width: 400px){
    .product_home_list_false span {
        padding: 6px 10px;
    }
    .cart_index_img{
        width: 70px;
        height: 70px;
    }
    .cart_index_img img{
        max-width: 70px;
        width: 70px;
    }
    .cart_index_list_total{
        left: 90px;
    }
    .sign_ctm{
        padding: 10px;
    }
}
/*end_responsive*/
.section_service_item ul,.section_service_item li{
    list-style: none;
    margin: 0;
    padding: 0;
}
.section_service_item ul li:first-child{
    display: block;
    font-weight: 700;
    color: #141414;
    font-size: 16px;
}
.section_service_item ul li:last-child{
    font-size: 14px;
    color: #666;
}
.section_service_item ul li a:hover {
    color: var(--color_main);
}
.section_service_item ul li a{
    color: #141414;
    font-weight: 700;
    text-decoration: none;
}
.home_product_latest_info_left h3{
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 16px;
}
.social_main_footer .fa-facebook{
    font-size: 35px;
    color: #1877F2;
}
.social_main_footer .fa-youtube{
    font-size: 35px;
    color: #FF0000;
}
.social_main_footer .fa-instagram{
    font-size: 35px;
    background: radial-gradient(circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social_main_footer .fa-tiktok {
    color: #000000;
    font-size: 35px;
}