@charset "UTF-8";
@font-face {
  font-family: "BaiJamjuree";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/BaiJamjuree-Bold.woff") format("woff");
}
@font-face {
  font-family: "BaiJamjuree";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/BaiJamjuree-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "BaiJamjuree";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/BaiJamjuree-Medium.woff") format("woff");
}
@font-face {
  font-family: "BaiJamjuree";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/BaiJamjuree-Regular.woff") format("woff");
}
body {
  box-sizing: border-box;
  font-family: "BaiJamjuree", sans-serif;
  font-style: normal;
  font-weight: 400;
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
}
body a {
  cursor: pointer;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}
body a:hover:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px !important;
  padding: 0;
}

.check-radio {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.check-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.check-radio input:checked ~ .checkmark {
  background-color: #fff;
}
.check-radio input:checked ~ .checkmark:after {
  display: block;
}
.check-radio:hover {
  color: #0066aa;
}
.check-radio .checkmark {
  position: absolute;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #0066aa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-radio .checkmark:after {
  width: 8px;
  height: 8px;
  background: #0066aa;
  border-radius: 50%;
}

.check-box {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  line-height: normal;
}
.check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.check-box input:checked ~ .checkmark {
  background-color: #faaf40;
  border: none;
}
.check-box input:checked ~ .checkmark:after {
  display: block;
}
.check-box:hover {
  color: #faaf40;
}
.check-box .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkmark {
  position: absolute;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 3px;
  border: 1px solid #cccccc;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Trạng thái "fixed" khi scroll xuống */
main {
  position: relative;
  padding-top: 145px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 999;
  transition: transform 0.8s ease-in-out, height 0.8s ease-in-out;
  will-change: transform, height;
}

header .container {
  transition: height 0.8s ease-in-out;
}

header img {
  transition: max-height 0.8s ease-in-out;
}

/* Khi header được thu nhỏ */
header.fixed {
  height: 51px;
  transform: translateY(0); /* Giữ cố định */
}

header.fixed .container {
  height: 51px;
}

header.fixed .header-content {
  height: 51px;
}

header.fixed img {
  max-height: 39px;
  transition: max-height 0.8s ease-in-out;
}

.menu-top-header {
  height: 40px;
  transition: height 0.8s ease-in-out, opacity 0.5s ease-in-out;
  overflow: hidden; /* Ngăn nội dung bị lộ khi thu nhỏ */
}

.menu-top-header.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none; /* Ngăn chặn tương tác khi ẩn */
}

header {
  z-index: 96;
  width: 100%;
  top: 0;
  background: #fff;
  padding-bottom: 1px;
}
header a {
  color: #6d6e70;
  transition: 0.1s;
}
header a:hover {
  color: #faaf40;
}
header .level0.li_home {
  margin-top: -7px;
}
header .menu-top-header {
  background: #4b5082;
}
header .menu-top-header .header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .menu-top-header .header-menu .menu-log {
  display: flex;
  align-items: center;
  line-height: normal;
}
header .menu-top-header .header-menu .menu-log a {
  font-size: 16px;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
header .menu-top-header .header-menu .menu-log a svg {
  transition: 0.1s;
}
header .menu-top-header .header-menu .menu-log a:hover svg {
  fill: royalblue;
}
header .menu-top-header .header-menu .menu-log a:hover .count-cart {
  color: #6d6e70;
}
header .menu-top-header .header-menu .menu-log .languages .btn,
header .menu-top-header .header-menu .menu-log .languages .btn-secondary {
  background-color: unset;
  outline: none;
  border: none;
}
header .menu-top-header .header-menu .menu-log .languages .btn::after,
header .menu-top-header .header-menu .menu-log .languages .btn-secondary::after {
  display: none;
}
header .menu-top-header .header-menu .menu-log .languages .btn:focus,
header .menu-top-header .header-menu .menu-log .languages .btn-secondary:focus {
  box-shadow: unset;
}
header .menu-top-header .header-menu .menu-log .languages .btn:active,
header .menu-top-header .header-menu .menu-log .languages .btn-secondary:active {
  background-color: unset;
  border-color: unset;
  outline: none;
  box-shadow: unset !important;
}
header .menu-top-header .header-menu .menu-log .languages .btn svg,
header .menu-top-header .header-menu .menu-log .languages .btn-secondary svg {
  margin-left: 7px;
}
header .menu-top-header .header-menu .menu-log .languages .dropdown-menu {
  width: 90%;
  padding: 0;
  margin: 0;
  min-width: unset;
  background: #4b5082;
  border-color: #4b5082;
}
header .menu-top-header .header-menu .menu-log .languages .lang {
  padding: 10px !important;
  font-size: 14px;
}
header .menu-top-header .header-menu .menu-log .languages .lang:hover {
  background: #4b5082;
}
header .menu-top-header .header-menu .menu-log .box_search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .menu-top-header .header-menu .menu-log .box_search input {
  height: 40px;
  padding: 0 20px;
  background: #444976;
  border: none;
  border-radius: 0;
  color: #fff;
  width: 250px;
  transition: 0.3s ease-in-out;
}
header .menu-top-header .header-menu .menu-log .box_search input:focus, header .menu-top-header .header-menu .menu-log .box_search input:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
  width: 300px;
  background: #fff;
  color: #4b5082;
  font-size: 14px;
  animation: search 0.8s;
}
header .menu-top-header .header-menu .menu-log .box_search input:focus::-moz-placeholder, header .menu-top-header .header-menu .menu-log .box_search input:focus-visible::-moz-placeholder {
  color: #e2e2e2;
}
header .menu-top-header .header-menu .menu-log .box_search input:focus::placeholder, header .menu-top-header .header-menu .menu-log .box_search input:focus-visible::placeholder {
  color: #e2e2e2;
}
header .menu-top-header .header-menu .menu-log .box_search input::-moz-placeholder {
  color: #868aab;
  font-size: 14px;
  font-weight: 500;
}
header .menu-top-header .header-menu .menu-log .box_search input::placeholder {
  color: #868aab;
  font-size: 14px;
  font-weight: 500;
}
header .menu-top-header .header-menu .menu-log .box_search .btn-search {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 30px;
  height: 30px;
  transition: 0.3s ease-in-out;
}
header .menu-top-header .header-menu .menu-log .box_search .btn-search:hover svg {
  fill: #4b5082;
}
header .menu-top-header .header-menu .menu-log .box_search input:focus ~ .btn-search svg {
  fill: none;
}
header .menu-top-header .header-menu .menu-log .box_search input:focus ~ .btn-search svg path {
  stroke: #4b5082;
}
@keyframes search {
  0% {
    width: 300px;
  }
  20% {
    width: 310px;
  }
  40% {
    width: 320px;
  }
  100% {
    width: 300px;
  }
}
header .menu-top-header .header-menu .menu-log #pc_search {
  padding-right: 20px;
  border-right: 1px solid #ccc;
  height: 23px;
  display: flex;
  align-items: center;
  position: relative;
}
header .menu-top-header .header-menu .menu-log #pc_search input {
  padding: 5px 55px 5px 15px;
  width: 300px;
  font-size: 14px;
  height: 32px;
  border-radius: 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
  border-right: none;
}
header .menu-top-header .header-menu .menu-log #pc_search input:focus {
  box-shadow: 0 0 8px rgba(252, 212, 51, 0.6);
  border-color: #faaf40;
}
header .menu-top-header .header-menu .menu-log #pc_search button {
  position: absolute;
  right: 20px;
  height: 32px;
  width: 32px;
  background: #faaf40;
  border: none;
  outline: none;
}
header .menu-top-header .header-menu .menu-log #pc_search button svg {
  width: 16px;
  height: auto;
}
header .menu-top-header .header-menu .menu-log #pc_search button svg path {
  fill: #fff;
}
header .menu-top-header .header-menu .toggle-menu-side-bar {
  display: none;
  background: #f58220;
  position: relative;
  padding: 10px;
  justify-content: start;
}
header .menu-top-header .header-menu .toggle-menu-side-bar .cl2 {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
}
header .menu-top-header .header-menu .toggle-menu-side-bar.active .cl1 {
  display: none;
}
header .menu-top-header .header-menu .toggle-menu-side-bar.active .cl2 {
  display: flex;
}
header .header_content_ .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
header .header_content_ .header-content .menu-header {
  display: flex;
  text-align: center;
  grid-gap: 40px;
}
header .header_content_ .header-content .menu-header .iconten {
  margin-bottom: 0;
}
header .header_content_ .header-content .menu-header .iconten a {
  display: block;
  color: rgba(0, 0, 0, 0.87);
  font-size: 18px;
  line-height: 18px;
}
header .header_content_ .header-content .menu-header .iconten a:hover {
  color: #f58220;
}
header .header_content_ .header-content .logo-right {
  display: block;
  height: auto;
  transition: height 0.8s ease-in-out;
  width: 100%;
  max-width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header_content_ .header-content .logo-right img {
  width: auto;
  height: 100%;
}
header .menu-side {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .menu-side i {
  font-size: 24px;
}
header .menu-side a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
header .menu-side .level0 {
  margin-left: 30px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header .menu-side .level0:first-child {
  margin-left: 0;
}
header .menu-side .level0.activated > a {
  color: #faaf40;
}
header .menu-side .level0:hover > a {
  color: #faaf40;
}
header .menu-side .level0:hover > ul {
  display: block;
}
header .menu-side .dropdown-menu {
  min-width: 270px;
  padding: 0;
  border-radius: 0;
  border: none;
  margin: 0;
}
header .menu-side .dropdown-menu a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  background: #eeeeee;
  text-transform: none;
}
header .menu-side .dropdown-menu a:hover {
  background: #fff;
  border-left: 3px solid #faaf40;
}
header .menu-side .level0:hover .menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 720px;
  background-color: #eeeeee;
}

header.fixed .header_content_ .header-content .logo-right {
  height: 39px;
  transition: height 0.8s ease-in-out;
}

.bold {
  font-weight: 700;
}

.mg-0 {
  margin-bottom: 0 !important;
}

.count-cart {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #0066aa;
  position: absolute;
  border-radius: 50%;
  right: 20px;
  top: -5px;
  font-size: 12px;
  line-height: normal;
}

.select2-search__field {
  outline: none;
}

.block-book {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: 30px;
  width: 1200px;
  color: #14304f;
}
.block-book .nav-book {
  height: 50px;
  border-radius: 5px;
  background: #f8f8f8;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.16);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border: none;
}
.block-book .nav-book a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  padding: 0 35px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s;
}
.block-book .nav-book a svg {
  fill: #14304f;
  margin-right: 15px;
  transition: 0.1s;
}
.block-book .nav-book a:hover {
  color: #d6a824;
}
.block-book .nav-book a:hover svg {
  fill: #0066aa;
}
.block-book .nav-book a.active {
  color: #d6a824;
}
.block-book .nav-book a.active svg {
  fill: #0066aa;
}
.block-book .nav-book a.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d6a824;
}
.block-book .tab-pane {
  padding: 20px;
}
.block-book .hotel-form {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 300px 300px 300px 200px;
  align-items: center;
}
.block-book .box-book {
  padding: 10px 20px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ddd;
  text-transform: uppercase;
  height: 100%;
}
.block-book .box-book label {
  font-weight: 700;
  color: #d6a824;
}
.block-book .box-book .book-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: #d6a824;
  border-radius: 5px;
  height: 100%;
  font-weight: 700;
  transition: 0.1s;
}
.block-book .box-book .book-submit:hover {
  background: #c59b24;
}
.block-book .submit-book {
  padding: 0;
  border: none;
}
.block-book .date-book {
  font-size: 16px;
}
.block-book .date-book input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.block-book .date-book .pick-date {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 22px;
}
.block-book .add-book .select2 {
  width: 100% !important;
}
.block-book .add-book .select2 .select2-selection {
  height: auto;
  border: none;
  outline: none;
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.block-book .add-book .select2 .select2-selection .select2-selection__rendered {
  padding: 0;
}
.block-book .add-book .select2 .select2-selection .select2-selection__arrow {
  height: auto;
  right: 0;
  top: unset;
  width: auto;
}
.block-book .pick-room {
  position: relative;
  font-size: 16px;
  text-transform: none;
  display: flex;
  align-items: center;
}
.block-book .pick-room input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}
.block-book .pick-room .room-text {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 28px;
}

#msgModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background: rgba(0, 0, 0, 0.5);
}
#msgModal .msgmodal-content {
  background: #fff;
  padding: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  width: auto;
  max-width: 500px;
  border-radius: 5px;
}
#msgModal .msgmodal-content .msgmodal-body {
  text-align: center;
}
#msgModal .msgmodal-content .msgmodal-body svg {
  width: 100px;
  height: 100px;
  margin: auto;
  display: block;
  margin-bottom: 20px;
}
#msgModal .msgmodal-content .msgmodal-body .bt-modals {
  text-align: center;
  margin: auto;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 4px;
  background: #2e6ed5;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

.grid-intro-footer {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 15px;
}
.grid-intro-footer .item-intro {
  background: #fff;
}
.grid-intro-footer .item-intro .a_intro {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  line-height: normal;
}
.grid-intro-footer .item-intro .a_intro:hover {
  color: #333;
}
.grid-intro-footer .item-intro .a_intro span {
  font-weight: 700;
}
.grid-intro-footer .item-intro .content-text {
  padding: 0 20px;
}
.grid-intro-footer .item-intro .content-text p {
  margin-bottom: 0;
}

.img-responsive {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-banner-top {
  width: 100%;
}

.breadcrumbs .breadcrumb {
  background: unset;
  display: flex;
  padding: 0px;
  margin: 10px 0;
  font-size: 16px;
}
.breadcrumbs .breadcrumb li:before {
  display: none;
}
.breadcrumbs .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumbs .breadcrumb a {
  color: #4b5082;
}
.breadcrumbs .breadcrumb .breadcrumb-item {
  padding-left: 0;
  color: #f5821e;
}
.breadcrumbs .breadcrumb .breadcrumb-item span {
  display: block;
  margin: 0 5px;
}
.breadcrumbs .breadcrumb i {
  margin: 0 8px;
}

.label_error {
  margin-top: 0px;
  color: #f3473a;
  font-size: 14px;
}

.pagination {
  margin-top: 32px;
  padding-top: 0px;
  padding-bottom: 0px;
  background: none;
  justify-content: center;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 7px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #828282;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
}
.pagination a[href]:hover {
  border-color: #4b5082;
  color: #4b5082;
}
.pagination .fa-angle-left {
  margin-right: 0px;
}
.pagination .fa-angle-right {
  margin-left: 2px;
}
.pagination .current {
  color: #fff;
  font-weight: 700;
  background-color: #4b5082;
  border: 1px solid #4b5082;
}

.star-rating {
  --percent: calc(var(--rating) / 5 * 100%);
  font: normal normal normal 14px/1 FontAwesome;
  position: relative;
  display: flex;
  align-items: center;
}
.star-rating::before {
  content: "\f005\f005\f005\f005\f005";
  background: linear-gradient(90deg, #ffa500 var(--percent), #999 var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrapper-popup {
  position: fixed;
  background: #f2f2f2;
  right: 20px;
  top: -30%;
  color: #333;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  padding: 10px;
  text-align: center;
  z-index: 99;
}
.wrapper-popup:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 45px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  display: none;
}
.wrapper-popup .button-cart {
  color: #fff;
  background: #0066aa;
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
}
.wrapper-popup .fa-check-circle {
  color: #6ac259;
  font-size: 16px;
}
.wrapper-popup #close-cart {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #333;
  border-right: none;
  padding: 0;
}

