:root {
  --vt-c-blue: #0367a6;
  --vt-c-green: #00a859;
  --vt-c-light-blue: #eef4ff;
  --vt-c-yellow: #ffd700;
  --vt-c-red: #ed1c24;
  --vt-c-light-red: #fef3f2;
  --vt-c-icon-blue: #0081fe;
  --vt-c-icon-green: #02bc0f;
  --vt-c-stock-green: #0bff1b;
  --vt-c-stock-red: #ff757b;
  --vt-c-footer-bg: #f8f7f5;

  --vt-c-gradient-blue: linear-gradient(
    98.49deg,
    #0037fc 3.59%,
    rgba(0, 255, 255, 0.81) 107.84%
  );
  --vt-c-gradient-bg-blue: linear-gradient(
    89.44deg,
    #0367a6 0.42%,
    #049dd9 48.1%,
    #0367a6 101.86%
  );

  --vt-t-mobile-xs: 10px;
  --vt-t-mobile-sm: 12px;
  --vt-t-xs: 14px;
  --vt-t-sm: 16px;
  --vt-t-md: 18px;
  --vt-t-lg: 20px;
  --vt-t-xl: 24px;
  --vt-t-2xl: 32px;
  --vt-t-3xl: 40px;

  --vt-t-h-sm: 24px;
  --vt-t-h-lg: 32px;
  --vt-t-h-xl: 40px;

  --vt-w-light: 300;
  --vt-w-regular: 400;
  --vt-w-medium: 500;
  --vt-w-semiBold: 600;
  --vt-w-bold: 700;
  --vt-w-black: 900;

  --vt-vp-xl: 1400px;
  --vt-vp-3xl: 1728px;
}
* {
  margin: 0;
  padding: 0;
  font-family: oswald;
}
.headline-h1 {
  font-size: clamp(var(--vt-t-xl), 5vw, var(--vt-t-3xl));
  font-weight: var(--vt-w-medium);
}
.headline-h2-md {
  font-size: clamp(var(--vt-t-md), 5vw, var(--vt-t-2xl));
  font-weight: var(--vt-w-medium);
}
.headline-h2 {
  font-size: clamp(var(--vt-t-md), 5vw, var(--vt-t-2xl));
  font-weight: var(--vt-w-bold);
}
.headline-h3 {
  font-size: clamp(var(--vt-t-sm), 3vw, var(--vt-t-xl));
  font-weight: var(--vt-w-medium);
}
.title-t1 {
  font-size: clamp(var(--vt-t-sm), 3vw, var(--vt-t-lg));
  font-weight: var(--vt-w-medium);
}
.title-t1-regular {
  font-size: clamp(var(--vt-t-sm), 3vw, var(--vt-t-lg));
  font-weight: var(--vt-w-regular);
}
.title-t2 {
  font-size: clamp(var(--vt-t-xs), 3vw, var(--vt-t-md));
  font-weight: var(--vt-w-medium);
}
.title-t2-light {
  font-size: clamp(var(--vt-t-xs), 3vw, var(--vt-t-md));
  font-weight: var(--vt-w-light);
}
.title-t3 {
  font-size: clamp(var(--vt-t-xs), 3vw, var(--vt-t-sm));
  font-weight: var(--vt-w-medium);
}
.title-t4 {
  font-size: var(--vt-t-xs);
  font-weight: var(--vt-w-regular);
}
.body-t1 {
  font-size: var(--vt-t-xl);
  font-weight: var(--vt-w-regular);
}
.body-t2 {
  font-size: clamp(var(--vt-t-xs), 2vw, var(--vt-t-md));
  font-weight: var(--vt-w-regular);
}
.body-t2-light {
  font-size: clamp(var(--vt-t-xs), 2vw, var(--vt-t-md));
  font-weight: var(--vt-w-light);
}
.body-t3 {
  font-size: clamp(var(--vt-t-mobile-sm), 2vw, var(--vt-t-sm));
  font-weight: var(--vt-w-regular);
}
.body-t3-light {
  font-size: var(--vt-t-sm);
  font-weight: var(--vt-w-light);
}
.caption-regular {
  font-size: clamp(var(--vt-t-mobile-xs), 2vw, var(--vt-t-xs));
  font-weight: var(--vt-w-regular);
}
.caption-light {
  font-size: clamp(var(--vt-t-mobile-xs), 2vw, var(--vt-t-xs));
  font-weight: var(--vt-w-light);
}
.text-blue {
  color: var(--vt-c-blue) !important;
}
.text-green-pri {
  color: var(--vt-c-green) !important;
}

