body {
    font-family: "MuliDisplayVN", sans-serif;
    line-height: 1.6em;
}

.header {
    min-height: 30px;
    z-index: 900;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
}

.bg--primary {
    background-color: #0c79d5;
}

.bg--second {
    background-color: rgba(255, 255, 255, 0.8);

}

.bg--third {
    background-color: #fffbf1;
}

.border--primary {
    border: 1px solid #e4e4e4;

}

.color--primary {
    color: rgba(255, 255, 255, 0.8);
}

.color--second {
    color: rgb(202, 0, 0);

}


.header-top {
    height: 35px;
}

.navbar {
    height: auto;
    min-height: auto !important;
}

.header-top .navbar ul li {
    padding-top: 5px;
}

.navbar-sologan li a {
    padding: 0px;
    font-size: 14px;
}

.navbar-sologan li a:hover,
.navbar-sologan li a:focus {
    color: #fff;
}

.header-top .navbar ul li a:hover,
.header-top .navbar ul li a:focus {
    background: none;
    text-decoration: none;
}

.container-fluid {
    height: 100%;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.mobile_icon {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 99999;
    font-size: 30px !important;
    display: none;

}

/* dropdown */
.ten-menu {
    display: flex !important;
    align-items: center;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
    width: 100%;
    padding: 0px;
    left: 0;
    top: 35px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    /* addition to your existing code */
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms, visibility 500ms;
}

.dropdown:hover .dropdown-content {
    display: block;
    /* addition to your existing code */
    visibility: visible;
    opacity: 1;
    animation: fade 1s;

}

/* addition to your existing code */
@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Create three equal li-menu-homes that floats next to each other */
.li-menu-home {
    /* float: left; */
    width: 200%;
    /* padding: 10px; */
    background-color: #fff;
    list-style: none;
}

/* Style links inside the li-menu-homes */
.li-menu-home a {
    float: none;
    color: black;
    padding: 15px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a background color on hover */
.li-menu-home a:hover {
    background-color: #ddd;
}





.home-nav {
    position: relative;
    padding: 0px;
    margin-left: 15px;

}

.home-nav li {
    list-style: none;
}

.home-nav li a {
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;

}

.home-nav li a:hover,
.home-nav li a:focus {
    color: #fff;
}

.float-panel {
    width: 100%;
    /* background-color: rgba(255, 255, 255, 0.8); */
    /* opacity: 0.8; */
    z-index: 1000;
    height: 80px;
    position: relative;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    /* border-bottom: 1px solid #e7e7e7; */
}

*img {
    width: 100%;
    height: 100%;
}

.home-menu {
    padding-right: 15px;
    /* padding-bottom: 15px; */
    /* height: 80px; */
    /* display: flex; */
    align-items: center;
    margin: 0;
}

.home-menu li a,
.home-menu li a i {
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    /* text-transform: uppercase; */
    padding: 10px 20px;
}

.logo img {
    /* width: 100%; */
    /* max-width: 200px; */
    /* max-height: 50px; */
    /* position: absolute; */
    /* top: 50%; */
    /* z-index: 9999; */
    /* transform: translate(0, -50%); */
    float: none;
}

.float-panel .navbar ul li a:hover,
.float-panel .navbar ul li a:focus,
.float-panel .navbar ul li a:hover i {
    background: none;
    text-decoration: none;
    color: #d80000;
}


.search {
    position: relative;
}

.search .form-search {
    /* visibility: hidden; */
    width: 250px;
    background-color: rgba(255, 255, 255, 0.8);
    color: white;
    text-align: center;
    border-radius: 5px;
    /* padding: 5px; */
    /* position: absolute; */
    /* z-index: 999999; */
    /* top: 100%; */
    /* right: 0; */
    /* text-align: center; */
    /* margin-left: -70px; */
    margin-left: 0px;
    font-size: 14px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.search .form-search::after {
    content: "";
    position: absolute;
    right: 0%;
    bottom: 100%;
    border: 2px solid #ddd;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
}

.search:hover .form-search {
    visibility: visible;
    /* transition: all 1s; */

}

.form-horizontal .form-group-nav {
    /* margin: 0px !important; */
    /* padding: 15px; */
    position: relative;
    background: #fff;
    border-radius: 2px;
    margin-top: 5px;
    margin-left: 20px;
}

.form-group-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 2px;
    background: #0c79d5;
}

/* nut toogle navbar menu */
.bg-fancybox-menu {
    width: 100%;
    position: relative;
}

.toggle-menu {
    display: none;
}

.fixed {
    height: 50px;
}

.fixed .toogle-navbar-menu .logo img {
    height: 50px;
}

.fixed .home-menu {
    height: 50px;

}

.banner .owl-carousel1 .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 20%;
    right: 20%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.owl-carousel .owl-stage-outer {
    width: 100%;
}

.owl-carousel1 .owl-nav {
    display: none;
}

.owl-carousel1 .owl-nav .owl-prev {
    position: absolute;
    left: 5%;
    top: 44%;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: #fbae3c !important;
    opacity: 0.9;


}

.owl-carousel1 .owl-nav .owl-prev:hover {
    opacity: 1;

}

.owl-carousel1 .owl-nav .owl-prev span {
    font-size: 25px;
    color: #fff;

}

.owl-carousel1 .owl-nav .owl-next {
    position: absolute;
    right: 5%;
    top: 44%;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: #fbae3c !important;
    opacity: 0.9;


}

.owl-carousel1 .owl-nav .owl-next:hover {
    opacity: 1;

}

.owl-carousel1 .owl-nav .owl-next span {
    font-size: 25px;
    color: #fff;
}

.banner:hover .owl-carousel1 .owl-nav {
    display: block;
    margin-top: 0px !important;
}

.main {
    padding: 0 0 30px 0px;
    position: relative;
}

.thietke {
    padding: 15px 15px 0px 15px;
    border-radius: 5px;
    height: 100%;
}

.thietke1 {
    height: auto;
}

.title h3 {
    /* color: rgb(202, 0, 0); */
    font-size: 19px;
    border-bottom: 2px solid #ececec;
    padding-bottom: 3.5px;
    margin: 10px 0px;

}

.title h3 span {
    padding-bottom: 3.5px;
    border-bottom: 2px solid #ff0000;
}

.owl-carousel2 li {
    list-style: none;
}

.sp-noibat {
    padding: 10px 0px;
    margin-bottom: 8px;
}

.sp-noibat .img-cover img {
    /* border-radius: 10px; */
    transition: all 1s ease;
    width: 100%;
}

.sp-noibat .img-cover img:hover {
    transform: scale(1.1);
}

.featured-news .img-cover img {
    transition: all 1s ease;
    position: relative;
    height: auto;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 10px;
}

.featured-news .img-cover img:hover {
    transform: scale(1.1);
}

.img-cover {
    position: relative;
    height: auto;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    padding: 0px;
}

.block-breadcrumb-mb li {
    list-style: none;
    margin-top: 20px;
}

.paging-n {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 30px;
}

.duan-moi {
    height: 100%;
}

.duan-moi1 {
    height: auto;

}

.sp-noibat li a {
    text-decoration: none;
}

.content-sp {
    padding: 10px 5px;
}

.content-sp b {
    color: #0a0a0a;
    font-size: 16px;
}

.content-sp b:hover {
    color: #d80000;
}

.sanpham-sale {
    width: 100%;
}

.content-sp .ngay-thang {
    margin: 0px;
    font-size: 11px;
    color: #010101;
}

.content-sp .description {
    margin: 0px;
    font-size: 13.68px;
    color: #595959;
}

.sp-noibat .owl-nav .owl-next {
    position: absolute;
    top: 1%;
    right: -20px;
    height: 100%;
    width: 35px;
    background: #ffffff !important;
    opacity: 0.5;
}

.sp-noibat .owl-nav .owl-next span {
    position: absolute;
    font-size: 40px;
    color: #010101;
    top: 25%;
    right: 20%;
    left: 20%;
    opacity: 1;
}

.sp-noibat .owl-nav .owl-prev {
    position: absolute;
    top: 1%;
    left: -20px;
    height: 100%;
    width: 35px;
    background: #ffffff !important;
    opacity: 0.5;

}

.sp-noibat .owl-nav .owl-prev span {
    position: absolute;
    font-size: 40px;
    color: #010101;
    top: 25%;
    right: 20%;
    left: 20%;
    opacity: 1;

}

.sp-noibat .owl-nav {
    display: none;
}

.owl-carousel2:hover .owl-nav {
    display: block;
    margin-top: 0px;
}

.sp-noibat .owl-nav .owl-prev:hover span,
.sp-noibat .owl-nav .owl-next:hover span {
    color: #fbae3c;
    opacity: unset;

}

.title-duan {
    border: 1px dashed #d80000;
    background-color: #fffaf3;
}

.title-duan .sanpham .content-sp {
    padding: 0px 10px;
    line-height: 1.4;
}

.tintuc-sp {
    /* padding-bottom: 15px; */
    padding-top: 10px;
}

.featured-news {
    padding-bottom: 15px;
}

.sp-bottom .sp-noibat {
    padding: 0px;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.sp-bottom .sp-noibat li {
    list-style: none;
    width: 33.3334%;
    padding: 0px 10px;

}

.bg-nau {
    background-color: #fffaf3;
}

.mg-b-15 {
    margin-bottom: 15px;
}

.title-gioithieu h3 {
    /* color: #d83131; */
    font-size: 19px;
    margin: 0px;
}

.gioi-thieu a {
    text-decoration: none;
    color: #f87858;
    font-size: 15px;
}

.gioi-thieu a i {
    font-size: 11px;
}

.gioi-thieu a:hover,
.gioi-thieu a:hover i {
    color: #010101;
}

.youtube iframe {
    width: 100%;
}

.youtube p {
    margin-bottom: 5px;
}

.bg-white {
    background-color: white;
}

.img-gif img {
    width: 100%;
}

.banner-phai a img {
    width: 100%;
}

.banner-right .banner-phai:first-child {
    padding-bottom: 20px;
}

.bg-fill {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
}

.fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0 !important;
    margin: 0 !important;
}

.section-bg {
    overflow: hidden;
    width: 100%;
}

.section-bg-overlay {
    background-color: rgba(198, 0, 0, 0.83);
    position: absolute;
}

.content-banenr-bot {
    padding: 0 15px;
    font-size: 18px;
    color: #ffffff;
}

.banner-bot {
    position: relative;
    text-align: center;

}

.banner-lh {
    padding-top: 30px;
}

.banner-lh a {
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
    /* background-color: #fbae3c; */
    border: 1px solid #fbae3c;
    border-radius: 99px;
    padding: 15px 20px;
}

.banner-lh a i {
    padding-right: 10px;
}

.banner-lh a:hover {

    background-color: #f49c19;

}
.mm-panels .mm-title {
    font-size: 20px;
}
.des-visao {
    line-height: 1.7;
    color: #595959;
    /* margin-bottom: 10px; */
}

.img-vi-sao img {
    width: 100%;
    border-radius: 10px;
}

.vs-left img {
    width: 100%;
    min-width: 30px;
    min-height: 30px;
}

.vi-sao-bot {
    display: flex;
}

.vs-right {
    align-items: center;
    display: inline-flex;
}

.tintuc-baiviet {
    padding: 10px 0px 10px 0px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.tintuc-baiviet li {
    list-style-type: none;
    width: 50%;
    padding: 15px 0px;
}

.tintuc-baiviet .img-cover img {
    transition: all 1s ease;
    border-radius: 10px;
    /* width: 100%; */
}

.tintuc-baiviet .img-cover img:hover {
    transform: scale(1.1);
}

.gui-yeu-cau input {
    margin-top: 10px;
    text-transform: none;
    padding: 7px 20px;
    color: #ffffff;
    font-weight: 400;
    border-radius: 3px !important;
    margin-bottom: 0;
    border: 1px solid #fbae3c;
}

.gui-yeu-cau input:hover {
    color: #ffffff;

    background: #f49c19;
}

.tintuc-baiviet .content-sp {
    padding: 0px 10px 0px 10px;
}

.lien-he-tu-van {
    padding-top: 0px;
}

.pd-b-30 {
    padding-bottom: 30px;
}

.footer {
    position: relative;
    padding: 30px 0;
    background: #f7f8fa;
}

.footer .section-bg-overlay {
    background-color: rgba(0, 0, 0, 0.75);
}

.content-foot {
    position: relative;
}

.title-footer {
    color: #333;
    padding: 0 15px;
}

.title-footer h3 {
    color: #333;
    font-size: 19px;
    border-bottom: 2px solid #ececec;
    padding-bottom: 2.5px;
    margin: 10px 0px;
}

.title-footer h3 span {
    padding-bottom: 3px;
    border-bottom: 2px solid #ef101f;
}

.foot-des {
    padding-top: 15px;
    font-size: 15px;
}

.foot-des1 {
    padding-top: 15px;
    font-size: 15px;
}

.foot-des1 {
    text-decoration: none;

}

.foot-des a {
    text-decoration: none;
    text-transform: lowercase;
    /* color: #f87858; */
    font-size: 15.6px;
}


.foot-des a:hover {
    color: #e31616;
}

.foot-des a span {
    color: #c0c0c0;
}

.goi-tu-van a {
    text-transform: inherit;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 20px;
    border-radius: 99px;
    border: 1px solid #fbae3c;
}

.goi-tu-van a:hover {
    background-color: #f49c19;
}

.xin-bao-gia a {
    text-decoration: none;
    text-transform: inherit;
    background-color: #e31616;
    font-size: 15px;
    padding: 5px 20px;
    border-radius: 99px;
    border: 1px solid #e31616;
}

.xin-bao-gia a:hover {
    background-color: #ba0f0f;
    color: #fbae3c;

}


.fanpage {
    padding-right: 0px;
}

.fanpage img {
    width: 100%;
}

.title-fanpage {
    font-size: 17.5px;
    color: #ff9900;
}

.des-fanpage {
    font-size: 15px;
    word-break: break-word;

}

.pd-t-10 {
    padding-top: 10px;
}


.social-icons {
    text-align: center;
    padding-bottom: 10px;
    display: flex;
    padding-top: 10px;
}

.facebook .icon {
    text-decoration: none;
}

.facebook {
    position: relative;
    margin-right: 3px;
}

.facebook .btn-facebook {
    visibility: hidden;
    width: 150px;
    background-color: rgb(0 0 0 / 0.8);
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 7px;
    position: absolute;
    z-index: 999999;
    bottom: 130%;
    left: 50%;
    text-align: center;
    margin-left: -70px;
    font-size: 14px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;


}

.facebook .btn-facebook::after {
    content: "";
    position: absolute;
    left: 30%;
    top: 100%;
    margin-left: 15px;
    border-width: 10px;
    border-style: solid;
    border-color: rgb(0 0 0 / 0.8) transparent transparent transparent;
}

.facebook:hover .btn-facebook {
    visibility: visible;
    /* transition: all 1s; */

}

.follow-icons .icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    /* color: #ffffff; */
    font-size: 18px;
    border-radius: 50%;
}

.img-ft-b {
    width: 100%;
}

.duytri {
    font-size: 11px;
}

.copyright-footer {
    height: 46px;
}

.copyright-footer p {
    padding-top: 10px;
}

.foot-des a:last-child span {
    display: none;
}

#backtop {
    position: fixed;
    left: auto;
    right: 20px;
    top: auto;
    bottom: 20px;
    outline: none;
    overflow: hidden;
    color: #252525;
    text-align: center;
    background-color: #fff;
    height: 40px;
    width: 40px;
    line-height: 36px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s linear;
    z-index: 999999;
    opacity: 1;
    display: none;
    border: 1px solid #000;
}

#backtop:hover {
    background-color: #fbae3c;
    color: #fff;
    border: 1px solid #fbae3c;
}