.flow-hidden {
  overflow: hidden;
}

#sideMenuMobile {
  display: none;
  position: fixed;
  top: 40px;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  width: 100%;
  color: #fff;
  font-size: 14px;
  height: calc(100% - 40px);
  overflow: auto;
}
#sideMenuMobile a {
  color: #fff;
  font-size: 14px;
}
#sideMenuMobile .menu-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: #6e6f72;
  grid-gap: 50px;
  margin-bottom: 0px;
}
#sideMenuMobile ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}
#sideMenuMobile ul li {
  border-bottom: 1px solid #6e6f72;
}
#sideMenuMobile ul li:last-child {
  border-bottom: none;
}
#sideMenuMobile ul .c-sub {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sideMenuMobile ul .offcanvas-menu-toggler {
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 40px;
  width: 40px;
}
#sideMenuMobile ul .offcanvas-menu-toggler i.up {
  display: none;
}
#sideMenuMobile ul .offcanvas-menu-toggler[aria-expanded=true] i.down {
  display: none;
}
#sideMenuMobile ul .offcanvas-menu-toggler[aria-expanded=true] i.up {
  display: inline-block;
}
#sideMenuMobile ul .c-item_name {
  padding: 15px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  width: calc(100% - 40px);
}

footer.not_home {
  margin-top: 40px;
}
footer a {
  color: #fff;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 15px 0;
  border-top: 1px solid #6d6e70;
}
footer .copyright p {
  margin-bottom: 0;
}
footer .copyright a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 20px;
  border: 3px solid #fff;
}
footer .copyright a:hover {
  color: #fff;
}
footer .copyright .fb {
  background: #3a5a99;
}
footer .copyright .yt {
  background: #e22c26;
}
footer .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
footer .content-top p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}
footer .content-top .social {
  display: flex;
  grid-gap: 0 10px;
}
footer .content-bottom {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  padding-bottom: 25px;
}
footer .content-bottom .title-contact {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}
footer .content-bottom .form-footer {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
footer .content-bottom .form-footer .box-btn {
  width: 40px;
}
footer .content-bottom .form-footer .box-btn a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  background: #faaf40;
  transition: 0.1s ease-in-out;
}
footer .content-bottom .form-footer .box-input {
  width: calc(100% - 40px);
}
footer .content-bottom .form-footer label {
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
}
footer .content-bottom .form-footer input {
  border-radius: 0;
  outline: none;
  box-shadow: none;
  height: 40px;
  background: #fff;
  border: 1px solid #707070;
}
footer .content-bottom .form-footer input::-moz-placeholder {
  font-style: italic;
  font-weight: 100;
}
footer .content-bottom .form-footer input::placeholder {
  font-style: italic;
  font-weight: 100;
}
footer .content-bottom .bct-dmca {
  text-align: right;
}
footer .content-bottom .bct {
  display: block;
  margin-bottom: 10px;
}
footer .content-bottom .bct img {
  height: 50px;
  width: auto;
}
footer .content-bottom .dmca {
  display: block;
}
footer .content-bottom .dmca img {
  height: 26px;
  width: auto;
}
footer .content-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .content-bottom .menu-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 30px;
  grid-gap: 30px;
}
footer .content-bottom .menu-footer a {
  transition: 0.1s;
}
footer .content-bottom .menu-footer a:hover {
  color: #faaf40;
}
footer .content-bottom .menu-footer .level0 > a {
  font-weight: 700;
  text-transform: uppercase;
}
footer .content-bottom .menu-footer .level0 li {
  margin-top: 10px;
}
footer .add-footer .add-col p {
  margin-bottom: 0;
}
footer .add-footer .add-col p:last-child {
  margin-bottom: 15px;
}
footer .add-footer a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  margin-bottom: 15px;
}
footer .add-footer a span {
  padding: 5px 10px;
  height: 35px;
  border-radius: 3px;
  background: #faaf40;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
footer .add-footer a i {
  color: #faaf40;
  font-size: 20px;
}
footer #footer_top .footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}
footer #footer_top .footer_top .partners img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer #footer_mid {
  background: #f3f3fb;
}
footer #footer_mid .footer_mid {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
footer #footer_mid .footer_mid .content h3 {
  font-weight: 700;
  font-size: 16px;
  color: #4b5082;
  margin-bottom: 24px;
  text-transform: uppercase;
}
footer #footer_mid .footer_mid .content p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}
footer #footer_mid .footer_mid .content p svg {
  margin-right: 8px;
}
footer #footer_mid .footer_mid .content p:last-child {
  margin-bottom: 0;
}
footer #footer_mid .footer_mid .social h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4b5082;
  margin-bottom: 24px;
  text-align: center;
}
footer #footer_mid .footer_mid .social .items {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer #footer_mid .footer_mid .social .menu_footer {
  margin-top: 30px;
}
footer #footer_mid .footer_mid .social .menu_footer .menu-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer #footer_mid .footer_mid .social .menu_footer .menu-bottom .iconten {
  margin-bottom: 0;
  max-width: 100%;
}
footer #footer_mid .footer_mid .social .menu_footer .menu-bottom .iconten a {
  display: block;
  color: #4b5082;
  background: #fff;
  font-size: 15px;
  padding: 10px 15px;
  line-height: 16px;
  border: solid 1px #4b5082;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}
