/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0.1
*/

/** Font Barlow **/
@import url("assets/fonts/Barlow/font-Barlow.css");

/** Font Barlow Condensed **/
@import url("assets/fonts/BarlowCondensed/font-BarlowCondensed.css");

.mb-1 {
    margin-bottom: 0.25rem !important;
}

/* =========================================================
   MINH TRANG BRAND SYSTEM
   ========================================================= */

/* 1. Brand variables */
:root {
    --mt-green: #2f4f3e;
    --mt-green-dark: #20382c;
    --mt-green-light: #456b57;
    --mt-red: #dd0000;
    --mt-red-dark: #b90000;
    --mt-cream: #fff0c2;
    --mt-cream-light: #fff8df;
    --mt-text: #26332d;
    --mt-shadow: 0 10px 28px rgba(47, 79, 62, 0.12);
}

body {
    color: var(--mt-text);
}

a {
    transition: color .25s ease, border-color .25s ease;
}

a:hover,
a:focus-visible {
    color: var(--mt-red);
}

/* 2. Header */
.header-top {
    background: linear-gradient(135deg, var(--mt-green-dark) 0%, var(--mt-green) 55%, var(--mt-green-light) 100%);
}

.header-main .header-button .button,
.header-main .header-button-2 .button {
    background: linear-gradient(135deg, var(--mt-red-dark) 0%, var(--mt-red) 60%, #ef2a2a 100%);
    border-color: transparent;
    color: #fff;
}

/* 3. Navigation */
.header-bottom {
    background: linear-gradient(135deg, var(--mt-green-dark) 0%, var(--mt-green) 70%, var(--mt-green-light) 100%);
}

.header-bottom .nav > li > a {
    position: relative;
    color: #fff;
    transition: color .25s ease;
}

.header-bottom .nav > li > a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mt-red), var(--mt-cream));
    content: "";
    opacity: 0;
    transform: scaleX(.65);
    transition: opacity .25s ease, transform .25s ease;
}

.header-bottom .nav > li.active > a,
.header-bottom .nav > li > a:hover,
.header-bottom .nav > li > a:focus-visible {
    color: var(--mt-cream);
}

.header-bottom .nav > li.active > a::after,
.header-bottom .nav > li > a:hover::after,
.header-bottom .nav > li > a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

/* 4. Buttons */
.button,
button,
input[type="submit"] {
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease, filter .25s ease;
}

.button.primary,
button.primary,
input[type="submit"],
.single_add_to_cart_button,
.checkout-button {
    background: linear-gradient(135deg, var(--mt-red-dark) 0%, var(--mt-red) 60%, #ef2a2a 100%);
    border-color: transparent;
    color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible,
button.primary:hover,
button.primary:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible,
.single_add_to_cart_button:hover,
.single_add_to_cart_button:focus-visible,
.checkout-button:hover,
.checkout-button:focus-visible {
    box-shadow: 0 8px 20px rgba(221, 0, 0, .22);
    filter: brightness(1.04);
    transform: translateY(-2px);
}

.button.secondary,
button.secondary {
    background: linear-gradient(135deg, var(--mt-green-dark) 0%, var(--mt-green) 100%);
    border-color: transparent;
    color: #fff;
}

.button.secondary:hover,
.button.secondary:focus-visible,
button.secondary:hover,
button.secondary:focus-visible {
    background: var(--mt-cream);
    border-color: var(--mt-green);
    color: var(--mt-green);
    transform: translateY(-2px);
}

/* 5. Section headings */
.section-title-main,
.section-title b,
.ux-menu-title,
.entry-header .entry-title {
    color: var(--mt-green);
}

.section-title-container .section-title b {
    background: linear-gradient(90deg, var(--mt-red), var(--mt-cream));
}

.dark .section-title-main,
.dark .section-title b,
.dark .ux-menu-title,
.dark .entry-title {
    color: var(--mt-cream);
}

/* 6. Cards & image hover */
.product-small .box,
.post-item .box,
.box.has-hover {
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-small .box:hover,
.post-item .box:hover,
.box.has-hover:hover {
    box-shadow: var(--mt-shadow);
    transform: translateY(-3px);
}

.product-small .box-image img,
.post-item .box-image img,
.image-cover img {
    transition: transform .3s ease;
}

.product-small .box:hover .box-image img,
.post-item .box:hover .box-image img,
.image-cover:hover img {
    transform: scale(1.02);
}

/* 7. Footer */
#footer {
    background-color: var(--mt-green-dark);
}

#footer .ux-shape-fill {
    fill: var(--mt-green);
}

#footer a:hover,
#footer a:focus-visible {
    color: var(--mt-cream);
}

