@charset "UTF-8";

:root {
  --transition: all ease 0.4s;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --main-color: #222222;
  --gray-color: #666666;
  --red-color: #B5292F;
  --vuta-shadow: 0 24px 48px rgba(0, 0, 0, 0.075);
  --radius: 11px
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25
}

a,
button,
i,
img {
  transition: var(--transition)
}

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

  100% {
    opacity: 1;
    transform: none
  }
}

.fadeindown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both
}

@media screen and (max-width:996px) {
  .fadeindown {
    animation: none
  }
}

.line-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical
}

.line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}

.hero-section {
  background: var(--gradient-primary);
  color: #fff;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  33% {
    transform: translateY(-10px) rotate(1deg)
  }

  66% {
    transform: translateY(5px) rotate(-1deg)
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2
}

@media screen and (max-width:767px) {
  .hero-title {
    font-size: 2rem;
    text-align: center
  }
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: .9;
  line-height: 1.8;
  position: relative;
  z-index: 2
}

@media screen and (max-width:767px) {
  .hero-description {
    text-align: center
  }
}

.hero-buttons {
  position: relative;
  z-index: 2
}

@media screen and (max-width:767px) {
  .hero-buttons {
    text-align: center
  }
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  margin-right: 1rem;
  margin-bottom: 1rem
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.hero-buttons .btn:active {
  transform: translateY(0)
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition)
}

.hero-image img:hover {
  transform: scale(1.05) rotate(2deg)
}

.features-section {
  padding: 80px 0
}

@media screen and (max-width:767px) {
  .features-section {
    padding: 40px 0
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1rem auto 0;
  border-radius: 2px
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  padding: 2rem;
  border: 2px solid transparent
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
  border-color: var(--primary)
}

.feature-icon {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

@media screen and (max-width:767px) {
  .feature-icon {
    font-size: 2.5rem
  }
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 1rem 0
}

.feature-description {
  color: #666;
  line-height: 1.8;
  font-size: 1rem
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff
}

.btn-primary:hover {
  background: linear-gradient(45deg, #5a6fd8, #654a92);
  color: #fff
}

.btn-primary:focus {
  box-shadow: 0 0 0 .2rem rgba(102, 126, 234, .25)
}

.btn-outline-secondary {
  border: 2px solid rgba(255, 255, 255, .3);
  color: #fff;
  background: 0 0
}

.btn-outline-secondary:hover {
  background: #fff;
  color: #333;
  border-color: #fff
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.shadow-custom {
  box-shadow: var(--shadow)
}

.about-hero {
  background: var(--gradient-primary)
}

.about-hero .display-4 {
  font-size: clamp(2.5rem, 5vw, 3.5rem)
}

.team-card {
  transition: var(--transition)
}

.team-card:hover {
  transform: translateY(-5px)
}

.team-card .team-avatar img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--primary)
}

html {
  overflow-x: hidden
}

body {
  overflow: hidden;
  font-family: Poppins, sans-serif;
  font-size: 16px
}

.vuta-section {
  padding: 25px 0;
  transition: transform 1s, opacity 1s
}

.vuta-row-center {
  display: flex;
  align-items: center
}

.menu__page {
  margin-top: 0
}

.btn__global-register {
  display: flex;
  justify-content: center
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
}

@media (max-width:575.98px) {
  .fixed-top {
    background: var(--red-color) !important
  }
}

@media (max-width:575.98px) {
  .vuta-order-sm-first {
    order: -1
  }
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem)
}

.section__bg {
  background-image: url(https://latien.datnenkhanhhoa.net/wp-content/uploads/2025/10/backgroung-La-Tien-Villa-Nha-trang.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center !important;
  align-self: center !important;
  vertical-align: middle !important;
  background-position: center
}

.vuta-btn,
.vuta-btn:link,
.vuta-btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .3s
}

.vuta-btn--full:link,
.vuta-btn--full:visited {
  background-color: #e67e22;
  color: #fff
}

.vuta-btn--full:active,
.vuta-btn--full:hover {
  background-color: #cf711f
}

.vuta-btn--outline:link,
.vuta-btn--outline:visited {
  background-color: #fff;
  color: #555
}

.vuta-btn--outline:active,
.vuta-btn--outline:hover {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #1098ad
}

.vuta-btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 12px
}

.vuta-btn--form:hover {
  background-color: #fff;
  color: #555
}

.test-section {
  margin: 100px 0;
  display: grid;
  place-items: center
}

.test-section .item {
  width: 300px;
  height: 600px;
  box-shadow: var(--vuta-shadow)
}

.header {
  padding: 8px 0;
  top: 0;
  width: 100%;
  z-index: 99
}

@media (max-width:575.98px) {
  .header {
    background-color: var(--red-color)
  }
}

.header .header__main {
  position: relative;
  width: 100%;
  top: 0
}

.header__logo .box-img {
  display: block;
  max-width: 310px;
  overflow: hidden
}

@media (max-width:575.98px) {
  .header__logo .box-img {
    max-width: 120px
  }
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.header .header-menu .accordion {
  display: flex;
  gap: 16px
}

.header .header-menu .accordion li {
  position: relative;
  z-index: 1
}

.header .header-menu .accordion li::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--main-color);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  opacity: 0;
  filter: alpha(opacity=0)
}

.header .header-menu .accordion li:hover::before {
  width: 100%;
  opacity: 1
}

.header .header-menu .accordion li a {
  color: #000;
  font-size: 16px;
  color: var(--main-color);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px
}

.header .header-menu .accordion li a:hover {
  color: var(--main-color)
}

@media (max-width:991.98px) {
  .header .header-menu .accordion {
    display: none
  }
}

.header .header-menu .accordion .dropdown .link a i {
  position: relative;
  right: -6px
}

.header .header-menu .accordion .dropdown .sub-menu li a {
  white-space: nowrap;
  padding: 10px 15px;
  border-bottom: 1px dashed #cdcdcd;
  display: flex;
  color: #000
}

.header .header-menu .accordion .dropdown .sub-menu li a:hover {
  background: #000;
  color: #fff
}

.header .header-menu .accordion .dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible
}

.header .header-menu .accordion .dropdown .sub-menu {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease .4s;
  display: block;
  z-index: 99;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1)
}

.header__hotline-link {
  border-radius: var(--radius);
  padding: 12px 20px;
  background-color: var(--vuta-blue);
  color: #fff;
  background-image: linear-gradient(120deg, transparent 0, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all .4s;
  border-radius: var(--radius);
  border: 3px solid var(--vuta-blue)
}

.header__hotline-link:hover {
  background-position: 100%;
  color: var(--vuta-blue);
  background-color: #ccc;
  border-radius: var(--radius)
}

.header__hotline-link span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase
}

@media (max-width:991.98px) {
  .header__bottom {
    position: fixed;
    top: 0;
    background-color: #fff !important;
    left: 0;
    width: 100%;
    z-index: 991;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
  }
}

.noti-header {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--red-color);
  border-bottom: 1px solid rgba(181, 41, 47, .12)
}

@media (max-width:575.98px) {
  .noti-header {
    background: #ffe600
  }
}

.noti-header.active {
  display: flex
}

.noti-header .noti-content {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-left: auto
}

@media (max-width:575.98px) {
  .noti-header .noti-content {
    color: var(--red-color)
  }
}

.noti-header .close-noti {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background-color .2s ease
}

.noti-header .close-noti:hover {
  background-color: rgba(17, 17, 17, .08)
}

.noti-header .close-noti svg {
  display: block
}

.noti-header .close-noti svg path {
  stroke: #fff
}

@media (max-width:575.98px) {
  .noti-header .close-noti svg path {
    fill: var(--red-color)
  }
}

@media (max-width:575.98px) {
  .noti-header {
    padding: 8px 12px;
    gap: 8px
  }

  .noti-header .noti-content {
    font-size: 12px
  }
}

.header.fixed-top .noti-header {
  display: none
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

@media (max-width:575.98px) {
  .header-top {
    display: none
  }
}

.header-top .list-nav {
  display: flex;
  align-items: center;
  gap: 16px
}

.header-top .list-nav .address-store .dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px
}

.header-top .list-nav .address-store .dropdown-btn .text {
  font-size: 16px;
  font-weight: 600
}

.header-top .list-nav .bh-home-contact .icon {
  margin-right: 10px
}

.header-top .list-nav .bh-home-contact .text {
  line-height: 100%;
  letter-spacing: .04em;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px
}

.header-top .list-nav .bh-cart-total {
  display: flex;
  align-items: center;
  cursor: pointer
}

.header-top .list-nav .bh-cart-total .icn-web {
  margin-right: 10px
}

.header-top .list-nav .bh-cart-total .total {
  line-height: 100%;
  letter-spacing: .04em;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px
}

.header-top .list-nav .bh-cart-total .quantity {
  width: 28px;
  height: 28px;
  margin-left: 10px;
  background: #ffe600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  line-height: 100%;
  color: #222
}

.header-top .list-nav .bh-cart-total .quantity .number {
  line-height: 100%;
  letter-spacing: .04em;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px
}

.header-bottom .menu-web--content {
  display: flex;
  align-items: center
}

.header-bottom .menu-web--content .src-web {
  display: flex;
  align-items: center;
  gap: 8px
}

.header-bottom .menu-web--content .src-web .text {
  font-size: 16px;
  font-weight: 600
}

.header-bottom .menu-web--content .list-menu--fix {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px
}

@media (max-width:575.98px) {
  .header-bottom .menu-web--content .list-menu--fix {
    display: none
  }
}

.header-bottom .menu-web--content .list-menu--fix li {
  cursor: pointer
}

.header-bottom .menu-web--content .list-menu--fix li .txt {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color)
}

.header-bottom .menu-web--content .searchBox {
  margin-left: auto
}

.address-store {
  position: relative
}

.address-store .dropdown-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 120px;
  height: 30px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 0 8px;
  cursor: pointer;
  transition: all .3s ease
}

.address-store .dropdown-btn:hover {
  border-color: #b5292f
}

.address-store .dropdown-btn.active {
  border-color: #b5292f
}

.address-store .dropdown-btn.active .icon-web svg {
  transform: rotate(180deg)
}

.address-store .dropdown-btn .text {
  margin-right: auto;
  font-size: 14px;
  line-height: 100%;
  display: block;
  color: var(--main-color)
}

.address-store .dropdown-btn .icon-web {
  margin-left: 10px;
  width: 10px;
  display: block;
  transition: transform .3s ease
}

