	/********** Template CSS **********/
:root {
    --blue: #0167F3;
    --text: #888888;
    --text1: #081828;
    --white: #ffffff;
}

a {
    transition: all 0.3s ease-out 0s
}

a:hover {
    color: var(--blue);
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text1);
}


h2 {
    font-size: 30px;
    font-weight: 800;
}

h3 {
    font-size: 17px;
    font-weight: 600;
}



body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    font-size: 14px;
}

.heading {
    margin-bottom: 20px;
    text-align: center;
}

.heading h2 {
    font-size: 30px;
    line-height: 35px;
    text-transform: capitalize;
    font-weight: 800;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.heading h2:before {
    position: absolute;
    left: 50%;
    bottom: 0;
    content: "";
    background-color: var(--blue);
    height: 2px;
    width: 50px;
    margin-left: -25px;
    border-radius: 2px;
}

.btn_web {
    margin: 0;
}

.btn_web a {
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 13px 30px;
    transition: 0.2s;
    border-radius: 3px;
    display: inline-block;
}


/*****  PRODUCTS *****/

.products .product-quantity,
.products .btnAddAction,
.bp_pd_info,
.products .bp_pd_sub,
.products .bp_group_quantity,
.products .cls_product_sub,
.cls_price_text,
.cls_old_price_text,
.bp_pd_color {
    display: none;
}

.products .bp_product_item {
    border: 1px solid #eee;
    border-radius: 4px;
    background: var(--white);
    padding: 8px;
    box-shadow: 0px 0px 20px #00000012;
    margin-top: 30px;
    position: relative;
    height: calc(100% - 30px);
}

.products .cls_img_product_focus a {
    display: block;
    overflow: hidden;
}

.products .cls_img_product_focus a img {
    transition: all 0.4s ease;
}

.products .bp_product_item:hover .cls_img_product_focus a img {
    transform: scale(1.1);
}

.products .bp_content_product {
    padding: 20px;
}

.products .product_title {
    margin: 0;
}

.products .product_title a {
    font-size: 16px;
    color: var(--text1);
}

.products .bp_star_review {
    font-size: 13px;
    margin-top: 5px;
}


.products .bp_cls_group_price {
    margin-top: 15px;
    display: flex;
    align-items: baseline;
}

.products .bp_cls_price {
    font-size: 17px;
}

.products .cls_price_number,
.products .bp_cls_price .cls_unit_price {
    color: var(--blue);
    font-weight: 700;
}

.products .bp_cls_old_price {
    margin-left: 10px;
}

.products .cls_old_price,
.products .cls_unit_price {
    color: #aaaaaa;
    font-weight: 400;
}

.products .bp_cls_shopping_form {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.products .btnAddToCart {
    border: none;
    font-size: 13px;
    color: var(--white);
    background-color: var(--blue);
    padding: 12.88px 20px;
    font-weight: 600;
    
}

.products .bp_product_item:hover .bp_cls_shopping_form {
    opacity: 1;
    transform: translateY(-50%);
    visibility: visible;
    
}


/****  HEADER  *****/

.header_top {
    padding: 28px 0;
}

.header_top p {
    margin-bottom: 0;
}

.header_top .logo img {
    width: 200px;
}

.header_top .search .dv_search {
    position: relative;
}

.header_top .search form input {
    padding: 11px 50px 11px 8px;
    border: 1px solid #e2e2e2;
}

.header_top .search form input:focus {
    background: none;
    box-shadow: none;
}

.header_top .search form #submit_seach {
    position: absolute;
    right: 0;
    border: none;
    height: 100%;
    padding: 0 14px;
    font-size: 17px;
    border-radius: 0 4px 4px 0;
}


.header_top .search form #submit_seach:hover {
    background: var(--text1);
}

.hotline_header {
    display: flex;
    align-items: center;
}

.hotline_header i {
    border: 1px solid #eee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hotline_header h3 span {
    display: block;
    color: #888888;
    font-weight: 400;
    margin-top: 2px;
    font-size: 14px;
}

.hotline_header h3 {
    font-size: 15px;
    margin: 0;
    padding-left: 10px;
}

.cart .bp_btn_icon_account {
    display: none;
}

.cart > div {
    justify-content: end;
}

.cart .bp_cls_cart_item button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    padding: 0;
}

