@charset "UTF-8";
/* dùng cho một vài thuộc tính riêng cho trình duyện VD: transition, box-shadow */
/* căn giữa chiều dọc và ngang trên 1 box */
/* background opacity */
.container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.row {
  width: calc(100% + 15px * 2);
  flex: 0 0 calc(100% + 15px * 2);
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.col {
  padding: 0 15px;
  transition: 0.2s;
}

/* dùng xs cho màn điện thoại có kích thước nhỏ hơn 576px */
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
  .col-xs-1 {
    width: calc(100% - 100% / (12 / (12 - 1)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 1)));
  }
  .col-xs-2 {
    width: calc(100% - 100% / (12 / (12 - 2)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 2)));
  }
  .col-xs-3 {
    width: calc(100% - 100% / (12 / (12 - 3)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 3)));
  }
  .col-xs-4 {
    width: calc(100% - 100% / (12 / (12 - 4)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 4)));
  }
  .col-xs-5 {
    width: calc(100% - 100% / (12 / (12 - 5)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 5)));
  }
  .col-xs-6 {
    width: calc(100% - 100% / (12 / (12 - 6)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 6)));
  }
  .col-xs-7 {
    width: calc(100% - 100% / (12 / (12 - 7)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 7)));
  }
  .col-xs-8 {
    width: calc(100% - 100% / (12 / (12 - 8)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 8)));
  }
  .col-xs-9 {
    width: calc(100% - 100% / (12 / (12 - 9)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 9)));
  }
  .col-xs-10 {
    width: calc(100% - 100% / (12 / (12 - 10)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 10)));
  }
  .col-xs-11 {
    width: calc(100% - 100% / (12 / (12 - 11)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 11)));
  }
  .col-xs-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
/* dùng sm cho màn điện thoại có kích thước lớn hơn 576px */
@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .col-sm-1 {
    width: calc(100% - 100% / (12 / (12 - 1)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 1)));
  }
  .col-sm-2 {
    width: calc(100% - 100% / (12 / (12 - 2)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 2)));
  }
  .col-sm-3 {
    width: calc(100% - 100% / (12 / (12 - 3)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 3)));
  }
  .col-sm-4 {
    width: calc(100% - 100% / (12 / (12 - 4)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 4)));
  }
  .col-sm-5 {
    width: calc(100% - 100% / (12 / (12 - 5)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 5)));
  }
  .col-sm-6 {
    width: calc(100% - 100% / (12 / (12 - 6)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 6)));
  }
  .col-sm-7 {
    width: calc(100% - 100% / (12 / (12 - 7)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 7)));
  }
  .col-sm-8 {
    width: calc(100% - 100% / (12 / (12 - 8)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 8)));
  }
  .col-sm-9 {
    width: calc(100% - 100% / (12 / (12 - 9)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 9)));
  }
  .col-sm-10 {
    width: calc(100% - 100% / (12 / (12 - 10)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 10)));
  }
  .col-sm-11 {
    width: calc(100% - 100% / (12 / (12 - 11)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 11)));
  }
  .col-sm-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
/* dùng md cho màn điện thoại có kích thước lớn hơn 768px */
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .col-md-1 {
    width: calc(100% - 100% / (12 / (12 - 1)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 1)));
  }
  .col-md-2 {
    width: calc(100% - 100% / (12 / (12 - 2)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 2)));
  }
  .col-md-3 {
    width: calc(100% - 100% / (12 / (12 - 3)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 3)));
  }
  .col-md-4 {
    width: calc(100% - 100% / (12 / (12 - 4)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 4)));
  }
  .col-md-5 {
    width: calc(100% - 100% / (12 / (12 - 5)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 5)));
  }
  .col-md-6 {
    width: calc(100% - 100% / (12 / (12 - 6)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 6)));
  }
  .col-md-7 {
    width: calc(100% - 100% / (12 / (12 - 7)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 7)));
  }
  .col-md-8 {
    width: calc(100% - 100% / (12 / (12 - 8)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 8)));
  }
  .col-md-9 {
    width: calc(100% - 100% / (12 / (12 - 9)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 9)));
  }
  .col-md-10 {
    width: calc(100% - 100% / (12 / (12 - 10)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 10)));
  }
  .col-md-11 {
    width: calc(100% - 100% / (12 / (12 - 11)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 11)));
  }
  .col-md-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
/* dùng lg cho màn điện thoại có kích thước lớn hơn 992px */
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .col-lg-1 {
    width: calc(100% - 100% / (12 / (12 - 1)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 1)));
  }
  .col-lg-2 {
    width: calc(100% - 100% / (12 / (12 - 2)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 2)));
  }
  .col-lg-3 {
    width: calc(100% - 100% / (12 / (12 - 3)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 3)));
  }
  .col-lg-4 {
    width: calc(100% - 100% / (12 / (12 - 4)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 4)));
  }
  .col-lg-5 {
    width: calc(100% - 100% / (12 / (12 - 5)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 5)));
  }
  .col-lg-6 {
    width: calc(100% - 100% / (12 / (12 - 6)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 6)));
  }
  .col-lg-7 {
    width: calc(100% - 100% / (12 / (12 - 7)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 7)));
  }
  .col-lg-8 {
    width: calc(100% - 100% / (12 / (12 - 8)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 8)));
  }
  .col-lg-9 {
    width: calc(100% - 100% / (12 / (12 - 9)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 9)));
  }
  .col-lg-10 {
    width: calc(100% - 100% / (12 / (12 - 10)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 10)));
  }
  .col-lg-11 {
    width: calc(100% - 100% / (12 / (12 - 11)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 11)));
  }
  .col-lg-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