.address-store .dropdown-btn .icon-web svg {
  display: block;
  transition: transform .3s ease
}

.address-store .dropdown-box {
  z-index: 2;
  position: absolute;
  top: 100%;
  padding-top: 5px;
  opacity: 0;
  visibility: hidden;
  right: 0;
  width: 100%;
  min-width: 102px;
  transition: all .3s ease
}

.address-store .dropdown-box.active {
  opacity: 1;
  visibility: visible
}

.address-store .dropdown-box .droplist {
  padding: 10px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid #e0e0e0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  backdrop-filter: blur(22px)
}

.address-store .dropdown-box .local-change {
  font-size: 14px;
  line-height: 100%;
  color: var(--main-color);
  display: block;
  padding: 8px 5px;
  cursor: pointer;
  border-radius: 3px;
  transition: all .2s ease
}

.address-store .dropdown-box .local-change:hover {
  background-color: rgba(181, 41, 47, .1);
  color: #b5292f
}

.address-store .dropdown-box .local-change:not(:last-child) {
  margin-bottom: 5px
}

.header.fixed-top .header__logo .box-img {
  max-width: 164px
}

.search-box {
  margin-left: auto
}

@media (max-width:575.98px) {
  .search-box {
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    background-color: #fff;
    display: none;
    z-index: 20
  }

  .search-box.mobile-search-active {
    display: block
  }
}

.search-box .search-group {
  background: #fff;
  opacity: 1;
  width: 300px;
  position: relative
}

@media (max-width:575.98px) {
  .search-box .search-group {
    width: 100%
  }
}

.search-box .search-area {
  display: flex;
  align-items: center
}

@media (max-width:575.98px) {
  .search-box .search-area {
    height: 50px;
    background-color: #fff
  }
}

.search-box .search-area input {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .05);
  background: #f9f9f9;
  font-size: 14px;
  line-height: 40px;
  color: #222;
  outline: 0;
  height: 34px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 33px 0 15px;
  z-index: 1
}

@media (max-width:575.98px) {
  .search-box .search-area input {
    border-radius: 0;
    background-color: #fff;
    height: 50px
  }
}

.search-box .search-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #b5292f;
  border-radius: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 100%;
  color: #fff;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 15px;
  z-index: 2
}

@media (max-width:575.98px) {
  .search-box .search-submit {
    height: 30px;
    width: 88px
  }
}

@media (max-width:575.98px) {
  .search-box .search-submit .icn svg {
    display: none
  }
}

.search-box .search-submit .text {
  display: none
}

@media (max-width:575.98px) {
  .search-box .search-submit .text {
    display: block;
    font-size: 14px
  }
}

.search-box .search-suggest {
  width: 100%;
  position: absolute;
  top: 100%;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 999
}

@media (max-width:575.98px) {
  .search-box .search-suggest {
    padding-top: 0
  }
}

.search-box .search-suggest.active {
  opacity: 1;
  visibility: visible
}

.search-box .search-suggest .suggest-content {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  max-height: 450px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .1);
  overflow-y: scroll;
  overflow-x: hidden;
  overflow-y: overlay
}

@media (max-width:575.98px) {
  .search-box .search-suggest .suggest-content {
    border-radius: 0
  }
}

.search-box .search-suggest .suggest-content .text {
  color: #999;
  font-size: 11px;
  line-height: 130%;
  padding: 12px 15px
}

.search-box .search-suggest .list-linksearch {
  display: flex;
  flex-direction: column;
  width: 100%
}

.search-box .search-suggest .list-linksearch .search-link {
  color: #222;
  font-size: 13px;
  line-height: 35px;
  padding: 0 15px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: background-color .2s ease, color .2s ease
}

.search-box .search-suggest .list-linksearch .search-link:hover {
  background-color: #f5f5f5;
  color: #b5292f
}

.menu-header--mobile {
  display: none
}

@media (max-width:575.98px) {
  .menu-header--mobile {
    display: flex;
    justify-content: space-between;
    align-items: center
  }
}

.search-header--mobile {
  display: none
}

@media (max-width:575.98px) {
  .search-header--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #b5292f;
    cursor: pointer
  }

  .search-header--mobile .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  .search-header--mobile .icon svg {
    display: block
  }
}

.logo-header--mobile {
  display: none
}

@media (max-width:575.98px) {
  .logo-header--mobile {
    display: block;
    width: 187px;
    height: 52px
  }

  .logo-header--mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }
}

.footer {
  background-color: var(--red-color);
  padding: 30px 0
}

@media (max-width:575.98px) {
  .footer {
    background: #fff;
    margin-bottom: 60px
  }
}

.footer .footer-inner {
  display: flex;
  gap: 25px
}

@media (max-width:575.98px) {
  .footer .footer-inner {
    flex-direction: column
  }
}

.footer .box-img {
  text-align: center;
  display: block;
  max-width: 150px;
  overflow: hidden
}

@media (max-width:575.98px) {
  .footer .box-img {
    display: none
  }
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  filter: grayscale(50%);
  transition: translate, filter;
  transition-duration: .3s
}

@media (max-width:575.98px) {
  .footer__social-link {
    width: 42px;
    height: 42px
  }
}

.footer__social-link--facebook {
  background: #4863a9
}

.footer__social-link--youtube {
  background: red
}

.footer__social-link--tiktok {
  background: #000
}

.footer__social-link--twitter {
  background: #4999e6
}

.footer__social-link--linkedin {
  background: #2f71ab
}

.footer__social-link:hover {
  filter: grayscale(0);
  translate: 0 -3px
}

.footer .footer-info {
  display: flex;
  margin-left: 0;
  margin-right: auto;
  gap: 25px
}

@media (max-width:575.98px) {
  .footer .footer-info {
    flex-direction: column
  }
}

.footer .footer-info .list-info--footer {
  width: 250px;
  max-width: 100%;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 25px
}

.footer .footer-info .list-info--footer .item {
  font-size: 14px
}

.footer .footer-info .list-info--footer .item .type {
  margin-bottom: 5px;
  color: #fff;
  font-weight: 700
}

@media (max-width:575.98px) {
  .footer .footer-info .list-info--footer .item .type {
    color: #000
  }
}

.footer .footer-info .list-info--footer .item .text {
  color: #fff
}

@media (max-width:575.98px) {
  .footer .footer-info .list-info--footer .item .text {
    color: #000
  }
}

.footer .footer-info .list-info--footer .item .text a {
  color: #fff;
  text-decoration: underline
}

@media (max-width:575.98px) {
  .footer .footer-info .list-info--footer .item .text a {
    color: #000
  }
}

.footer .footer-last {
  margin-top: 36px
}

.footer .footer-last .flx-last {
  display: flex;
  margin-bottom: 23px;
  font-size: 13px;
  justify-content: space-between
}

@media (max-width:575.98px) {
  .footer .footer-last .flx-last {
    flex-direction: column
  }
}

.footer .footer-last .flx-last .credit {
  font-weight: 600;
  color: #fff
}

@media (max-width:575.98px) {
  .footer .footer-last .flx-last .credit {
    color: #888;
    display: none
  }
}

.footer .footer-last .flx-last .policy {
  font-size: 14px;
  color: #fff;
  font-weight: 600
}

@media (max-width:575.98px) {
  .footer .footer-last .flx-last .policy {
    color: #888
  }
}

.footer .footer-last .flx-last .privacy {
  color: #fff;
  font-weight: 600
}

@media (max-width:575.98px) {
  .footer .footer-last .flx-last .privacy {
    color: #888
  }
}

.footer .footer-last .flx-last .info-company {
  color: #000
}

@media (max-width:575.98px) {
  .footer .footer-last .flx-last .info-company {
    margin-bottom: 16px
  }
}

.footer .footer-last .flx-last .info-company b {
  display: block
}

.footer .footer-last .flx-last .footer-bct {
  margin-right: auto;
  width: 320px;
  margin-left: 40px
}

@media (max-width:575.98px) {
  .footer .footer-last .flx-last .footer-bct {
    width: 150px;
    margin-left: 0
  }
}

.footer .footer-last .flx-last .footer-bct img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

@media (max-width:575.98px) {
  .footer-red {
    color: var(--red-color)
  }
}

.footer-images--mobile {
  display: none
}

@media (max-width:575.98px) {
  .footer-images--mobile {
    display: block
  }
}

.box-content--product .heading {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center
}

.box-content--product .heading .text {
  flex-shrink: 0;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 17px;
  color: var(--main-color);
  display: block
}

@media (max-width:575.98px) {
  .box-content--product .heading .text {
    max-width: 60%;
    text-align: center
  }
}

.box-content--product .heading .icon {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 4px;
  position: relative
}

.box-content--product .heading .icon::before {
  width: 100%;
  height: 1px;
  background: #b5292f;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: ""
}

.box-content--product .heading .icon::after {
  width: 100%;
  height: 1px;
  background: #b5292f;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: ""
}

.box-content--product .desc p {
  color: #888;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0
}

.list-category--inner {
  display: flex;
  flex-direction: column;
  gap: 25px
}

.product-card {
  border-radius: 8px
}

.product-card .product-card-img {
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: block;
  position: relative;
  width: 100%;
  height: 240px;
  border: .5px solid rgba(0, 0, 0, .15)
}

@media (max-width:575.98px) {
  .product-card .product-card-img {
    height: 140px
  }
}