.cart .bp_cls_cart_item button i {
    color: #555;
    font-size: 18px;
    
}


.header_menu {
    border: 1px solid #eee;
}

.left_header_menu .menu_categories {
    border-right: 1px solid #eee;
    padding: 11px 0;
}

.left_header_menu .menu_option .bp_menu_option_main {
    margin: 0;
}

.left_header_menu .menu_option .bp_menu_option_main > li {
    padding: 0;
}

.left_header_menu .menu_option_hover > ul {
    border: none;
}

.left_header_menu .menu_option ul li ul {
    background: var(--white);
}

.left_header_menu .menu_option a {
    color: var(--text1);
}

.left_header_menu .menu_option a:hover {
    color: var(--blue);
}

.left_header_menu .menu_option .bp_menu_option_main > li > span a {
   font-size: 15px;
   display: flex;
   align-items: center;
}

.left_header_menu .menu_option .bp_menu_option_main > li > span a i {
    font-size: 20px;
    margin-right: 12px;
}

.left_header_menu .menu_option .bp_menu_option_main > li > span .bp_menu_list_icon {
    display: none;
}

.left_header_menu .menu_option ul.bp_menu_option_sub {
    top: 100%;
    left: 0;
    z-index: 3;
}



.main_menu .navbar ul.navbar-nav > li, 
.main_menu .navbar ul.dropdown-menu li {
    padding: 10px 20px;
}

.main_menu a {
    color: var(--text1);
    font-weight: 600;
    font-size: 14px;
}

.main_menu a:hover {
    color: var(--blue);
}

.main_menu ul ul a {
    color: #888888;
    font-weight: 500;
}



.navbar ul.dropdown-menu li:hover {
    background-color: transparent;
}

.navbar ul.dropdown-menu a:hover {
    background-color: transparent;
}

.follow_us {
    color: var(--text1);
}

.follow_us p {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0;
} 

.follow_us p span {
    margin-right: 10px;
}

.follow_us i {
    border: 1px solid #eee;
    border-radius: 50%;
    font-size: 14px;
    color: #555;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    transition: all 0.3s;
}


.follow_us i:hover {
    background-color: var(--blue);
    color: var(--white);
}




/* Slide */

.banner_home  {
    margin-top: 12px;
}


.slide .swiper-slide img {
    height: 500px;
}

.slide .swiper .swiper-button-prev,
.slide .swiper .swiper-button-next {
    background: var(--blue);
    color: var(--white);
    width: 35px;
    height: 60px;
    transition: all 0.3s;
}

.slide .swiper .swiper-button-next {
    right: -40px;
    border-radius: 4px 0 0 4px;
}

.slide .swiper .swiper-button-prev {
    left: -40px;
    border-radius: 0 4px 4px 0;
}

.slide .swiper .swiper-button-prev:after,
.slide .swiper .swiper-button-next:after {
    font-size: 17px;
}

.slide:hover .swiper .swiper-button-next {
    right: 0;
}

.slide:hover .swiper .swiper-button-prev {
    left: 0;
}

.slide .text_slide {
    text-align: left;
    bottom: 50%;
    transform: translateY(50%);
    width: 58%;
    left: 50px;
}

.slide .text_slide h2 {
    margin-bottom: 0;
}

.slide .text_slide h2 span {
    font-size: 17px;
    font-weight: 600;
    display: block;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.slide .text_slide p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
}

.slide .text_slide h3 {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--text1);
    
}

.slide .text_slide h3 span {
    font-size: 16px;
    display: inline-block;
    margin-right: 12px;
    font-weight: 600;
    color: #8a8a8a;
}

.slide .text_slide .btn_slide {
    margin-top: 30px;
}


.right_banner {
    font-size: 15px;
}

.right_banner h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.right_banner p {
    margin: 0;
}

.right_banner_item {
    position: relative;
    height: 244px;
}

.right_banner_item img {
    width: 100%;
    height: 244px;
}

.right_banner_item .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    left: 0;
}

.right_banner_1 h2 span {
    font-size: 15px;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.right_banner_1 h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    margin: 7px 0 0;
}

.right_banner_2 {
    background: var(--text1);
    color: var(--white);
}

.right_banner_2 h2 {
    color: var(--white);
}