.pd-0-15 {
    padding: 0px 15px;
}

.display-flex {
    display: flex;
}

.sanpham-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.li-listsanpham {
    padding: 0px 15px;
    padding-bottom: 15px;
    list-style: none;
    width: 33.33334%;
}

.title-product {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.product-list {
    padding: 0 0 30px 0px;
}

.sidebar-product {
    padding: 15px;
    border: 1px solid #ececec;
}

.description-product p {
    background-color: #f1f1f1;
    padding: 15px 10px 20px 10px;
}

.pd-l-0 {
    padding-left: 0px !important;
    padding-bottom: 0px !important;
}

.bai-viet-moi {
    padding: 0px 15px;
}

.sidebar-tin {
    padding: 10px 0px;
    border-bottom: 1px solid #ececec;
}

.sidebar-tin:last-child {
    border-bottom: unset;
}

.products-list {
    padding: 15px 0px;
}

.sidebar-tin .content-sp {
    font-size: 15px;
    color: #000000;
}

.sidebar-tin .content-sp:hover {
    color: #d80000;
}

.widget-title {
    font-size: 18px;
    color: #333;
    margin-top: 5px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}


/* product-detail */
.product-detail {
    padding: 30px 0px;

}

.category-detail {
    text-transform: none;
    font-size: 14px;
    font-weight: 400;
    color: #f87858;
    padding-right: 3px;
    text-decoration: none;
    text-transform: uppercase;
}

.category-detail:hover,
.category-detail:focus {
    text-decoration: none;
    color: #000;
}

.chitiet-sanpham .category-detail:last-child span {
    display: none;
}

.category-detail span {
    color: #333333;
}

.chitiet-sanpham {
    padding: 20px 10px 10px 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.products-title {
    margin: 5px 0px;
    padding-bottom: 10px;
    font-size: 26px;
    line-height: 40px;
    border-bottom: 1px solid #ececec;
}

.posted-on .thoi-gian:last-child span {
    display: none;
}

.posted-on .thoi-gian span {
    color: #333333;
}

.thoi-gian {
    text-decoration: none;
    color: #f87858;
    font-size: 15px;
    text-transform: uppercase;
}

.thoi-gian:hover,
.thoi-gian:focus {
    text-decoration: none;

}

.entry-meta {
    padding-bottom: 20px;
}

.descript {
    margin-top: 20px;
}

.descript h1,
.descript h2,
.descript h3,
.descript h4 {
    margin-top: 0px;
    margin-bottom: 10px;
}

.descript p {
    font-size: 15px;
    /* padding-bottom: 30px;
    border-bottom: 1px solid #ececec; */
}

.is-outline {
    color: silver;
}

.facebook1 {
    border: 1px solid silver;
    border-radius: 50%;
    margin: 0px 2px;
}

.facebook1 .icon {
    width: 31px;
    height: 31px;
}

.entry-meta1 {
    padding: 20px 0px;
}

.related {
    padding: 20px 10px 10px 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.related .title {
    margin: 0px 10px;
}

.related-product {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.related-product li {
    padding: 10px;
    width: 33.3334%;
    list-style: none;
}

.related-product li a {
    text-decoration: none;
}

.related-product .img-cover .sanpham-sale {
    /* border-radius: 10px; */
}

.comment {
    padding: 20px 10px 30px 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.comment h3 {
    font-size: 19px;
    color: #555555;
    margin-top: 0px;
    margin-bottom: 20px;
}

.comment p {
    font-size: 16px;
    color: #777;
}

.comment .form-group label {
    color: #222222;
    font-size: 14px;
}

.check-boxx {
    margin-top: 10px;
}

.gui-phan-hoi input {
    padding: 10px 20px;
}

.comment-respond {
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    padding: 15px 25px 0px;
}

.product-detail-right .sidebar-product {
    border: unset;
    padding: 0px;
}

.product-detail-right .sidebar-product .form-horizontal .form-group-nav {
    padding: 0px;
}

.product-detail-right .sidebar-product .form-horizontal .form-group-nav button {
    top: 0px;
    right: 0px;
}

.news-list {
    padding: 30px 0px;
}

.chitiet-sanpham .social-icons {
    padding-top: 20px;
    border-top: 1px solid #ececec;
    margin-top: 20px;
}

.img-page {
    width: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    max-height: 250px;
}

.tab-page {
    display: flex;
    justify-content: center;
    padding: 30px 0px 15px 0px;
    flex-wrap: wrap;

}

.tab-page .tabname-page button {
    width: 230px;
    height: 40px;
    font-size: 15px;
    border: 1px solid rgb(202, 0, 0);
    border-radius: 5px;
    margin: 0px 15px;
}

.tab-page .tabname-page .active {
    border: 1px solid #fbae3c;
    color: #ffffff;
    background: #fbae3c;
}

.article-detail h1,
.article-detail h2,
.article-detail h3,
.article-detail h4,
.article-detail h5 {
    margin-top: 0px;
    margin-bottom: 20px;
}

.article-detail h1 {
    font-size: 27px;
}

.article-detail h2 {
    font-size: 24px;
}

.article-detail h3 {
    font-size: 21px;
}

.article-detail h4 {
    font-size: 19px;
}

.article-detail p {
    font-size: 15px;
}

.service {
    position: relative;
}

.service .section-bg-overlay1 {
    background-color: rgba(255, 249, 249, 0.803);
}

.list-service {
    position: relative;
    padding: 30px 0px;

}

.title-service h2 {
    font-size: 19px;
    margin: 0px;
}

.divider {
    /* minor cosmetics */
    display: table;
    text-align: center;
    width: 100%;
    /* divider width */
    margin-bottom: 20px;
    /* spacing above/below */
}

.divider span {
    display: table-cell;
    position: relative;
}

.divider span:first-child,
.divider span:last-child {
    width: 50%;
    top: 11px;

    background-size: 100% 2px;
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
}

.divider span:first-child {
    background-image: linear-gradient(90deg, transparent, #848181);
}

.divider span:nth-child(2) {
    color: #848181;
    padding: 0px 5px;
    width: auto;
    white-space: nowrap;
}

.divider span:last-child {

    background-image: linear-gradient(90deg, #848181, transparent);
}


.sidebar-tin .img-cover img {
    /* border-radius: 10px; */
}

.content-service .img-page1 {
    width: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    max-height: 160px;
}

.content-service h4 {
    font-size: 18px;
    margin: 15px 0px;
}

.content-service p {
    font-size: 14px;
    margin-bottom: 20px;
}

.page-detail-bottom {
    padding: 30px 0px;
}

.baogia-right p {
    margin-bottom: 0px;
    font-size: 13.68px;
}

.lienhe-baogia {
    border: 1px solid #ececec;

    padding: 20px 15px;
}

.paging-n span {
    padding: 3px 5px;
    font-size: 16px;
}

.paging-n span a {
    text-decoration: none;
    color: #000000;
}

.paging-n .current {

    background-color: #f49c19;
    border-radius: 5px;
}

.paging-n .current a {
    color: #fff;

}

.contact-left h2 {
    margin-top: 0px;
    font-size: 21px;
}

.lienhe-baogia h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.img-contact {
    padding-right: 10px;
}

.img-contact img {
    width: 100%;
}

.content-contact p {
    margin-bottom: 0px;
}

.lien-he1 {
    padding: 10px 0px;
}

.contact-main {
    padding: 30px 0px;
}

.sidebar-tin .content-sp {
    padding: 0px 10px;
}

.sp-bottom .sp-pd-li li {
    padding: 0px 20px 0px 0px;
}

.mm-title {
    font-size: 27px;
}

.mm-listview>li>a,
.mm-listview>li>span {
    padding: 15px 10px 15px 20px !important;
    font-size: 14px;
}
.contact_thanks {
    padding: 20px 0px;
    text-align: center;
    margin-bottom: 50px;
}


.accordion {
    /* width: 100%;
    max-width: 360px;
    margin: 30px auto 20px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; */
    padding: 0px;
    border-bottom: 1px solid #ececec;

}

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 10px;
    /* color: #4D4D4D; */
    font-size: 14px;
    font-weight: 700;
    /* border-bottom: 1px solid #CCC; */
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li:last-child .link {
    border-bottom: 0;
}

.accordion li {
    list-style: none;
}

.accordion li a {
    text-decoration: none;
    color: #333333;
    padding: 10px;
}

.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
}

.accordion li.open .link {
    color: #b63b4d;
}

.accordion li.open i {
    color: #b63b4d;
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/**
   * Submenu
   -----------------------------*/

.child-product-submenu {
    display: none;
    background: #fff;
    font-size: 14px;
    padding: 0px;
}

.child-product-submenu li {
    border-bottom: 1px solid #fff;
}

.child-product-submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    padding: 12px;
    padding-left: 42px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.child-product-submenu a:hover {
    background: #b63b4d;
    color: #FFF;
}







.thumbnail {
    border: none;
    padding: 0px;
}
.thumbnail a img{
        border-radius: 30px;
}
.zoomin {
    position: absolute;
    bottom: 50px;
    left: 20px;
    color: rgb(231, 228, 228);
    z-index: 100;
}

.zoomin i {
    font-size: 22px;
    width: 37px;
    height: 37px;
    border: 1px solid rgb(231, 228, 228);
    display: flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.zoomin .btn-text {
    visibility: hidden;
    width: 60px;
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -30px;
}

.zoomin .btn-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.zoomin:hover .btn-text {
    visibility: visible;
}

#thumbs .item {
    opacity: 0.6;
}

#thumbs .current .item {
    opacity: 1;
    transform: scale(1);
}

.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

.owl-carousel3 ul {
    display: flex;
    padding: 0px;
    margin-top: 15px;
}

.owl-carousel3 ul li {
    width: 100%;
    list-style: none;

}

.owl-carousel3 ul li a img {
    opacity: 0.5;
}


.owl-carousel3 .owl-nav .owl-next {
    /* -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%); */
    transform: translateX(-20%);
    right: 2%;
    position: absolute;
    top: 40%;
    bottom: 40%;
    background-color: transparent;
    margin: 0 !important;
    padding: 0 !important;
    width: 36px !important;
    font-size: 20px !important;
    color: red;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.owl-carousel3 .owl-nav .owl-prev {
    transform: translateX(-20%);
    left: 2%;
    position: absolute;
    top: 40%;
    bottom: 40%;
    background-color: transparent;
    margin: 0 !important;
    padding: 0 !important;
    width: 36px !important;
    font-size: 20px !important;
    color: red;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.owl-carousel3 .owl-nav {
    display: none;
}

.owl-carousel3:hover .owl-nav {
    display: block;
}

.owl-carousel3 .owl-nav span {
    color: red;
    font-size: 40px;
}

.work-class1 .thumbnail img {
    height: 600px;
}

.work-class2 .item img {
    height: 150px;
    border-radius: 20px;
}
.footer-des-12 a{
    color: rgb(202, 0, 0);
    text-decoration: none;
    padding-right: 10px;
    border-right: 1px solid rgb(202, 0, 0);
}

.footer-des-12 a:last-child{
    border-right: unset;

}
@media only screen and (max-width: 1450px) {

    .home-menu li a,
    .home-menu li a i {
        font-size: 15px;
        padding: 10px 8px;
    }
}

@media only screen and (max-width: 1260px) {

    .home-menu li a,
    .home-menu li a i {
        font-size: 14px;
        padding: 10px;
    }

    .logo img {
        /* width: 200px; */
        /* height: auto; */
    }

    .work-class1 .thumbnail img {
        height: 500px;
    }
}


@media only screen and (max-width: 1080px) {
 

/*     .mobile_icon {
        display: block;
    } */

    .header-nav {
        display: flex;
        justify-content: center;
    }

    .tabname-page .tablinks {
        margin-bottom: 15px !important;
    }
}

@media only screen and (max-width: 980px) {
    .home-lien-he .title h3 span {
        line-height: 40px;
        padding-bottom: 12.5px;
    }

    .tabname-page .tablinks {
        margin-bottom: 15px !important;
    }

    .work-class1 .thumbnail img {
        height: 450px;
    }

    .work-class2 .item img {
        height: 120px;
    }
}

@media only screen and (max-width: 768px) {
       .home-menu {
        display: none;
    }
.mobile_icon {
        display: block;
    }
    .work-class1 .thumbnail img {
        height: 400px;
    }

    .work-class2 .item img {
        height: 120px;
    }

    .main {
        padding: 20px 0px;
    }

    .title-footer .fanpage {
        width: 10%;
    }

    .product-list {
        padding: 20px 0px;

    }

    .product-detail {
        padding: 20px 0px;

    }

    .list-service {
        padding: 20px 0px;

    }

    .page-detail-bottom {
        padding: 20px 0px;
    }

    .display-flex {
        display: block;
    }

    .article-detail img {
        width: 100% !important;
    }

    .navbar-sologan {

        justify-content: center;
        display: flex;
    }

    .navbar-sologan li {

        padding-top: 0px !important;
    }

    .tintuc-baiviet li {
        padding: 10px 5px;
    }

    .media-pd-0 {
        padding: 0px !important;
    }

    .mg-t-20 {
        margin-top: 20px;
    }

    .home-nav {
        display: none;
    }

    .logo {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .goi-tu-van a {
        padding: 10px 100px;

    }

    .xin-bao-gia {
        margin-top: 15px;
        margin-bottom: 15px;

    }

    .xin-bao-gia a {
        padding: 10px 100px;

    }

    .sp-bottom .sp-pd-li li {
        padding: 0px 10px 0px 0px;
    }

    .tab-page {
        padding: 20px 0px;
    }

    .mg-bt-mda-10 {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .work-class1 .thumbnail img {
        height: 300px;
    }

    .work-class2 .item img {
        height: 90px;
    }

    .sp-noibat li {
        width: 100% !important;
    }

    .related-product {
        padding-top: 10px;
    }

    .related .title {
        margin: 0px;
    }

    .title h3 span {
        line-height: 25px;
        /* padding-bottom: 11.5px; */
        border-bottom: unset;
    }

    .title h3 {
        margin: 10px 0px;
        margin-bottom: 0px;
        border-bottom: unset;
    }

    .thietke {
        padding: 0 15px;
    }

    .tintuc-baiviet {
        padding: 0px;
    }

    .related-product li {
        width: 100%;
        padding: 0px;
    }

    .sp-pd-li {
        padding-top: 0px;
    }

    .sp-bottom .sp-pd-li li {
        padding: 5px 0px;
    }

    .comment-respond {
        padding: 15px 15px;
    }

    .comment {
        padding: 0px 10px 15px 10px;
        margin-bottom: 15px;
    }

    .descript h1 {
        font-size: 21px;
        margin: 10px 0px;

    }

    .descript h2 {
        font-size: 20px;
        margin: 10px 0px;

    }

    .descript h3 {
        font-size: 19px;
        margin: 10px 0px;

    }

    .descript h4 {
        font-size: 18px;
        margin: 10px 0px;

    }

    .descript h5 {
        font-size: 17px;
        margin: 10px 0px;

    }

    .tab-page {
        padding: 15px 0px;
    }

    .article-detail h1 {
        font-size: 21px;
        margin: 10px 0px;

    }

    .article-detail h2 {
        font-size: 20px;
        margin: 10px 0px;

    }

    .article-detail h3 {
        font-size: 19px;
        margin: 10px 0px;

    }

    .article-detail h4 {
        font-size: 18px;
        margin: 10px 0px;

    }

    .article-detail h5 {
        font-size: 17px;
        margin: 10px 0px;

    }

    .title-footer .fanpage {
        width: 15%;
    }

    .tintuc-baiviet li {
        width: 100%;
    }

    .tintuc-baiviet .content-sp {
        padding: 10px 0px;
    }

    /* 
    .title h3 span {
        line-height: 40px;
        padding-bottom: 11.5px;
        border-bottom: 2px solid #fbae3c;
    }

    .title h3 {
        margin-top: 0px;
    } */

    .content-banenr-bot {
        font-size: 16px;
    }

    .copyright-footer {
        height: auto;
    }
}

@media only screen and (max-width: 400px) {
    .work-class1 .thumbnail img {
        height: 250px;
    }

    .work-class2 .item img {
        height: 80px;
    }

    .logo img {
        width: 200px;
        /* margin-top: 20px; */
    }

    .main {
        padding: 15px 0px;
    }

    .product-list {
        padding: 15px 0px;
    }

    .product-detail {
        padding: 15px 0px;
    }

    .list-service {
        padding: 15px 0px;

    }

    .page-detail-bottom {
        padding: 15px 0px;

    }

    .mobile_icon {
        top: 34px;
        left: 15px;
        font-size: 25px !important;
    }

    .sp-noibat li {
        /* padding: 0px; */
        padding-bottom: 5px;
    }

    /* .title h3 {
        margin: 0px;
    } */

    /* .title h3 span {
        line-height: 40px;
        padding-bottom: 11.5px;
        border-bottom: 2px solid #fbae3c;
    } */

    .goi-tu-van a {
        padding: 10px 50px;

    }

    .xin-bao-gia a {
        padding: 10px 50px;

    }

    .description-product p {
        padding: 15px 10px 15px 10px;
        margin-bottom: 0px;
    }

    .copyright-footer {
        height: auto;
    }

    .chitiet-sanpham h3 {
        font-size: 21px !important;
        line-height: 27px;
    }

    .entry-meta {
        padding-bottom: 10px;
    }

    .chitiet-sanpham .social-icons {
        padding-top: 10px;
        margin-top: 10px;
    }

    .entry-meta1 {
        padding: 10px 0px;
    }

    .content-service h4 {
        margin: 5px 0px;
    }

    .content-service p {
        margin-bottom: 15px;
    }

    .lienhe-baogia {
        padding: 15px;
    }

    .lienhe-baogia h3 {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .swipe-pop {height: 410px !important;}
    .outside-txt {width: 410px !important;}
.swipe-pop-form button, .swipe-pop-form input {width: 100% !important;}
    .swipe-pop-form button {margin-top: 5px;}
    .swipe-pop-form, .swipe-pop-term {margin-left: 15px !important;margin-right: 15px !important;margin-top: 260px !important;}
    .swipe-pop-term {margin-top: 0 !important;}

    .outside-txt {top: 205px !important;}
}





.swipe-pop {height: 320px;position: fixed;top: 200px;right: 0;z-index: 999999;background-size: cover !important;width: 90%;max-width: 0px;}
.swipe-pop.active {max-width: 600px;}
.outside-txt {
    position: absolute;
    cursor: pointer;
    top: 160px;
    left: -18px;
    width: 270px;
    height: 36px;
    line-height: 36px;
    letter-spacing: 5px;
    font-size: 22px;
    color: #faeff3;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transform: translate(-50%,-50%) rotate(-90deg);
    transform: translate(-50%,-50%) rotate(-90deg);
    overflow: hidden;
    background: rgb(74, 74, 74);
    width: 320px;
    text-align: center;
}
.swipe-pop-form {margin-top: 220px;margin-left: 65px;margin-right: 65px;}
.swipe-pop-form button {width: 150px;text-align: center;text-transform: uppercase;height: 36px;line-height: 39px;padding: 0 16px;border: none;background: rgb(248, 192, 98);color: #fff;font-weight: bold;}
.swipe-pop-form input {height: 36px;line-height: 38px;padding-left: 10px;width: calc(100% - 160px);}
.swipe-pop-term {margin-left: 65px;margin-right: 65px;font-size: 13px;margin-top: 7px;}
.swipe-pop .swipe-body {overflow: hidden;}
.swipe-pop .fa-play {transform: rotate(-90deg);margin-top: 3px;float: right;margin-right: 15px;}
.swipe-pop.active .fa-play {transform: rotate(90deg);/* margin-bottom: 5px; */margin-top: 9px;}

.single-news h1.products-title {font-weight: 700;font-size: 24px;border-bottom: none;margin-bottom: 0;padding-bottom: 0;}
.single-news h1 {font-size: 24px; font-weight: 700;}
.single-news h2, .single-news h3, .single-news h4 {font-size: 18px;}

.single-news .news-related h3 {color: #333;font-weight: 700;padding-top: 0;margin-top: 0;}
.single-news .news-related h3 span {padding-bottom: 5px;}

.flashsale {font-size: 14px; background: #ff0000; display: inline-block; color: #fff; padding: 3px 5px; position: absolute; left: 0;}