* {
    margin: 0;
    padding: 0;
}

#main {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 0 24px;
}

.active {
    opacity: 1!important;
    display: block!important;
    transform: scale(1.05) translate(1px, 1px);
    box-shadow: -8px 8px 8px 0px #00000059, 0 0 0px 3px #ffffff;
    z-index: 19!important;
}

.active:before {
    content: '\e86c';
    font-family: 'Material Icons';
    position: absolute;
    font-size: 24pt;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #4bff00;
    text-shadow: 0 0 20px #000;
}

nav {
    /* background: #9eed048c; */
    min-height: 56px;
    position: relative;
    width: calc(100% - 24px);
    max-width: 1200px;
    display: block;
    margin: 0 12px;
    transition: width .3s ease;
}

nav li,
.photo-grid-item {
    list-style: none;
    animation: 400ms ease enter;
}

nav li:nth-child(1) {
    animation-delay: 230ms
}

nav li:nth-child(2) {
    animation-delay: 330ms
}

nav li:nth-child(3) {
    animation-delay: 430ms
}

nav li:nth-child(4) {
    animation-delay: 530ms
}


/* .nav-box {
    padding: 0 24px;
    max-width: 1200px;
    margin: auto;
} */

img.brand-logo {
    height: 55px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Roboto';
    font-weight: bold;
    justify-content: center;
    padding: 5px 10px;
    text-decoration: none;
    letter-spacing: 0.5;
    color: #727272;
    position: relative;
    border: 15px;
    /* background: #ffffff85; */
    overflow: hidden;
    transition: all .3s ease;
    z-index: 5;
}


/*.nav-menu:not(last-child) {
     margin-right: 3px; 
}*/

.nav-menu:hover {
    /* background: linear-gradient(319deg, white, transparent); */
    color: #4e9706;
    transform: translateY(-1.5px);
    /* box-shadow: 0px 3px 7px #00000030; */
    /* border-radius: 5px; */
}

.nav-item {
    height: 24pt;
}

.material-icons {
    font-size: 12pt;
}

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

.flexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.slide {
    padding: 5px;
    max-width: 50vw;
    animation: 400ms ease 33ms 1 normal forwards running enter;
}

.slide-active {
    /* width: 100%; */
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(358deg, #000000bd, #1ce2fb); */
}

.slide-active img {
    animation: FadeIn .4s ease-in-out;
}

.slide-active .transition {
    position: absolute;
    width: 100%;
    height: 70vh;
    /* background: linear-gradient(0deg, #fff, transparent); */
    opacity: 0;
}

.slide img {
    width: 100%;
    border-radius: 1.5rem;
}

.swiper-wrapper {
    height: -webkit-fill-available;
}

.swiper-slide,
.slide-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
    overflow: hidden;
    justify-content: space-around;
    position: relative;
    color: #fff;
    z-index: 5;
    border-radius: 25px;
    transition: all .3s ease;
}

.slide-item {
    height: 65px!important;
}

.slide-item:hover {
    cursor: pointer;
    opacity: 1!important;
}

.swiper-slide:not(:first-child),
.slide-item:not(:first-child) {
    margin-right: 5px;
    opacity: 0.7;
}

.slide-item:first-child:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    background: radial-gradient(#f0ff0d14, #00075ce6);
    z-index: 1;
    border-radius: 10px;
}