.product-card .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-card .product-card-img .frame-img {
  background-image: url(https://image.bephoa.vn/data/thumb_750/2024/05/202405311659075283.webp);
  position: absolute;
  top: .5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 2
}

.product-card .product-card-img .status {
  background: #ffe600;
  border-radius: 0 14px 14px 0;
  position: absolute;
  left: 0;
  display: inline-flex;
  line-height: 130%;
  color: #222;
  z-index: 3;
  top: 15px;
  font-size: 11px;
  padding: 5px 10px;
  font-weight: 600
}

.product-card .title a {
  font-size: 15px;
  line-height: 130%;
  display: block;
  margin-bottom: 6px;
  color: var(--main-color)
}

.product-card .price {
  display: flex;
  gap: 8px;
  align-items: center
}

.product-card .price .price-new {
  font-size: 13px;
  line-height: 130%;
  font-weight: 600;
  color: var(--red-color)
}

.product-card .price .price-old {
  font-size: 12px;
  line-height: 130%;
  margin-left: 6px;
  text-decoration-line: line-through;
  color: #999
}

.product-card .funcs-box {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.product-card .funcs-box .add-to-card {
  background: var(--red-color);
  color: #fff;
  width: 120px;
  font-size: 13px;
  line-height: 100%;
  border-radius: 25px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

.product-card .funcs-box .buy-now {
  color: #666;
  font-size: 14px;
  text-align: center
}

.product-card .total-food {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 10px 12px;
  border-right: .5px solid rgba(0, 0, 0, .15);
  border-left: .5px solid rgba(0, 0, 0, .15);
  border-bottom: .5px solid rgba(0, 0, 0, .15)
}

.list-product--slider {
  margin: 0 -10px
}

@media (max-width:575.98px) {
  .list-product--slider {
    margin: 10px -5px
  }
}

.list-product--slider .list-product--item {
  margin: 10px 10px
}

@media (max-width:575.98px) {
  .list-product--slider .list-product--item {
    margin: 0 5px
  }
}

.list-product--slider .slick-arrow {
  width: 34px;
  height: 34px;
  z-index: 10;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
  backdrop-filter: blur(4px)
}

@media (max-width:767.98px) {
  .list-product--slider .slick-arrow {
    backdrop-filter: none
  }
}

.list-product--slider .slick-arrow:hover {
  background: rgba(0, 0, 0, .8)
}

.list-product--slider .slick-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  opacity: 1;
  transition: all .3s ease
}

.list-product--slider .slick-arrow.slick-disabled {
  opacity: .3;
  pointer-events: none;
  cursor: default
}

.list-product--slider .slick-prev {
  left: -40px
}

@media (max-width:767.98px) {
  .list-product--slider .slick-prev {
    left: 0
  }
}

.list-product--slider .slick-prev::before {
  content: "\f053"
}

.list-product--slider .slick-next {
  right: -40px
}

@media (max-width:767.98px) {
  .list-product--slider .slick-next {
    right: 0
  }
}

.list-product--slider .slick-next::before {
  content: "\f054"
}

.view-all {
  border-radius: 6px;
  border: 1px solid rgba(120, 97, 75, .3);
  background: #fff;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .03);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .03);
  -webkit-transition: .15s ease;
  transition: .15s ease;
  margin: -5px auto 0;
  width: 180px;
  height: 35px;
  text-align: center;
  font-size: 15px;
  line-height: 130%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.view-all a {
  color: var(--main-color)
}

@keyframes shake {

  0%,
  100% {
    translate: 0
  }

  25%,
  75% {
    translate: 4px
  }

  50% {
    translate: -4px
  }
}

.top-bar {
  position: relative;
  z-index: 1;
  padding: 20px 0
}

@media (max-width:1199.98px) {
  .navbar-mega {
    margin-left: 28px
  }
}

@media (max-width:991.98px) {
  .navbar-mega {
    position: fixed;
    inset: 0 50% 0 0;
    z-index: 9;
    margin-left: 0;
    padding: 20px 0;
    border-radius: 0 20px 20px 0;
    background: #fff;
    translate: -100%;
    transition: translate .5s
  }

  .navbar-mega.show {
    translate: 0;
    box-shadow: 0 40px 90px 20px rgba(200, 200, 200, .4)
  }

  .navbar-mega.show~.navbar__overlay {
    visibility: visible;
    opacity: 1
  }
}

@media (max-width:575.98px) {
  .navbar-mega {
    inset: 0 20% 0 0
  }
}

.navbar__close-btn {
  display: none
}

@media (max-width:991.98px) {
  .navbar__close-btn {
    display: block;
    padding: 10px 40px
  }
}

@media (max-width:575.98px) {
  .navbar__close-btn {
    padding: 0 20px 10px;
    display: none
  }
}

.navbar__overlay {
  visibility: hidden;
  opacity: 0
}

@media (max-width:991.98px) {
  .navbar__overlay {
    position: fixed;
    inset: 0;
    z-index: 8;
    transition: opacity, visibility;
    transition-duration: .5s;
    background: rgba(0, 0, 0, .4)
  }
}

.mega-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, .5);
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
  pointer-events: none
}

.mega-menu-overlay.active {
  visibility: visible;
  opacity: 1
}

@media (max-width:991.98px) {
  .mega-menu-overlay {
    display: none
  }
}

@media (max-width:991.98px) {
  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    height: calc(100% - 40px)
  }
}

@media (max-width:767.98px) {
  .navbar__list {
    height: calc(100% - 140px)
  }
}

@media (max-width:575.98px) {
  .navbar__list {
    height: calc(100% - 124px)
  }
}

.navbar__item {
  padding: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px
}

.navbar__item:hover {
  cursor: pointer
}

.navbar__item:hover .dropdown-mega {
  display: block
}

@media (max-width:991.98px) {
  .navbar__item {
    width: 100%
  }

  .navbar__item:hover .dropdown-mega {
    display: none
  }

  .navbar__item--active .dropdown-mega {
    display: block !important
  }
}

.navbar__link {
  gap: 6px;
  color: var(--text-color);
  height: 50px;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 146.667%
}

.navbar__link svg {
  position: relative;
  top: -1px
}

@media (max-width:991.98px) {
  .navbar__link {
    justify-content: space-between;
    padding: 0 40px;
    font-size: 16px;
    line-height: 150%
  }
}

@media (max-width:575.98px) {
  .navbar__link {
    height: 44px;
    padding: 0 20px
  }
}

.navbar__arrow {
  margin-top: 3px
}

@media (max-width:991.98px) {
  .navbar__arrow {
    rotate: -90deg;
    transition: rotate .3s
  }
}

.navbar__item--active .navbar__arrow {
  rotate: 0deg
}

.dropdown-mega {
  position: absolute;
  width: min(600px, 100%);
  padding-top: 10px;
  display: none
}

@media (max-width:991.98px) {
  .dropdown-mega {
    position: initial;
    padding-top: 0
  }
}

.dropdown__inner {
  --inner-padding: 30px;
  position: relative;
  padding: 16px var(--inner-padding);
  border-radius: 8px;
  background: #fff;
  z-index: 10;
  box-shadow: 0 40px 90px 20px rgba(200, 200, 200, .4)
}

.dropdown__inner::before {
  content: url(../icons/dropdown-arrow.svg);
  position: absolute;
  top: -13px;
  left: var(--arrow-left-pos);
  translate: -50%;
  filter: var(--dropdown-arrow-color)
}

@media (max-width:991.98px) {
  .dropdown__inner {
    padding: 0 40px;
    border-radius: 0;
    background: 0 0;
    box-shadow: none
  }

  .dropdown__inner::before {
    content: none
  }
}

@media (max-width:575.98px) {
  .dropdown__inner {
    padding: 0 20px
  }
}

.top-menu {
  --main-column-width: 292px;
  --max-inner-height: calc(min(582px, 100vh - 158px) - var(--inner-padding) * 2);
  position: relative
}

.top-menu__main {
  width: var(--main-column-width);
  height: var(--max-inner-height);
  border-right: 1px solid #d2d1d6;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

@media (max-width:991.98px) {
  .top-menu__main {
    width: 100%;
    height: auto;
    border-right: none
  }
}

.menu-column {
  display: flex;
  gap: 14px
}

.menu-column+.menu-column {
  margin-top: 22px
}

@media (max-width:991.98px) {
  .menu-column {
    margin-top: 10px
  }
}

.menu-column__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px
}

@media (max-width:1199.98px) {
  .menu-column__icon {
    display: none
  }
}

@media (max-width:991.98px) {
  .menu-column__icon {
    display: block
  }
}

.menu-column__content {
  flex: 1
}

.menu-column__icon-1 {
  width: 30px;
  height: 30px;
  object-fit: contain
}

.menu-column__icon-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--menu-column-icon-color)
}

.menu-column__heading {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%
}

.menu-column__heading a {
  color: var(--text-color)
}

@media (max-width:991.98px) {
  .menu-column__heading {
    margin-bottom: 26px
  }
}

.menu-column__list {
  margin-top: 19px
}

@media (max-width:991.98px) {
  .menu-column__list {
    margin-top: 0
  }
}

.menu-column__item--active .sub-menu {
  display: grid;
  grid-template-columns: 1fr
}

.menu-column__item:hover .sub-menu {
  display: grid;
  grid-template-columns: 1fr
}

.menu-column__item--active>.menu-column__link,
.menu-column__item:hover>.menu-column__link {
  color: var(--red-color);
  font-weight: 500
}

.menu-column__link {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 142.857%;
  color: var(--main-color);
  font-weight: 600
}

.sub-menu {
  position: absolute;
  inset: 0 0 0 var(--main-column-width);
  display: none;
  gap: var(--inner-padding);
  padding-left: var(--inner-padding);
  overflow-y: auto
}

@media (max-width:991.98px) {
  .sub-menu {
    position: initial;
    grid-template-columns: 1fr;
    padding-left: 0
  }
}

.sub-menu--not-main {
  position: initial;
  inset: initial;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--max-inner-height);
  padding-left: 0
}

@media (max-width:991.98px) {
  .sub-menu--not-main {
    grid-template-columns: 1fr;
    height: auto
  }
}

.slideshow {
  position: relative
}

.slideshow__inner {
  display: flex;
  overflow: hidden
}

.slideshow__item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-top: 26%
}

@media (max-width:767.98px) {
  .slideshow__item {
    padding-top: 50%
  }
}

.slideshow__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px
}

.slideshow__page {
  --color: #fff;
  position: absolute;
  bottom: 15%;
  left: 5.2%;
  width: 12.8%;
  display: flex;
  align-items: center;
  column-gap: 24px
}

.slideshow__num {
  font-size: 18px;
  font-weight: 500;
  line-height: 144.444%;
  color: var(--color)
}

@media (max-width:767.98px) {
  .slideshow__num {
    font-size: 14px;
    line-height: 142.857%
  }
}

.slideshow__slider {
  position: relative;
  width: 100%;
  height: 4px;
  flex-shrink: 0;
  background: var(--color)
}

.slideshow__slider::after,
.slideshow__slider::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 4px solid var(--color);
  border-radius: 50%
}

@media (max-width:767.98px) {

  .slideshow__slider::after,
  .slideshow__slider::before {
    border-width: 3px
  }
}

.slideshow__slider::before {
  left: 0;
  translate: -90% -50%
}

.slideshow__slider::after {
  right: 0;
  translate: 90% -50%
}

.modal,
.modal__overlay {
  position: fixed;
  inset: 0
}