.absolute-footer {
    background: linear-gradient(135deg, #17281f 0%, var(--mt-green) 100%);
    color: #fff;
}

/* 8. Responsive */
@media (max-width: 849px) {
    .mobile-sidebar .nav > li > a:hover,
    .mobile-sidebar .nav > li > a:focus-visible {
        color: var(--mt-red);
    }

    .button {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button,
    .box,
    .box-image img,
    .header-bottom .nav > li > a,
    .header-bottom .nav > li > a::after {
        transition-duration: .01ms;
    }
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/*************** ADD CUSTOM CSS HERE.   ***************/

.wpcf7-spinner {
    display: none;
}

input[type=email]:focus, 
input[type=number]:focus, 
input[type=password]:focus, 
input[type=search]:focus, 
input[type=tel]:focus, 
input[type=text]:focus, 
select:focus, 
textarea:focus {
    box-shadow: none;
}

.featured-box .icon-box-img img {
    padding-top: 0;
}

body {
    font-size: 18px;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}

.nav > li > a,
.mobile-sidebar-levels-2 .nav > li > ul > li > a {
    font-size: 24px;
    font-weight: 500;
    font-family: "Barlow Condensed", sans-serif;
}

h1,h2,h3,h4,h5,h6,
.heading-font,
.off-canvas-center .nav-sidebar.nav-vertical > li > a {
    font-family: "Barlow Condensed", sans-serif;
}

.alt-font {
    font-family: "Barlow Condensed", sans-serif;
}

.overlay-icon {
    opacity: 1;
    background-color: #DB2F2F;
}

/** Header **/

.html2 ul li {
    margin: 0;
    list-style: none;
    display: inline-block;
}

.html3 img {
    width: 30px;
    height: 30px;
}

.header-nav ul li {
    list-style-type: none;
}



li.header-search-form form.searchform {
    width: 100%;
}

.searchform .button.icon {
    border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

li.header-search-form form.searchform input {
    height: 40px;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 48px;
}

li.header-search-form form.searchform .flex-col:nth-child(2) {
    position: absolute;
    right: 0;
}

ul.header-nav.nav-right li.header-search-form form.searchform button {
    height: 40px;
    width: 60px;
    border-radius: 25px !important;
    background: linear-gradient(243.74deg, #043f7b 11.89%, #1D4C9F 85.65%);
    border: 0px;
}

.html1 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}

.html_topbar_right .html2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.html_topbar_right .html2 i {
    padding-right: 3px;
}

.html_topbar_right .html2 li:nth-child(2) {
    padding-left: 15px;
    padding-right: 15px;
  }


/** Breadcrumbs **/

.webrt-banner {
    height: 350px;
    display: flex;
    align-items: center;
}

.webrt-banner .wrap_banner {
    position: relative;
    padding-left: 30px;
}

.webrt-banner .wrap_banner::before {
    content: "";
    width: auto;
    height: 160px;
    position: absolute;
    border-left: 2px solid #F69709;
    top: -15px;
    left: 0;
}

.webrt-banner h1 {
    color: #FFF;
    font-size: 58px;
    font-weight: 600;
    line-height: 65px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.webrt-banner p {
    color: #89C6F6;
    font-size: 36px;
    font-weight: 500;
    line-height: 43.2px;
    font-family: "Barlow Condensed";
}

.breadcrumbs {
    color: #535353;
}

.product-info .breadcrumbs {
    display: none;
}

.webrt-page-title {
    background: #F8F8F8;
}

.webrt-page-title .page-title-inner {
    min-height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/** Post cat **/

.post-item .box.box-normal {
    box-shadow: 0px 2px 6px 0px #0000001A;
}

.post-item .box-text {
    padding-left: 20px;
    padding-right: 20px;
}

/** Single Post **/

.entry-meta {
    font-size: 14px;
}

.entry-meta .posted-author {
    padding-right: 10px;
}

.entry-meta .posted-on,
.entry-meta .posted-share {
    padding-left: 10px;
    padding-right: 10px;
}

.entry-meta .posted-share a {
    font-size: 11px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    line-height: 24px;
    border-width: 1px;
    margin-bottom: 0px;
}

.entry-meta .posted-view {
    padding-left: 10px;
}

.entry-meta .posted-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.post-item .box.box-push:hover h5.post-title a {
    color: #FFF;
}

.post-item .box.box-push:hover .is-divider {
    background: #FFF;
}

.box-push h5.post-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: -0.02em;
    text-align: left;
}

.post-item .col-inner .post-meta::before {
    content: "\f133";
    font-family: "Font awesome 6 Pro";
    font-weight: 300;
    font-size: 12px;
    padding-right: 5px;
}

.post-item .box .post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
}

.post-item .box.box-vertical h5.post-title {
    font-size: 25px;
}

.post-item .box .is-divider {
    display: none;
}

.related-post .heading {
    font-size: 25px;
    color: #444444;
    margin-bottom: 15px;
}

#post-list .post-item .col-inner {
    padding-bottom: 25px;
    border-bottom: 1px dashed #DDD;
}

.post-item .box-text a.button {
    color: #043f7b;
    height: 32px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 32px;
    border-radius: 25px;
    padding: 0px 15px;
    border: 1px solid #043f7b;
    text-transform: none;
}

.post-item .box-text a.button::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    padding-left: 5px;
}

.post-item .box-text a.button:hover {
    color: #FFF;
}

.post-related-wrap {
    padding-bottom: 0px;
}

.related-post .heading {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 25px;
	border-bottom: 2px solid #DDD;
	position: relative;
}

.related-post .heading:before {
	content: "";
	width: 245px;
	height: 1px;
	position: absolute;
	border-bottom: 2px solid #FF7900;
	bottom: -2px;
	left: 0;
}

.related-post .flickity-prev-next-button {
    opacity: 1;
}

.related-post .flickity-prev-next-button.previous {
    left: -15px;
}

.related-post .flickity-prev-next-button.next {
    right: -15px;
}

/** Footer **/

#footer {
    color: #FFF;
    background: url("assets/images/bg_footer.png") no-repeat bottom / cover;
}

#footer a {
    color: #FFF;
}

