.fs-11 {
    font-size: 1.1rem !important;
}

.fs-12 {
    font-size: 1.2rem !important;
}

.fs-13 {
    font-size: 1.3rem !important;
}

.fs-14 {
    font-size: 1.4rem !important;
}

.fs-15 {
    font-size: 1.5rem !important;
}

.fs-16 {
    font-size: 1.6rem !important;
}

.fs-18 {
    font-size: 1.8rem !important;
}

.fs-20 {
    font-size: 2rem !important;
}

.fs-24 {
    font-size: 2.4rem !important;
}

.fs-28 {
    font-size: 2.8rem !important;
}

.fs-30 {
    font-size: 3rem !important;
}

.fs-40 {
    font-size: 4rem !important;
}

[class*="line-clamp"] {
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[class*="block-line-clamp"] {
    display: -webkit-box;
}

.line-clamp-1, .block-line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2, .block-line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3, .block-line-clamp-3 {
    -webkit-line-clamp: 3;
}

.bg-main {
    background: var(--color-main) !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.text-underline {
    text-decoration: underline;
}

.color-red {
    color: red !important;
}

.shadow-1, .banner-1 .banner-section a {
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 10%);
}

.hover-img {
    overflow: hidden;
}

.hover-img img {
    transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
}

.hover-img:hover img {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.fa {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
}

.btn-submit-1:hover {
    background-color: var(--color-highlight) !important;
    color: var(--white) !important;
}

.rounded-8 {
    border-radius: 0.8rem;
}

.rounded-10 {
    border-radius: 1rem;
}

.rounded-24 {
    border-radius: 2.4rem;
}

.rounded-topbottom-24 {
    border-radius: 2.4rem 0 0 2.4rem;
}

.shadow-2 {
    box-shadow: 2px 2px 20px rgb(0 0 0 / 9%);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.4;
}

.color-gray-bold {
    /* color: var(--gray-bold); */
}

.object-cover {
    object-fit: cover !important;
}

.border {
    border: 1px solid #ebebeb !important;
}

.border-top {
    border-top: 1px solid #ebebeb !important;
}

.border-right {
    border-right: 1px solid #ebebeb !important;
}

.border-bottom {
    border-bottom: 1px solid #ebebeb !important;
}

.border-left {
    border-left: 1px solid #ebebeb !important;
}

.color-text {
    color: var(--color-text);
}

.bg-main-dark {
    background-color: rgb(0 50 140);
}

.header-top a:hover {
    color: var(--color-highlight) !important;
}

.search-section .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: #ffffff;
    width: 300px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
}

.search-section:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.setting-menu > .container > .row > div:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
}

.input-group input::-webkit-input-placeholder, .input-group textarea::-webkit-input-placeholder, .form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
    color: var(--gray-bold);
}

.input-group input:-moz-placeholder, .input-group textarea:-moz-placeholder, .form-group input:-moz-placeholder, .form-group textarea:-moz-placeholder {
    /* Firefox 18- */
    color: var(--gray-bold);
}

.input-group input::-moz-placeholder, .input-group textarea::-moz-placeholder, .form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--gray-bold);
}

.input-group input:-ms-input-placeholder, .input-group textarea:-ms-input-placeholder, .form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
    color: var(--gray-bold);
}

.setting-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    transition: all 0.3s ease 0s;
    z-index: 99;
    animation: stuckMoveDown .6s;
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.1);
    transition: all .6s ease-in-out;
}

@keyframes stuckMoveDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.hd_hotline span {
    border-radius: 50%;
    border: 1px solid white;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    font-size: 13px;
    margin-right: .5rem;
}

.items-number {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

.swiper-slider-main .swiper-pagination span {
    border: 3px solid var(--light);
    border-radius: 50%;
    cursor: pointer;
    height: 12px;
    opacity: .4;
    transition: opacity .3s;
    width: 12px;
    background-color: transparent;
}

.swiper-slider-main .swiper-pagination span:hover {
    opacity: 1;
}

.swiper-slider-main .swiper-pagination span.swiper-pagination-bullet-active {
    border-color: white;
    background-color: white;
    opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
    font-size: 2.2rem;
    background: var(--light);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--color-highlight) !important;
    color: white !important;
}

.swiper-slider-main .swiper-button-prev, .swiper-slider-main .swiper-button-next {
    opacity: 0;
    border: 2px solid var(--light);
    background-color: transparent;
    color: var(--light);
    height: 4rem;
    width: 4rem;
}