.right_banner_2 p {
    margin-top: 15px;
}

.right_banner_2 .btn_web {
    margin-top: 20px;
}

.right_banner_2 .btn_web a {
    color: var(--blue);
    background: var(--white);
}


/*** Featured Categories ***/

.featured_categories {
    padding: 90px 0 60px;
}

.featured_categories .categories {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

.featured_categories .container_1 {
    /*max-width: calc(1320px + calc(var(--bs-gutter-x) * .5) * 2);*/
    padding: 0;
}


.featured_categories .bp_img_category_option {
    display: none;
}


.featured_categories .categories .category_item {
    padding: 19px 0 18px 40px;
    border: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 72px)/3);
    margin: 0 12px;
    margin-bottom: 30px;
}

.category_item  p {
    margin: 0;
}

.category_item ul.bp_category_option {
    padding: 0;
    margin: 0;
}

.category_item ul.bp_category_option li h3 {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 7.2px;
    text-wrap: nowrap;
}

.category_item ul.bp_category_option li:first-child h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text1);
    margin-bottom: 20px;
}


/* Trending products */

.trending_product {
    background-color: #f9f9f9;
    padding: 90px 0;
}



/*** Product intro ***/

.product_intro {
    padding: 90px 0;
}

.single-banner {
    position: relative;
}

.single-banner > p {
    margin: 0;
}

.single-banner img {
    width: 100%;
    border-radius: 4px
}

.single-banner .content {
    position: absolute;
    padding: 0 40px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.single-banner .content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.single-banner .content p {
    margin: 15px 0 0;
}

.single-banner .content .btn_intro {
    margin-top: 25px;
}



/**** Special offer ****/

.special_offer {
    background-color: #f9f9f9;
    padding: 90px 0;
}

.special_offer .single-banner  {
    margin-top: 30px;
}

.special_offer .single-banner .content {
    text-align: right;
}

.special_offer .single-banner .content p span {
    color: var(--text1);
    display: block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
}

.right_special_offer {
    height: 100%;
}

.right_special_offer> .row {
    height: 100%;
}


.right_special_offer .bp_pd_sub {
    display: block;
}

.right_special_offer .product_title {
    margin-bottom: 10px;
}

.right_special_offer .product_title a {
    font-size: 20px;
}

.right_special_offer .bp_cls_group_price {
    margin: 10px 0;
}

.right_special_offer .bp_cls_price {
    font-size: 20px;
    font-weight: 800;
}

.right_special_offer .cls_price_number, 
.right_special_offer .bp_cls_price .cls_unit_price {
    font-weight: 800;
}

.right_special_offer .bp_cls_old_price {
    font-size: 18px;
}


/**** List product ****/


.list_product {
    padding: 90px 0;
}

.list_product h4 {
    position: relative;
    margin-bottom: 35px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    color: #232323;
    font-size: 15px;
    font-weight: 500;
}

.list_product h4:before {
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 90px;
    height: 1px;
    background-color: var(--blue);
    content: '';
}

.list_product .btnAddToCart,
.list_product .bp_star_review {
    display: none;
}


.list_product h2.product_title a {
    font-size: 14px;
    font-weight: 500;
}

.list_product .bp_product_item .row {
    margin: 0;
    align-items: center;
}

.list_product .bp_product_item .row > * {
    padding: 0;
}

.list_product .bp_product_item {
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    border: none;
    margin-bottom: 20px;
    margin-top: 0;
}

.list_product .bp_product_item .cls_img_product_focus {
    width: 15%;
    padding-right: 12px;
}

.list_product .bp_product_item .cls_content_product_focus {
    width: 85%;
}

.list_product .bp_content_product {
    padding: 0;
}

.list_product .bp_cls_group_price {
    margin-top: 3px;
    
}

.list_product .bp_cls_price {
    font-size: 13px;
}

.list_product .bp_cls_old_price {
    display: none;
}

.list_product .cls_price_number, 
.list_product .bp_cls_price .cls_unit_price {
    color: var(--text);
    font-weight: 500;
}




/* Brands */

.brands {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.brands h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.brands .brand_box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #eee;
    border-right: none;
}

.brands .brand_box > * {
    width: calc(100%/6);
    border-right: 1px solid #eeeeee;
    padding: 20px;
    text-align: center;
    margin: 0;
}

.brands .brand_box img {
    width: 100px;
}


/* Blogs */

.blogs {
    padding: 90px 0;
}

.blogs .bp_block_item {
    box-shadow: 0px 0px 20px #00000012;
    padding: 8px;
    border-radius: 4px;
    margin-top: 30px;
}


.blogs h2.news_title {
    margin: 0;
}

.blogs h2.news_title a {
    font-size: 19px;
    font-weight: 700;
    color: var(--text1);
    line-height: 28px;
}

.blogs h2.news_title a:hover {
    color: var(--blue);
}

.blogs .bp_block_item .row {
    margin: 0;
}
 
.blogs .bp_block_item .row > * {
    padding: 0;
}

.blogs .bp_news_info {
    display: none;
}

.blogs .bp_news_sub p {
    margin: 20px 0 0;
    line-height: 1.6;
}

.blogs a.bp_news_more {
    border: 1px solid #dfdfdf;
    color: #081828;
    padding: 13px 33px;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 25px;
    transition: 0.2s;
    border-radius: 3px
}

.blogs a.bp_news_more:hover {
    background-color: var(--blue);
    color: var(--white);
}

.blogs .bp_block_item .cls_content_hot_news,
.blogs .bp_block_item .bp_content_news_main {
    padding: 20px;
}

 
/* Shipping Info */

.shipping_info {
    background: #f9f9f9;
    padding: 50px 0;
}

.shipping_info .row {
    margin: 0;
}

.shipping_info .row > * {
    padding: 0;
}

.box_shipping_info {
    padding: 30px 40px;
    border: 1px solid #eeeeee;
    border-left: none;
    text-align: center;
}

.box_shipping_info:nth-child(1) {
    border-left: 1px solid #eeeeee;
}

.box_shipping_info i {
    color: var(--blue);
    font-size: 38px;
    margin-bottom: 15px;
    display: inline-block;
}

.box_shipping_info h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 2px;
}