#footer .footer-widgets-asea .col {
    padding-left: 0px;
    padding-right: 0px;
}

#footer h4,
#footer span.widget-title {
    display: block;
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-family: "Barlow Condensed", sans-serif;
}

#footer h4::before,
#footer span.widget-title::before {
    content: "";
    width: 62px;
    height: 0px;
    position: absolute;
    border-bottom: 2px solid #FFF;
    bottom: 0;
    left: 0;
}

#footer .footer-widgets-asea:nth-child(1) {
    flex-basis: 35%;
    max-width: 35%;
}

#footer .footer-widgets-asea:nth-child(2)  {
    flex-basis: 20%;
    max-width: 20%;
}

#footer .footer-widgets-asea:nth-child(3) {
    flex-basis: 20%;
    max-width: 20%;
}

#footer .footer-widgets-asea:nth-child(4) {
    flex-basis: 25%;
    max-width: 25%;
}

.footer-widgets-asea ul li {
    margin: 0;
    padding-left: 25px;
    padding-bottom: 10px;
    list-style-type: none;
    position: relative;
}

.footer-widgets-asea:nth-child(1) ul li::before {
    content: "\f015";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 15px;
    position: absolute;
    top: 3px;
    left: 0;
}

.footer-widgets-asea:nth-child(1) ul li:nth-child(2)::before {
    content: "\f3c5";
}