.swiper-slider-main .swiper-button-prev:hover, .swiper-slider-main .swiper-button-next:hover {
    border-color: var(--color-highlight);
}

.swiper-slider-main:hover .swiper-button-prev, .swiper-slider-main:hover .swiper-button-next {
    opacity: 1;
}

.swiper-slider-main .swiper-slide .btn-submit:hover {
    color: white !important;
    background: var(--color-highlight) !important;
}

.swiper-slider-main .swiper-slide-active .title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

.swiper-slider-main .swiper-slide-active .description {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

.swiper-slider-main .swiper-slide-active .desc-short {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

.swiper-slider-main .swiper-slide-active .btn-submit {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 10px;
    height: 100%;
}

.highlight-number {
    font-size: 35px;
    line-height: 40px;
    color: #333;
    font-weight: 700;
    margin: 0 0 11px;
    display: flex;
    align-items: center;
}

.highlight-number span {
    font-size: 29px;
    line-height: 40px;
    color: #ff3636;
    font-weight: 600;
    padding-left: 6px;
}

.highlight-title {
    font-size: 17px;
    color: #666;
    line-height: 23px;
    font-weight: 600;
    text-transform: none;
    max-width: 51%;
    margin: auto;
    text-transform: uppercase;
}

.list-category .item a:hover {
    color: var(--color-highlight) !important;
}

.banner-section .item-banner .btn-banner:hover {
    color: var(--color-main) !important;
}

.banner-section .item-banner .btn-banner:hover i {
    color: var(--color-main) !important;
}

.banner-section .item-banner .description {
    line-height: 1.2;
}

.product-item {
    position: relative;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.product-item .inner-image {
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.product-item:hover .inner-image img {
    transform: scale(1.1);
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.product-item .product-hover {
    position: absolute;
    transition: transform .55s cubic-bezier(.2,.75,.5,1);
    transform: scale(.95) translateY(0) translateZ(0);
    display: block;
    height: calc(100% + 39px);
    width: calc(100% + 20px);
    z-index: -1;
    top: -9px;
    left: -10px;
    border-radius: 30px
}

.product-item .product-hover:before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: center;
    opacity: 0;
    transition: opacity .55s cubic-bezier(.2,.75,.5,1);
    box-shadow: 0 1px 24px 0 rgba(0,0,0,.09);
    border-radius: 30px
}

.product-item:hover .product-hover {
    transform: scale(1) translateY(0) translateZ(0)
}

.product-item:hover .product-hover:before {
    opacity: 1;
    pointer-events: all
}

.product-home .swiper-wrapper {
    margin: 2rem 0;
}

.cart-action .btn-product-action {
    display: inline-block;
    position: relative;
    color: var(--color-main);
    background: var( --light);
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    border-radius: 50%;
    text-align: center;
    font-size: 1.6rem;
}

.cart-action .btn-product-action:hover {
    background: var(--color-highlight);
    color: white;
}

.banner-text-top .swiper-slide--wrap {
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: unset;
    top: 1rem;
}

.banner-text-top .swiper-slide--wrap>.row>div {
    flex: 0 0 100%;
    max-width: 100%;
}

.banner-text-top .swiper-slide--wrap * {
    color: white !important;
}

.item-banner a img {
    transition: filter 0.3s ease;
}

.item-banner a:hover img {
    filter: brightness(0.8);
}

.item-banner a:hover {
    color: var(--color-main) !important;
}

.banner-btn-section .banner-section .btn-banner {
    background-color: var(--white);
    color: var(--color-main) !important;
    border-radius: 5rem;
    text-decoration: unset;
    display: inline-block;
    padding: 1.25rem 3rem;
}

.banner-btn-section .banner-section .btn-banner:hover {
    background: var(--color-highlight) !important;
    color: white !important;
}

.banner-btn-section .banner-section .btn-banner:hover i {
    color: white !important;
}

.toolbar {
    display: none;
}

.social-section li a {
    width: 3rem;
    height: 3rem;
    line-height: 3.3rem;
    background: var(--color-black);
    display: block;
    color: white;
    text-align: center;
    border-radius: 50%;
}

.social-section li {
    padding-right: 5px;
    display: inline-block;
}

.social-section li a:hover {
    color: var(--color-highlight);
}

.footer-menu-section ul a:hover {
    color: var(--color-highlight) !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.float-contact {
    position: fixed;
    bottom: 40px;
    left: 20px;
    z-index: 99;
}

.float-contact a {
    display: block;
    margin-bottom: 6px;
}

.float-contact a span {
    background: #0091FF;
    border-radius: 20px;
    font-size: 15px;
    color: white;
    font-weight: 400;
    display: inline-block;
    padding: 7px 20px;
}

.float-contact a:nth-child(2) span {
    background: #0866FF;
}

.float-contact a:nth-child(3) span {
    background: var(--color-main);
}

.newsletter .invalid-feedback {
    position: absolute;
    bottom: -30px;
    left: 0;
    text-align: left;
}

.info-contact .desc {
    max-width: 80rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-control {
    border: 1px solid #e1e1e1;
    border-radius: 2.4rem;
}

.breadcrumbs-section-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 10rem 0;
}

.breadcrumbs-section-bg .breadcrumbs-section a, .breadcrumbs-section-bg .breadcrumbs-section span {
    color: white;
}

.description-product ul {
    padding-left: 2rem;
}

.description-product ul li {
    margin-bottom: 1rem;
}

.title-main h3 {
    font-size: 2rem;
}

.border-width-2 {
    border-width: 2px !important;
}

.swiper .swiper-slide {
    height: auto;
}

#productLongDescription {
    display: block;
    overflow: hidden;
    position: relative;
    transition: max-height .5s ease;
}

#productLongDescription {
    max-height: 200px;
}

.copy__inner {
    overflow: hidden;
}

.copy__gradient {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, white 100%);
    bottom: 0;
    height: 150px;
    left: 0;
    position: absolute;
    transition: bottom 1s ease;
    width: 100%;
    z-index: 10;
}

.reveal .copy__gradient {
    bottom: -150px;
    transition: bottom 2s ease;
}

.more-less {
    color: var(--color-main);
    cursor: pointer;
    bottom: 0;
    font-weight: bold;
    left: 0;
    margin-left: 0px;
    position: relative;
    z-index: 50;
    display: inline-block;
    padding: 7px 15px;
    border-radius: 5px;
    border: 1px solid var(--color-main);
}

.more-less:hover {
    color: #fff;
    background: var(--color-main);
}

.reveal + .more-less:after {
    border-top: none;
    border-bottom: 6px solid black;
}

.products-cat .category-image img {
    max-height: 330px;
    width: 100%;
    object-fit: cover;
}

#lg-zoom-out, #lg-zoom-in {
    display: inline-block !important;
    font-family: 'Font Awesome 6 Pro' !important;
    font-weight: 300;
}

#lg-zoom-in:after {
    content: "\f00e";
}