.modal {
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity, visibility;
  transition-duration: .2s
}

.modal.show {
  opacity: 1;
  visibility: visible
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 35px;
  padding: 3px 20px;
  opacity: .7
}

.modal__close:hover {
  opacity: 1
}

.modal__overlay {
  background: rgba(0, 0, 0, .4)
}

.modal__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 141.667%
}

.modal__body {
  padding-right: 20px;
  max-height: calc(100vh - 180px);
  overflow-y: auto
}

.modal__content {
  position: relative;
  z-index: 1;
  width: min(var(--content-width, 800px), 100% - 40px);
  padding: 30px 10px 30px 30px;
  border-radius: 20px;
  background: var(--dialog-bg);
  box-shadow: 0 20px 60px 10px var(--dialog-shadow)
}

@media (max-width:575.98px) {
  .modal__content {
    padding: 20px 0 20px 20px
  }
}

.modal--small .modal__content {
  --content-width: 400px
}

.modal--large .modal__content {
  --content-width: 1100px
}

.modal--fill .modal__content {
  width: 100%;
  height: 100%;
  border-radius: 0
}

.modal__text {
  font-size: 18px;
  line-height: 1.5
}

.modal__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  padding-right: 20px
}

@media (max-width:767.98px) {
  .modal__bottom {
    gap: 20px
  }
}

@media (max-width:575.98px) {
  .modal__bottom {
    margin-top: 40px
  }
}

@media (max-width:767.98px) {
  .modal__btn {
    flex: 1
  }

  .navbar__list {
    display: none
  }
}

.icon-corn::before {
  content: "\eaa0"
}

.whyus-inner {
  display: flex;
  flex-direction: column;
  gap: 25px
}

@media (max-width:575.98px) {
  .whyus-slider {
    margin: 0 5px
  }
}

.whyus-slider .whyus-item {
  margin: 10px 10px
}

@media (max-width:575.98px) {
  .whyus-slider .whyus-item {
    margin: 0 5px
  }
}

.whyus-slider .whyus-item .item {
  padding: 18px 27px;
  background: #fff;
  border: .5px solid #e0c6ae;
  box-sizing: border-box;
  box-shadow: 0 6px 30px rgba(241, 221, 202, .51);
  border-radius: 10px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.whyus-slider .whyus-item .item .box-img {
  position: relative;
  padding-top: 100%
}

.whyus-slider .whyus-item .item .box-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain
}

.whyus-slider .whyus-item .item .content h4 {
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #78614b
}

.gap-custom {
  margin-bottom: 22px
}

@media (max-width:575.98px) {
  .gap-custom {
    margin-bottom: 0
  }
}

.category-main--content {
  padding-top: 50px;
  margin-bottom: 50px
}

@media (max-width:575.98px) {
  .category-main--content {
    padding-top: 30px;
    margin-bottom: 30px
  }
}

.category-main--content .content-header h2 {
  color: var(--main-color);
  text-align: center;
  font-size: 30px;
  line-height: 130%;
  margin-bottom: 10px
}

@media (max-width:575.98px) {
  .category-main--content .content-header h2 {
    text-align: left
  }
}

.category-main--content .content-header p {
  color: #888;
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500
}

@media (max-width:575.98px) {
  .category-main--content .content-header p {
    text-align: left
  }
}

@media (max-width:575.98px) {
  .category-main--content {
    position: relative
  }

  .category-main--content::before {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    background: linear-gradient(179deg, #ffe6ce 36.4%, rgba(255, 230, 206, 0) 100%);
    content: ""
  }
}

.food-categories .list-categories {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 6px;
  border: .5px solid rgba(0, 0, 0, .15);
  background: #fbfbfb;
  padding: 20px 40px;
  grid-column-gap: 25px;
  grid-row-gap: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.food-categories .list-categories::-webkit-scrollbar {
  display: none
}

@media (max-width:575.98px) {
  .food-categories .list-categories {
    padding: 0;
    background: 0 0;
    display: flex;
    border: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    margin-bottom: 20px
  }
}

.food-categories .list-categories .category-item {
  flex-shrink: 0
}

.food-categories .list-categories .category-item a {
  color: var(--main-color);
  font-size: 14px;
  display: block;
  line-height: 130%;
  font-weight: 600
}

@media (max-width:575.98px) {
  .food-categories .list-categories .category-item a {
    display: inline-flex;
    height: 30px;
    padding: 0 15px;
    white-space: no-wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #f6f6f6;
    font-size: 13px
  }
}

.food-categories .list-categories .category-item a.active {
  color: var(--red-color)
}

.go-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  cursor: pointer;
  gap: 4px
}

.go-to-top .text {
  color: #a08c78;
  font-size: 14px;
  display: block
}

@media (max-width:575.98px) {
  .food-products .product-card {
    padding: 8px 0;
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 0 !important;
    border-top: .5px solid #e7e7e7
  }

  .food-products .product-card:last-child {
    border-bottom: .5px solid #e7e7e7
  }

  .food-products .product-card .product-card-img {
    width: 100px !important;
    height: 100px !important;
    flex-shrink: 0;
    border-radius: 8px !important;
    overflow: hidden
  }

  .food-products .product-card .total-food {
    display: flex;
    flex-direction: column;
    align-items: start;
    border: none !important
  }

  .food-products .product-card .total-food .title {
    text-align: left
  }

  .food-products .product-card .total-food .funcs-box {
    display: flex;
    align-items: center;
    flex-direction: row
  }

  .food-products .product-card .total-food .funcs-box .buy-now {
    order: -1;
    background: #f7f7f7;
    color: #666;
    width: calc((100% - 12px)/ 2)
  }
}

.cartbuy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  scrollbar-width: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .8s, opacity .8s ease
}

.cartbuy-modal.show-modal {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity .8s ease
}

.cartbuy-modal.show-modal .cartbuy-modal--overlay {
  opacity: 1
}

.cartbuy-modal.show-modal .cartbuy-modal--container {
  transform: translateY(0);
  opacity: 1
}

.cartbuy-modal .cartbuy-modal--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5019607843);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .8s ease
}

.cartbuy-modal .cartbuy-modal--container {
  position: relative;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 60px);
  min-height: unset;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .2509803922), 0 0 0 1px rgba(0, 0, 0, .0509803922);
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: translateY(120px);
  opacity: 0;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), opacity .8s ease
}

@media (max-width:575.98px) {
  .cartbuy-modal .cartbuy-modal--container {
    max-height: 80vh
  }
}

.cartbuy-modal .cartbuy-modal--container .cartbuy-modal--header {
  color: #fff;
  border-radius: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.cartbuy-modal .cartbuy-modal--container .cartbuy-modal--header .cartbuy-modal--close {
  position: absolute;
  left: auto;
  width: 36px;
  height: 36px;
  right: 20px;
  top: 20px;
  background-color: #fff;
  border: 2px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all .2s ease;
  z-index: 2
}

.cartbuy-modal .cartbuy-modal--container .cartbuy-modal--header .cartbuy-modal--close svg {
  font-size: 48px
}

.cartbuy-modal .cartbuy-modal--container .cartbuy-modal--header .cartbuy-modal--close svg path {
  stroke: #000
}

.cartbuy-modal .cartbuy-modal--container .cartbuy-modal--header .cartbuy-modal--close:hover {
  background-color: var(--red-color)
}

.cartbuy-slider {
  width: 100%
}

.cartbuy-slider .cart-buy--item .item .box-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden
}

.cartbuy-slider .cart-buy--item .item .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-success-label {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 11000;
  background: #1f9d55;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1803921569);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none
}

.cart-success-label.show {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:575.98px) {
  .cart-success-label {
    left: 12px;
    right: 12px;
    bottom: 14px;
    text-align: center
  }
}

.cartbuy-modal--body {
  padding: 20px
}

.cartbuy-modal--body .name {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  padding-right: 55px;
  color: #222
}

.cartbuy-modal--body .price-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cartbuy-modal--body .price-quantity .price-box {
  gap: 10px;
  display: flex;
  align-items: center
}

.cartbuy-modal--body .price-quantity .price-box .current-price {
  font-size: 20px;
  line-height: 130%;
  color: var(--red-color);
  font-weight: 600
}

.cartbuy-modal--body .price-quantity .price-box .old-price {
  font-size: 14px;
  line-height: 130%;
  color: #999;
  text-decoration: line-through
}

.cartbuy-modal--body .price-quantity .quantitys {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #fff
}

.cartbuy-modal--body .price-quantity .quantitys .quantitys--minus,
.cartbuy-modal--body .price-quantity .quantitys .quantitys--plus {
  width: 32px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center
}

.cartbuy-modal--body .price-quantity .quantitys input {
  height: 34px;
  width: 38px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: 0;
  justify-content: center;
  background: #fff;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 14px;
  line-height: 140%;
  color: #222
}

.cartbuy-modal--body .detail-cartbuy {
  margin-top: 16px
}

.cartbuy-modal--body .order-options {
  margin-top: 16px
}

.cartbuy-modal--body .order-options .text {
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red-color);
  font-weight: 700
}

.cartbuy-modal--body .order-options .option-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #e7e7e7
}

.cartbuy-modal--body .order-options .option-item input[type=checkbox] {
  display: none
}

.cartbuy-modal--body .order-options .option-item input[type=checkbox]:checked+label::before {
  background: var(--red-color);
  border: 1.5px solid var(--red-color)
}

.cartbuy-modal--body .order-options .option-item input[type=checkbox]:checked+label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-image: url(https://image.bephoa.vn/data/web/checkbox-stick.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center
}

.cartbuy-modal--body .order-options .option-item label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 32px
}

.cartbuy-modal--body .order-options .option-item label span {
  display: block
}

.cartbuy-modal--body .order-options .option-item label::before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1.5px solid #000;
  border-radius: 3px;
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all .2s ease
}

.cartbuy-modal--body .order-options .option-item label .text {
  margin-right: auto;
  margin-left: 0;
  font-size: 13px;
  line-height: 140%;
  color: #222;
  margin-bottom: 0;
  font-weight: 400
}

.cartbuy-modal--body .order-options .option-item label .price {
  font-size: 13px;
  line-height: 140%;
  color: #222;
  font-weight: 500
}

.cartbuy-modal--body .notes {
  padding: 20px 0;
  border-top: 1px solid #e7e7e7
}

.cartbuy-modal--body .notes .text {
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 27px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red-color);
  font-weight: 700
}