footer #footer_mid .footer_mid .social .menu_footer .menu-bottom .iconten a:hover {
  color: #fff;
  background: #f5821e;
  border-color: #f5821e;
}
footer #footer_mid .footer_mid .social .menu_footer .menu-bottom .iconten:last-child a {
  color: #fff;
  background: #4b5082;
}
footer #footer_mid .footer_mid .social .menu_footer .menu-bottom .iconten:last-child a:hover {
  background: #f5821e;
  border-color: #f5821e;
}
footer #footer_bottom {
  background-color: #4b5082;
}
footer #footer_bottom .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 46px;
}
footer #footer_bottom .footer_bottom .footer_content p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
}

#ModalLogin .modal-dialog {
  max-width: 960px;
}
#ModalLogin .modal-content {
  border: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#ModalLogin .btn-close {
  position: absolute;
  right: -68px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
#ModalLogin .btn-close:hover svg {
  fill: #faaf40;
}
#ModalLogin .main-content {
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 560px;
}
#ModalLogin .main {
  padding: 40px;
}
#ModalLogin .main .nav-tabs {
  border: none;
  flex-wrap: nowrap;
  border-bottom: 1px solid #dddddd;
}
#ModalLogin .main .nav-tabs li {
  width: 100%;
}
#ModalLogin .main .nav-tabs a {
  position: relative;
  top: 1px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #6d6e70;
  border-bottom: 4px solid transparent;
  transition: 0.1s ease-in-out;
}
#ModalLogin .main .nav-tabs a.active {
  color: #faaf40;
  border-bottom: 4px solid #faaf40;
}
#ModalLogin .main .box {
  margin-top: 20px;
  font-size: 16px;
  color: #6d6e70;
}
#ModalLogin .main .box input {
  height: 42px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 20px;
  font-size: 16px;
  outline: none;
}
#ModalLogin .main .box input:focus {
  box-shadow: 0 0 8px rgba(252, 212, 51, 0.6);
  border-color: #faaf40;
}
#ModalLogin .main .box .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  height: 42px;
  border-radius: 5px;
  background: #faaf40;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
#ModalLogin .main .box-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ModalLogin .main .box-flex a {
  text-decoration: underline;
}
#ModalLogin .main .box-flex a:hover {
  color: #faaf40;
}
#ModalLogin .main .wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-weight: 100;
  font-size: 16px;
  color: #6d6e70;
  justify-content: space-between;
  line-height: normal;
}
#ModalLogin .main .wrapper span {
  width: 150px;
  height: 1px;
  background: #ddd;
}
#ModalLogin .main .log-social {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  height: 42px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  margin-top: 20px;
}
#ModalLogin .main .log-social span {
  position: absolute;
  left: 20px;
  width: 35px;
  height: 35px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#ModalLogin .main .log-google {
  background: #d54b3d;
}
#ModalLogin .main .log-facebook {
  background: #1877f2;
}

.side-right-search {
  width: 70px;
  height: 70px;
  background: linear-gradient(#faaf40 0%, #f4c524 100%);
  border: 2px solid #fff;
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  right: 50px;
  bottom: 140px;
  border-radius: 50%;
  z-index: 999;
}
.side-right-search .btn-fixed-search {
  padding: 10px;
  font-size: 10px;
  line-height: normal;
  color: #000;
}
.side-right-search .btn-fixed-search i {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.side-left-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  z-index: 99;
}
.side-left-btn a {
  transition: 0.2s ease-in-out;
  display: block;
}
.side-left-btn a:hover {
  transform: translateX(-10px);
}

.popup_showcase {
  position: fixed;
  left: 0px;
  top: 50%;
  display: flex;
  flex-wrap: wrap;
  width: 50px;
  grid-gap: 10px;
  z-index: 99;
  transform: translateY(-40%);
}
.popup_showcase .pop {
  position: relative;
}
.popup_showcase .pop .showcase {
  transition: 0.2s ease-in-out;
  display: block;
  width: 97px;
  height: 120px;
  position: relative;
}
.popup_showcase .pop .close_popup {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0px;
}
.popup_showcase .pop .close_popup svg {
  text-align: center;
}
.popup_showcase .pop .close_popup:hover {
  cursor: pointer;
}

.popup_tab {
  position: fixed;
  right: 48px;
  top: 30%;
  z-index: 99;
  transform: rotate(-90deg);
  transform-origin: top right;
}
@media (max-width: 1200px) {
  .popup_tab {
    display: none;
  }
}
.popup_tab ul {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.popup_tab ul li {
  list-style: none;
}
.popup_tab ul li a {
  display: block;
  background: #4b5082;
  padding: 16px 19px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 4px 4px 0 0;
  width: 100%;
  min-width: 114px;
  height: 48px;
  line-height: normal;
  text-align: center;
}
.popup_tab ul li a:hover {
  background: #f5821e;
}
.popup_tab ul li:last-child a {
  background: #f5821e;
}

#load {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.lds-spinner {
  color: #f9920f;
  display: block;
  margin: auto;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #4b5082;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#msgModal {
  display: none;
  position: fixed;
  z-index: 99;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  /* Add Animation */
  /* The Close Button */
}
#msgModal .msgmodal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
#msgModal .close {
  color: white;
  float: right;
  font-size: 36px;
  font-weight: bold;
}
#msgModal h5 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
#msgModal .close:focus,
#msgModal .close:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
#msgModal .msgmodal-header {
  padding: 2px 10px 2px 16px;
  background-color: #116bb3;
  line-height: 36px;
  color: white;
}
#msgModal .msgmodal-body {
  padding: 40px;
  line-height: 20px;
  text-align: center;
}
#msgModal .msgmodal-body .bt-modals {
  background-color: #e83e28;
  margin-right: 10px;
  font-size: 20px;
  color: #ffffff;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  margin-top: 20px;
}
#msgModal .msgmodal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
#msgModal svg {
  width: 100px;
  display: block;
  margin: 40px auto;
}
#msgModal .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
#msgModal .path.circle {
  animation: dash 0.9s ease-in-out;
}
#msgModal .path.line {
  stroke-dashoffset: 1000;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
#msgModal .path.check {
  stroke-dashoffset: -100;
  animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