#lg-zoom-out:after {
    content: "\f010";
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-highlight);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.product-detail-footer .tab-content h2 {
    font-size: 2rem;
}

.product-detail-footer .tab-content h3, .product-detail-footer .tab-content h4, .product-detail-footer .tab-content h5 {
    font-size: 1.6rem;
}

.comment-section .list-comment:empty {
    margin: 0;
    padding: 0;
    border: 0;
}

.comment-section .list-comment:empty+.total-comment {
    display: none;
}

.is-mobile .setting-menu-mb>.container>.row>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.is-mobile .search-mb {
    margin: 3.5rem 1.5rem 1.5rem !important;
}

.is-mobile .title-tab .effect-nav li a::after {
    bottom: -1.8rem;
}

.product-item:hover .product-action {
    opacity: 1;
    margin: 0 auto;
}

.bootstrap-select>.dropdown-toggle, .bootstrap-select .dropdown-menu {
    border-radius: 2.4rem !important;
}

.language-section a img {
    width: 2.4rem;
    height: 1.6rem;
    object-fit: cover;
    margin-right: 1rem;
}

.toolbar__item #member-info img {
    margin: 0 !important;
}

.toolbar__item a.dropdown-item {
    padding: 0.5rem 1.5rem !important;
    display: block;
}

.toolbar__item a.dropdown-item i {
    color: var(--color-main);
    font-size: 1.4rem;
}

.btn_home {
    color: white;
    font-size: 17px;
    box-shadow: 0 0 0 0;
    border-radius: 3px;
    padding: 6px 18px;
}

.ux-shape-divider {
    top: 0;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    transform: rotate(180deg);
    padding-top: 5rem;
}

.ux-shape-divider path {
    fill: white;
}

.ux-shape-divider svg path:nth-child(2) {
    fill: rgb(51 179 243);
}.ux-shape-divider svg path:nth-child(1) {
    fill: rgb(0 138 220);
}

.product-home .product-item .product-hover:before {
    content: none;
}

.product-home .product-item .inner-image {
    /* max-width: 200px; */
    margin: auto;
}