.box_shipping_info p {
    font-size: 13px;
    color: #777777;
    margin: 0;
}



/*** FOOTER ****/

.footer {
    background: #081828;
    color: #d6d6d6;
}

.category_ft .bp_img_category_option {
    display: none;
}

.footer_top {
    padding: 60px 0 80px;
}


.footer_top h3 {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    color: var(--white);
}

.footer_top h3:before {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--blue);
    content: '';
}

.info_ft p {
    margin-bottom: 12px;
}

.category_ft ul {
    padding: 0;
    margin: 0;
}

.category_ft h3:before {
    display: none;
}
 
.category_ft h3 {
    font-size: 14px;
    margin-bottom: 12px;
    padding: 0;
    color: #d6d6d6;
    font-weight: 400;
}

.quick_link .menu_option > ul {
    border: none;
    
}

.quick_link .menu_option > ul li {
    padding: 0;
}

.quick_link .menu_option > ul li a {
    color: #d6d6d6;
    padding: 0;
    margin-bottom: 12px;
}

.form_message form label {
    display: none;
}

.form_message form .row> div {
    width: 100%;
    margin-bottom: 10px;
}

.form_message form > div:not(.row) {
    width: 100%;
    margin-bottom: 10px;
}

.form_message form input {
    background: rgb(255 255 255 / 31%);
    border: none;
    color: #ffffff4f;
    padding: 12px 8px;
}

.form_message form input::placeholder {
    color: #ffffff;
    font-size: 14px;
}

.form_message form input:focus {
    background: none;
    color: #ffffff;
    border: 1px solid #a1a1a1;
    box-shadow: none;
}

.form_message form #btn_send_contact {
    margin-top: 5px !important;
    padding: 10px 25px;
}

.footer_bottom {
    color: var(--white);
}

.right_footer_bottom {
    text-align: right;
}

.right_footer_bottom i {
    font-size: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-right: 5px;
}

.right_footer_bottom i:hover {
    background-color: var(--blue);
}


.footer_bottom .inner_content {
    border-top: 1px solid #ffffff26;
    padding: 25px 0;
}





/*************** TRANG KHÁC *****************/

.bp_breadcrumb {
    padding: 33px 0;
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
    position: relative;
    z-index: 1;
}