.alert_modal {
  display: none;
  position: fixed;
  width: 100%;
  top: 2%;
  z-index: 1060;
}
.alert_modal .alert_body {
  background: #fff;
  width: 390px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #ddd;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  font-size: 16px;
  margin-top: 5%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.24);
  animation: shake-lr 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.alert_modal .alert_body svg:not(:root) {
  width: 30px;
}
.alert_modal .alert_body p {
  margin: 20px 0;
}
.alert_modal .alert_body p a {
  width: auto;
  background: none;
  color: #333;
  height: auto;
  transition: 0.3s all ease-in-out;
}
.alert_modal .alert_body p a:hover {
  color: #faaf40;
}
.alert_modal .alert_body a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faaf40;
  color: #fff;
  font-weight: 700;
  width: 60px;
  margin: auto;
  border-radius: 5px;
  height: 30px;
}
.alert_modal .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.alert_modal .path.circle {
  animation: dash 0.9s ease-in-out;
}
.alert_modal .path.line {
  stroke-dashoffset: 1000;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
.alert_modal .path.check {
  stroke-dashoffset: -100;
  animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes shake-lr {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-2.5deg);
  }
  30%, 50%, 70% {
    transform: rotate(2.5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
.header-loged {
  position: relative;
}
.header-loged .logedname img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}
.header-loged .logedname .user-header-name {
  width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.header-loged .dropUserMenu {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 40px;
  z-index: 100;
  display: none;
}
.header-loged .dropUserMenu .userMenu {
  width: auto;
  white-space: nowrap;
  background: #fff;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  padding: 5px 0;
  margin: 0;
  list-style: none;
}
.header-loged .dropUserMenu .userMenu:before {
  content: "";
  position: absolute;
  right: 16px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.header-loged .dropUserMenu .userMenu a {
  line-height: normal;
  padding: 10px 15px;
  color: #6d6e70;
  align-items: baseline;
  border: none;
}
.header-loged .dropUserMenu .userMenu a i {
  width: 26px;
}
.header-loged .dropUserMenu .userMenu a:hover {
  color: #faaf40;
}
.header-loged:hover .dropUserMenu {
  display: block;
}

#bg {
  position: fixed;
  top: 0;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 998;
}

.scrollToTop {
  display: none;
  color: #fff;
  font-size: 14px;
  padding-top: 15px;
  text-align: center;
  position: fixed;
  bottom: -60px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #f3f3fb;
  background-size: auto;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  transition: all 0.8s ease;
}
.scrollToTop.active {
  bottom: 20px;
  display: none;
}
.scrollToTop:hover {
  background: #ff9800;
}
.scrollToTop:hover svg path {
  fill: #fff;
}

.social-mobile {
  display: none;
}

.li_custom_foooter {
  display: none;
}

#ShowCart,
#ShowCart2 {
  padding-right: 0 !important;
  top: 15%;
}
#ShowCart .modal-dialog,
#ShowCart2 .modal-dialog {
  transform: unset !important;
  max-width: 700px;
}
#ShowCart .modal-dialog .modal-content,
#ShowCart2 .modal-dialog .modal-content {
  width: 100%;
  min-width: 700px;
  border-radius: 20px;
  border: none;
}
#ShowCart .modal-dialog .modal-content .modal-header,
#ShowCart2 .modal-dialog .modal-content .modal-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 20px;
  border-radius: 0;
  border: none;
}
#ShowCart .modal-dialog .modal-content .modal-header .modal-title,
#ShowCart2 .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 500;
  font-size: 24px;
  color: #f58220;
  text-align: center;
}
#ShowCart .modal-dialog .modal-content .modal-body,
#ShowCart2 .modal-dialog .modal-content .modal-body {
  padding: 0 30px 30px;
}
#ShowCart .modal-dialog .modal-content .modal-body h3,
#ShowCart2 .modal-dialog .modal-content .modal-body h3 {
  font-size: 18px;
  color: #6d6e71;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box {
  margin-bottom: 20px;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box .form-control,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box .form-control {
  height: 45px;
  color: rgba(109, 110, 113, 0.6);
  font-size: 16px;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box .select2-container,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box .select2-container {
  width: 100% !important;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box .select2-container .select2-selection,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box .select2-container .select2-selection {
  height: 45px !important;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box .select2-container .select2-selection .select2-selection__rendered,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box .select2-container .select2-selection .select2-selection__rendered {
  font-size: 16px;
  color: #6d6e71;
  line-height: 40px;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box .select2-container .select2-selection .select2-selection__arrow,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box .select2-container .select2-selection .select2-selection__arrow {
  top: 13px !important;
  right: 7px !important;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box::-moz-placeholder, #ShowCart2 .modal-dialog .modal-content .modal-body .input-box::-moz-placeholder {
  color: #333;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box::placeholder,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box::placeholder {
  color: #333;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box50,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box50 {
  display: flex;
  gap: 20px;
}
#ShowCart .modal-dialog .modal-content .modal-body .input-box50 .input-box,
#ShowCart2 .modal-dialog .modal-content .modal-body .input-box50 .input-box {
  width: 100%;
}
#ShowCart .modal-dialog .modal-content .modal-body .register_project,
#ShowCart2 .modal-dialog .modal-content .modal-body .register_project {
  margin: auto;
  width: 100%;
  max-width: 200px;
  padding-top: 30px;
}
#ShowCart .modal-dialog .modal-content .modal-body .register_project .request_register,
#ShowCart2 .modal-dialog .modal-content .modal-body .register_project .request_register {
  display: flex;
  align-items: center;
  background: #f58220;
  color: #ffffff;
  gap: 10px;
  font-size: 18px;
  padding: 10px 16px;
  border-radius: 4px;
}

@media (max-width: 450px) {
  #ShowCart .modal-dialog,
  #ShowCart2 .modal-dialog {
    max-width: unset;
  }
  #ShowCart .modal-dialog .modal-content,
  #ShowCart2 .modal-dialog .modal-content {
    width: 100% !important;
    min-width: unset;
  }
  #ShowCart .modal-dialog .modal-content .modal-header,
  #ShowCart2 .modal-dialog .modal-content .modal-header {
    grid-template-columns: 0px 1fr 1fr;
  }
  #ShowCart .modal-dialog .modal-content .modal-header .modal-title,
  #ShowCart2 .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 18px;
  }
  #ShowCart .modal-dialog .modal-content .modal-body,
  #ShowCart2 .modal-dialog .modal-content .modal-body {
    overflow-y: scroll;
    height: 100%;
    max-height: 450px;
  }
  #ShowCart .modal-dialog .modal-content .modal-body .input-box50,
  #ShowCart2 .modal-dialog .modal-content .modal-body .input-box50 {
    display: unset !important;
  }
  #ShowCart .modal-dialog .modal-content .modal-body h3,
  #ShowCart2 .modal-dialog .modal-content .modal-body h3 {
    font-size: 16px;
  }
}
#ModalSearchBK .modal-dialog {
  margin: auto;
  z-index: 1041;
  top: 90px;
}
#ModalSearchBK .modal-content {
  border: none;
  border-radius: 0;
}
#ModalSearchBK .modal-body {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  gap: 80px;
}
#ModalSearchBK .modal-body form {
  width: 50%;
}
#ModalSearchBK .box-search {
  position: relative;
}
#ModalSearchBK .box-search label {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
  color: #6d6e71;
}
#ModalSearchBK .box-search .itembox {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  gap: 8px;
}
#ModalSearchBK .box-search .itembox .c-input input {
  padding: 5px 20px;
  font-size: 14px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
  border: solid 1px rgba(109, 110, 113, 0.5);
  box-shadow: none;
  outline: none;
}
#ModalSearchBK .box-search .itembox .c-input input:focus {
  box-shadow: none;
  border-color: #faaf40;
}
#ModalSearchBK .box-search .btn-search {
  padding: 0 10px;
  height: 40px;
  border-radius: 4px;
  background: #f58220;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: 0.1s ease-in-out;
}
#ModalSearchBK .box-search .btn-search i {
  margin-right: 10px;
  font-size: 20px;
}
#ModalSearchBK .box-search .btn-search:hover {
  color: #fff;
}
#ModalSearchBK .title-filter {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #6d6e70;
  margin-bottom: 20px;
  padding-bottom: 8px;
  line-height: normal;
}
#ModalSearchBK .filter-search {
  margin-bottom: 20px;
}
#ModalSearchBK .filter-search:last-child {
  margin-bottom: 0;
}
#ModalSearchBK .list-filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px 10px;
}
#ModalSearchBK .check-filter-search {
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  line-height: normal;
}
#ModalSearchBK .check-filter-search .wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 20px auto;
  grid-gap: 10px;
  background: #eee;
  padding: 10px;
  color: #6d6e70;
  font-size: 14px;
  line-height: normal;
  height: 100%;
}
#ModalSearchBK .check-filter-search .wrap img {
  max-height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
