
.ImageSlideShow {
    background: #1d4685;
    position: relative;
    padding:20px 0;
}
.ImageSlideShow::before {
    content:'HÌNH ẢNH KHÁCH SẠN';
    text-align:center;
    color: #fff;
    padding: 12px 0 40px 0;
    font-family: Roboto;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: block;
}
.ImageSlideShow::after {
    content: url(images/u.png);
    width: 210px;
    height: 20px;
    position: absolute;
    left: calc(50% - 105px);
    top: 68px;
}
.ImageSlideShow .SlideShowItem {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* Chia 3 cột đều nhau */
  gap: 15px !important;                             /* Khoảng cách giữa các ô ảnh */
  width: 100% !important;
  height: auto !important;
}
.ImageSlideShow .image-item {
  display: block !important;
  width: 100% !important;
  height: 300px !important;      /* Chiều cao cố định cho các ô ảnh, chị tùy chỉnh số này */
  object-fit: cover !important;  /* Tự động cắt ảnh vừa khít ô, không bị co dãn méo hình */
  border-radius: 4px;
  filter: saturate(90%) hue-rotate(350deg) contrast(102%) brightness(102%) !important;
}
.ImageSlideShow .image-title {
    bottom: 172px;
    color: #FFFFFF;
    font: 18pt arial;
    height: 100px;
    left: 55px;
    min-height: 24px;
    opacity: 1 !important;
    padding: 20px;
    position: absolute;
    text-align: justify;
    text-shadow: 1px 2px #000000;
    width: 300px;
    z-index: 1;
}
div.div-thumb {
    height: 130px;
    overflow: hidden;
    position: relative;
}
div.div-thumb ul.ThumbList {
    display: block;
    list-style: none outside none;
    margin: 0;
    padding: 4px 0 0;
    position: relative;
    width: 1000%;
}
div.div-thumb ul.ThumbList li.li-thumb {
    display: block;
    float: left;
    padding: 0 4px;
}
div.div-thumb ul.ThumbList li.li-thumb img.image-thumb {
    border: 1px solid #00CDFF;
    display: block;
    height: 120px;
    opacity: 0.5;
    width: 120px;
}
div.div-thumb ul.ThumbList li.li-thumb img.image-thumb:hover {
    opacity: 1;
}
div.div-thumb .selected {
    border: 1px solid #00CDFF;
    display: block;
    height: 120px;
    opacity: 1 !important;
    width: 120px;
}
.ImageSlideShow div.next {
    /* display:none; */
    background: url("images/right.png") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 82px;
    position: absolute;
    right: -48px;
    width: 70px;
}
.ImageSlideShow div.prev {
    /* display:none; */
    background: url("images/left.png") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 82px;
    left: -44px;
    position: absolute;
    width: 70px;
}
.ImageSlideShow div.next:hover, div.prev:hover {
    opacity: 0.8;
}