.left_breadcrumb h1 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.right_breadcrumb ol.breadcrumb {
    margin-bottom: 0;
    justify-content: end;
}

.right_breadcrumb ol.breadcrumb, 
.right_breadcrumb ol.breadcrumb li a {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.right_breadcrumb ol.breadcrumb li a:hover {
    color: var(--blue);
}

.body_page {
    background-color: #f9f9f9;
    padding: 90px 0;
}


/***** TRANG SẢN PHẨM ******/

.left_body_pr .search_product,
.left_body_pr .all_categories,
.left_body_pr .filter_price {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 30px;
}

.left_body_pr a:hover {
    color: var(--blue);
}

.left_body_pr h3 {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    color: #232323;
    font-size: 15px;
    font-weight: 500;
}

.left_body_pr .search_product input {
    padding: 13px 45px 13px 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    color: #081828;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px!important;
}



.left_body_pr .search_product form .input-group-btn button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 16px;
    width: 40px;
    background: transparent;
    border: none;
    color: var(--text1);
}

.left_body_pr .search_product form .input-group-btn button:hover {
    color: var(--blue);
}

.left_body_pr .all_categories .bp_img_category_option {
    display: none;
}

.left_body_pr .all_categories ul.bp_category_option h3 {
    color: #666;
    font-weight: 400;
    font-size: 14px;
    border: none;
    margin-bottom: 16px;
    padding: 0;
}

.left_body_pr .all_categories ul.bp_category_option {
    padding: 0;
    margin: 0;
}

.left_body_pr .all_categories a:hover h3 {
    color: var(--blue);
}

.left_body_pr .filter_price ul {
    padding: 0;
    margin: 0;
}

.left_body_pr .filter_price ul a {
    color: var(--text);
    margin-bottom: 10px;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee7d;
    font-weight: 500;
}

.left_body_pr .filter_price ul a:hover {
    color: var(--blue);
}


.body_products .products .bp_product_item {
    margin-top: 0;
    margin-bottom: 30px;
}


/**** Phân trang ****/

.phan_trang {
    margin-top: 20px;
}

.phan_trang> * {
    color: var(--text1);
    background: #fff;
    font-weight: 500;
    border-radius: 4px;
    padding: 7px 18px;
    border: 1px solid #eee;
    margin-right: 5px;
    display: inline-block;
}

.phan_trang > *:hover,
.phan_trang span {
    color: var(--white);
    background-color: var(--blue);
}



/******* TRANG CHI TIẾT SẢN PHẨM *******/

.product_detail #m_news > .col {
    background-color: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.product_detail #m_news > .col-12 {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-top: 30px;
}

/*.product_detail #m_news > .col > .row {*/
/*    align-items: center;*/
/*}*/

.product_detail .bp_img_product .swiper-slide {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px;
}


.product_detail .bp_img_product img.bp_slide_img_details_thumb {
    border: 1px solid #eeeeee;
}

.product_detail .bp_details_description .bp_content_product {
    display: flex;
    flex-direction: column;
}

.product_detail .bp_content_product #shopping_form {
    order: 4;
}

.product_detail .bp_details_description h1.product_title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product_detail .bp_details_description .bp_cls_group_price {
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
}

.product_detail .bp_details_description .bp_cls_price > * {
    color: var(--text1);
}

.product_detail .bp_details_description  .bp_cls_old_price {
    margin-left: 15px;
}

.product_detail .bp_details_description .bp_cls_old_price > * >* {
    color: var(--text);
    font-size: 23px;
    font-weight: 500;
}

.product_detail .bp_details_description .cls_product_sub {
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product_detail .bp_details_description .bp_details_star_review {
    display: none;
}

.product_detail .bp_group_quantity {
    display: inline-flex;
}

.product_detail #shopping_form .bp_group_quantity button, 
.product_detail #shopping_form .bp_group_quantity input {
    width: 50px;
    min-height: 50px;
    border: 1px solid #e4e4e4;
    background: transparent;
    font-size: 20px;
    color: #777777;
}

.product_detail #shopping_form .bp_group_quantity .product-quantity {
    display: unset;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    border-left: none;
    border-right: none;
}

.product_detail .product-quantity::-webkit-outer-spin-button,
.product_detail .product-quantity::-webkit-inner-spin-button {
  display: none;
}