.text-yellow {
  color: var(--vt-c-yellow);
}

.text-red {
  color: var(--vt-c-red);
}
.text-grey {
  color: #555555;
}
.text-spacing-xs {
  letter-spacing: 1px;
}
.text-spacing-sm {
  letter-spacing: 2px;
}
.bg-light-blue {
  background-color: var(--vt-c-light-blue);
}
.center-x {
  margin: auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-standard {
  max-width: var(--vt-vp-xl);
}
.w-3xl {
  max-width: var(--vt-vp-3xl);
}
.top-0 {
  top: 0;
}
.top-50 {
  top: 50%;
}
.bottom-0 {
  bottom: 0;
}
.right-0 {
  right: 0;
}
.left-0 {
  left: 0;
}
.z-5 {
  z-index: 100;
}
.z-4 {
  z-index: 80;
}
.z-3 {
  z-index: 60;
}
.z-2 {
  z-index: 20;
}
.z-1 {
  z-index: 10;
}
.z-0 {
  z-index: 0;
}
.border-none {
  border: none;
}
.bg-none {
  background-color: rgba(255, 255, 255, 0);
}
.bg-cream {
  background-color: #f5fbff;
}
.line-y {
  width: 1px;
  height: 24px;
  background-color: white;
}
.cursor-pointer {
  cursor: pointer;
}
footer {
  border-top: solid 1px var(--vt-c-icon-green);
  background-color: var(--vt-c-footer-bg);
}
.end-line {
  height: 29px;
  background: linear-gradient(90deg, #00a7b5 0%, #05a058 100%);
}
.spotlight-y {
  height: 34px;
  width: 8px;
  background-color: var(--vt-c-red);
  border-radius: 10px;
}
.spotlight-y-sm {
  height: 19px;
  width: 4px;
  background-color: var(--vt-c-red);
  border-radius: 10px;
}
.spotlight-x {
  height: 4px;
  width: 50px;
  background-color: var(--vt-c-green);
}
.max-lines {
  display: block;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 7.2em;
  line-height: 1.8em;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 36px;
  width: 36px;
  background-color: white;
  border-radius: 100%;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.18);
  background-size: 24px;
  background-image: url(/documents/37629/38824/icon-nextt-8-2.svg/216eb3d6-8e29-49f5-ea3b-701914d45e40?t=1738986670428) !important;
}
.carousel-control-next-icon:hover {
  background-color: #ed1c24;
  background-image: url(/documents/37629/38824/icon-next-hover-home.svg/007e72ac-4897-73fc-26e6-d3484a3a614a?t=1738893950541) !important;
}
.carousel-control-prev-icon:hover {
  background-image: url(/documents/37629/38824/icon-next-hover-home.svg/007e72ac-4897-73fc-26e6-d3484a3a614a?t=1738893950541) !important;
  transform: rotate(180deg);
  background-color: #ed1c24;
}
.text-underline {
  text-decoration: underline;
}

.logo-and-slogan img {
  height: 55px;
  width: 55px;
}
.search-btn {
  height: 32px;
  border: none;
  padding: 4px;
  border-radius: 0px 4px 4px 0px;
}
.search-input {
  height: 32px;
  padding: 0 10px;
  border-radius: 4px 0px 0px 4px;
  font-family: "Inter", sans-serif;
  font-style: italic;
}
.search-btn {
  background-color: var(--vt-c-red);
}
#search-btn-mobile {
  background-color: var(--vt-c-green);
}
.search-input {
  border: solid 1px var(--vt-c-red) !important;
}
#search-input-mobile {
  border: solid 1px var(--vt-c-green) !important;
}
.search-input:focus {
  outline: none;
}
.header-bar,
.nav-bar,
.substitute-nav-bar {
  height: 64px;
}
.header-bar {
  background: linear-gradient(90deg, #00a7b5 0%, #05a058 100%);
}
.nav-bar {
  background-color: var(--vt-c-light-blue);
}
.navbar-item-mobile {
  border-bottom: solid 1px #e5e5e5;
  font-size: var(--vt-t-xs);
  font-weight: var(--vt-w-medium);
  line-height: 22px;
  cursor: pointer;
}
.navbar-mobile .navbar-item-mobile {
  padding: 20px 5px;
}
.navbar-mobile .navbar-item-mobile:first-child img {
  height: 11px;
  margin-bottom: 5px;
}
.navbar-item-mobile:last-child {
  border: none;
}
.bsr-info {
  background-color: var(--vt-c-blue);
}
.bsr-info .navbar-item-mobile {
  padding: 10px 5px;
  font-size: var(--vt-t-xs);
}
.bsr-info .navbar-item-mobile div {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s ease-out;
}
.bsr-info .navbar-item-mobile p {
  left: 0;
  font-weight: var(--vt-w-light);
  color: white;
  transition: all 0.3s ease-in-out;
}
.bsr-info .navbar-item-mobile img {
  visibility: hidden;
  height: 18px;
  transition: all 0.3s ease-out;
}
.bsr-info .navbar-item-mobile:hover div {
  padding: 10px 5px;
  background-color: rgb(255, 255, 255);
}
.bsr-info .navbar-item-mobile:hover p {
  left: 32px;
  font-weight: var(--vt-w-medium);
  color: var(--vt-c-red);
}
.bsr-info .navbar-item-mobile:hover img {
  visibility: visible;
}
.stock-inline {
  gap: 15px;
}
.stock-item {
  color: white;
}
.stock-item-name {
  font-size: var(--vt-t-sm);
  padding: 4px 10px;
  border-radius: 5px;
  background-color: #ffffff29;
  color: white;
}
.stock-item-detail {
  gap: 4px;
}
.stock-item-detail p:first-child {
  font-weight: var(--vt-w-regular);
}
.home-btn {
  padding: 10px 10px 10px;
  background-color: var(--vt-c-red);
  border-radius: 100%;
}

.nav-item {
  padding: 10px;
}
.nav-item a {
  color: black;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.nav-item.active {
  background-color: var(--vt-c-red);
}
.nav-item.active a,
.nav-item.active:hover a {
  color: white;
}
.nav-item:hover a,
.nav-item:first-child.active a {
  color: var(--vt-c-red);
}

.nav-item:first-child a {
  color: var(--vt-c-red);
  transition: all 0.2s ease-out;
}
.nav-item:first-child.active {
  background: none;
}

.container-spdv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(/documents/37629/38824/Property+1%3DDefault.svg/c6e475fe-8766-650d-7cea-e3a0892769be?t=1739158574202)
    no-repeat center center !important;
  background-size: cover;
  color: white;
  padding: 40px 0px 40px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 150px;
}
.container-spdv .content-box-wrapper {
  position: relative;
  padding: 10px;
  background-color: unset;
  border-radius: 14px;
  width: 40%;
  border: unset;
  border-image-source: unset;
  border-image-slice: 1;
  box-sizing: border-box;
  background-clip: border-box;
  background-image: url(/documents/37629/38824/content-box-wrapper.svg/28a05805-ee93-80e8-146a-4f31156768c3?t=1739160605308);
  background-repeat: no-repeat;
  background-size: contain;
}
.container-spdv .content-box {
  flex: 1;
  border-radius: 10px;
  background: unset;
  padding: 20px;
  border: unset;
  border-image-source: unset;
  border-image-slice: 1;
  backdrop-filter: unset;
  background-clip: unset;
}
.stat-value-container .stat-value {
  font-weight: 500;
}
.tuyendung-bar {
  gap: 13px !important;
}

.banner-section .banner div {
  background: unset !important;
}
#tintucsukien-navbar .navbar-tabs .navbar-item:hover {
  color: var(--vt-c-red) !important;
}
.login-icon {
  display: flex;
  color: var(--vt-c-green);
  font-size: 18px;
  margin-top: 6px;
}
.bg-sidebar-img {
  bottom: -165px;
  z-index: -1;
}