#ModalSearchBK .check-filter-search input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#ModalSearchBK .check-filter-search input:checked ~ .wrap {
  color: #fff;
  background-color: #faaf40;
}
#ModalSearchBK .check-filter-search input:checked ~ .wrap .mark {
  border-color: #fff;
}
#ModalSearchBK .check-filter-search input:checked ~ .wrap .mark:before {
  border-color: #faaf40;
}
#ModalSearchBK .check-filter-search .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ccc;
  position: relative;
  border-radius: 50%;
}
#ModalSearchBK .check-filter-search .mark:before {
  content: "";
  position: absolute;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #eeeeee;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 1920px) {
  .content_service .top span {
    font-size: 16px;
  }
  .content_service .bottom {
    height: 100%;
    max-height: 498px;
    overflow-y: scroll;
  }
  .content_service .bottom::-webkit-scrollbar {
    width: 5px;
  }
  .content_service .bottom::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .content_service .bottom::-webkit-scrollbar-thumb {
    background: #888;
    opacity: 0.5;
  }
  .content_service .bottom::-webkit-scrollbar-thumb:hover {
    background: #555;
    opacity: 0.8;
  }
}
@media (max-width: 1400px) {
  .home_service {
    position: absolute;
    bottom: 38px;
    z-index: 6;
    width: 100%;
  }
  .home_service .config_link {
    padding: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3px;
  }
  .home_service .config_link .floating-tool__item {
    list-style: none;
    padding: 0;
    position: relative;
  }
  .home_service .config_link .floating-tool__item .item {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    display: block;
    padding: 20px;
    background: rgba(245, 130, 32, 0.8);
    border-radius: 10px 10px 0 0;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon img {
    width: 48px;
    height: 48px;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon .image2 {
    display: none;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon .floating-tool__item__title {
    z-index: 1;
    text-transform: uppercase;
    font-size: 20px;
    padding-top: 10px;
  }
  .home_service .config_link .floating-tool__item:hover a {
    background: #fff;
  }
  .home_service .config_link .floating-tool__item:hover a .floating-tool__item__icon .image1 {
    display: none;
  }
  .home_service .config_link .floating-tool__item:hover a .floating-tool__item__icon .image2 {
    display: block;
  }
  .home_service .config_link .floating-tool__item:hover a .floating-tool__item__icon .floating-tool__item__title {
    color: #f58220;
  }
  .home_service .config_link .floating-tool__item .content_service {
    display: none;
    padding: 20px;
    background: #fff;
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    position: absolute;
    bottom: 130px;
  }
  .home_service .config_link .floating-tool__item .content_service .top {
    padding-bottom: 20px;
    border-bottom: solid 1px #eeeeee;
    text-align: center;
  }
  .home_service .config_link .floating-tool__item .content_service .top .name {
    color: #f58220;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .home_service .config_link .floating-tool__item .content_service .top span {
    color: #6d6e71;
    font-size: 16px;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom {
    height: 185px;
    overflow-y: scroll;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar {
    width: 5px;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar-thumb {
    background: #888;
    opacity: 0.5;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar-thumb:hover {
    background: #555;
    opacity: 0.8;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p {
    padding-left: 20px;
    font-size: 18px;
    color: #6d6e71;
    margin-top: 20px;
    margin-bottom: 0;
    background: url(../../default/images/icon.svg) top 6px left 0 no-repeat;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p:hover {
    background: url(../../default/images/icon2.svg) top 6px left 0 no-repeat;
    color: #f58220;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p a {
    color: #6d6e71;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p a:hover {
    color: #f58220;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom ul {
    padding-left: 0;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom ul li {
    list-style: none;
  }
  .home_service .config_link .floating-tool__item:hover .content_service {
    display: block !important;
  }
  .home_service .title_quick {
    display: none;
    position: fixed;
    right: 50px;
    bottom: 150px;
    z-index: 999;
    background-color: #eee;
  }
  .home_service .title_quick li a {
    display: block;
    padding: 10px 15px;
    width: auto;
    height: 50px;
    border-bottom: 1px solid #ddd;
    line-height: 30px;
  }
  .home_service:hover .title_quick {
    display: block;
  }
  .quick-alo-phone {
    bottom: 170px;
  }
}
@media (max-width: 1280px) {
  .container {
    max-width: 1080px !important;
    padding: 0;
  }
  .home_service .config_link .floating-tool__item .item {
    padding: 10px;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon img {
    width: 35px;
    height: 35px;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon .image2 {
    display: none;
  }
  .home_service .config_link .floating-tool__item .item .floating-tool__item__icon .floating-tool__item__title {
    z-index: 1;
    text-transform: uppercase;
    font-size: 14px;
    padding-top: 5px;
  }
  .home_service .config_link .floating-tool__item:hover a {
    background: #fff;
  }
  .home_service .config_link .floating-tool__item:hover a .floating-tool__item__icon .image1 {
    display: none;
  }
  .home_service .config_link .floating-tool__item:hover a .floating-tool__item__icon .image2 {
    display: block;
  }
  .home_service .config_link .floating-tool__item:hover a .floating-tool__item__icon .floating-tool__item__title {
    color: #f58220;
  }
  .home_service .config_link .floating-tool__item .content_service {
    display: none;
    padding: 20px;
    background: #fff;
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    position: absolute;
    bottom: 85px;
  }
  .home_service .config_link .floating-tool__item .content_service .top {
    padding-bottom: 10px;
    border-bottom: solid 1px #eeeeee;
    text-align: center;
  }
  .home_service .config_link .floating-tool__item .content_service .top .name {
    color: #f58220;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .home_service .config_link .floating-tool__item .content_service .top span {
    color: #6d6e71;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom {
    height: 165px;
    overflow-y: scroll;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar {
    width: 5px;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar-thumb {
    background: #888;
    opacity: 0.5;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom::-webkit-scrollbar-thumb:hover {
    background: #555;
    opacity: 0.8;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p {
    padding-left: 20px;
    font-size: 16px;
    color: #6d6e71;
    margin-top: 10px;
    margin-bottom: 0;
    background: url(../../default/images/icon.svg) top 6px left 0 no-repeat;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p:hover {
    background: url(../../default/images/icon2.svg) top 6px left 0 no-repeat;
    color: #f58220;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p a {
    color: #6d6e71;
    font-size: 16px;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom p a:hover {
    color: #f58220;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom ul {
    padding-left: 0;
  }
  .home_service .config_link .floating-tool__item .content_service .bottom ul li {
    list-style: none;
  }
}
@media (min-width: 770px) and (max-width: 1024px) {
  .header-menu {
    padding: 0 !important;
  }
  .header-content .logo-right img {
    display: none;
  }
  footer #footer_mid .footer_mid {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-left: 10px;
    padding-right: 10px;
    gap: 30px;
  }
  footer #footer_top .footer_top {
    padding: 20px 10px;
  }
}
@media (max-width: 769px) {
  .popup_tab {
    display: none;
  }
  #pc_search {
    display: none;
  }
  .toggle-menu-side-bar {
    display: block !important;
    right: -15px;
  }
  .scrollToTop {
    right: 15px;
    width: 40px;
    height: 40px;
    padding-top: 10px;
  }
  .scrollToTop.active {
    bottom: 50px;
  }
  main {
    padding-top: 100px;
  }
  main .home_service {
    position: unset;
  }
  main .home_service ul {
    display: block !important;
  }
  main .home_service ul li a {
    border-radius: unset !important;
  }
  main .home_service ul li a .floating-tool__item__icon {
    flex-direction: unset !important;
    justify-content: center;
    gap: 10px;
  }
  main .home_service ul li a .floating-tool__item__icon span {
    padding: 0 !important;
  }
  main .home_service ul li .content_service {
    display: block !important;
    position: unset !important;
    max-width: 100% !important;
    padding: 10px 30px 20px !important;
  }
  main .home_service ul li .content_service .top img,
  main .home_service ul li .content_service .top p {
    display: none;
  }
  main .home_service ul li .content_service .bottom {
    height: auto !important;
  }
  .pagination {
    margin: 15px 0;
  }
  #ShowCart .modal-dialog {
    max-width: 80%;
    margin: auto;
  }
  #ShowCart .modal-dialog .modal-content {
    margin: 0;
    min-width: unset !important;
  }
  #ModalSearchBK .modal-body {
    gap: 20px;
  }
  .header-menu .menu-log {
    position: relative;
    left: -15px;
  }
  .social-mobile {
    display: flex;
    margin: 20px 0 0;
    grid-gap: 10px;
  }
  .social-pc {
    display: none;
  }
  .container {
    padding: 0 15px !important;
    max-width: 100% !important;
  }
  header {
    border-width: 1px;
    top: 0;
    background: #fff;
  }
  header .container {
    height: 100%;
  }
  header .menu-top-right {
    display: none;
  }
  header .header_content_ .header-content {
    height: 100%;
    padding: 7px 0;
  }
  header .header_content_ .header-content .languages,
  header .header_content_ .header-content .menu_main {
    display: none;
  }
  header .header_content_ .header-content .logo-right {
    height: 45px;
  }
  header .menu-side {
    display: none;
  }
  header .menu-log a.lang {
    display: none;
  }
  header .menu-log a {
    padding: 0 5px;
  }
  header .menu-log a.header-login span {
    display: none;
  }
  header .menu-log {
    align-items: center;
  }
  header a.logo-home img {
    height: 45px;
  }
  header.fixed .logo2 {
    height: 45px !important;
  }
  .count-cart {
    right: 6px;
  }
  #ModalSearch .modal-content {
    width: 100%;
  }
  #ModalSearch .modal-header h4 {
    font-size: 16px;
  }
  #ModalSearch .modal-header {
    padding: 25px 10px 0;
  }
  #ModalSearch .modal-header .btn-close {
    height: 20px;
    width: 20px;
  }
  #ModalSearch .modal-header .btn-close svg {
    height: 20px;
    width: 20px;
  }
  #ModalSearch .modal-body {
    padding: 10px;
  }
  #ModalSearch .box-search {
    padding: 10px;
    margin-bottom: 20px;
  }
  #ModalSearch .box-search label {
    display: none;
  }
  #ModalSearch .box-search .itembox {
    position: relative;
    width: 100%;
  }
  #ModalSearch .box-search .itembox .c-input:nth-child(1) {
    width: 100%;
  }
  #ModalSearch .box-search .itembox .c-input:nth-child(2) {
    position: absolute;
    right: 0;
  }
  #ModalSearch .box-search input {
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
  }
  #ModalSearch .box-search .btn-search span {
    display: none;
  }
  #ModalSearch .box-search .btn-search {
    height: 40px;
    padding: 0 10px;
  }
  #ModalSearch .box-search .btn-search i {
    margin-right: 0;
  }
  #ModalSearch .title-filter {
    font-size: 16px;
  }
  #ModalSearch .list-filter {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  #ModalSearch .check-filter-search .wrap {
    padding: 10px;
    height: 100%;
    grid-gap: 10px;
    grid-template-columns: 20px auto;
    align-items: flex-start;
    line-height: normal;
    font-size: 14px;
  }
  #ModalSearch .check-filter-search .wrap img {
    max-height: 30px;
  }
  #ModalSearch .check-filter-search .mark {
    height: 20px;
    width: 20px;
  }
  #ModalSearch .check-filter-search .mark:before {
    top: 3.5px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
  .modal-backdrop {
    z-index: 95 !important;
  }
  .side-right-search {
    display: none;
  }
  .side-left-btn {
    right: 15px;
    bottom: 100px;
  }
  #ModalLogin {
    background: #fff;
  }
  #ModalLogin .main {
    padding: 25px 10px;
  }
  #ModalLogin .modal-dialog {
    max-width: 100%;
    margin: auto;
  }
  #ModalLogin .modal-content {
    border-radius: 0;
    box-shadow: none;
  }
  #ModalLogin .main-content {
    border-radius: 0;
  }
  #ModalLogin .main-content {
    grid-template-columns: auto;
  }
  #ModalLogin .main-content .banner {
    display: none;
  }
  #ModalLogin .main .nav-tabs a {
    font-size: 16px;
    border-width: 2px;
    padding-bottom: 4px;
  }
  #ModalLogin .main .nav-tabs a.active {
    border-width: 2px;
  }
  #ModalLogin .btn-close {
    right: 10px;
    top: 10px;
    height: 20px;
    width: 20px;
  }
  #ModalLogin .btn-close svg {
    height: 20px;
    width: 20px;
    fill: #707070;
  }
  #ModalLogin .main .box input {
    height: 40px;
    font-size: 14px;
    padding: 5px 10px;
  }
  #ModalLogin .main .box-flex {
    flex-wrap: wrap;
  }
  #ModalLogin .main .box-flex label {
    width: 100%;
    margin-bottom: 10px;
  }
  #ModalLogin .main .box .submit-btn,
  #ModalLogin .main .log-social {
    height: 40px;
    font-size: 14px;
  }
  #ModalLogin .main .box {
    margin-top: 15px;
  }
  #ModalLogin .main .wrapper {
    font-size: 14px;
  }
  #ModalLogin .main .wrapper span {
    width: 25%;
  }
  #ModalLogin .main .log-social span {
    width: 30px;
    height: 30px;
  }
  #ModalLogin .main .log-social span svg {
    height: 15px;
    width: 15px;
  }
  footer .footer_content .name {
    text-align: left;
    margin-bottom: 10px;
  }
  footer .footer_content .add {
    text-align: left;
    margin-bottom: 10px;
  }
  footer .footer_content .add span {
    margin: 0;
  }
  footer .footer_content .info {
    width: 100%;
    display: block;
  }
  footer .footer_content .info span {
    display: grid;
    grid-template-columns: 20px auto;
    grid-gap: 5px;
    text-align: left;
    margin-bottom: 10px;
  }
  #footer_top .footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  #footer_top .footer_top .partners img {
    height: 80px !important;
  }
  #footer_mid .footer_mid {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  footer .content-top {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .content-top a img {
    height: 50px;
  }
  footer .content-top p {
    margin: 20px 0 0;
    font-size: 15px;
  }
  footer .content-bottom {
    grid-template-columns: auto;
  }
  footer .content-bottom .menu-footer {
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px 10px;
    padding: 0;
  }
  footer .copyright {
    margin: 0 -20px;
    padding: 10px 20px 0;
  }
  footer .copyright .social {
    display: none;
  }
  footer .copyright a {
    border: none !important;
    margin: 0;
    width: auto;
    height: auto;
  }
  footer .content-bottom .form-footer {
    margin-top: 25px;
  }
  footer .content-bottom .bct-dmca {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .content-bottom .bct {
    margin-bottom: 0;
  }
  .alert_modal .alert_body {
    width: calc(100% - 20px);
    margin-top: 10%;
  }
  .alert_modal .alert_body a {
    font-size: 14px;
  }
  .header-loged .logedname .user-header-name {
    display: none;
  }
  .header-loged .logedname i {
    display: none;
  }
  .header-loged .logedname img {
    margin-right: 0;
  }
  .dropUserMenu {
    display: none !important;
  }
  #msgModal .msgmodal-content {
    max-width: calc(100% - 20px);
  }
  #msgModal .msgmodal-content p {
    font-size: 16px !important;
  }
  .wrapper-popup {
    width: calc(100% - 20px);
    right: 10px;
  }
  footer .content-top .social {
    display: none;
  }
  footer .content-bottom .item:first-child {
    display: none;
  }
  .li_custom_foooter {
    display: block;
  }
  footer .content-bottom .title-contact {
    font-size: 14px;
  }
  footer .add-footer a span {
    height: auto;
    line-height: normal;
    padding: 2px 10px;
  }
  footer .content-bottom .menu-footer a {
    padding-right: 10px;
    width: auto;
  }
  #footer_mid .footer_mid {
    flex-direction: column;
    gap: 20px;
  }
  #footer_mid .footer_mid .content h3 {
    margin-bottom: 10px;
    text-align: center;
  }
  #footer_mid .footer_mid .social h3 {
    margin-bottom: 15px;
  }
  #footer_mid .footer_mid .social .items {
    justify-content: center;
  }
  #footer_bottom .footer_bottom .menu_footer {
    display: none;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 10px !important;
  }
  #ModalSearchBK .modal-body {
    display: unset;
  }
  #ModalSearchBK .modal-body form {
    width: 100%;
    margin-bottom: 20px;
  }
  .toggle-menu-side-bar {
    right: -10px;
  }
  #footer_top .footer_top {
    padding: 10px !important;
  }
}
.modal-backdrop {
  z-index: 2 !important;
}