.product_detail button.btnAddAction,
.product_detail .btnAddToCart {
    text-transform: capitalize;
    font-weight: 600;
    padding: 12px 30px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    transition: 0.2s;
    border-radius: 3px;
}

.product_detail #shopping_form {
    margin-top: 20px;
}

.product_detail button.btnAddAction {
    margin-right: 10px;
}

.product_detail .btnAddToCart {
    display: block;
    margin-top: 15px;
}

.product_detail button.btnAddAction,
.product_detail .btnAddToCart:hover {
    background-color: var(--text1);
}

.product_detail button.btnAddAction:hover {
    background-color: var(--blue);
}

.product_detail .tab-content h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top:20px;
}

.product_detail .tab-content .tab-pane {
    padding-top: 30px;
}

.bp_comment_submit {
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    padding: 10px 20px;
}

.bp_comment_submit:hover {
    background-color: var(--text1);
    color: var(--white);
}





/********* TRANG TIN TỨC **********/

.body_page .left_body_blog {
    padding: 0;
}

.left_body_blog .bp_block_item {
    margin-top: 0;
    margin-bottom: 30px;
    background: #fff;
}

.left_body_blog .bp_block_item {
    
}

.right_body_blog h3 {
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
}

.right_body_blog .search_blog,
.right_body_blog .featured_posts,
.right_body_blog .popular_tag,
.right_body_blog .blog_categories {
    padding: 35px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #e7e7e7;
}

.right_body_blog .search_blog form input {
    border-radius: 4px;
    border: 1px solid #eee;
    padding: 16px 70px 16px 12px;
}

.right_body_blog .search_blog form button {
    font-size: 18px;
    transition: all 0.3s ease-out 0s;
    border-radius: 4px;
    height: 80%;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 12px;
}

.right_body_blog .search_blog form button:hover {
    background: var(--text1);
}

.right_body_blog .featured_posts .bp_block_item .row {
    margin: 0;
    align-items: center;
}

.right_body_blog .featured_posts .bp_block_item .row > * {
    padding: 0;
}

.right_body_blog .featured_posts .bp_block_item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.right_body_blog .featured_posts .bp_block_item .cls_img_hot_news {
    width: 24%;
}

.right_body_blog .featured_posts .bp_block_item .cls_content_hot_news {
    width: 76%;
}


.right_body_blog .featured_posts .bp_news_sub,
.right_body_blog .featured_posts .bp_lb_user, 
.right_body_blog .featured_posts .bp_lb_comment {
    display: none;
}

.right_body_blog .featured_posts .bp_hot_news_img img {
    height: 80px;
    object-fit: cover;
}

.right_body_blog .featured_posts .bp_block_item .cls_content_hot_news {
    padding-left: 15px;
}

.right_body_blog .featured_posts h2.news_title {
    margin-bottom: 8px;
}

.right_body_blog .featured_posts h2.news_title a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text1);
    line-height: 1.5;
}

.right_body_blog .featured_posts h2.news_title a:hover {
    color: var(--blue);
}

.right_body_blog .featured_posts .bp_news_info {
    font-size: 13px;
    display: block;
}

.right_body_blog .featured_posts label.bp_lb_date i {
    margin-right: 7px;
    font-size: 16px;
}

.right_body_blog .popular_tag .bp_list_tag {
    flex-wrap: wrap;
}

.right_body_blog .popular_tag a.bp_tag_item_link {
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text);
    padding: 7px 12px;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.right_body_blog .popular_tag a.bp_tag_item_link:hover {
    color: var(--white);
    background: var(--blue);
}


.blog_categories ul {
    padding: 0;
    margin: 0;
}

.blog_categories ul.bp_category_option h3 {
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    color: #888;
    margin-bottom: 12px;
}

.blog_categories ul.bp_category_option h3:hover {
    color: var(--blue);
}




/******** TRANG CHI TIẾT TIN **********/

.left_body_blog_detail {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.body_blog_detail .details_news h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0 ;
}

.body_blog_detail .details_news h1.title_h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.body_blog_detail .details_news p {
    margin: 19px 0;
    line-height: 26px;
}

.body_blog_detail .details_news .bp_news_create_date {
    display: none;
}

.body_blog_detail .bp_pd_tags .bp_tag_item {
    border: none;
    color: var(--text);
    padding: 0;
}