#contentText {
  font-family: "Times New Roman", Times, serif !important;
}

#contentText p,
#contentText b,
#contentText a,
#contentText h1,
#contentText h2,
#contentText h3,
#contentText h4,
#contentText h5,
#contentText span,
#contentText li,
#contentText div {
  font-family: "Times New Roman", Times, serif !important;
}
#contentText > .text-summary > p{
  font-size: 19px !important;
}
#contentText p{
font-size: 19px !important;
}
#contentText span{
  font-size: 19px !important;
  }
  #contentText figcaption span{
    color: rgb(44, 107, 222) !important;
  }
.text-title-tlq-img{
font-size: 18px !important;
}
/* footer css */
footer {
  background-color: #f8f7f5;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  padding: 14px 0;
}
.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.footer-item {
  height: 100%;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.company-name-ft {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--vt-c-green);
  line-height: 1.2;
  font-size: 24px;
  margin-top: 40px;
}
.icon-fax {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-item .body-t3 {
  font-size: 14px;
}
.portlet-msg-info{
  color: #0077c0;
  border: 4px solid #83d2fd !important;
  border-radius: 0 40px 0 40px;
  background-color: unset;
  border-color: unset;
}
.footer-company-name{
  font-size: 24px;
  font-weight: 500;
  color: var(--vt-c-green);
  padding-left: 21px;
}
@media (min-width: 1500px) {
  .company-name-ft {
    font-size: 30px;
  }
  .footer-item .body-t3 {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) {
  .footer-logo-section {
    margin-bottom: 1.5rem;
  }
  .footer-item {
    margin-bottom: 0 !important;
  }
  .company-name-ft {
    font-size: 16px;
  }
  .footer-item-contact {
    padding: 0 15px !important;
  }
}

@media (max-width: 1200px) {
  .nav-item p {
    font-size: 14px;
  }
  
 
}

#TabletHamburgerMenu {
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 10px;
  margin-left: 15px;
}

#TabletHamburgerMenu img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (min-width: 576px) and (max-width: 992px) {
  #TabletHamburgerMenu {
    display: block !important;
  }

  .header-menu {
    position: relative;
  }
  
  /* Footer tablet styles */
  .footer-mobile-section {
    background-color: #f8f7f5;
      border-radius: 8px;
      padding: 4px 16px;
      margin-bottom: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      border: 1px solid #e5e5e5;
  }

  .footer-mobile-section .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-mobile-section .contact-info .infor-item {
    margin: 0;
  }
  .footer-mobile-section .mb-3{
    margin-bottom: 0 !important;
  }
  .footer-mobile-section .contact-info .infor-item:first-child {
    margin-left: 0;
  }

  .tablet-footer-title {
    margin-bottom: 10px !important;
    border-bottom: 2px solid var(--vt-c-green);
  }

  .tablet-footer-title .footer-company-name {
    font-size: 22px;
    text-align: left;
    padding-left: 0 ;
    color: var(--vt-c-green);
    margin-bottom: 10px;
  }

  .footer-mobile-section .icon.mt-1 {
    width: 24px;
    height: 24px;
  }

  .footer-mobile-section p.mb-2.ml-1 {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px !important;
  }

  .footer-mobile-section .icon-small {
    width: 24px;
    height: 24px;
  }

  .footer-mobile-section .infor-item span {
    font-size: 14px;
    color: #555;
  }
}