.footer-widgets-asea:nth-child(1) ul li:nth-child(3)::before {
    content: "\f095";
}

.footer-widgets-asea:nth-child(1) ul li:nth-child(4)::before {
    content: "\f0e0";
}

.footer-widgets-asea:nth-child(1) ul li:nth-child(5)::before {
    content: "\f0ac";
}

.footer-widgets-asea ul.menu li + li {
    border-top: none;
}

.footer-widgets-asea ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 6px;
    color: #FFF;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    opacity: 1;
}

.footer-widgets-asea ul.menu li a {
    padding: 3px 0px;
}

#footer .absolute-footer {
    background: transparent;
}

.absolute-footer.dark {
    color: #FFF;
}

.title-footer p {
    font-size: 32px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Barlow Condensed", sans-serif;
    background: -webkit-linear-gradient(180deg, #67B0E9 28.57%, #043F7B 96.43%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px #FFF;
}

#footer a.back-to-top {
    border: 0;
    color: #fff;
    font-size: 20px;
    line-height: 45px;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    margin: 0;
    bottom: 55px;
    background: #004AAF;
}



/** Home **/

.slider.slider-nav-simple .flickity-page-dots .dot {
    background: #2B72BB;
    border: 0;
    opacity: 1;
}

.slider.slider-nav-simple .flickity-page-dots .dot.is-selected {
    width: 35px;
    border-radius: 35px;
    background: #5C8DC0;
}

.slider.slider-nav-simple .flickity-button {
    opacity: 1;
}

.slider.slider-nav-simple .flickity-button.previous .flickity-button-icon,
.slider.slider-nav-simple .flickity-button.next .flickity-button-icon {
    color: #FFF;
    padding: 10px 8px;
    background: #2B72BB;
}

.slider.slider-nav-simple .flickity-button:hover .flickity-button-icon path {
    fill: #FFF;
}

.rt-section-slider .col-inner {
    position: relative;
}

.text-banner {
    width: 100%;
    bottom: 0;
    position: absolute;
}

.text-banner h4 {
    width: 100%;
    font-size: 50px;
    font-weight: 900;
    line-height: 120px;
    letter-spacing: 0.05em;
    color: rgba(255, 0, 0, 0);
    -webkit-text-stroke: 1px #FFF;
}

.title-white {
    color: #FFF !important;
}

.block__element_head .sp_block {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-transform: uppercase;
    position: relative;
}

.rt-section-1::before {
    content: "";
    width: 100%;
    height: 30px;
    background: url("assets/images/bg-line.png") no-repeat center / cover;
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
}

.rt-section-1 .block__element_head .sp_block {
    color: #A4A4A4;
    font-size: 32px;
    font-weight: 400;
    line-height: 38.4px;
    letter-spacing: 0.13em;
}

.rt-section-4 .block__element_head .sp_block,
.rt-section-6 .block__element_head .sp_block {
    color: #A4A4A4;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 0.13em;
}

.block__element_head .sp_block::before {
    content: "";
    width: 33px;
    height: auto;
    position: absolute;
    border-top: 2px solid #2B72BB;
    left: -45px;
    top: calc(50% + 2px);
}

.rt-section-4 .block__element_head .sp_block::before,
.rt-section-6 .block__element_head .sp_block::before {
    display: none;
}

.block__element_head .sp_block::after {
    content: "";
    width: 33px;
    height: auto;
    position: absolute;
    border-top: 2px solid #2B72BB;
    right: -45px;
    top: calc(50% + 2px);
}