.body_blog_detail .bp_pd_tags .bp_tag_item:hover {
    color: var(--blue);
    background-color: transparent;
}

.body_blog_detail .bp_pd_tags .bp_tag_lb {
    display: none;
}


/********* TRANG LIÊN HỆ *********/

.body_contact {
    background-color: var(--white);
}

.body_contact .heading {
    margin-bottom: 50px;
}

.left_form_contact {
    background-color: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    height: 100%;
}

.contact_box {
    margin-bottom: 30px;
}

.contact_box i {
    margin-bottom: 11px;
    font-size: 30px;
    color: var(--blue);
    display: inline-block;
}

.contact_box h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact_box p {
    margin-bottom: 0;
}

.form_contact {
    padding: 40px 40px 0;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
}

.form_contact form label {
    display: none;
}

.form_contact form input,
.form_contact form textarea {
    border: 1px solid #e6e2f5;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    padding: 14px 10px;
}

.form_contact form > * {
    margin-bottom: 15px;
}

.form_contact #contact_button button {
    font-size: 14px;
    font-weight: 600;
    padding: 13px 30px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    transition: 0.2s;
    border-radius: 3px;
}


.form_contact form  #contact_reset {
    background: var(--text1);
}



/****** TRANG TÌM KIẾM *****/

.body_search .container-fluid .my-5 {
    margin: 0 !important;
}







/*********** RESPONSIVE ***************/

@media (min-width: 992px) {
    .main_menu ul.bp_sub_menu {
        display: block;
        padding: 20px;
        min-width: 240px;
        border-radius: 0 0 4px 4px;
        border: 1px solid #eee;
        top: 110%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-out 0s;
    }

    .main_menu ul li:hover > ul.bp_sub_menu {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }
    
    .banner_home .col-lg-8 {
        padding-right: 0;
    }
    
    .right_banner_2 {
        margin-top: 12px;
    }
}


@media (max-width: 1440px) {
   
}

