:root {
  --cl-main: #134F49;
  --cl-primary: #CE9B0F;
}

html,
body {
  scroll-behavior: smooth;
  font-size: 1rem;
}

/* fix khung img */
.c-img {
  position: relative;
  display: block;
}

.c-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* end fix khung img */

/* hover img scale */
.scale-img {
  overflow: hidden;
}

.scale-img img {
  transition: all 0.5s;
}

.scale-img:hover img {
  scale: 1.1;
  transition: all 0.5s;
}

/* end hover img scale */

/* hover img flash */
.img__ {
  position: relative;
  overflow: hidden;
}

.img__:hover::after {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

.img__::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* end hover img flash */


.cs_container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.map-loading {
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
  border-radius: 4px;
}

.item_service_hotel:nth-child(odd) {
  width: 30%;
}

.item_service_hotel:nth-child(even) {
  width: 70%;
}

.SwiperHighlight-next svg,
.SwiperHighlight-prev svg {
  transition: all 0.3s;
}

.SwiperHighlight-next:hover svg,
.SwiperHighlight-prev:hover svg {
  filter: brightness(0) invert(1) !important;
}

/* excerpt.css */
.excerpt-content {
  transition: max-height 0.4s ease-in-out;
  /* Thêm transition cho max-height */
  overflow: hidden;
}

.excerpt-hidden {
  max-height: var(--max-height, 3.5rem);
  position: relative;
}

.excerpt-hidden::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(transparent, white);
}


.excerpt-toggle {
  transition: all 0.3s;
}

.excerpt-toggle i {
  transition: transform 0.4s ease-in-out;
}

.excerpt-toggle .rotate {
  transform: rotate(180deg);
}

.css_name_resort {
  background: linear-gradient(90deg, #5890CC 0%, #62C198 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}


.btn_select_day_ticket:hover,
.btn_select_day_ticket.active,
.btn_select_day_ticket:focus {
  background: var(--cl-primary);
  color: #fff;
}

.btn_service_ticket:hover,
.btn_service_ticket.active,
.btn_service_ticket:focus {
  border: 1px solid #FA8C16;
  background: #FDF4E9;
}

.breadcrumb li:not(:last-child)::after {
  margin: 0 10px;
  content: "\f105";
  font-family: 'FontAwesome';
  font-weight: 900;
}

.SwiperHighlight {
  height: fit-content;
}

@media not all and (min-width: 1024px) {
  .item_service_hotel:nth-child(odd) {
    width: 50%;
  }

  .item_service_hotel:nth-child(even) {
    width: 50%;
  }
}

@media (min-width: 1024px) {}