.sidebar-sub-item {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 4px;
}

.sidebar-sub-item a {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.sidebar-sub-item img {
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(39%) sepia(93%) saturate(1789%)
    hue-rotate(135deg) brightness(96%) contrast(101%);
}

.sidebar-sub-item .login-icon {
  transition: all 0.3s ease;
}

.sidebar-sub-item:hover a.text-green-pri {
  color: var(--vt-c-red) !important;
}

.sidebar-sub-item:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(90%) saturate(6932%)
    hue-rotate(357deg) brightness(95%) contrast(88%);
}

.sidebar-sub-item:hover .login-icon {
  color: var(--vt-c-red) !important;
}
/* tablet menu */
.tablet-menu-sidebar {
  display: none;
}
#contentText figcaption{
  background: #E5E5E5;
  margin: 0 auto !important;
  padding: 8px;
  width: 95% !important;
}

.no-hover-effect:hover .red-dot {
  display: none !important;
}
.dhd-temp{
  left: 18px;
  bottom: 2px;
  font-size: 13px;
  position: absolute;
}

.title-dhd{
  color: #ED1C24;
  font-weight: 500;
}
.title-dhd:hover{
  color: var(--vt-c-green);
}
@media (max-width: 576px) {
  .dhd-temp {
    left: 120px;
    bottom: 10px;
    font-size: 13px;
    position: absolute;
  }
}
@media (min-width: 993px and max-width: 1400px) {
  .menu-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-family: "oswald", serif;
  }
}