.product-home .product-item .product-title a {
    min-height: 39.19px;
    color: var(--color-main2);
    font-size: 14px;
}

.btn_detail {
    width: 100%;
    background-color: var(--second);
    border-color: var(--second);
    border-radius: 10px;
    padding: 7px 15px;
}

.doitac_item {
    padding: 5px;
    text-align: center;
}

.doitac_item img {
    height: 90px;
    object-fit: contain;
}

.home_article .hover-img {
    overflow: inherit;
}

.home_article .article-item .post-date {
    position: absolute;
    top: 30px;
    left: -8px;
    background-color: white;
    color: var(--color-highlight);
    border: 2px solid var(--color-highlight);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    padding: 4px 7px;
    line-height: 1.2;
}

.post-date div {
    font-size: 18px;
    line-height: 1;
}

.home_article .article-item .article-title a {
    color: var(--color-main2) !important;
    font-size: 18px;
    font-weight: 500;
}

.home_article .article-item .article-title:hover a {
    color: var(--color-highlight) !important;
}

.home_article .article-item:hover .post-date {
    background-color: var(--color-highlight);
    color: white;
}

.home_form {
    background-size: cover;
    padding: 2rem 0;
    background-position: right;
}

.home_form_content {
    background-color: white;
    padding: 30px 30px;
}

.btn_home_submit {
    color: white;
    font-size: 15px;
    border-radius: 3px;
    padding: 5px 20px;
}

.home_form .form-control {
    border-radius: 3px;
    max-height: 100px;
}

footer {
    /* background-color: #2a315d; */
}

.entire-info-website {
    /* color: var(--gray); */
}

.title-footer {
    font-size: 19px;
    font-weight: 700;
}