/* dùng xl cho màn điện thoại có kích thước lớn hơn 1200px */
@media only screen and (min-width: 1240px) {
  .container {
    max-width: 1240px;
  }
  .col-xl-1 {
    width: calc(100% - 100% / (12 / (12 - 1)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 1)));
  }
  .col-xl-2 {
    width: calc(100% - 100% / (12 / (12 - 2)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 2)));
  }
  .col-xl-3 {
    width: calc(100% - 100% / (12 / (12 - 3)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 3)));
  }
  .col-xl-4 {
    width: calc(100% - 100% / (12 / (12 - 4)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 4)));
  }
  .col-xl-5 {
    width: calc(100% - 100% / (12 / (12 - 5)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 5)));
  }
  .col-xl-6 {
    width: calc(100% - 100% / (12 / (12 - 6)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 6)));
  }
  .col-xl-7 {
    width: calc(100% - 100% / (12 / (12 - 7)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 7)));
  }
  .col-xl-8 {
    width: calc(100% - 100% / (12 / (12 - 8)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 8)));
  }
  .col-xl-9 {
    width: calc(100% - 100% / (12 / (12 - 9)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 9)));
  }
  .col-xl-10 {
    width: calc(100% - 100% / (12 / (12 - 10)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 10)));
  }
  .col-xl-11 {
    width: calc(100% - 100% / (12 / (12 - 11)));
    flex: 0 0 calc(100% - 100% / (12 / (12 - 11)));
  }
  .col-xl-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