.rt-section-1 h3 {
    font-size: 48px;
    font-weight: 600;
    line-height: 57.6px;
    background: -webkit-linear-gradient(90deg, #043F7B 0%, #2B72BB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rt-section-1 h4 {
    color: #043F7B;
    font-size: 30px;
}

.btn-info {
    border: 0;
    padding: 0;
    background: transparent;
}

.btn-info:hover {
    box-shadow: none;
}

.btn-info span {
    font-size: 17px;
    font-weight: 500;
    line-height: 45px;
    padding: 0px 20px;
    background: linear-gradient(90deg, #FF6600 0%, #F69709 100%);
}

.btn-info .icon-angle-right {
    width: 40px;
    height: 45px;
    line-height: 45px;
    background: #134272;
    margin-left: -1px !important;
    top: 0px;
    vertical-align: top;
}

.btn-info .icon-angle-right::before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 17px;
}

.btn-info .icon-angle-right::after {
    content: "";
    height: 45px;
    top: 0px;
    right: -15px;
    position: absolute;
    border-right: 15px solid transparent;
    border-bottom: 45px solid #134272;
}

/** rt-section-4 **/

.rt-section-4 h3 {
    text-transform: uppercase;
}

.rt-section-4 h4 {
    color: #043F7B;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
}

.rt-section-4 p {
    color: #494949;
    text-align: justify;
}

/** rt-section-6 **/

.rt-section-4 h3,
.rt-section-6 h3 {
    font-size: 38px;
    font-weight: 600;
    line-height: 48px;
    background: -webkit-linear-gradient(90deg, #043F7B 0%, #2B72BB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rt-section-6 p {
    color: #494949;
}

.item-giaiphap .giaiphap_number {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.item-giaiphap .giaiphap_number p {
    font-size: 64px;
    font-weight: 600;
    line-height: 85px;
    font-family: "Barlow Condensed";
    background: -webkit-linear-gradient(180deg, #F69709 0%, #EC3922 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.item-giaiphap .giaiphap_number h4 {
    color: #043F7B;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 0px;
    margin-left: 15px;
    position: relative;
}

.item-giaiphap .giaiphap_number h4::before {
    content: "";
    width: 66px;
    height: auto;
    position: absolute;
    border-bottom: 1.5px solid #1F88D9;
    bottom: -10px;
    left: 0;
}

.giaiphap_content p {
    color: #494949;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.rt-section-9 .gallery-col .box-image {
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #00000026;
}

.rt-section-10 p {
    margin: 0;
    padding: 0;
    line-height: 0;
}

/** Page **/

.gg-map p {
    line-height: 0;
    margin-bottom: 0;
}

/** Woocoommerce **/

.category-page-row {
    padding-top: 45px;
}

.page-title:not(.featured-title) + main .product-main,
.shop-container #product-sidebar {
    padding-top: 40px;
}

.cat_title h2 {
    color: #043F7B;
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    position: relative;
    margin-bottom: 25px;
    padding-left: 18px;
    text-transform: uppercase;
}

.cat_title h2::before {
    content: "";
    width: 5px;
    height: 21px;
    background: #EC3922;
    position: absolute;
    top: 10px;
    left: 0;
}

.flex-col_woocommerce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 5px;
    background: #F8F8F8;
    padding: 0px 15px;
    margin-bottom: 20px;
}

.flex-col_woocommerce .woocommerce-result-count {
    margin: initial;
}

.flex-col_woocommerce .woocommerce-ordering select.orderby {
    border: 0px;
    box-shadow: none;
    background-color: #F8F8F8;
    height: 30px;
}

.col .product-small.box.box-normal {
    background: #FFF;
    border: 1px solid #DFDFDF;
}

.col .product-small.box.box-normal .price-wrapper .sku,
.col .product-small.box.box-normal .price-wrapper .tags {
    display: none;
}

.product-small.product.type-product .product-small.box .box-image {
    border: 1px solid #F0F0F0;
}

.product-small.product.type-product .product-small.box .product-title a {
    color: #6A6A6A;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
}

.product-small.product.type-product .product-small.box .box-text-products {
    padding-left: 0;
    padding-right: 0;
}

.product-small.product.type-product .product-small.box .price-wrapper .price {
    display: none;
}

.product_meta .sku_wrapper,
.product-small.product.type-product .product-small.box .price-wrapper .sku p {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
}

.product-small.product.type-product .product-small.box .price-wrapper .tags {
    color: #6A6A6A;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
}

.add-to-cart-button a.button {
    width: 100%;
    height: 42px;
    border: 0;
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    line-height: 42px;
    border-radius: 0px;
    padding: 0px 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #043F7B 0%, #2B72BB 100%);
}

.add-to-cart-button a.button::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    padding-left: 5px;
}

.widget li > .woocommerce-Price-amount bdi,
.widget .amount-contact,
.price>.woocommerce-Price-amount>bdi,
.price .amount-contact {
    color: #e24642;
    font-weight: 700;
}

.product-info .hide-for-off-canvas {
    width: 100%;
    position: absolute;
    right: 15px;
    top: 15px;
}

.product-info .hide-for-off-canvas a.button {
    border-radius: 4px !important;
    background: #EC3922;
    border: 0;
    color: #FFF;
    font-size: 20px;
    padding: 0;
    min-width: 30px;
    min-height: 30px;
    line-height: 30px;
}

ul.product-tabs.nav-pills > li > a {
    line-height: 50px
}

.related.related-products-wrapper {
    border-top: 0;
    padding-top: 25px;
    background: #F8F8F8;
}

.related.related-products-wrapper h3 {
    font-size: 35px;
    padding-left: 15px;
    padding-right: 15px;
}

/** Sidebar **/

.widget_product_search .searchform input[type="search"] {
    box-shadow: none;
    width: 100%;
    box-shadow: none;
    border: 1px solid #E1E1E1;
}

.widget_product_search .searchform button {
    background: transparent;
    color: #ec3922;
    box-shadow: none;
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.widget_product_categories .widget-title {
    color: #FFF;
    height: 40px;
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    background: #043F7B;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.widget_product_categories ul {
    border: 1px solid #E1E1E1;
}

.widget_product_categories ul li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    position: relative;
    padding: 0px 15px 0px 40px;
    height: 60px;
    display: flex;
    align-items: center;
    font-family: "Barlow Condensed";
}

.widget_product_categories ul li.active a,
.widget_product_categories ul li a:hover {
    color: #043F7B;
    background: #ffffff;
}

.widget_product_categories ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 16px;
    position: absolute;
    top: calc(50% - 11px);
    left: 15px;
}