.cartbuy-modal--body .notes .text-note {
  background: #f7f7f7;
  border-radius: 6px;
  height: 100px;
  width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-size: 13px;
  line-height: 140%;
  color: #222;
  padding: 11px 15px;
  box-sizing: border-box
}

.btns-order--fixed {
  position: sticky;
  z-index: 99;
  bottom: 0;
  transition: bottom .2s ease;
  left: 0;
  right: 0;
  width: 100%;
  border-top: .5px solid #a08c78;
  padding: 12px 20px 15px;
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-sizing: border-box;
  cursor: pointer
}

.btns-order--fixed .price-total .text {
  font-size: 12px;
  line-height: 140%;
  margin-bottom: 3px;
  color: #666
}

.btns-order--fixed .price-total .numb {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red-color);
  font-weight: 600
}

.btns-order--fixed .price-total .numb label {
  font-size: 18px;
  line-height: 130%;
  color: var(--red-color);
  font-weight: 600
}

.btns-order--fixed .atc-btn {
  display: inline-flex;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--red-color);
  border-radius: 34px
}

.slider-count {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  width: 60px;
  left: 20px;
  bottom: 20px;
  font-size: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(30px);
  border-radius: 29px;
  z-index: 3
}

.viewcart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: right;
  scrollbar-width: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .8s, opacity .8s ease
}

.viewcart-modal.show-modal {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity .8s ease
}

.viewcart-modal.show-modal .viewcart-modal--overlay {
  opacity: 1
}

.viewcart-modal.show-modal .viewcart-modal--container {
  opacity: 1
}

.viewcart-modal .viewcart-modal--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5019607843);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .8s ease
}

.viewcart-modal .viewcart-modal--container {
  position: relative;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 18px);
  min-height: unset;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .2509803922), 0 0 0 1px rgba(0, 0, 0, .0509803922);
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transition: opacity .35s ease
}