/* dùng cho một vài thuộc tính riêng cho trình duyện VD: transition, box-shadow */
/* căn giữa chiều dọc và ngang trên 1 box */
/* background opacity */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.flex-center-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.flex-center-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-left-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.flex-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.flex-left-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.flex-right-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.flex-inline-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flex-inline-center-left {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-inline-center-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

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

.text-center {
  text-align: center;
  width: 100%;
}

.f-w-b {
  font-weight: bold;
}

.f-italic {
  font-style: italic;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.text-up {
  text-transform: uppercase;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fs-10 {
  font-size: 10px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-25 {
  font-size: 25px;
}

.fs-18 {
  font-size: 18px;
}

.fs-30 {
  font-size: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mr-20 {
  margin-right: 20px;
}

.lh-22 {
  line-height: 22px;
}

.pt-20 {
  padding-top: 20px;
}

.pd-35 {
  padding: 3.5rem 0;
}

.pt-0 {
  padding-top: 0 !important;
}

.popup {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  background: rbga(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 11;
  transition: all 0.5s;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup-close {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 20px;
  cursor: pointer;
}
.popup-title {
  font-weight: 700;
  text-align: center;
  line-height: 30px;
  margin-bottom: 29px;
  font-size: 26px;
}
.popup .form-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.popup .form-group label {
  width: 100%;
  line-height: 40px;
  display: flex;
  justify-content: space-between;
  line-height: 24px;
  margin-bottom: 7px;
}
.popup .form-group input[type=text] {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid var(--color_border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font_family);
  padding-right: 40px !important;
}
.popup .form-group .btn_register {
  width: 100%;
  height: 40px;
  background: var(--background_button);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font_family);
  cursor: pointer;
}
.popup#popup-tracuu .popup-content {
  background: rgb(46, 116, 235);
}
.popup#popup-tracuu .popup-body {
  padding: 3rem 2rem;
}

.uppercase {
  text-transform: uppercase;
}

.heading-shadow {
  box-shadow: 0 3px 8.1px 0px rgba(71, 105, 131, 0.15);
}

.max-w-full {
  max-width: 100%;
}

.flex-content {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.red-color {
  color: #FF0912;
}

.popup--item {
  box-shadow: none !important;
}
.popup--item:not(:first-child) {
  margin-top: 30px;
}
.popup--item .wrapper {
  overflow: hidden;
  position: relative;
}
.popup--item .wrapper > div {
  position: relative;
  z-index: 1;
}
.popup--item .wrapper::before, .popup--item .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
.popup--item .wrapper::before {
  top: 0;
  height: calc(100% - 7px);
  background-color: #fff;
  z-index: 0;
}
.popup--item .wrapper::after {
  bottom: 1px;
  height: 7px;
  background: url("/assets/img/bg-popup.png");
  background-position: left bottom;
  z-index: 1;
}
.popup--line {
  padding: 16px;
  background: url(/assets/img/line.png) no-repeat;
  background-size: contain;
  margin: 0 -24px;
}
.popup--note {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
.popup--note p {
  line-height: normal;
}
.popup--ctas {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 2rem 10px 0;
  text-align: center;
}
.popup--ctas > * {
  border-radius: 12px;
  width: calc(50% - 5px);
  background: #FF5C62;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: all 0.3s ease;
}
.popup--ctas > *:hover {
  box-shadow: 0 0 8px;
}
.popup--ctas a {
  background-color: #4CAEFF;
}

.font-light {
  font-weight: 300;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

@media screen and (max-width: 768px) {
  .popup-content {
    width: 90%;
  }
  .popup-body {
    display: block !important;
  }
  .popup-body form {
    margin-top: 15px;
  }
}
/* dùng cho một vài thuộc tính riêng cho trình duyện VD: transition, box-shadow */
/* căn giữa chiều dọc và ngang trên 1 box */
/* background opacity */
.breadcrumb {
  padding-top: 30px;
}
.breadcrumb ul {
  display: inline;
}
.breadcrumb ul li {
  position: relative;
  margin-right: 20px;
  display: inline;
}
.breadcrumb ul li:before {
  position: absolute;
  content: "";
  left: -16px;
  top: 4px;
  width: 6px;
  height: 6px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
}
.breadcrumb ul li a {
  transition: 0.3s;
  color: #000;
}
.breadcrumb ul li a:hover {
  color: rgb(36, 116, 229);
}
.breadcrumb ul li span {
  color: #000;
}
.breadcrumb ul li:first-child:before {
  display: none;
}
.breadcrumb ul li:last-child {
  margin-right: 0;
}
.breadcrumb ul li:last-child span {
  opacity: 0.6;
}

/*toast alert*/
.toast-top-right {
  top: 12px;
  right: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  display: none;
}

#toast-container * {
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 10px;
  width: 350px;
  border-radius: 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px #999;
  color: #FFF;
}

#toast-container > div:hover {
  box-shadow: 0 0 12px #000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
  width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.toast-icon {
  flex: 0 0 18px;
}
.toast-icon span {
  width: 16px;
  height: 16px;
  text-align: center;
  display: block;
  background-color: red;
  border-radius: 50%;
  display: none;
  line-height: 19px;
}
.toast-icon span.success {
  background-color: transparent;
}
.toast-icon span.success svg path {
  fill: #2dcb48;
}
.toast-message {
  flex: 0 0 calc(100% - 20px);
  padding-left: 15px;
}
.toast-message_title {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
.toast-message_content {
  font-size: 0.85rem;
  color: #000;
  line-height: 1.4;
}
.toast-success .toast-icon span.success {
  display: block;
}
.toast-error .toast-icon span.error {
  display: block;
}
.toast-error .toast-icon span.error svg {
  height: 14px;
}
.toast-error .toast-icon span.error svg path {
  fill: #fff;
}
.toast-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  text-align: center;
}

.err_show {
  color: red !important;
  display: none;
  padding-top: 5px;
  font-size: 0.825rem;
  font-style: italic;
  font-weight: 400;
}

.err_show.news {
  clear: both;
  margin-bottom: 0;
  text-align: center;
  float: right;
}

.err_show.active {
  display: block !important;
}

/* Loading full page */
#loading_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading_image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgb(36, 116, 229);
  border-top: 4px solid #fff !important;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
 * CKEditor 5 (v35.2.1) content styles.
 * Generated on Wed, 26 Oct 2022 05:16:37 GMT.
 * For more information, check out https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/content-styles.html
 */
/* dùng cho một vài thuộc tính riêng cho trình duyện VD: transition, box-shadow */
/* căn giữa chiều dọc và ngang trên 1 box */
/* background opacity */
:root {
  --ck-color-image-caption-background: hsl(0, 0%, 97%);
  --ck-color-image-caption-text: hsl(0, 0%, 20%);
  --ck-color-mention-background: hsla(341, 100%, 30%, 0.1);
  --ck-color-mention-text: hsl(341, 100%, 30%);
  --ck-color-table-caption-background: hsl(0, 0%, 97%);
  --ck-color-table-caption-text: hsl(0, 0%, 20%);
  --ck-highlight-marker-blue: hsl(201, 97%, 72%);
  --ck-highlight-marker-green: hsl(120, 93%, 68%);
  --ck-highlight-marker-pink: hsl(345, 96%, 73%);
  --ck-highlight-marker-yellow: hsl(60, 97%, 73%);
  --ck-highlight-pen-green: hsl(112, 100%, 27%);
  --ck-highlight-pen-red: hsl(0, 85%, 49%);
  --ck-image-style-spacing: 1.5em;
  --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
  --ck-todo-list-checkmark-size: 16px;
}

.ck-content {
  color: inherit !important;
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "roboto", sans-serif;
  width: 100%;
}

.ck-content .short_code {
  line-height: initial;
  font-size: initial;
}

.ck-content a:not(.short_code a) {
  color: rgb(36, 116, 229);
}
.ck-content a:not(.short_code a) * {
  color: rgb(36, 116, 229);
}

.ck-content h1 {
  font-size: 2.3em;
  line-height: 1.2;
}

.ck-content h2:not(.short_code h2) {
  font-size: 1.5em;
  line-height: 1.3;
}

.ck-content p:not(.short_code p) {
  word-wrap: break-word;
}

.ck-content h3:not(.short_code h3) {
  font-size: 1.3em;
  line-height: 1.3;
}

.ck-content h4 {
  font-size: 1.125em;
}

.ck-content h5,
.ck-content h6 {
  font-size: 1em;
}

.ck-content h1,
.ck-content h2:not(.short_code h2),
.ck-content h3:not(.short_code h3),
.ck-content h4,
.ck-content h5,
.ck-content h6 {
  color: #000;
  font-family: "roboto", sans-serif;
  font-weight: 500;
  border: 0;
  padding-bottom: 0;
}

.ck-content *:not(.short_code) {
  border: revert;
  font-size: revert;
  margin: revert;
  outline: revert;
  padding: revert;
  color: revert;
  vertical-align: revert;
  list-style: revert;
}
.ck-content p:not(.short_code p),
.ck-content span:not(.short_code span) {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  color: rgba(0, 0, 0, 0.65);
}

/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content blockquote {
  overflow: hidden;
  padding-right: 1.5em !important;
  padding-left: 1.5em !important;
  font-style: italic !important;
  border-left: solid 5px hsl(0, 0%, 80%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ck-content blockquote > p {
  margin: 0 !important;
}

/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content[dir=rtl] blockquote {
  border-left: 0;
  border-right: solid 5px hsl(0, 0%, 80%);
}

.ck-hidden {
  display: none !important;
}

.ck-content .table {
  display: table;
  margin: 0.9em auto;
}

.ck-content .table table {
  border-collapse: collapse;
  border-spacing: 0;
  height: 100%;
  width: 100%;
}

.ck-content .table table td,
.ck-content .table table th {
  border: 1px solid #bfbfbf;
  min-width: 2em;
  padding: 0.4em;
}

.ck-content .table table th {
  background: rgba(0, 0, 0, 0.05);
  font-weight: 700;
}

.ck-content[dir=rtl] .table th {
  text-align: right;
}

.ck-content[dir=ltr] .table th {
  text-align: left;
}

.ck-content table {
  border-collapse: collapse;
  border-spacing: 0;
  height: 100%;
  width: 100%;
  display: table;
  margin: 0.9em auto;
}

.ck-content table td,
.ck-content table th {
  border: 1px solid #bfbfbf;
  min-width: 2em;
  padding: 0.4em;
}

.ck-content table th {
  background: rgba(0, 0, 0, 0.05);
  font-weight: 700;
}

.ck-content[dir=rtl] table th {
  text-align: right;
}

.ck-content[dir=ltr] table th {
  text-align: left;
}

.ck-editor__editable .ck-table-bogus-paragraph {
  display: inline-block;
  width: 100%;
}

/* ckeditor5-basic-styles/theme/code.css */
.ck-content code {
  background-color: hsla(0, 0%, 78%, 0.3);
  padding: 0.15em;
  border-radius: 2px;
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-yellow {
  background-color: var(--ck-highlight-marker-yellow);
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-green {
  background-color: var(--ck-highlight-marker-green);
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-pink {
  background-color: var(--ck-highlight-marker-pink);
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-blue {
  background-color: var(--ck-highlight-marker-blue);
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-red {
  color: var(--ck-highlight-pen-red);
  background-color: transparent;
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-green {
  color: var(--ck-highlight-pen-green);
  background-color: transparent;
}

/* ckeditor5-image/theme/image.css */
.ck-content .image {
  display: table;
  clear: both;
  text-align: center;
  margin: 0.9em auto;
  min-width: 50px;
}

/* ckeditor5-image/theme/image.css */
.ck-content .image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

/* ckeditor5-image/theme/image.css */
.ck-content .image-inline {
  display: inline-flex;
  max-width: 100%;
  align-items: flex-start;
}

/* ckeditor5-image/theme/image.css */
.ck-content .image-inline picture {
  display: flex;
}

/* ckeditor5-image/theme/image.css */
.ck-content .image-inline picture,
.ck-content .image-inline img {
  flex-grow: 1;
  flex-shrink: 1;
  max-width: 100%;
}

/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized {
  max-width: 100%;
  display: block;
  box-sizing: border-box;
}

/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized img {
  width: 100%;
}

/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized > figcaption {
  display: block;
}

/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-tiny {
  font-size: 0.7em;
}

/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-small {
  font-size: 0.85em;
}

/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-big {
  font-size: 1.4em;
}

/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-huge {
  font-size: 1.8em;
}

/* ckeditor5-image/theme/imagecaption.css */
.ck-content .image > figcaption {
  display: table-caption;
  caption-side: bottom;
  word-break: break-word;
  color: var(--ck-color-image-caption-text);
  background-color: var(--ck-color-image-caption-background);
  padding: 0.6em;
  font-size: 0.75em;
  outline-offset: -1px;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-block-align-left,
.ck-content .image-style-block-align-right {
  max-width: calc(100% - var(--ck-image-style-spacing));
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-left,
.ck-content .image-style-align-right {
  clear: none;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-side {
  float: right;
  margin-left: var(--ck-image-style-spacing);
  max-width: 50%;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-left {
  float: left;
  margin-right: var(--ck-image-style-spacing);
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-center {
  margin-left: auto;
  margin-right: auto;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-right {
  float: right;
  margin-left: var(--ck-image-style-spacing);
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-block-align-right {
  margin-right: 0;
  margin-left: auto;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content p + .image-style-align-left,
.ck-content p + .image-style-align-right,
.ck-content p + .image-style-side {
  margin-top: 0;
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-inline.image-style-align-left,
.ck-content .image-inline.image-style-align-right {
  margin-top: var(--ck-inline-image-style-spacing);
  margin-bottom: var(--ck-inline-image-style-spacing);
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-inline.image-style-align-left {
  margin-right: var(--ck-inline-image-style-spacing);
}

/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-inline.image-style-align-right {
  margin-left: var(--ck-inline-image-style-spacing);
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list {
  list-style: none;
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li {
  margin-bottom: 5px;
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li .todo-list {
  margin-top: 5px;
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input {
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  width: var(--ck-todo-list-checkmark-size);
  height: var(--ck-todo-list-checkmark-size);
  vertical-align: middle;
  border: 0;
  left: -25px;
  margin-right: -15px;
  right: 0;
  margin-left: 0;
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::before {
  display: block;
  position: absolute;
  box-sizing: border-box;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid hsl(0, 0%, 20%);
  border-radius: 2px;
  transition: 250ms ease-in-out box-shadow, 250ms ease-in-out background, 250ms ease-in-out border;
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::after {
  display: block;
  position: absolute;
  box-sizing: content-box;
  pointer-events: none;
  content: "";
  left: calc(var(--ck-todo-list-checkmark-size) / 3);
  top: calc(var(--ck-todo-list-checkmark-size) / 5.3);
  width: calc(var(--ck-todo-list-checkmark-size) / 5.3);
  height: calc(var(--ck-todo-list-checkmark-size) / 2.6);
  border-style: solid;
  border-color: transparent;
  border-width: 0 calc(var(--ck-todo-list-checkmark-size) / 8) calc(var(--ck-todo-list-checkmark-size) / 8) 0;
  transform: rotate(45deg);
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::before {
  background: hsl(126, 64%, 41%);
  border-color: hsl(126, 64%, 41%);
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::after {
  border-color: hsl(0, 0%, 100%);
}

/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label .todo-list__label__description {
  vertical-align: middle;
}

/* ckeditor5-language/theme/language.css */
.ck-content span[lang] {
  font-style: italic;
}

/* ckeditor5-media-embed/theme/mediaembed.css */
.ck-content .media {
  clear: both;
  margin: 0.9em 0;
  display: block;
  min-width: 15em;
}

/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break {
  position: relative;
  clear: both;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break::after {
  content: "";
  position: absolute;
  border-bottom: 2px dashed hsl(0, 0%, 77%);
  width: 100%;
}

/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break__label {
  position: relative;
  z-index: 1;
  padding: 0.3em 0.6em;
  display: block;
  text-transform: uppercase;
  border: 1px solid hsl(0, 0%, 77%);
  border-radius: 2px;
  font-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
  font-size: 0.75em;
  font-weight: bold;
  color: hsl(0, 0%, 20%);
  background: hsl(0, 0%, 100%);
  box-shadow: 2px 2px 1px hsla(0, 0%, 0%, 0.15);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ckeditor5-table/theme/table.css */
.ck-content .table {
  margin: 0.9em auto;
  display: block;
}

.ck-content .responsive-table {
  width: 100%;
  overflow-x: auto;
}

/* ckeditor5-table/theme/table.css */
.ck-content .table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: 100%;
}

/* ckeditor5-table/theme/table.css */
.ck-content .table table td,
.ck-content .table table th {
  min-width: 2em;
  padding: 0.4em;
  border: 1px solid hsl(0, 0%, 75%);
}

/* ckeditor5-table/theme/table.css */
.ck-content .table table th {
  font-weight: bold;
  background: hsla(0, 0%, 0%, 0.05);
}

/* ckeditor5-table/theme/table.css */
.ck-content[dir=rtl] .table th {
  text-align: right;
}

/* ckeditor5-table/theme/table.css */
.ck-content[dir=ltr] .table th {
  text-align: left;
}

/* ckeditor5-table/theme/tablecolumnresize.css */
.ck-content .table .ck-table-resized {
  table-layout: fixed;
}

/* ckeditor5-table/theme/tablecolumnresize.css */
.ck-content .table table {
  overflow: hidden;
}

/* ckeditor5-table/theme/tablecolumnresize.css */
.ck-content .table td,
.ck-content .table th {
  position: relative;
}

/* ckeditor5-table/theme/tablecaption.css */
.ck-content .table > figcaption {
  display: table-caption;
  caption-side: top;
  word-break: break-word;
  text-align: center;
  color: var(--ck-color-table-caption-text);
  background-color: var(--ck-color-table-caption-background);
  padding: 0.6em;
  font-size: 0.75em;
  outline-offset: -1px;
}

/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre {
  padding: 1em !important;
  color: hsl(0, 0%, 20.8%);
  background: hsla(0, 0%, 78%, 0.3);
  border: 1px solid hsl(0, 0%, 77%);
  border-radius: 2px;
  text-align: left;
  direction: ltr;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  white-space: pre-wrap;
  font-style: normal;
  min-width: 200px;
  word-wrap: break-word;
}

/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre code {
  background: unset;
  padding: 0;
  border-radius: 0;
}

/* ckeditor5-horizontal-line/theme/horizontalline.css */
.ck-content hr {
  margin: 15px 0;
  height: 4px;
  background: hsl(0, 0%, 87%);
  border: 0;
}

/* ckeditor5-list/theme/liststyles.css */
.ck-content ol {
  list-style-type: decimal;
  margin: revert;
}

/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol {
  list-style-type: lower-latin;
}

/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol ol {
  list-style-type: lower-roman;
}

/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol ol ol {
  list-style-type: upper-latin;
}

/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol ol ol ol {
  list-style-type: upper-roman;
}

/* ckeditor5-mention/theme/mention.css */
.ck-content .mention {
  background: var(--ck-color-mention-background);
  color: var(--ck-color-mention-text);
}

.ck-content iframe {
  width: 100%;
}

@media print {
  /* ckeditor5-page-break/theme/pagebreak.css */
  .ck-content .page-break {
    padding: 0;
  }
  /* ckeditor5-page-break/theme/pagebreak.css */
  .ck-content .page-break::after {
    display: none;
  }
}
.banner {
  position: relative;
}
.banner-container {
  position: absolute;
  top: 0px;
  height: calc(100% - 64px);
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
}
.banner-container .booking-container {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.banner-container .tabs {
  display: flex;
  border-top: 1px solid #eaeaea;
  align-items: center;
  justify-content: center;
}
.banner-container .tab {
  width: 100px;
  flex: 1;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
}
.banner-container .tab.active {
  color: #0066cc;
  border-bottom: 3px solid #0066cc;
}
.banner-container .tab i {
  margin-right: 8px;
}
.banner-container .form-container {
  padding: 20px;
  border: 1px solid #eaeaea;
}
.banner-container .form-container__form {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.banner-container .form-row {
  display: flex;
  position: relative;
}
.banner-container .form-row__date {
  border-left: 1px solid rgb(242, 242, 242);
}
.banner-container .form-input {
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
}
.banner-container .location-inputs {
  display: flex;
  flex: 2;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.banner-container .location-inputs .input-group:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 1px;
  height: 100%;
  background-color: rgb(242, 242, 242);
}
.banner-container .date-inputs {
  display: flex;
  flex: 1;
}
.banner-container .date-inputs.active .input-group__hidden {
  opacity: 1;
  visibility: visible;
}
.banner-container .date-inputs.active .input-group__show {
  display: none;
}
.banner-container .date-inputs.active .remove-date {
  display: block;
}
.banner-container .date-inputs .input-group:last-child {
  border-left: 1px solid rgb(242, 242, 242);
}
.banner-container .input-group {
  flex: 1;
  position: relative;
  padding: 0px 16px;
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
}
.banner-container .input-group-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.banner-container .input-group svg {
  width: 30px;
}
.banner-container .input-group__hidden {
  opacity: 0;
  visibility: hidden;
  flex: 1;
  position: relative;
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
}
.banner-container .input-group__show {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
}
.banner-container .input-group__show span {
  color: rgb(36, 116, 229);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}
.banner-container .input-group__show svg {
  stroke: rgb(36, 116, 229);
  fill: rgb(36, 116, 229);
}
.banner-container .input-label {
  display: block;
  font-size: 12px;
  color: rgb(184, 184, 184);
  margin-bottom: 5px;
}
.banner-container .input-label .remove-date {
  display: none;
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 10px;
}
.banner-container .input-label .remove-date svg {
  width: 18px;
  height: 18px;
  stroke: #c05252;
}
.banner-container .input-field {
  width: 100%;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s;
  padding: 0;
}
.banner-container .input-field:focus {
  border-color: #0066cc;
}
.banner-container .input-icon {
  color: #0066cc;
  font-size: 18px;
}
.banner-container .input-icon-switch {
  transform: rotate(-45deg);
}
.banner-container .swap-btn {
  width: 32px;
  height: 32px;
  background-color: rgb(242, 242, 242);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.banner-container .swap-btn svg {
  width: 20px;
}
.banner-container .swap-btn svg path,
.banner-container .swap-btn svg polyline {
  stroke: #000 !important;
}
.banner-container .swap-btn i {
  color: #0066cc;
  font-size: 16px;
}
.banner-container .search-btn {
  background-color: #ffcc00;
  color: #333;
  border: none;
  border-radius: 4px;
  padding: 18.5px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 158px;
}
.banner-container .search-btn.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5;
  width: 160px;
}
.banner-container .search-btn:hover {
  background-color: #f0c000;
}
.banner-container .date-input {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  cursor: pointer;
}
.banner-container .flatpickr-calendar {
  border-radius: 4px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .banner-container {
    top: -50px;
    position: relative;
  }
  .banner-container .form-container .form-row {
    flex-direction: column;
  }
  .banner-container .form-container .form-row .location-inputs,
  .banner-container .form-container .form-row .date-inputs {
    flex-direction: column;
    flex: 1;
    width: 100%;
    align-items: flex-start;
  }
  .banner-container .form-container__form {
    flex-direction: column;
    align-items: inherit;
  }
  .banner-container .form-input {
    width: 100%;
    border: 0;
  }
  .banner-container .input-group {
    flex: 1;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
  .banner-container .input-group::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 98%;
    height: 1px;
    background-color: rgb(224, 224, 224);
  }
  .banner-container .swap-btn {
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .banner-container .swap-btn svg {
    transform: rotate(45deg);
  }
  .banner-container .search-btn {
    width: 100%;
    max-width: 100%;
  }
  .banner-container .form-row__date {
    border-left: 0;
  }
  .banner-container .location-inputs .input-group:last-child::before {
    display: none;
  }
  .banner-container .date-inputs .input-group:last-child {
    border-left: 0;
  }
  .banner-container .search-btn.loading {
    width: 100%;
  }
}
.search-page.mobile {
  display: none;
}
.search-page .banner-container {
  position: relative;
  margin-top: 20px;
}
.search-page .banner-container .booking-container {
  border: 1px solid rgb(224, 224, 224);
  box-shadow: none;
}

.border-box {
  border: 1px solid rgb(224, 224, 224);
  padding: 1rem;
}

.content {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
.content-left {
  width: 280px;
  position: sticky;
  max-height: 99vh;
  top: 0;
  overflow: hidden;
  /* Custom jQuery UI Slider Styles */
}
.content-left:hover {
  overflow-y: auto;
  overflow-x: hidden;
}
.content-left.mobile {
  width: 100%;
  position: fixed;
  left: -100%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  transition: all 0.3s ease;
}
.content-left.mobile.active {
  left: 0;
  right: 0;
  z-index: 9999;
}
.content-left.mobile .sidebar {
  overflow-y: auto;
  height: 100vh;
  border-radius: 0;
}
.content-left.mobile .close-sidebar {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
}
.content-left.mobile .close-sidebar svg {
  width: 24px;
  height: 24px;
}
.content-left.mobile .close-sidebar svg path {
  fill: rgb(207, 71, 71);
}
.content-left .sidebar {
  width: 280px;
  border-radius: 8px;
  flex-direction: column;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(224, 224, 224);
  padding: 16px;
}
.content-left .sidebar-section {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}
.content-left .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.content-left .section-header h3 {
  font-size: 18px;
}
.content-left .section-content {
  margin-top: 0.75rem;
}
.content-left .price-picker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.content-left .price-picker input {
  width: 100%;
  text-align: center;
  border: 0;
  padding: 5px 0;
  text-align: left;
  font-size: 12px;
  color: rgb(120, 120, 120);
  line-height: 24px;
  font-weight: 500;
  height: 24px;
}
.content-left .price-picker__box:last-child input {
  text-align: right;
}
.content-left .time-picker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.content-left .time-picker__box {
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 52px;
  width: 154px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
}
.content-left .time-picker__box input {
  width: 100%;
  text-align: center;
  border: 0;
  padding: 5px 0;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(20, 20, 20);
  height: 24px;
  width: 50px;
}
.content-left .time-picker__box span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
  margin-bottom: 0px;
  color: rgb(184, 184, 184);
}
.content-left .company-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
}
.content-left .company-item .open-child {
  line-height: 19px;
}
.content-left .company-item .open-child.active svg {
  transform: rotate(180deg);
}
.content-left .company-item .open-child svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
  fill: rgba(0, 0, 0, 0.65);
}
.content-left .company-item label {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-weight: 500;
}
.content-left .list-child {
  padding-left: 25px;
  display: none;
}
.content-left .list-child.active {
  display: block;
}
.content-left .rating {
  display: flex;
  align-items: center;
  color: #f59e0b;
}
.content-left .search-input {
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
.content-left .ui-slider {
  height: 4px;
  background: #e5e7eb;
  border: none;
  margin: 1.5rem 0.75rem;
  position: relative;
}
.content-left .ui-slider .ui-slider-range {
  background: #3b82f6;
  border: none;
}
.content-left .ui-slider .ui-slider-handle {
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  top: 50%;
  margin-top: -0.75rem;
  margin-left: -0.75rem;
  cursor: pointer;
}
.content-left .ui-slider .ui-slider-handle:focus {
  outline: none;
}
.content-left .rotate-180 {
  transform: rotate(180deg);
}
.content-right {
  width: calc(100% - 280px);
  padding-left: 20px;
}
.content-right.mobile {
  width: 100%;
  padding: 0 15px;
}
.content-right__filters--checked {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.content-right__filters--checked .remove-filter__item {
  border: 1px solid rgb(224, 224, 224);
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-flex;
  font-size: 12px;
  line-height: 16px;
  color: rgb(20, 20, 20);
}
.content-right__filters--checked .remove-filter__item .remove-filter {
  height: 16px;
  cursor: pointer;
  margin-left: 5px;
}
.content-right__lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-right__lists .border-box {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.content-right__lists .border-box:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.content-right__lists .product-brand {
  font-size: 16px;
  color: rgb(72, 72, 72);
  font-weight: bold;
}
.content-right__lists .product-name {
  color: rgb(72, 72, 72);
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.content-right__lists .product-time {
  font-size: 20px;
  font-weight: bold;
  color: rgb(72, 72, 72);
}
.content-right__lists .product-address {
  font-size: 16px;
  width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgb(112, 112, 112);
}
.content-right__lists .product-address-item {
  color: rgb(112, 112, 112);
  font-size: 15px;
}
.content-right__lists .product-address-item .small {
  font-size: 14px;
  color: rgb(36, 116, 229);
  font-style: italic;
}
.content-right__lists .product-time-distance {
  font-size: 14px;
  padding-left: 25px;
  margin-top: -5px;
  margin-bottom: 10px;
}
.content-right__lists .product-time-end {
  position: relative;
}
.content-right__lists .product-time-end::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 170%;
  border-left: 1px dashed #484848;
  left: 7px;
  top: -170%;
  position: absolute;
}
.content-right__lists .product-view {
  font-size: 14px;
}
.content-right__lists .product-price {
  font-size: 20px;
  font-weight: bold;
  color: rgb(72, 72, 72);
}
.content-right__lists .product-price__old {
  font-size: 16px;
  font-weight: bold;
  color: rgb(184, 184, 184);
  text-decoration: line-through;
}
.content-right__lists .product-detail {
  display: none;
  position: relative;
  margin-top: 16px;
  border-top: 1px solid rgb(192, 192, 192);
  padding: 8px 64px 0px;
}
.content-right__lists .product-detail .close-information {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.content-right__lists .product-detail.active {
  display: block;
}
.content-right__lists .product-detail__tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid rgb(192, 192, 192);
}
.content-right__lists .product-detail__tab-item {
  margin: 0px 12px 0px 0px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 100%;
  margin: 0 32px 0 0;
  padding: 12px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: rgba(0, 0, 0, 0.65);
}
.content-right__lists .product-detail__tab-item:hover {
  color: rgb(36, 116, 229);
}
.content-right__lists .product-detail__tab-item.active {
  color: rgb(36, 116, 229);
}
.content-right__lists .product-detail__tab-item.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgb(36, 116, 229);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.content-right__lists .product-detail__content {
  padding: 16px 0;
}
.content-right__lists .product-detail__content .content-title {
  color: rgb(77, 77, 77);
  font-size: 16px;
}
.content-right__lists .product-detail__content-item {
  display: none;
}
.content-right__lists .product-detail__content-item.active {
  display: block;
}
.content-right__lists .product-detail__content-item.product-policy {
  color: rgba(0, 0, 0, 0.65);
}
.content-right__lists .product-detail__content-item.product-policy .title-tab {
  margin-bottom: 16px;
  color: rgb(20, 20, 20);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.content-right__lists .product-detail__content-item.product-images .swiper-slide-thumb-active img {
  padding: 4px;
  border: 1px solid rgb(36, 116, 229);
}
.content-right__lists .product-detail__content-item.product-images .swiper-button-next,
.content-right__lists .product-detail__content-item.product-images .swiper-button-prev {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.content-right__lists .product-detail__content-item.product-images .swiper-button-next::after,
.content-right__lists .product-detail__content-item.product-images .swiper-button-prev::after {
  font-size: 16px;
  color: #000;
}
.content-right__lists .product-location__info {
  margin-bottom: 16px;
}
.content-right__lists .product-location__info--desc {
  font-size: 16px;
  color: rgb(77, 77, 77);
  line-height: 1.5;
  font-weight: 400;
}
.content-right__lists .product-location .location-item {
  flex: 0 0 50%;
  max-width: 50%;
}
.content-right__lists .product-location .location-item__list {
  max-height: 440px;
  overflow-y: auto;
  margin-top: 16px;
}
.content-right__lists .product-location .location-item__content .product-time {
  font-size: 16px;
  color: rgb(112, 112, 112);
}
.content-right__lists .product-location .location-item__content:not(:first-child) {
  margin-top: 16px;
}
.content-right__lists .box-1-3 {
  width: 25%;
}
.content-right__lists .box-2-3 {
  width: 42.5%;
}
.content-right__lists .box-3-3 {
  width: 32.5%;
}
.content-right__lists .box-3-3 .open-information.active svg {
  transform: rotate(180deg);
}

.popup {
  max-width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
  background-color: #fff;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.popup-body {
  width: 600px;
}
.popup-body textarea,
.popup-body input {
  width: 100%;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  padding: 0.5rem;
  text-align: left;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  color: rgb(20, 20, 20);
  height: 40px;
  font-weight: 400;
}
.popup-body textarea {
  height: 100px;
}
.popup-body select {
  width: 100%;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  padding: 0.5rem;
  text-align: left;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  color: rgb(20, 20, 20);
  height: 40px;
  background-color: #fff;
}
.popup-body input[type=radio] {
  width: 20px;
  height: 20px;
}
.popup-body .item-quantity button {
  height: 36px;
}
.popup-body .item-quantity input {
  width: 100px;
  border-left: 0;
  border-right: 0;
  height: 36px;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  text-align: center;
}
.popup-body form {
  width: 60%;
}
.popup-body form .error {
  color: rgb(184, 31, 31);
}

.item-durations {
  border-bottom: 1px dashed rgb(224, 224, 224);
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
}
.item-durations .item-duration {
  max-width: 33.33%;
}
.item-durations .item-duration__top .duration-time {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0px;
  margin-right: 8px;
}
.item-durations .item-duration__top .duration-time.last {
  margin-left: 8px;
  margin-right: 0;
}
.item-durations .item-duration__top .duration-border {
  flex: 1 1 0%;
  height: 0px;
  border-bottom: 1px solid rgb(224, 224, 224);
}
.item-durations .item-duration__top .duration-distance {
  margin: 0px 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
}
.item-durations .item-duration__address {
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .content-right__lists .box-1-3 {
    width: 100%;
  }
  .content-right__lists .box-2-3 {
    width: 100%;
  }
  .content-right__lists .box-3-3 {
    width: 100%;
  }
  .product-content-top {
    padding: 12px 16px;
    border-bottom: 1px dashed rgb(224, 224, 224);
    margin-bottom: 0 !important;
  }
  .product-content-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .product-content-top .product-name {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .product-detail {
    border-top: 0;
    margin-top: 0 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 15px !important;
    z-index: 9999;
  }
  .product-detail .product-detail__tab-item {
    margin-right: 15px;
  }
  h1 {
    font-size: 20px !important;
    line-height: 24px !important;
    margin-bottom: 0 !important;
  }
  .content-right__filters--checked {
    margin-top: 16px;
  }
  .border-box {
    padding: 0;
  }
  .box-3-3 {
    margin-top: 0 !important;
  }
  .box-3-3 > .text-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 8px 16px;
  }
  .box-3-3 > .text-right .product-price {
    color: #000;
    font-size: 20px;
  }
  .box-3-3 .item-action {
    margin-top: 0 !important;
    background-color: rgb(236, 244, 253) !important;
  }
  .box-3-3 .item-action .open-information {
    margin-top: 0 !important;
    padding-left: 16px;
  }
  .box-3-3 .item-action button {
    background-color: rgb(36, 116, 229) !important;
    display: flex;
    flex-direction: row;
    padding: 8px 16px;
    border-radius: 0px 8px;
    width: 50%;
    text-align: center;
    justify-content: center;
    color: #fff;
  }
  .search-page .banner-container {
    top: 0;
  }
}
* {
  box-sizing: border-box;
}

* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: 1rem;
  font-family: "roboto", sans-serif, sans-serif;
  font-weight: 500;
  color: #000;
}

input,
button,
textarea {
  font-family: "roboto", sans-serif, sans-serif;
}

ul {
  list-style: none;
  margin: 0;
}

ol,
ul {
  list-style-position: inside;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

p {
  line-height: 28px;
}

input {
  padding: 0 10px;
}

.text-primary-color {
  color: rgb(36, 116, 229);
}

.bg-primary-color {
  background-color: rgb(36, 116, 229);
}

.menu-mobile {
  display: none;
}
.menu-mobile.active {
  display: block;
}
.menu-mobile-icon svg {
  stroke: #fff;
}
.menu-mobile__fixed {
  z-index: 9999 !important;
  background-color: rgb(36, 116, 229);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
button:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  .menu_level1 {
    transition: 0.3s;
  }
  .menu_level1.active .menu_item, .menu_level1:hover .menu_item {
    color: #fff;
  }
  .menu_level1.active .icon-down svg path, .menu_level1:hover .icon-down svg path {
    fill: #fff;
  }
  .menu_level1 .icon-down {
    margin-left: 5px;
  }
  .menu_level1 .icon-down svg path {
    fill: #fff;
  }
  .menu_level1.menu_parent {
    position: relative;
  }
  .menu_level1.menu_parent .submenu {
    position: absolute;
    z-index: 9999;
    top: 150%;
    right: auto;
    left: 0;
    visibility: hidden;
    opacity: 0;
    display: block;
    min-width: 210px;
    padding: 20px 0;
    list-style: none;
    pointer-events: none;
    border-radius: 5px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(33, 37, 41, 0.1), 0 10px 10px -5px rgba(33, 37, 41, 0.04);
  }
  .menu_level1.menu_parent .submenu_item {
    padding: 0 5px;
    position: relative;
  }
  .menu_level1.menu_parent .submenu_item a {
    padding: 5px 20px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    width: 100%;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
  }
  .menu_level1.menu_parent .submenu_item a span.icon-down {
    transform: rotate(-90deg);
  }
  .menu_level1.menu_parent .submenu_item .submenu {
    left: 100%;
  }
  .menu_level1.menu_parent .submenu_item:hover a {
    color: rgb(36, 116, 229);
  }
  .menu_level1.menu_parent .submenu_item:hover a svg path {
    fill: rgb(36, 116, 229);
  }
  .menu_level1.menu_parent .submenu_item:hover > .submenu {
    top: calc(100% - 52px);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .menu_level1.menu_parent:hover > .submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 768px) {
  .navigation-nav__content li {
    flex: 1;
    flex-wrap: wrap;
  }
  .navigation-nav__content li a {
    flex: 1;
    color: #fff;
  }
  .navigation-nav__content li.active > .icon-down:after {
    transform: rotate(-135deg);
  }
  .navigation-nav__content li .icon-down {
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-flex;
    cursor: pointer;
  }
  .navigation-nav__content li .icon-down:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    right: 10px;
    top: 10px;
    transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
    transform: rotate(45deg);
  }
  .navigation-nav__content li ul {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 0.9375rem;
    display: block;
  }
  .navigation-nav__content li > a {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    display: inline-block;
  }
  .navigation-nav__content li.menu_level1 {
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #e9ecef;
  }
  .navigation-nav__content li .submenu {
    display: none;
  }
  .navigation-nav__content li .submenu-item a {
    font-weight: 500;
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
  .navigation-nav__content li .submenu-item > ul {
    border-top: 1px solid #e9ecef;
  }
}