.widget_product_categories ul.children {
    border: 0;
    margin: 0;
    padding: 0;
}

.widget_product_categories ul ul.children li a {
    height: 45px;
    padding-left: 60px;
}

.widget_product_categories ul ul.children li a::before {
    left: 38px;
}

#menu-danh-muc-san-pham {
    border-top: 0;
    border: 1px solid #043f7b;
}

#menu-danh-muc-san-pham li {
    padding-left: 15px;
    padding-right: 15px;
}

#menu-danh-muc-san-pham li a {
    position: relative;
    padding-left: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
}

#menu-danh-muc-san-pham ul.sub-menu {
    border-left: 0px;
    margin: 0 0 10px 0px;
    padding-left: 0px;
}

#menu-danh-muc-san-pham ul.sub-menu li a {
    padding-top: 5px;
    padding-bottom: 5px;
}

aside.widget_categories .widget-title,
aside.widget_nav_menu .widget-title,
aside.widget_products .widget-title,
aside.flatsome_recent_posts .widget-title {
    color: #FFF;
    display: block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #043f7b;
}

.widget .is-divider {
    display: none;
}

aside.widget_categories ul,
aside.widget_products ul,
aside.flatsome_recent_posts  ul {
    border-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #043f7b;
}

.widget.widget_categories > ul > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
}