@media (max-width:575.98px) {
  .viewcart-modal .viewcart-modal--container {
    max-height: 80vh
  }
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  box-shadow: inset 0 -.5px 0 #e6e6e6
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header .heading {
  display: flex;
  align-items: center;
  gap: 10px
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header .heading .icon {
  display: flex;
  align-items: center;
  justify-content: center
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header .heading .text {
  font-size: 18px;
  font-weight: 700;
  color: #222
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header .viewcart-modal--close {
  width: 36px;
  height: 36px;
  background-color: #222;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all .2s ease;
  flex-shrink: 0
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header .viewcart-modal--close svg path {
  stroke: #fff
}

.viewcart-modal .viewcart-modal--container .viewcart-modal--header .viewcart-modal--close:hover {
  background-color: var(--red-color)
}

.viewcart-modal .order-cart--box {
  flex: 1;
  overflow-y: auto;
  min-height: 0
}

.viewcart-modal .order-cart--box .list-order--cart {
  list-style: none;
  padding: 0;
  margin: 0
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart {
  padding: 16px 20px;
  border-bottom: .5px solid #f0f0f0
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart:last-child {
  border-bottom: none
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info .avatar-food {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: .5px solid #f0f0f0
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info .avatar-food img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info .content-info {
  flex: 1;
  min-width: 0
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info .content-info .name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info .content-info .od-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .order-info .content-info .od-total .od-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--red-color)
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .od-funcs {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .od-funcs a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  border: .5px solid #e6e6e6;
  transition: all .2s ease
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .od-funcs a:hover {
  border-color: var(--red-color);
  color: var(--red-color)
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .od-funcs a .icon {
  display: flex;
  align-items: center
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .od-funcs .update-od {
  color: #222
}

.viewcart-modal .order-cart--box .list-order--cart .item-order--cart .food-order .od-funcs .update-od:hover {
  border-color: #222;
  color: #222;
  background: #f6f6f6
}

.viewcart-modal .footer-viewcart {
  position: sticky;
  bottom: 0;
  background: #fff;
  box-shadow: inset 0 .5px 0 #e6e6e6;
  padding: 16px 20px
}

.viewcart-modal .footer-viewcart .total-bill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

.viewcart-modal .footer-viewcart .total-bill .count {
  display: flex;
  align-items: center;
  gap: 6px
}

.viewcart-modal .footer-viewcart .total-bill .count .text {
  font-size: 14px;
  color: #666;
  font-weight: 500
}

.viewcart-modal .footer-viewcart .total-bill .count .quantity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #222;
  font-weight: 600
}

.viewcart-modal .footer-viewcart .total-bill .count .quantity label {
  font-weight: 700;
  color: var(--red-color)
}

.viewcart-modal .footer-viewcart .total-bill .price-bill {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 14px;
  color: var(--red-color);
  font-weight: 600
}

.viewcart-modal .footer-viewcart .total-bill .price-bill label {
  font-size: 20px;
  font-weight: 700;
  color: var(--red-color);
  cursor: default
}

.viewcart-modal .footer-viewcart .funcs-box {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10px
}

.viewcart-modal .footer-viewcart .funcs-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  box-sizing: border-box
}

@media (max-width:575.98px) {
  .viewcart-modal .footer-viewcart .funcs-box a {
    padding: 12px 8px
  }
}

.viewcart-modal .footer-viewcart .funcs-box .checkout-btn {
  background: #f6f6f6;
  border: 1.5px solid #e6e6e6;
  color: #222
}

.viewcart-modal .footer-viewcart .funcs-box .checkout-btn:hover {
  border-color: #222;
  background: #fff
}

.viewcart-modal .footer-viewcart .funcs-box .checkout-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center
}

.viewcart-modal .footer-viewcart .funcs-box .continue-btn {
  background: var(--red-color);
  color: #fff;
  border: 1.5px solid var(--red-color)
}

.viewcart-modal .footer-viewcart .funcs-box .continue-btn:hover {
  filter: brightness(.9)
}

.viewcart-modal .quantitys {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #fff
}

.viewcart-modal .quantitys .quantitys--minus,
.viewcart-modal .quantitys .quantitys--plus {
  width: 32px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center
}

.viewcart-modal .quantitys input {
  height: 34px;
  width: 38px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: 0;
  justify-content: center;
  background: #fff;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 14px;
  line-height: 140%;
  color: #222
}

.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: right;
  scrollbar-width: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .8s, opacity .8s ease
}

.checkout-modal.show-modal {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity .8s ease
}

.checkout-modal.show-modal .checkout-modal--overlay {
  opacity: 1
}

.checkout-modal.show-modal .checkout-modal--container {
  transform: translateY(0);
  opacity: 1
}

.checkout-modal .checkout-modal--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5019607843);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .8s ease
}

.checkout-modal .checkout-modal--container {
  background: #fff;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  min-height: unset;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .2509803922), 0 0 0 1px rgba(0, 0, 0, .0509803922);
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: translateY(120px);
  opacity: 0;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), opacity .8s ease
}

@media (max-width:575.98px) {
  .checkout-modal .checkout-modal--container {
    max-height: 80vh
  }
}

.checkout-modal .checkout-modal--container .checkout-modal--header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  left: 0;
  top: 0;
  background: #fff;
  height: 62px;
  box-shadow: inset 0 -.5px 0 #e6e6e6;
  z-index: 99999333333333340000000000000;
  width: 100%;
  box-sizing: border-box
}

.checkout-modal .checkout-modal--container .checkout-modal--header .back-btn {
  margin-right: auto
}

.checkout-modal .checkout-modal--container .checkout-modal--header .heading {
  margin-right: auto;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #222
}

.checkout-modal .checkout-modal--container .checkout-modal--header .checkout-modal--close {
  position: absolute;
  left: auto;
  width: 36px;
  height: 36px;
  right: 20px;
  top: 20px;
  background-color: #fff;
  border: 2px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all .2s ease;
  z-index: 2
}

.checkout-modal .checkout-modal--container .checkout-modal--header .checkout-modal--close svg {
  font-size: 48px
}

.checkout-modal .checkout-modal--container .checkout-modal--header .checkout-modal--close svg path {
  stroke: #000
}

.checkout-modal .checkout-modal--container .checkout-modal--header .checkout-modal--close:hover {
  background-color: var(--red-color)
}

.checkout-modal--body .inner {
  padding-top: 20px
}

.checkout-modal--body .checkout-info {
  border: .5px solid rgba(0, 0, 0, .15);
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .03);
  border-radius: 6px;
  margin-bottom: 16px
}

.checkout-modal--body .checkout-info .title {
  padding: 15px 20px 15px 33px;
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  color: #222;
  font-weight: 600;
  border-bottom: 1px solid #e7e7e7
}

.checkout-modal--body .checkout-info .title::before {
  background: var(--red-color);
  width: 4px;
  height: 17px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  content: "";
  position: absolute
}

.checkout-modal--body .checkout-info .content-box {
  padding: 20px
}

.checkout-modal--body .checkout-info .content-box .info-group .label {
  font-size: 14px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600
}

.checkout-modal--body .checkout-info .content-box .info-group+.info-group {
  margin-top: 20px
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order .choose-type-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 0;
  box-sizing: border-box;
  background: #f6f6f6;
  border-bottom: 1.5px solid #f6f6f6;
  border-radius: 6px
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order .choose-type-order .icon {
  width: 32px;
  height: 32px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  margin-right: 11px
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order .choose-type-order .text {
  font-size: 14px;
  color: #222;
  font-weight: 500
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order .choose-type-order.active {
  background: #fff;
  border: 1.5px solid var(--red-color)
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order .shipping .icon {
  background-image: url(https://image.bephoa.vn/data/web/shipping-active.png)
}

.checkout-modal--body .checkout-info .content-box .info-group .type-order .pickup .icon {
  background-image: url(https://image.bephoa.vn/data/web/pickup-active.png)
}

.checkout-modal--body .checkout-info .content-box .info-group .date-order {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

@media (max-width:575.98px) {
  .checkout-modal--body .checkout-info .content-box .info-group .date-order {
    grid-template-columns: repeat(3, 1fr)
  }
}

.checkout-modal--body .checkout-info .content-box .info-group .date-order .pick-date {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 6px;
  font-size: 12px;
  line-height: 100%;
  gap: 4px;
  text-align: center;
  transition: .2s;
  color: #666;
  padding: 10px 0;
  box-sizing: border-box
}

.checkout-modal--body .checkout-info .content-box .info-group .date-order .pick-date.active {
  background: var(--red-color);
  color: #fff
}

.checkout-modal--body .checkout-info .content-box .info-group .date-order .pick-date .text {
  font-size: 12px;
  font-weight: 600
}

.checkout-modal--body .checkout-info .content-box .info-group .date-order .pick-date .date {
  font-size: 12px;
  font-weight: 600
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order {
  display: flex;
  align-items: center;
  gap: 16px
}

@media (max-width:575.98px) {
  .checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order {
    flex-wrap: wrap
  }
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .form-radio {
  display: flex;
  align-items: center;
  gap: 10px
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .form-radio input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--red-color)
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .form-radio label {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  cursor: pointer;
  margin: 0
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .select-timebox .time-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #222;
  background: #f6f6f6;
  border: 1.5px solid #e6e6e6;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all .3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23222' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .select-timebox .time-select:hover {
  border-color: var(--red-color);
  background-color: #fff
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .select-timebox .time-select:focus {
  outline: 0;
  border-color: var(--red-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(var(--red-color-rgb), .1)
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .select-timebox .time-select option {
  padding: 10px;
  font-size: 14px;
  color: #222
}

.checkout-modal--body .checkout-info .content-box .info-group .time-order .choose-time-order .select-timebox .time-select option:disabled {
  color: #999
}

.checkout-modal--body .checkout-info .content-box .info-group .note-order {
  background: #fff6ed;
  width: 100%;
  border: 0;
  box-sizing: border-box;
  min-height: 30px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 13px;
  font-size: 14px;
  color: #222
}

.checkout-modal--body .checkout-info .payment-box {
  padding: 20px
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input {
  margin-bottom: 15px
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f6f6f6;
  border: 1.5px solid #e6e6e6;
  border-radius: 6px;
  transition: all .3s ease
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user:focus-within {
  border-color: var(--red-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1)
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user.error {
  border-color: #ef4444;
  background: #fef2f2
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user .icon svg {
  width: 100%;
  height: 100%
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user input {
  flex: 1;
  border: none;
  background: 0 0;
  outline: 0;
  font-size: 14px;
  color: #222;
  font-weight: 400
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .input-user input::placeholder {
  color: #999
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .warning {
  margin-top: 6px;
  font-size: 13px;
  color: #ef4444;
  display: none
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .warning.show {
  display: block
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city {
  position: relative
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .dropdown-city--btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f6f6f6;
  border: 1.5px solid #e6e6e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .dropdown-city--btn:hover {
  border-color: var(--red-color);
  background: #fff
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .dropdown-city--btn.active {
  border-color: var(--red-color);
  background: #fff
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .dropdown-city--btn .value {
  font-size: 14px;
  color: #222;
  font-weight: 500
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .dropdown-city--btn .text {
  font-size: 13px;
  color: var(--red-color);
  font-weight: 500
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  z-index: 999;
  max-height: 300px;
  overflow: hidden;
  display: none
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city.show {
  display: block
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .label-drop {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #e6e6e6;
  background: #f9f9f9
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content {
  max-height: 250px;
  overflow-y: auto
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content::-webkit-scrollbar {
  width: 6px
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content::-webkit-scrollbar-track {
  background: #f1f1f1
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content::-webkit-scrollbar-thumb:hover {
  background: #999
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content .city-pick {
  list-style: none;
  padding: 0;
  margin: 0
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content .city-pick li .city-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  transition: all .2s ease
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content .city-pick li .city-item:hover {
  background: #f6f6f6;
  color: var(--red-color)
}

.checkout-modal--body .checkout-info .payment-box .form-input--user .form-input .dropdown-city .droplist-city .droplist-content .city-pick li .city-item.active {
  background: var(--red-color);
  color: #fff
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment {
  list-style: none;
  padding: 0;
  margin: 0
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li {
  margin-bottom: 12px
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li:last-child {
  margin-bottom: 0
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li .payment-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f6f6f6;
  border: 1.5px solid #e6e6e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li .payment-type:hover {
  border-color: var(--red-color);
  background: #fff
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li .payment-type.active {
  border-color: var(--red-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .05)
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li .payment-type .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li .payment-type .icon svg {
  width: 100%;
  height: 100%
}

.checkout-modal--body .checkout-info .payment-box ul.list-payment li .payment-type .text {
  font-size: 14px;
  color: #222;
  font-weight: 500
}

.checkout-modal--body .checkout-summary {
  position: sticky;
  top: 80px;
  background: #fff;
  border: .5px solid rgba(0, 0, 0, .15);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .03);
  overflow: hidden
}

.checkout-modal--body .checkout-summary .summary-group .label {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #e7e7e7;
  text-transform: uppercase
}

.checkout-modal--body .checkout-summary .summary-group .bill-total {
  padding: 20px
}

.checkout-modal--body .checkout-summary .summary-group .bill-total .food-total {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.checkout-modal--body .checkout-summary .summary-group .bill-total .food-total+.food-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0
}

.checkout-modal--body .checkout-summary .summary-group .bill-total .food-total .count {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--red-color)
}

.checkout-modal--body .checkout-summary .summary-group .bill-total .food-total .info-food {
  flex: 1
}

.checkout-modal--body .checkout-summary .summary-group .bill-total .food-total .info-food .name-food {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  line-height: 1.4
}

.checkout-modal--body .checkout-summary .summary-group .bill-total .food-total .info-food .price-food {
  font-size: 13px;
  color: #666;
  margin-top: 4px
}

.checkout-modal--body .checkout-summary .bill-payment {
  border-top: 1px solid #e7e7e7;
  padding: 20px
}

.checkout-modal--body .checkout-summary .bill-payment .total-bill-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e7e7
}

.checkout-modal--body .checkout-summary .bill-payment .total-bill-order .price-money--order .text {
  font-size: 14px;
  color: #666;
  font-weight: 500
}

.checkout-modal--body .checkout-summary .bill-payment .total-bill-order .price-money--order .count {
  font-size: 12px;
  color: #999;
  margin-left: 4px
}

.checkout-modal--body .checkout-summary .bill-payment .total-bill-order .price-detail .price {
  font-size: 15px;
  color: #222;
  font-weight: 600
}

.checkout-modal--body .checkout-summary .bill-payment .price-ship {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e7e7e7
}

.checkout-modal--body .checkout-summary .bill-payment .price-ship .text {
  font-size: 14px;
  color: #666;
  font-weight: 500
}

.checkout-modal--body .checkout-summary .bill-payment .price-ship .price {
  font-size: 15px;
  color: #222;
  font-weight: 600
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box {
  padding: 15px 0;
  border-bottom: 1px solid #e7e7e7
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher {
  display: flex;
  gap: 10px
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .input-voucher {
  flex: 1
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .input-voucher input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #222;
  background: #f6f6f6;
  border: 1.5px solid #e6e6e6;
  border-radius: 6px;
  box-sizing: border-box;
  outline: 0;
  transition: all .3s ease
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .input-voucher input::placeholder {
  color: #999
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .input-voucher input:focus {
  border-color: var(--red-color);
  background: #fff
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .submit-voucher-checkout-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--red-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .submit-voucher-checkout-btn:hover {
  background: #c82333;
  transform: translateY(-1px)
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .submit-voucher-checkout-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
  pointer-events: none
}

.checkout-modal--body .checkout-summary .bill-payment .vocher-box .form-input-voucher .submit-voucher-checkout-btn .text {
  white-space: nowrap
}

.checkout-modal--body .checkout-summary .bill-payment .policy-note {
  padding: 15px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6
}

.checkout-modal--body .checkout-summary .bill-payment .policy-note .policy-link {
  color: var(--red-color);
  text-decoration: underline;
  transition: color .3s ease
}

.checkout-modal--body .checkout-summary .bill-payment .policy-note .policy-link:hover {
  color: #c82333
}

.checkout-modal--body .checkout-summary .bill-payment .total-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  margin-bottom: 15px;
  border-top: 2px solid #e7e7e7
}

.checkout-modal--body .checkout-summary .bill-payment .total-checkout .text {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  text-transform: uppercase
}

.checkout-modal--body .checkout-summary .bill-payment .total-checkout .price-bill .price-final {
  font-size: 20px;
  color: var(--red-color);
  font-weight: 700
}

.checkout-modal--body .checkout-summary .bill-payment .complete-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--red-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease
}

.checkout-modal--body .checkout-summary .bill-payment .complete-checkout-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, .3)
}

.checkout-modal--body .checkout-summary .bill-payment .complete-checkout-btn:active {
  transform: translateY(0)
}

.checkout-modal--body .checkout-summary .bill-payment .complete-checkout-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
  pointer-events: none
}

@media (max-width:575.98px) {
  .home-banner {
    margin-top: 0;
    position: relative
  }
}

@media (max-width:575.98px) {
  .home-banner .vuta-container {
    padding: 0 0 !important
  }
}

.home-contact--mobile {
  display: none
}

@media (max-width:575.98px) {
  .home-contact--mobile {
    display: block;
    background: #fff;
    width: 335px;
    border: .7px solid #d0d0d0;
    box-sizing: border-box;
    border-radius: 52px;
    position: relative;
    margin: 50px auto 33px
  }
}

@media (max-width:575.98px) {
  .home-contact--mobile .text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    top: -4px;
    display: inline-block;
    padding: 0 9px;
    text-align: center;
    letter-spacing: .4em;
    text-transform: uppercase;
    background: #fff;
    color: var(--red-color)
  }
}

.home-contact--mobile .call-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px
}

.home-contact--mobile .call-to .text2 {
  color: var(--main-color);
  font-weight: 700;
  font-size: 16px
}

.slider-count--home {
  display: none
}

@media (max-width:575.98px) {
  .slider-count--home {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    width: 60px;
    left: 20px;
    bottom: 20px;
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(30px);
    border-radius: 29px;
    color: #fff;
    z-index: 3
  }
}

.cart-bar--fixed {
  display: none
}

@media (max-width:575.98px) {
  .cart-bar--fixed {
    position: fixed;
    left: 16px;
    bottom: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 40px;
    border: 1px solid #b0c7a7;
    background: rgba(241, 250, 237, .9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    color: #fff;
    width: calc(100% - 65px);
    cursor: pointer;
    transition: all ease .3s
  }
}

.cart-bar--fixed:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .24);
  transform: translateY(-2px)
}

.cart-bar--fixed .cart-bar__left {
  display: flex;
  align-items: center;
  gap: 8px
}

.cart-bar--fixed .cart-bar__left .cart-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #629050;
  border-radius: 50%;
  font-size: 13px
}

.cart-bar--fixed .cart-bar__left .cart-bar__text {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: #629050
}

.cart-bar--fixed .cart-bar__price {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: #000
}

.suggest-food {
  padding: 20px 0;
  margin-top: 8px;
  border-top: 1px solid #e7e7e7
}

.suggest-food .suggest-food--title {
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red-color);
  font-weight: 700
}

.suggest-food--slider .suggest-food--item {
  margin: 10px 5px
}

.suggest-food--slider .suggest-food--item .suggest-card {
  display: flex;
  border: .8px solid #d0d0d0;
  gap: 8px;
  padding: 8px;
  border-radius: 8px
}

.suggest-food--slider .suggest-food--item .suggest-card.sale .box-img .status {
  opacity: 1;
  visibility: visible
}

.suggest-food--slider .suggest-food--item .suggest-card .box-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  position: relative
}

.suggest-food--slider .suggest-food--item .suggest-card .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.suggest-food--slider .suggest-food--item .suggest-card .box-img .status {
  background: #ffe600;
  border-radius: 0 14px 14px 0;
  position: absolute;
  left: 0;
  display: inline-flex;
  opacity: 0;
  visibility: hidden;
  line-height: 130%;
  font-weight: 500;
  color: #222;
  top: 5px;
  font-size: 9px;
  padding: 4px 6px
}

.suggest-food--slider .suggest-food--item .suggest-card .contents .name {
  font-size: 16px;
  margin-bottom: 8px;
  padding-right: 0
}

.suggest-food--slider .suggest-food--item .suggest-card .contents .prices {
  display: flex;
  gap: 8px;
  align-items: center
}

.suggest-food--slider .suggest-food--item .suggest-card .contents .prices .current-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--red-color)
}

.suggest-food--slider .suggest-food--item .suggest-card .contents .prices .old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through
}

.suggest-food--slider .slick-arrow {
  position: absolute;
  top: -36px;
  width: 20px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
  border: 1px solid #666;
  border-radius: 50%;
  background: #666;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center
}

.suggest-food--slider .slick-arrow.slick-disabled {
  opacity: .3;
  pointer-events: none;
  cursor: default
}

.suggest-food--slider .slick-arrow:hover {
  background: #888
}

.suggest-food--slider .slick-arrow:hover::before {
  color: #fff
}

.suggest-food--slider .slick-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  opacity: 1;
  transition: all .3s ease
}

.suggest-food--slider .slick-prev {
  right: 30px;
  left: auto
}

.suggest-food--slider .slick-next::before {
  content: "\f054"
}

.suggest-food--slider .slick-next {
  right: 0
}

.suggest-food--slider .slick-prev::before {
  content: "\f053"
}

.blog-detail {
  background: #f5f5f7;
  padding: 40px 0;
  color: #333
}

.policy-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px
}

.blog-detail p {
  line-height: 1.7;
  margin-bottom: 16px
}

.blog-detail h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 15px
}

.blog-detail h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px
}

.blog-detail ul {
  padding-left: 20px;
  margin-bottom: 20px
}

.blog-detail li {
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: disc
}

.blog-detail hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0
}

.thankyou-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: right;
  scrollbar-width: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .8s, opacity .8s ease
}

.thankyou-modal.show-modal {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity .8s ease
}

.thankyou-modal.show-modal .thankyou-modal--overlay {
  opacity: 1
}

.thankyou-modal.show-modal .thankyou-modal--container {
  transform: translateY(0);
  opacity: 1
}

.thankyou-modal .thankyou-modal--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5019607843);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .8s ease
}

.thankyou-modal .thankyou-modal--container {
  background: #fff;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  min-height: unset;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .2509803922), 0 0 0 1px rgba(0, 0, 0, .0509803922);
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: translateY(120px);
  opacity: 0;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), opacity .8s ease
}

@media (max-width:575.98px) {
  .thankyou-modal .thankyou-modal--container {
    max-height: 80vh
  }
}

.order-success {
  display: flex;
  justify-content: center;
  padding: 40px 16px
}

.order-success__container {
  width: 800px;
  background: #fff;
  border-radius: 12px;
  padding: 24px
}

@media (max-width:575.98px) {
  .order-success__container {
    padding: 0
  }
}

.order-success__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee
}

.order-success__back {
  position: absolute;
  left: 0;
  text-decoration: none;
  font-size: 20px
}

.order-success__title {
  font-size: 18px;
  font-weight: 600
}

.order-success__status {
  text-align: center;
  margin-bottom: 20px
}

.order-success__logo {
  position: relative;
  width: 180px;
  margin: auto
}

.order-success__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.order-success__check {
  position: absolute;
  right: -5px;
  top: -5px;
  background: #4caf50;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.order-success__heading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px
}

.order-success__desc {
  color: #666;
  font-size: 14px
}

.order-success__order {
  margin-top: 10px
}

.order-success__order span {
  color: var(--red-color);
  font-size: 12px;
  display: block
}

.order-success__order strong {
  font-size: 18px
}

.order-success__payment {
  background: #f5ede5;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin: 20px 0
}

.order-success__price {
  font-size: 22px;
  font-weight: 700;
  color: #2e7d32;
  margin: 6px 0
}

.order-success__payment small {
  color: #777;
  font-size: 12px
}

.order-success__info h4 {
  margin-bottom: 12px
}

.order-success__product {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px
}

.order-success__product span {
  margin-right: 10px
}

.product-price {
  font-weight: 600
}

.order-success__summary {
  border-top: 1px solid #eee;
  padding-top: 10px
}

.order-success__summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px
}

.order-success__summary .total span:last-child {
  color: #d32f2f;
  font-weight: 700
}

.order-success__customer {
  border-top: 1px solid #eee;
  margin-top: 12px;
  padding-top: 12px
}

.order-success__customer div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px
}

.order-success__customer span {
  color: #777
}

.order-success__actions {
  margin-top: 20px;
  display: flex;
  gap: 10px
}

.btn-save {
  background: #c62828;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  justify-content: center;
  gap: 4px;
  width: 50%;
  cursor: pointer
}

.btn-save .icon {
  position: relative;
  top: -4px
}

.btn-save .icon svg {
  fill: #fff;
  width: 24px;
  height: 24px
}

.btn-home {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 30px;
  cursor: pointer
}

.btn-home .text {
  color: #000;
  font-weight: 600
}

.btn-home .icon {
  position: relative;
  top: -4px
}

.btn-home .icon svg {
  fill: #fff;
  width: 24px;
  height: 24px
}

.modal__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 90vh;
  background-color: #f3f3f3;
  padding: 36px;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, .3);
  z-index: 9999999;
  transition: all .5s;
  overflow: hidden
}

@media (max-width:991.98px) {
  .modal__popup {
    width: 70vw;
    padding: 48px;
    height: 80vh
  }
}

@media (max-width:575.98px) {
  .modal__popup {
    width: 86vw;
    padding: 24px;
    height: 80vh
  }
}

.modal__popup .modal__popup-inner {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none
}

@media (max-width:991.98px) {
  .modal__popup .modal__popup-inner {
    height: 80vh
  }
}

.modal__popup .modal__popup-inner .modal__popup-content {
  text-align: center
}

.modal__popup .modal__popup-inner .modal__popup-content h3 {
  font-size: 22px;
  margin: 16px 0 0 0
}

.modal__popup .modal__popup-inner .modal__popup-content h2 {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 8px;
  font-weight: 700
}

.overlay__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  z-index: 9999998;
  transition: all .5s
}

.btn--close-modal {
  position: absolute;
  top: -14px;
  right: 8px;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: 0 0;
  transition: all .3s
}

@media (max-width:991.98px) {
  .btn--close-modal {
    top: -11px;
    right: 12px
  }
}

@media (max-width:575.98px) {
  .btn--close-modal {
    font-size: 24px;
    top: -11px;
    right: 4px
  }
}

.btn--close-modal:hover {
  color: var(--main-color)
}

.hidden__popup {
  visibility: hidden;
  opacity: 0
}

.modal__popup.hidden__popup,
.overlay__popup.hidden__popup {
  visibility: hidden;
  opacity: 0;
  pointer-events: none
}

body.popup-open {
  overflow: hidden !important
}

body.popup-open.popup-open {
  position: fixed;
  width: 100%
}

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

.line-clamp-2 {
  -webkit-line-clamp: 2
}

.line-clamp-3 {
  -webkit-line-clamp: 3
}

.line-clamp-4 {
  -webkit-line-clamp: 4
}

.line-clamp-5 {
  -webkit-line-clamp: 5
}

.line-clamp-1 {
  -webkit-line-clamp: 1
}

.navigation__list {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, .8), rgba(40, 180, 133, .8));
  width: 100%;
  height: 100vh;
  padding: 30px 30px
}

.navigation__list .navigation__link:link,
.navigation__list .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #55c57a;
  background-image: linear-gradient(120deg, transparent 0, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all .4s;
  border-radius: var(--radius);
  border: 5px solid #55c57a
}

.navigation__list .navigation__link:link:hover,
.navigation__list .navigation__link:visited:hover {
  background-position: 100%;
  color: #55c57a;
  border-radius: var(--radius);
  transform: translateX(1rem)
}

.btn__animation,
.btn__animation:link,
.btn__animation:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer
}

.btn__animation:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.btn__animation:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0
}

.btn__animation:active,
.btn__animation:focus {
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.btn__animation--white {
  background-color: #fff;
  color: #777
}

.btn__animation--white::after {
  background-color: #fff
}

.btn__animation::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s
}

@keyframes moveinBottom {
  0% {
    opacity: 0;
    transform: translateY(30px)
  }

  100% {
    transform: translate(0);
    opacity: 1
  }
}

.btn__animation--animated {
  animation: moveinBottom .5s ease-out .75s;
  animation-fill-mode: backwards
}

.btn__text {
  font-size: 1.6rem;
  color: #55c57a;
  padding: 4px 0;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  transition: all .2s;
  cursor: pointer
}

.btn__text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
  transform: translateY(-2px)
}

.btn__text:active {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  transform: translateY(0)
}

.tesst {
  background-color: #1098ad
}

@media (max-width:575.98px) {
  .tesst {
    background-color: red
  }
}

#button-contact-vr {
  position: fixed;
  bottom: 106px;
  z-index: 99999;
  right: 0
}

#button-contact-vr .button-contact {
  position: relative;
  margin-top: -15px
}

#button-contact-vr .button-contact .phone-vr {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility .5s;
  left: 0;
  bottom: 0;
  display: block
}

.phone-vr-circle-fill {
  width: 65px;
  height: 65px;
  top: 12px;
  left: 12px;
  position: absolute;
  box-shadow: 0 0 0 0 #c31d1d;
  background-color: rgba(230, 8, 8, .7);
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animuiion: zoom2 1.3s infinite;
  animation: zoom2 1.3s infinite
}

.phone-vr-img-circle {
  background-color: #e60808;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 25px;
  left: 25px;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%)
}

.phone-vr-img-circle a {
  display: block;
  line-height: 43px
}

.phone-bar a {
  position: fixed;
  bottom: 25px;
  left: 30px;
  z-index: -1;
  color: #fff;
  font-size: 16px;
  padding: 8px 15px 7px 50px;
  border-radius: 100px;
  white-space: nowrap;
  background: #f44336;
  letter-spacing: 1.5px;
  font-weight: 700
}

@-webkit-keyframes phone-vr-circle-fill {
  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)
  }
}

@-webkit-keyframes zoom2 {
  0% {
    transform: scale(.9)
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent
  }

  100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 transparent
  }
}

@keyframes zoom2 {
  0% {
    transform: scale(.9)
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent
  }

  100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 transparent
  }
}

.phone-bar a:hover {
  opacity: .8;
  color: #fff
}

#mess img {
  border-radius: 50%
}