.slide-span {
    position: absolute;
    font-size: 14pt;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.slide-span * {
    padding: 2px;
    z-index: 3;
}

.anime-exit {
    animation: 400ms ease exit;
}

.anime-fadein {
    animation: FadeIn .4s ease-in-out;
}

@keyframes FadeIn {
    0% {
        opacity: 0;
        display: none;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #a1a1a16e;
    box-shadow: 0px 6px 7px -3px #00000075;
    margin: 15px 0;
}

.map-box {
    padding: 5px;
    padding-left: 0;
    display: flex;
    /* text-align: center; */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Roboto';
    letter-spacing: 1;
}

.map-outter {
    height: 125px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #000;
    border-radius: 5px;
    box-shadow: 0px 3px 10px -5px #000;
}

.map-outter .btn-show-map {
    opacity: 0;
    padding: 8px 10px;
    background: linear-gradient(0deg, #015c04, #5aa700);
    border-radius: 5px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 4px 5px -4px #333, inset 0px 20px 6px #92ff2e66, inset 0 0 4px #000;
    transition: all .3s ease;
}

.map-outter:hover .btn-show-map {
    opacity: 1;
    transform: translateY(-5px);
    display: block;
}

.container {
    position: relative;
    width: calc(100% - 24px);
    display: block;
    /* min-height: 408px; */
    max-width: 1200px;
    margin: 0 auto;
}

.pd24 {
    padding: 24px;
}

.plf24 {
    padding: 0 24px;
}

.pLeft24 {
    padding-left: 24px;
}

.pRight24 {
    padding-right: 24px;
}

.nav-menu:hover:before {
    -webkit-animation: shine_light .75s;
    animation: shine_light .75s;
}

.nav-menu:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX( -25deg);
    transform: skewX( -25deg);
}

@keyframes shine_light {
    from {
        left: -25%;
    }
    to {
        left: 100%;
    }
}

.map-outter {
    margin: 12px 0;
}

@media only screen and (min-width: 540px) and (max-width: 720px) {
    /* For portrait layouts only */
    .flex-cr {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
    }
    .map-outter {
        width: 260px!important;
        height: 220px;
    }
}

@media only screen and (min-width: 950px) {
    .map-outter {
        height: 230px;
        width: 400px;
    }
}

@media only screen and (max-width: 950px) {
    .map-outter {
        height: 230px;
        /* width: 260px; */
    }
}

@media only screen and (max-width: 720px) {
    .container>.flex {
        flex-direction: column;
    }
    .slide {
        max-width: calc(100% - 10px);
    }
}

@media only screen and (max-width: 600px) {
    #main {
        width: calc(100% - 24px);
        margin: 0 12px;
    }
    .slide {
        max-width: calc(100% - 10px);
    }
    .map-outter,
    #map {
        width: 100%;
    }
    .nav-box {
        /* display: flex;
        align-items: center;
        justify-content: center; */
    }
    .nav-menu {
        letter-spacing: 0;
        padding: 5px 3px;
        font-size: 10pt;
    }
    .nav-item {
        height: 12pt;
    }
    .container>.flex {
        flex-direction: column;
    }
    .active:before {
        content: '\e86c';
        font-family: 'Material Icons';
        position: absolute;
        font-size: 14pt;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #4bff00;
        text-shadow: 0 0 20px #000;
    }
}