.recent-blog-posts-li .recent-blog-posts {
    padding: 10px 0;
}

.recent-blog-posts-li .recent-blog-posts .badge {
    width: 80px;
    height: 65px;
}

.recent-blog-posts-li .recent-blog-posts a {
    font-size: 13px;
    margin-bottom: 0px;
    font-weight: 400;
}

table tbody td,
table tbody th {
    padding: 1rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.product-footer .woocommerce-tabs .tabs {
	background: #f1f1f1;
  	border-radius: 20px;
}

/** Page Download **/

.document-archive .inner_document_top h2 {
    color: #043F7B;
    font-size: 48px;
    font-weight: 600;
    line-height: 57.6px;
    position: relative;
    padding-left: 20px;
}

.document-archive .inner_document_top h2::before {
    content: "";
    width: auto;
    height: 33px;
    position: absolute;
    border-left: 5px solid #EC3922;
    left: 0;
    top: 15px;
}

.tab_document {
    margin-top: 40px;
}

.tab_document h4 {
    color: #043F7B;
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    font-family: "Barlow";
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tab_document ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0;
}

.tab_document ul li a {
    background: #E9ECEF;
    height: 50px;
    line-height: 50px;
    padding: 0px 20px;
    display: block;
    font-family: "Barlow";
    font-size: 20px;
    font-weight: 600;
}

.tab_document ul li a.active {
    color: #FFF;
    background: #EC3922;
}

.inner_document_bottom {
    padding-top: 50px;
    padding-bottom: 10px;
}

.document-item .box.box-normal .box-image {
    box-shadow: 0px 0px 10px 0px #00000036;
}

.document-item .box.box-normal .box-image img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    background: #FFF;
}

.document-item .box.box-normal .box-image img.demo {
    padding: 0px 20px;
    object-fit: contain;
}

.document-item .box.box-normal h5.post-title a {
    font-size: 20px;
    font-weight: 500;
}

.document-item .box.box-normal p {
    color: #818181;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    text-transform: uppercase;
}