#zalo-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196f3;
  background-color: rgba(33, 150, 243, .7)
}

#zalo-vr .phone-vr-img-circle {
  background-color: #2196f3
}

#messenger-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #0866ff;
  background-color: rgba(8, 102, 255, .7)
}

#messenger-vr .phone-vr-img-circle {
  background-color: #0866ff
}

#email-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #34a853;
  background-color: rgba(234, 67, 53, .7)
}

#email-vr .phone-vr-img-circle {
  background-color: #fbbc04
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  opacity: .5;
  color: #fff;
  display: none;
  transition: all ease .4s;
  z-index: 99999
}

.back-to-top.active {
  display: flex
}

.back-to-top:hover {
  opacity: 1
}

.popup-search {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(0, 0, 0, .9);
  top: 0;
  transition: transform .7s ease;
  display: none
}

.popup-search .popup-content {
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative
}

.popup-search .close-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  font-weight: 700;
  padding: 0 8px;
  border-radius: 50%;
  border: 2px #fff solid;
  top: 15px;
  font-size: 15px;
  cursor: pointer
}

.popup-search .form-search {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: min(600px, 100% - 10px)
}

.popup-search .form-search form {
  position: relative
}

.popup-search .form-search input {
  background: #fff;
  border: none;
  outline: 0;
  height: 60px;
  line-height: 30px;
  font-size: 16px;
  color: #272727;
  padding: 15px 30px;
  width: 100%
}