.quick-alo-phone {
  position: fixed;
  bottom: 200px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
@media (max-width: 768px) {
  .quick-alo-phone {
    bottom: 215px;
    right: 15px;
  }
}
.quick-alo-phone::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: solid 2px #f58220;
  animation: infinite 1.2s scale-animate;
}
.quick-alo-phone::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: solid 2px #f4c524;
  animation: infinite 1.2s scale-animate;
}
.quick-alo-phone svg {
  animation: infinite 1s rotate-animate;
  z-index: 1;
}

@keyframes scale-animate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
@keyframes rotate-animate {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1.1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1.1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1.1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1.1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
.messenger {
  position: fixed;
  z-index: 99;
  bottom: 140px;
  right: 20px;
  transition: 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .messenger {
    bottom: 155px;
    right: 15px;
  }
}
.messenger:hover {
  transform: translateX(-10px);
}

.menu-sticky {
  top: 51px !important;
}
.menu-sticky .ul-grid {
  background: #f1f1f1 !important;
}

.blocks-banner .block-breadcrumbs {
  background: #f1f1f1 !important;
}
.blocks-banner .block-breadcrumbs .title {
  color: #4b5082 !important;
}

.main-content .menu-left .list::before {
  background: #f1f1f1 !important;
}

.main-content .menu-left .list li a {
  color: #4b5082 !important;
}
.main-content .menu-left .list .active a {
  color: #f58220 !important;
}

.main-content .content-right nav {
  top: 51px !important;
}/*# sourceMappingURL=style.css.map */