.icon_tru_so {
    background-color: var(--color-highlight);
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    min-width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.footer-menu-section li, .footer-menu-section li a {
    color: black;
}

.social-section {
    display: flex;
    align-items: center;
}

.social-section li a[title="facebook"] {
    background-color: #3a589d;
}

.logo-footer img {
    height: 5rem;
    margin-left: 2rem;
}

.article-detail-page, .box-detail-tags {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.article-detail .title-detail {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}

.article-content-info {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.article-entry-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article-detail .date-view {
    display: flex;
    align-items: center;
}

.article-detail .date-view .view {
    color: #747474;
    font-size: 13px;
    position: relative;
}

.article-detail .date-view .view i {
    display: inline-block;
    margin-right: 6px;
}

.article-detail .date-view span.seperate {
    display: inline-block;
    margin: 0 10px;
    line-height: 1;
    height: 15px;
    overflow: hidden;
    color: #747474;
}

.article-detail .date-view .post-date {
    color: #747474;
    font-size: 14px;
}

.action-share--content {
    position: absolute;
    width: 170px;
    background: #e1e1e1 !important;
    right: 0;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    z-index: 1;
}

.article-entry-info .action-item--title {
    color: #000;
    font-size: 16px;
    margin-bottom: 1rem;
}

.article-entry-info .list-social {
    -ms-flex-pack: distribute;
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.article-entry-info .list-social .btn-social {
    margin: 0 4px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.article-entry-info .list-social .btn-social a {
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #000000;
}

.article-entry-info .article-action .action-item i {
    font-size: 2rem;
    margin-right: 0.8rem;
}

.article-entry-info .action-item {
    position: relative;
}

.categories, .content-filter-product {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

.view-small {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 15px;
}

.view-small .title {
    border-bottom: 1px solid #d1d5db;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.view-small .info .article-item {
    border: 0;
    border-radius: 0;
    display: flex;
    margin-bottom: 20px;
}

.view-small .info .article-item .inner-image {
    flex: 0 0 95px;
    max-width: 95px;
}

.view-small .info .article-item .inner-content {
    padding: 0;
}

.view-small .info .article-item .inner-content .article-title a {
    font-size: 14px;
}

.view-small .info .article-item .inner-content .article-title {
    line-height: 1.2;
    margin-bottom: 5px !important;
    height: 35px;
}

.view-small .info .article-item .inner-image .img {
    border-radius: 8px;
    overflow: hidden;
}

.view-small .info .article-item .inner-content .article-description {
    font-size: 13px;
}

.view-small .info .article-item:last-child {
    margin-bottom: 0;
}

.service-section img {
    height: 110px;
    object-fit: contain;
}

.hotline-phone-ring-wrap {
    left: 20px;
    bottom: 20px;
    position: fixed;
    z-index: 990;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotline-phone-ring-img-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100%;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-circle {
    width: 6.5rem;
    height: 6.5rem;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgb(246 68 57);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 5rem;
    height: 5rem;
    position: absolute;
    background-color: rgb(246 68 57 / .7);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.tooltip-social .tooltip-text {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    /* Vá»‹ trÃ­ cá»§a tooltip */
    position: absolute;
    bottom: 4px;
    /* Äiá»u chá»‰nh Ä‘á»ƒ thay Ä‘á»•i khoáº£ng cÃ¡ch */
    white-space: nowrap;
    z-index: 999;
    /* Hiá»‡u á»©ng */
    opacity: 0;
    transition: opacity 0.3s ease;
    left: 130%;
}

.tooltip-social:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-social:hover .tooltip-text::after {
    content: "";
    position: absolute;
    top: 27%;
    right: 100%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.75) transparent transparent;
}

.tooltip-social:hover img {
    border-radius: 50%;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%), 0 4px 15px rgb(0 0 0 / 13%);
}

#zalo .hotline-phone-ring-circle, .messenger-toggle .hotline-phone-ring-circle {
    border-color: #007cdd;
}

#zalo .hotline-phone-ring-circle-fill, .messenger-toggle .hotline-phone-ring-circle-fill {
    background-color: #0d94e4;
}

#phone .hotline-phone-ring-circle, .messenger-toggle .hotline-phone-ring-circle {
    border-color: #77df9d;
}

#phone .hotline-phone-ring-circle-fill, .messenger-toggle .hotline-phone-ring-circle-fill {
    background-color: #25cc62;
}

.is-mobile .hotline-phone-ring-wrap {
    bottom: 60px;
    left: 10px;
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.text-intro-artical-home {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 16px !important;
}

@media (min-width: 768px) {
    .home_article .article-item .article-description {
        opacity: 0;
        transition: opacity .3s ease;
    }

    .home_article .article-item:hover .article-description {
        opacity: 1;
    }

    footer {
        margin-top: 3rem;
    }
}

@media (min-width: 992px) {
    .testimonial-section {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) and (min-width:1000px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .menu-vertical {
        margin-top: -5rem;
    }

    .article .menu-vertical--content , .article_detail .menu-vertical--content , .product .menu-vertical--content {
        display: block !important;
        position: relative;
        margin-bottom: 3rem !important;
    }
}

@media (min-width: 1200px) {
    .box-sticky-top>.container>.row>div:last-child {
        height: max-content;
        position: sticky;
        top: 100px;
        z-index: 4;
        display: inline-block;
    }
}

@media (max-width: 1200px) {
    .setting-menu > .container > .row {
        justify-content: space-between;
    }

    .setting-menu > .container > .row > div {
        flex: none;
        max-width: none;
        width: max-content;
    }

    .setting-menu > .container > .row > div:last-child {
        display: none;
    }

    body.article_detail > div > .container > .row > div, body.article > div > .container > .row > div {
        flex-basis: 100%;
        max-width: 100%;
    }

    body.article > div > .container > .row > div:last-child {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .menu-section > ul > li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 992px) {
    .toolbar {
        display: flex;
    }

    .setting-menu-mb>.container>.row>div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-mb>.container>.row>div:first-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-mb>.container>.row>div {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .search-mb {
        margin: 3.5rem 1.5rem 1.5rem !important;
    }

    .title-main h2 , .title-main h3 {
        font-size: 2.3rem;
    }

    #nh-admin-bar {
        display: none;
    }

    .acc-cart a i {
        font-size: 2.5rem !important;
        margin-bottom: 0 !important;
    }

    .acc-cart img {
        width: 28px;
        height: 28px
    }

    .banner-section .item-banner .description {
        font-size: 2.5rem !important;
    }

    .banner-btn-section .item-banner a img {
        height: 50vh !important;
    }
}

@media (max-width: 768px) {
    .swiper-slider-main .swiper-slide--wrap {
        padding: 1rem 2rem;
    }

    .swiper-slider-main .title {
        font-size: 1.3rem !important;
    }

    .swiper-slider-main .description {
        font-size: 3rem !important;
        line-height: 1.2;
    }

    .swiper-slider-main .desc-short {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .footer-mb>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .newsletter .title {
        font-size: 2.8rem;
    }

    .sidebar-mini-cart .content-mini-cart .total-price .price-amount {
        font-size: 2.2rem;
    }

    .ux-shape-divider svg {
        display: block;
        height: 150px;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
        width: calc(100% + 2px);
    }

    .text-intro-artical-home {
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 16;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }
}