.popup-search .form-search button {
  position: absolute;
  background: #48cae4;
  border: none;
  height: 60px;
  width: 60px;
  color: #fff;
  top: 0;
  right: 0;
  transition: all ease .4s
}

.mobile__btn {
  display: none
}

.mobile__btn svg {
  width: 24px;
  height: 24px
}

.mobile__btn .iconOpen {
  color: #000
}

.mobile__btn .iconClose {
  color: red
}

@media (max-width:991.98px) {
  .mobile__btn {
    display: block
  }
}

#mobile-btn span {
  background: #000;
  height: 3px;
  width: 25px;
  display: block
}

#menu-mobile {
  position: fixed;
  background-color: rgba(0, 0, 0, .3);
  left: 0;
  top: 100%;
  transition: .5s;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1000
}

#menu-mobile.active {
  top: 0;
  visibility: visible;
  opacity: 1
}

#menu-mobile .mobile-link {
  display: flex;
  align-items: center;
  gap: 10px
}

#menu-mobile .wraper-menu-mobile {
  width: 100%;
  height: 95%;
  z-index: 99999;
  top: 100%;
  left: 0;
  border-radius: 20px 20px 0 0;
  padding: 45px 15px 30px;
  position: relative;
  background-color: #fff;
  transition: .5s;
  margin: 0;
  overflow-y: scroll
}

#menu-mobile.active .wraper-menu-mobile {
  top: 0
}

#menu-mobile .close-mobile-menu {
  display: block;
  position: absolute;
  top: 5px;
  right: 25px;
  padding: 10px;
  font-size: 20px
}

#menu-mobile .list-mobile-menu {
  padding-left: 10px
}

#menu-mobile .list-mobile-menu>li>.mobile-link>a {
  font-weight: 700;
  text-transform: uppercase;
  color: #000
}

#menu-mobile .list-mobile-menu ul {
  padding-left: 20px;
  margin-top: 12px
}

#menu-mobile .list-mobile-menu ul li {
  margin-bottom: 10px
}

#menu-mobile .list-mobile-menu ul li a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  color: #ffc300
}

#menu-mobile .list-mobile-menu>li+li {
  border-top: 1px solid #ececec;
  margin-top: 10px;
  padding-top: 10px
}

.mobile__header {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
}

.menu__overlay {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  z-index: 200;
  display: block;
  background-color: #000;
  height: 100%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s
}

#mobile__header.active__menu-mobile .menu__overlay {
  right: 0;
  opacity: 1;
  visibility: visible
}

#mobile__header.closing__menu-mobile .menu__overlay {
  right: -100%;
  opacity: 0;
  visibility: hidden
}

.menu__drawer {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 201;
  transform: translateX(-100%);
  border-radius: 0 20px 20px 0;
  transition: .5s ease;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2)
}

.menu__drawer .menu__top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-color);
  height: 60px;
  padding: 0 20px;
  border-top-right-radius: 20px
}

.menu__drawer .menu__top .iconClose {
  margin-right: auto
}

.menu__drawer .menu__top .heading {
  margin-right: auto;
  color: #ffe6ce;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .375px;
  text-transform: uppercase
}

#mobile__header.active__menu-mobile .menu__overlay {
  opacity: 1;
  visibility: visible
}

#mobile__header.active__menu-mobile .menu__drawer {
  transform: translateX(0)
}

.logo__mobile-img {
  width: 120px;
  height: auto
}

.mobile__nav {
  margin-top: 16px
}

.mobile__nav li {
  padding: 0 15px;
  border-bottom: 1px solid #ddd
}

.mobile__nav li a {
  padding: 16px 0;
  color: #000;
  display: block;
  font-weight: 700;
  text-transform: uppercase
}

.menu-mobile--list .menu-mobile--item .menu-mobile--link {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.menu-mobile--body {
  overflow-y: auto;
  max-height: calc(100vh - 80px)
}

.menu-mobile--list {
  list-style: none;
  padding: 0;
  margin: 0
}

.menu-mobile--item:last-child {
  border-bottom: none
}

.menu-mobile--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-bottom: 1px solid #ededed;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: color .3s ease
}

.menu-mobile--link:hover {
  color: var(--main-color, #0071e3)
}

.menu-mobile--link .arrow-icon {
  flex-shrink: 0;
  margin-left: 8px;
  transform: rotate(-90deg);
  transition: transform .3s ease
}

.menu-mobile--link .arrow-icon path {
  stroke: #1a162e
}

.menu-mobile--item.active>.menu-mobile--link .arrow-icon {
  transform: rotate(0)
}

.dropdown-level-2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease
}

.menu-mobile--item.active>.dropdown-level-2 {
  max-height: 1000px;
  padding: 8px 32px;
  background-color: #f5f5f5
}

.dropdown-level-2--list {
  list-style: none;
  padding: 0;
  margin: 0
}

.dropdown-level-2--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color .3s ease, color .3s ease
}

.dropdown-level-2--link:hover {
  color: var(--main-color, #0071e3)
}

.dropdown-level-2--link span {
  flex: 1
}

.dropdown-level-2--link .arrow-icon {
  flex-shrink: 0;
  margin-left: 8px;
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  transition: transform .3s ease
}

.dropdown-level-2--link .arrow-icon path {
  stroke: #4a4a4a
}

.dropdown-level-2--item.active>.dropdown-level-2--link {
  color: var(--main-color, #0071e3)
}

.dropdown-level-2--item.active>.dropdown-level-2--link .arrow-icon {
  transform: rotate(0)
}

.dropdown-level-2--item.active>.dropdown-level-2--link .arrow-icon path {
  stroke: var(--main-color, #0071e3)
}

.dropdown-level-3 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background-color: #fff
}

.dropdown-level-2--item.active>.dropdown-level-3 {
  max-height: 500px
}

.dropdown-level-3--list {
  list-style: none;
  padding: 8px 0;
  margin: 0
}

.dropdown-level-3--item {
  position: relative
}

.dropdown-level-3--link {
  display: block;
  padding: 10px 20px 10px 16px;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .3s ease, color .3s ease
}

.dropdown-level-3--link:hover {
  color: var(--main-color, #0071e3)
}

.menu-mobile--body {
  margin-top: 16px;
  scroll-behavior: smooth
}

.menu-mobile--body::-webkit-scrollbar {
  width: 6px
}

.menu-mobile--body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px
}

.menu-mobile--body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px
}

.menu-mobile--body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8
}

.menu-login--wrap {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px
}

.login-mobile--success {
  margin-top: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  display: none
}

.login-mobile--success svg {
  width: 24px;
  height: 24px
}

.login-mobile--success svg path {
  fill: var(--main-color)
}

.login-mobile--success span {
  font-size: 14px;
  color: var(--main-color)
}

.home-slider {
  position: relative
}

.home-slider .item .home-slider--item .box-img {
  height: 400px;
  width: 100%
}

.home-slider .item .home-slider--item .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.home-slider .slick-arrow {
  width: 27px;
  height: 60px;
  z-index: 10;
  background: rgba(86, 86, 86, .7);
  border-radius: unset;
  border: none;
  opacity: 0;
  visibility: hidden
}

.home-slider .slick-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  opacity: 1
}

.home-slider .slick-prev {
  left: 0;
  border-radius: 0 5px 5px 0
}

.home-slider .slick-prev::before {
  content: "\f053"
}

.home-slider .slick-next {
  right: 0;
  border-radius: 5px 0 0 5px
}

.home-slider .slick-next::before {
  content: "\f054"
}

.home-slider:hover .slick-arrow {
  opacity: 1;
  visibility: visible
}

.home-slider .slick-dots {
  background: rgba(255, 255, 255, .7);
  bottom: 0
}

.home-slider .slick-dots li {
  margin: 0
}