.product-small .sku, .product-small .tags{
	display:none!important;
}
.product-small.product.type-product .product-small.box .price-wrapper .price {
    display: block!important;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
    body {
        font-size: 15px;
    }
    .webrt-banner {
        height: 160px;
    }
    .webrt-banner .wrap_banner::before {
        height: 70px;
        top: -7px;
    }
    /** Home **/
    .text-banner h4 {
        font-size: 15px;
        line-height: 35px;
        -webkit-text-stroke: 0.5px #FFF;
    }
    .btn-info span {
        font-size: 14px;
        line-height: 40px;
        padding: 0px 15px;
    }
    .btn-info .icon-angle-right {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .btn-info .icon-angle-right::before {
        font-size: 14px;
    }
    .btn-info .icon-angle-right::after {
        height: 40px;
        border-bottom: 40px solid #134272;
    }
    .rt-section-1 .block__element_head .sp_block {
        font-size: 20px;
    }
    .rt-section-1 h3 {
        font-size: 25px;
        line-height: 38px;
    }
    .rt-section-10 iframe {
        height: 250px;
    }
    .block__element_head .sp_block::before {
        width: 20px;
        left: -30px;
    }
    .block__element_head .sp_block::after {
        width: 20px;
        right: -25px;
    }
    .rt-section-1 h4 {
        font-size: 20px;
        line-height: 25px;
    }
    .block__element_head .sp_block {
        font-size: 25px;
    }
    .rt-section-4 h3, .rt-section-6 h3 {
        font-size: 25px;
    }
    .rt-section-4 .block__element_head .sp_block,
    .rt-section-6 .block__element_head .sp_block {
        font-size: 18px;
    }
    .item-giaiphap .giaiphap_number h4 {
        font-size: 25px;
    }
    .item-giaiphap .giaiphap_number p {
        font-size: 50px;
    }
    .webrt-banner h1 {
        font-size: 25px;
        margin-bottom: 5px;
        line-height: 30px;
    }
    .webrt-banner p{
        font-size: 18px;
        line-height: 25px;
    }
    .cat_title h2 {
        font-size: 25px;
    }
    .product-small.product.type-product .product-small.box .product-title a,
    .product-small.product.type-product .product-small.box .price-wrapper .tags {
        font-size: 15px;
    }
    .product_meta .sku_wrapper,
    .product-small.product.type-product .product-small.box .price-wrapper .sku p {
        font-size: 16px;
    }
    .flex-col_woocommerce .woocommerce-result-count {
        display: block !important;
    }
    .flex-col_woocommerce .woocommerce-ordering select.orderby {
        width: 165px;
    }
    /** Footer **/
    #footer {
        background-size: cover;
    }
    #footer .footer-widgets-asea:nth-child(1),
    #footer .footer-widgets-asea:nth-child(2),
    #footer .footer-widgets-asea:nth-child(3),
    #footer .footer-widgets-asea:nth-child(4) {
        flex-basis: 100%;
        max-width: 100%;
    }
    /** Product **/
    .price > .woocommerce-Price-amount > bdi,
    .price .amount-contact {
        line-height: 25px;
    }
    .add-to-cart-button a.button {
        height: 25px;
        font-size: 13px;
        line-height: 29px;
    }
    .add-to-cart-button a.button::after {
        font-size: 12px;
    }
    form.cart .quantity {
        width: 100%;
    }
    form.cart .single_add_to_cart_button.button,
    form.cart .buy-now.button {
        width: calc(50% - 7px);
        margin: 0;
        padding-left: 5px;
        padding-right: 5px;
    }
    /** Page **/
    .gg-map p iframe {
        height: 220px;
    }
    .document-archive .inner_document_top h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .document-archive .inner_document_top h2::before {
        height: 20px;
        top: 12px;
    }
    .document-item .box.box-normal .box-image img {
        height: 270px;
    }
    .tab_document ul li {
        margin-bottom: 5px;
    }
    .tab_document ul li a {
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }
    .tab_document h4 {
        font-size: 18px;
    }
    .col.post-item .box.box-vertical {
        box-shadow: 0px 2px 6px 0px #0000001A;
    }
    .html_topbar_right .html2 {
        color: #333;
    }
    .html_topbar_right .html2 li:nth-child(2) {
        display: none;
    }
    .product-footer .woocommerce-tabs .tabs > li {
        width: auto;
    }
}

/* 9. Final Flatsome/legacy component overrides */
.header-top,
.top-bar-nav,
.header-bottom {
    background-color: var(--mt-green);
}

ul.header-nav.nav-right li.header-search-form form.searchform button,
.post-item .box-text a.button,
.add-to-cart-button a.button,
.product-info .hide-for-off-canvas a.button,
.widget_product_search .searchform button {
    background: linear-gradient(135deg, var(--mt-green-dark) 0%, var(--mt-green) 100%);
    border-color: transparent;
    color: #fff;
}

.post-item .box-text a.button:hover,
.add-to-cart-button a.button:hover,
.product-info .hide-for-off-canvas a.button:hover,
.widget_product_search .searchform button:hover {
    background: var(--mt-cream);
    border-color: var(--mt-green);
    color: var(--mt-green);
}

.cat_title h2,
.document-archive .inner_document_top h2,
.product-title a,
.entry-title a {
    color: var(--mt-green);
}

.phongvt-contact .chat-zalo,
.phongvt-contact .hotline {
    background: linear-gradient(135deg, var(--mt-red-dark) 0%, var(--mt-red) 100%);
}

.phongvt-contact .chat-face {
    background: linear-gradient(135deg, var(--mt-green-dark) 0%, var(--mt-green) 100%);
}

.phongvt-contact a:focus-visible,
#phongvt-contact-footer a:focus-visible {
    outline: 2px solid var(--mt-cream);
    outline-offset: 3px;
}

.home .content-area > .section:first-child .slider .img-inner img {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}