@media (max-width: 1199px) and (min-width: 992px) {
    .follow_us i {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 1199px) {
    
    .hotline_header h3 span {
        font-size: 12px;
    }
    
    .special_offer .single-banner img {
        height: 304px;
    }
    
    
}

@media (max-width: 991px) and (min-width: 768px) {
    .right_banner .col-md-6:first-child {
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    
    .heading h2 {
        font-size: 24px;
    }
    
    .header_menu {
       padding: 11px 0;
    }
    
    .header_menu > .container {
        position: relative;
    }
   
    .main_menu .navbar-toggler {
       border: none;
       padding: 0;
    }
    
    .main_menu .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .main_menu .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 3;
        background-color: var(--white);
    }
    
    .main_menu .navbar ul.navbar-nav li.dropdown ul {
        position: absolute;
    }
    
    .main_menu .navbar ul.navbar-nav li.dropdown a {
        width: unset;
    }
    
    
    /******** Banner trang chủ ********/
    
    .slide .swiper-slide img {
        height: 400px;
    }
    
    .right_banner {
        margin-top: 12px;
    }
    
    
    
    .right_banner_item,.right_banner_item img {
        height: 240px;
    }
    
    
    /* Danh mục nổi bật*/
    
    .featured_categories {
        padding: 60px 0 30px;
    }
    
    .featured_categories .categories .category_item {
        width: calc((100% - 48px)/2);
    }
    
    
    
    /*** Products ***/
    
    .products .product_title a {
        font-size: 15px;
    }
    
    
    /* Product intro */
 
    .product_intro,
    .trending_product,
    .list_product,
    .special_offer,
    .blogs,
    .body_page {
        padding: 60px 0;
    }
    
    .single-banner .content {
        padding: 0 30px;
    }
    
    .single-banner .content h2 {
        font-size: 20px;
    }
    
    .single-banner .content p {
        margin: 10px 0 0;
    }
    
    .single-banner .content .btn_intro {
        margin-top: 20px;
    }
    
    .single-banner .content .btn_intro a {
        padding: 12px 30px;
    }
    
    .single-banner img {
        height: 247px;
    }
    
    
    /* Special offer */
    
    .special_offer .single-banner img {
        height: 290px; 
    }
    
    
    
    /* Brands */
    
    .brands {
        padding: 40px 0;
    }
    
    
    /*** Footer ****/
    
    .footer_top {
        padding: 55px 0;
    }
    
    .footer_top .row .col-md-6:nth-child(n+2) {
        margin-top: 15px;
    }
    
    .footer_bottom .col-lg-6 > * {
        text-align: center;
    }
    
    
    
    /*** Trang chi tiết sản phẩm ****/
    
    .product_detail .bp_img_product,
    .product_detail .bp_details_description {
        width: 100%;
    }
    
    .product_detail .bp_details_description {
        margin-top: 15px;
    }
    
    
    /*** Trang tin tức ***/
    
    .body_blog .phan_trang {
        margin-bottom: 30px;
    }
    
    
    /** Trang chi tiết tin **/
    
    .body_blog_detail .search_blog {
        margin-top: 30px;
    }
    
    /** Trang liên hệ ***/
    
    .form_contact {
        margin-top: 40px;
    }
        
    
}

@media (max-width: 767px) {
    
    .container {
        max-width: 450px;
    }
    
    .btn_web a {
        padding: 12px 25px;
        font-weight: 500;
    }
    
    .heading h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .header_top .logo img {
        width: 180px;
    }
    
    .follow_us p span {
        display: none;
    }
    
    /* Banner trang chu */
    
    .slide .text_slide {
        width: 100%;
        left: 0;
        padding: 20px;
    }
    
    .slide .swiper-slide img {
        height: 350px;
    }
    
    .slide .text_slide h2 {
        font-size: 20px;
    }
    
    .slide .text_slide h2 span {
        font-size: 14px;
        font-weight: 500;
    }
    
    .slide .text_slide p {
        margin-top: 10px;
    }
    
    .slide .text_slide h3 {
        font-size: 20px;
    }
    
    .right_banner_2 {
        margin-top: 12px;
    }
    
    /* Danh mục nổi bật*/
    
    .featured_categories {
        padding: 50px 0 20px;
    }
    
    .featured_categories .container_1 {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    
    .featured_categories .categories .category_item {
        width: 100%;
        margin: 0 0 30px;
    }
    
    
    /* Trending product */
    
    .product_intro,
    .trending_product,
    .list_product,
    .special_offer,
    .blogs,
    .body_page {
        padding: 50px 0;
    }
    
    
    /**** Product intro ****/
    
    .single-banner .content {
        padding: 0 35px;
    }
    
    .product_intro .single-banner:first-child {
        margin-bottom: 30px;
    }
    
    .single-banner .content h2 {
        font-size: 18px;
    }
    
    .single-banner .content p {
        margin: 8px 0 0;
    }
    
    .single-banner img {
        height: auto;
    }
    
    
    /* List product */
    
    .list_product .new_arrivals {
        margin: 20px 0;
    }
    
    
    /* Brands */
    
    .brands .brand_box {
        border-bottom: none;
    }
    
    .brands .brand_box > * {
        width: calc(100%/3);
        border-bottom: 1px solid #eee;
    }
    
    /* Blogs */
    
    .blogs a.bp_news_more {
        padding: 12px 33px;
    }
    
    
     /*** Footer ****/
    
    .footer_top {
        padding: 40px 0;
    }
    
    
    /*** Trang chi tiết sản phẩm ***/
    
    .product_detail .bp_details_description h1.product_title {
        font-size: 18px;
    }
    
    .product_detail .bp_details_description .bp_cls_group_price,
    .product_detail .bp_details_description .bp_cls_old_price > * >* {
        font-size: 20px;
    }
    
    .product_detail .btnAddToCart {
        margin-top: 20px;
        width: 100%;
    }
    
    .left_breadcrumb {
        text-align: center;
    }
    
    .right_breadcrumb ol.breadcrumb {
        justify-content: center;
        margin-top: 15px;
    }
    
    
    .left_breadcrumb h1 {
        font-size: 16px;
    }
    
    
    /*** Trang chi tiết tin ***/
    
    .left_body_blog_detail {
        padding: 20px;
    }
   
    
   
}

@media (max-width: 424px) {
    .single-banner img {
        height: 207px;
    }
    
    .brands .brand_box > * {
        width: calc(100%/2);
        border-bottom: 1px solid #eee;
    }
}