.nav-menu:hover img {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.partner {
    position: relative;
    display: flex;
    overflow-x: auto;
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #efefef;
}

.partner img {
    height: 32px;
}

.swiper {
    padding: 0 15px 15px 15px;
}

.swiper-slide {
    height: max-content;
    background: grey;
    text-align: center;
}

.swiper-slide img {
    height: 100%;
    object-fit: cover;
}

.swiper-wrapper {
    height: -webkit-fill-available;
}

.slide-label {
    position: absolute;
    z-index: 9;
    bottom: 5px;
    right: 5px;
    color: #fff;
    text-shadow: 0 0 4px black;
    padding: 5px 10px;
    border-radius: 15px;
}

.drop-down-menu * {
    text-decoration: none;
    color: gray;
    font-family: 'Roboto';
}

.drop-down-menu:before {
    content: '';
    border-bottom: 9px solid rgba(0, 0, 0, 0.2);
    border-left: 9px solid rgba(0, 0, 0, 0);
    border-right: 9px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    left: calc(50% - 9px);
    right: 5px;
    position: absolute;
    top: -10px;
}

.drop-down-menu {
    display: none;
    /* width: -webkit-fill-available; */
    position: absolute;
    border-top: 1px solid #cccccc;
    background: linear-gradient(0deg, #ffffffab, #ffffff);
    right: 0;
    margin-right: 2.5px;
    padding: 10px;
    z-index: 9999;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(2px);
    box-shadow: 0px 5px 4px -3px #000000b3, inset -4px -6px 20px 0px #0000001c;
}

.sub-menu:hover .drop-down-menu {
    display: block;
    animation: FadeOptIn 0.82s cubic-bezier(0.25, 0.5, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    border: 1px solid #cccccc7a;
}

.drop-down-menu>li {
    padding: 5px 10px;
    transition: all .4s ease;
}

.drop-down-menu>li:hover,
.drop-down-menu>li:hover a {
    transform: translateY(-1.5px);
    /* background: #ffffff85; */
    /* box-shadow: 0 3px 5px -5px #0000009c; */
    color: #0641c5!important;
    text-decoration: underline;
}

.drop-down-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
}

.drop-down-menu>li>a>.icon-box {
    margin-right: 5px;
}

.nav-right li {
    position: relative;
}

.icon-box {
    width: 24px;
    height: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.top-bar .btn {
    padding: 3px 7px 3px 4px;
    /* background: #e9e9e9; */
    border-radius: 5rem;
    /* margin: 5px; */
    font-family: 'Roboto', sans-serif;
    font-size: 8pt;
    color: #6c6c6c;
    text-decoration: none;
}

.top-bar {
    display: block;
    max-width: 1152px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

body {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    background-color: #ffffff;
    font-family: system, -apple-system, BlinkMacSystemFont, "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-anchor: none;
    -webkit-text-size-adjust: 100%;
}

.location-desc {
    font-size: 10pt;
    font-family: 'Roboto', "Khmer OS";
    margin: 10px 0;
    line-height: 1.3em;
    display: flex;
    align-items: flex-start;
}

.modal-gallery {
    display: none;
    background: #0601017a;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999999;
}

.photo-modal {
    background-color: #fff!important;
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 2px;
    position: fixed;
    z-index: 9200;
    top: 0;
    left: 5px;
    right: 5px;
    bottom: 0;
    padding-bottom: 60px;
}

.modal-header {
    padding: 10px 5px;
    position: absolute;
    border-bottom: 1px solid #8080808a;
    width: calc(100% - 0px);
    background: linear-gradient( 0deg, #efefef, white);
    border-radius: 10px 10px 0 0;
}

.photo-modal-grid {
    max-height: calc(100% - 35px);
    margin-top: 45px;
    overflow: auto;
    margin-bottom: 16px;
    padding: 15px 25px;
}

.photo-modal-inside-grid {
    display: block;
    /* padding: 16px 2px; */
}

.photo-grid-item {
    display: inline-flex;
}

.photo-grid-item-wrap {
    overflow: hidden;
    position: relative;
    background: #fff;
    color: #000;
    border-radius: 4px;
    margin: 2px;
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
    min-height: 80px;
    font-weight: normal;
}

.photo-grid-item-wrap:hover:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 39px;
    background: linear-gradient(0deg, #000000ba, transparent);
    bottom: 0;
    z-index: 1;
}

.photo-grid-item-wrap:hover img {
    transform: scale(1.1);
}

.photo-grid-item-wrap:hover .photo-item-text {
    opacity: 1;
    bottom: 10px;
}

.photo-grid-item-wrap img {
    display: block;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    min-height: 200px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.photo-item-text {
    opacity: 0;
    color: #fff;
    font-size: 9pt;
    font-family: 'Roboto', khmer monospace;
    position: absolute;
    display: inline-block;
    left: 10px;
    bottom: -10px;
    padding: 2px 5px;
    z-index: 10;
    background: #ff3d00;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 25px);
    line-height: 1.2em;
    transition: all .3s ease;
}

.photo-info-icon:hover:after {
    opacity: 0;
    left: -50px;
}

.photo-info-icon:after {
    content: '!';
    opacity: 1;
    position: absolute;
    width: 20px;
    height: 20px;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 2px;
    display: flex;
    background: #00a1ff;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 999999;
    bottom: 10px;
    left: 10px;
    transition: all .3s ease;
}

.room {
    box-shadow: 0 0 2px #000;
}

.thumb-box {
    flex-basis: 260px;
    /* max-height: 120px; */
    margin-right: 10px;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
}

.thumb-box img {
    width: 100%;
}

.room-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 11pt;
    /* letter-spacing: 1; */
    line-height: 1.1;
}

.btn-reserve {
    padding: 8px 10px;
    background: #519107;
    /* border-radius: 0.2rem; */
    font-weight: bold;
    font-size: 13pt;
    color: #fff;
    outline: none;
    border: none;
    transition: all .3s ease;
}

.btn-reserve:hover {
    cursor: pointer;
    color: white;
    background: #ffe31d;
    box-shadow: inset 0px 30px 6px 0px #00000052;
    text-shadow: 0 2px 3px black;
    transform: translateY(1px);
}

.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    padding: 5px;
}

.del-price {
    color: red;
    text-decoration: line-through;
    font-style: italic;
    font-size: 10pt;
    background: #d9d9d9;
    border-radius: 2rem;
    width: max-content;
    padding: 0px 10px;
}

.room-price {
    color: red;
    font-weight: bold;
    background: #d9d9d9;
    display: inline-block;
    padding: 5px;
    border-radius: 0.2rem;
    font-size: 1.5rem;
    box-shadow: 0 0 2px #000000d9, inset 0px 30px 14px -10px #fff;
}

.store_info {
    background: #cad5db;
    padding: 5px;
    position: relative;
    width: 100%;
    border-radius: 0.2rem;
}

.store_info li {
    font-size: 11pt;
    list-style: none;
    margin-left: 10px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}

.store_info a:hover {
    color: #585351;
}

.store_info a {
    text-decoration: none;
    color: #000;
}

.top-right-side a:hover {
    color: #000;
    transform: translateY(1px);
    transition: all .3s ease;
}

.nav-fixed {
    background: #ffffff94;
    position: fixed;
    padding: 0 30px;
    width: calc(100% - 0px);
    max-width: 100%;
    margin: 0;
    left: 0;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #c7cdc7;
    box-shadow: 0 5px 5px #0000004d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: FadeOptIn .3s;
}

.modal-header .name-store {
    width: 100%;
    text-align: center;
    margin-right: 70px;
}

.close-modal .btn-close:hover {
    cursor: pointer;
    color: #d91607;
    text-shadow: 0px 2px 2px #0000003b;
}

.close-modal .btn-close {
    height: 100%;
    position: absolute;
    top: 0;
    right: 10px;
    padding: 0 10px;
    border: none;
    background: none;
    display: flex;
    line-height: 1pt;
    align-items: center;
    font-weight: bold;
    justify-content: flex-end;
}

.photopile-wrapper {
    position: relative;
    background: #f1f1f1;
    max-height: 400px;
    min-height: 200px;
    margin: 40px auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

@keyframes FadeOptIn {
    0% {
        /* top:-120px; */
        opacity: 0;
    }
    100% {
        /* top:0px; */
        opacity: 1;
    }
}

#photos {
    /* Prevent vertical gaps */
    line-height: 0;
    -webkit-column-count: 3;
    -webkit-column-gap: 0px;
    -moz-column-count: 3;
    -moz-column-gap: 0px;
    column-count: 3;
    column-gap: 0px;
}

#photos .photo-grid-item {
    /* Just in case there are inline attributes */
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 1200px) {
    #photos {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

@media (max-width: 1000px) {
    #photos {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 800px) {
    #photos {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 660px) {
    .flex.room {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .thumb-box {
        width: 100%;
        margin-bottom: 10px;
        position: relative;
        flex-basis: 0;
        flex-grow: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 400px) {
    #photos {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@-webkit-keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes exit {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: translateY(200px);
    }
}

@keyframes exit {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: translateY(200px);
    }
}

@keyframes drop {
    0% {
        opacity: .5;
        transform: translateY(-60vh);
    }
    100% {
        transform: translateY(0);
    }
}