/**
* DISCOVER
**/

.discover {
    padding-block: 24px;
}

.discover .discover-container {
    display: grid;
    grid-template-columns: calc(45% - 24px) calc(55% - 24px);
    gap: 48px;
    align-items: center;
}
.inc-avtar{
    border-radius: 50%;
}
.close{
    border: none;
    background: rgba(255, 255, 255, 0);
}
.a-delete-user{
    color: red;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
}
.discover .discover-container .title {
    font-size: 46px;
    line-height: 66px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black-color);
    margin-bottom: 18px;
    word-spacing: 2px;
}

.discover .discover-container .title span {
    color: var(--primary-color);
}

.discover .discover-container .desc {
    font-size: 14px;
    line-height: 24px;
    color: var(--black-color);
}

.discover .discover-container .images {
    position: relative;
    height: 100%;
    width: 100%;
}

.discover .images .shape-map {
    position: absolute;
    left: 45%;
    top: 0;
    transform: translate(-50%, 0%);
    width: 150%;
    height: auto;
}

.discover .group-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr 2fr;
    align-items: center;
    grid-gap: 24px;
    height: 500px;
    position: relative;
    z-index: 2;
}

.discover .group-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s linear;
}

.discover .group-images img:hover {
    transform: scale(1.04);
}

.discover .group-images img:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
    height: 400px;
    object-position: center;
}

.discover .group-images img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.discover .group-images img:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/**
* BANNER
**/

.banner {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.banner .banner-img {
    width: 100%;
    height: calc(40vh - 76px);
    min-height: 280px;
    max-height: 400px;
}

.banner .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .banner-img::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    z-index: 3;
    width: fit-content;
    max-width: 70vw;
}

.banner .content h1 {
    font-size: 44px;
    line-height: 64px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 8px 48px;
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
    border-radius: 8px;
    letter-spacing: 4px;
    text-align: center;
    width: 100%;
}

/**
* DESTINATION
**/

.destination .destination-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 12px;
}

.destination .destination-list .card {
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.destination .destination-list .card:hover .card-body {
    transform: translateY(0%);
}

.destination.gallery .destination-list .card:hover .card-body {
    transform: translateY(77%);
}

.destination .destination-list .card-img {
    height: 240px;
    width: 100%;
    position: relative;
}

.destination .destination-list .card-img::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    background-color: rgba(0, 0, 0, 0.05);
}

.destination .destination-list .card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.destination .destination-list .card-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(54, 81, 64, 0.9);
    transform: translateY(77%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s linear;
}

.destination .destination-list .card-title {
    /* font-family: "Playfair Display", serif; */
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.destination .destination-list .card-title img {
    width: 22px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-left: 6px;
    margin-bottom: 6px;
}

.destination .destination-list .card-text {
    color: var(--white-color);
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.destination .destination-heading {
    padding: 0px 24px 24px 0;
}

.destination .destination-heading .title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: left;
    justify-content: start;
    padding-bottom: 6px;
}

.destination .destination-heading .title::after {
    left: 0;
    transform: unset;
}

.destination .destination-heading .desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}

.destination.destination-all {
    padding-block: 60px;
    padding-top: 0;
}

.destination .card-button {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: self-end;
}

.destination .card-button button,
.destination .card-button a {
    display: block;
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #fff;
    width: fit-content;
    padding: 8px 18px;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s linear all;
}

.destination .card-button button:hover,
.destination .card-button a:hover {
    background-color: var(--white-color);
    color: #365140;
}

/**
* NEWS
**/

.news {
    padding-block: 60px 120px;
    background-color: var(--bg-color-2);
    position: relative;
    overflow: hidden;
}

/* .news .swiper-pagination {
    display: none;
} */

.news .seemore {
    width: fit-content;
    margin-inline: auto;
    margin-top: 42px;
}

.news.event .seemore {
    margin-inline: unset;
    margin-top: unset;
}

.news.event {
    padding-top: 0;
    padding-bottom: 24px;
}

.news .shape-1 {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 100%;
}

.news .container {
    position: relative;
    z-index: 2;
}

.news .news-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px 24px;
    padding-top: 24px;
    padding-bottom: 6px;
    overflow-x: hidden;
    position: relative;
    padding-inline: 2px;
}

.news .news-list .news-item .card {
    border: 0;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.news .news-list .card-img {
    width: 100%;
    height: 166px;
    overflow: hidden;
    position: relative;
}

.news .card-img .actions {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.actions button {
    border-radius: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.3s linear;
}

.btn-bookmark:hover img,
.btn-bookmark.active img {
    /* filter: brightness(0) invert(1); */
    opacity: 1.2;
}

.btn-bookmark:hover,
.btn-bookmark.active {
    background-color: var(--primary-color);
}

.btn-bookmark img {
    width: 18px;
    opacity: 0.6;
    transition: all 0.3s linear;
}

.news .news-list .news-item .card-img-top {
    border-radius: 4px;
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: .3s linear all;
}

.news .news-list .news-item .card:hover .card-img-top {
    transform: scale(1.04);
}

.news .news-list .card-body {
    padding: 0;
    padding: 12px;
}

.news .news-list .card-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.news .news-list .card-sub .category a,
.news .news-list .card-sub .category {
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: var(--primary-color);
}

.news .news-list .card-sub .published-date {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    color: var(--primary-color);
}

.news .news-list .card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 44px;
    transition: all 0.3s linear;
}

.news.event .news-list .card-title {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    min-height: 22px;
}

.news .news-list .card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 10px;
    margin-bottom: 0;
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 75px;
    color: var(--text-color);
}

.news.event .news-list .card-text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 50px;
    color: var(--text-color);
}

.news .news-list .card-title:hover {
    color: var(--primary-color);
}

.news .news-list .card-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    line-height: 1;
    padding: 8px 28px 8px;
    border-radius: 18px;
    text-decoration: none;
    margin-top: 18px;
    display: block;
    width: fit-content;
    transition: all .3s linear;
}

.news.event .news-list .card-btn {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    padding: 6px 22px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.news .news-list .card-btn:hover {
    transform: scale(1.04);
}

.news .news-seemore {
    margin-top: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news .news-seemore a {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.news .news-seemore a svg {
    transition: all 0.3s linear;
}

.news .news-seemore a:hover svg {
    transform: translateX(6px);
}

/**
* NEWS DETAIL
**/

#news-detail .news {
    background-color: var(--bg-color);
    padding-top: 60px;
}

.detail .detail-header {
    padding-bottom: 12px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
}

.detail .detail-header .title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 12px 0;
}

.detail .detail-header .type a {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}

.detail .detail-header .time {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--primary-color);
}

.detail .detail-content {
    /* padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color); */
}

.detail .detail-content img {
    max-width: 100% !important;
    height: auto !important;
}

.detail .detail-content * {
    font-family: "Be Vietnam Pro", sans-serif;
}

.detail .detail-content p {
    font-size: 16px;
    line-height: 24px;
    /* font-weight: 300; */
}

.detail .detail-content h3 {
    font-size: 22px;
    line-height: 32px;
}

.news-detail .button-primary {
    background-color: var(--primary-color);
}

/**
* FOOD
**/

.food {
    background-color: var(--bg-color-2);
    /* padding-block: 120px; */
    position: relative;
    overflow: hidden;
}

.food .section-title {
    justify-content: center;
}

.food .seemore {
    width: fit-content;
    margin-inline: auto;
}

.food .shape-trongdong {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -6%);
    opacity: 0.2;
    filter: invert(100%) sepia(2%) saturate(1537%) hue-rotate(327deg) brightness(100%) contrast(75%);
}

.food .food-list {
    position: relative;
    padding-top: 24px;
}

.food .food-list .swiper-wrapper {
    padding-bottom: 24px;
}

.food .food-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.food .food-item .food-img {
    width: 100%;
    display: flex;
    justify-content: end;
}

.food .food-item .food-img img {
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.food .food-item .food-infor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-color);
}

.food .food-item .name {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.5px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.food .food-item .category {
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.food .food-item .category::after,
.food .food-item .category::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

.food .food-item .category::before {
    width: 10px;
}

.food .food-item .desc {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    max-width: 450px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.food .swiper-pagination {
    bottom: unset;
}

.food .food-item.swiper-slide {
    padding-block: 36px;
    scale: 0.9;
    opacity: 0.6;
    transition: all 0.3s linear;
}

.food .food-item.swiper-slide-active {
    opacity: 1;
    scale: 1.15;
}

.food .card-button {
    margin-top: 12px;
    display: flex;
    align-content: center;
    gap: 12px;
}

.food .card-button button,
.food .card-button a {
    display: block;
    background-color: transparent;
    font-size: 14px;
    color: var(--primary-color);
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    width: fit-content;
    padding: 3px 18px;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s linear all;
}

.food .card-button button:hover,
.food .card-button a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.food.food-page .food-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
}

.food.food-page .food-item {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}

.food.food-page .food-item .food-img {
    height: 180px;
    display: block;
}

.food.food-page .food-item .food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.food.food-page .food-item .name {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary-color);
}

.food.food-page .food-item .desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/**
* TOURS
**/

/**
* HOTEL
**/

.hotel .component-list .card ul li:first-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px;
}

/**
* RESTAURANT
**/

.restaurant .component-list .card ul li:first-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px;
}

/**
** GUIDE
**/

.guide {
    padding-block: 120px 60px;
}

.guide-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 48px 56px;
    overflow-x: hidden;
    position: relative;
    gap: 36px 24px;
}

.guide-list .card {
    text-align: center;
    background-color: transparent;
    border: 0;
}

.guide-list .card-img {
    border-radius: 100%;
    width: 220px;
    height: 220px;
    overflow: hidden;
    margin-inline: auto;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.guide-list .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-list .card-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.guide-list .card-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    line-height: 22px;
    color: var(--text-color);
}

.guide-list .card-text img {
    width: 18px;
}

/**
* MAP
**/

#map {
    height: 500px;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.map {
    padding-block: 80px;
}

.map .map-wrap {
    position: relative;
    display: grid;
    grid-template-columns: calc(35% - 6px) calc(65% - 6px);
    gap: 12px;
}

.map .card-img-top {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.map .leaflet-popup-content {
    width: 220px !important;
    margin: 12px;
}

.map .card-body {
    padding: 10px;
}

.map .leaflet-container a.leaflet-popup-close-button {
    background-color: var(--white-color);
}

#location-list {
    position: absolute;
    left: 12px;
    top: 100px;
    bottom: 12px;
    z-index: 1001;
    background-color: var(--white-color);
    padding: 12px 18px;
    border-radius: 4px;
    overflow-y: auto;
}

#location-list::-webkit-scrollbar {
    width: 5px;
}

#location-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#location-list::-webkit-scrollbar-thumb {
    background: #888;
}

#location-list li {
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    transition: all 0.3s linear;
}

#location-list li:hover,
#location-list li.active {
    color: var(--primary-color);
}

.map .leaflet-touch .leaflet-control-attribution {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text-color);
}

.map .leaflet-touch .leaflet-control-attribution a,
.map .leaflet-touch .leaflet-control-attribution span {
    display: none;
}

.map .nav-tabs {
    padding-top: 0;
    margin-bottom: 12px;
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block: 2px 12px;
    flex-wrap: nowrap;
}

.map .nav-tabs::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.map .nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.map .nav-tabs::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

.map .nav-tabs .nav-link {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px;
    background-color: var(--white-color);
}

.map .nav-tabs .nav-link img {
    width: 35px;
}

.map .sidebar {
    padding: 6px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.map .map-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 400px;
    overflow-y: auto;
    padding: 2px;
}

.map .map-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.map .map-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.map .map-list::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

.map .map-list .map-item {
    display: flex;
    align-items: self-start;
    gap: 12px;
    cursor: pointer;
    padding: 6px;
    background-color: var(--white-color);
    border-radius: 8px;
}

.map .map-list .map-item>div {
    flex: 1 0 0;
    padding-top: 4px;
}

.map .map-list .map-item .name {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.map .map-list .map-item .address,
.map .map-list .map-item a {
    font-size: 12px;
    line-height: 14px;
}

.map .map-list .map-item .address {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.map .map-list .map-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.map .leaflet-popup-content .card-img {
    height: 120px;
}

.map .leaflet-popup-content .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map .leaflet-popup-content .card-title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.map .leaflet-popup-content .card-text {
    font-size: 11px;
    line-height: 15px;
}

.map .leaflet-popup-content .card-text>div {
    margin-bottom: 4px;
}

.map .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
}

/* .map .leaflet-control-search {
    margin: 10px;
    width: 250px;
} */

.map .leaflet-control-search .search-input {
    outline: none;
    border: none;
}


.map .leaflet-control-search .search-cancel {
    right: 38px;
    margin: 5px 0;
}

.map .leaflet-control-search .search-tip {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px;
}

/**
* ALBUM
**/

.album {
    padding: 120px 0;
    background-color: var(--black-color);
}

.album .section-title {
    color: var(--white-color);
}

.album .album-item {
    cursor: pointer;
}

.album .album-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: all 0.3s linear;
}

.album .album-item:hover img {
    transform: scale(1.04);
}

.album .album-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px 12px;
}

.album .album-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    z-index: 1002;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.album .album-popup.active {
    opacity: 1;
    visibility: visible;
}

.album .album-slide {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.album .album-slide .album-img {
    height: 100%;
    width: 100%;
}

.album .album-slide .album-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album .swiper-pagination-bullet {
    background-color: var(--white-color);
}

.album .album-popup .close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.album .album-popup .close img {
    width: 20px;
    height: auto;
}

/**
* AUTH
**/

.auth {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    min-height: calc(100vh - 76px);
    padding: 56px;
}

.auth .title {
    font-size: 32px;
}

.auth .desc {
    font-size: 14px;
}

.auth .bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth .form-auth {
    position: relative;
    z-index: 2;
    max-width: 600px;
    height: 100%;
    margin-left: auto;
    margin-block: auto;
    background-color: var(--white-color);
    border-radius: 24px;
    padding: 64px 100px;
    color: var(--primary-color);
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
#register-step-1{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.auth .form-auth .form {
    margin-top: 24px;
}

.auth .form-auth .form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth .form-auth input,
.auth .form-auth select {
    border-radius: 8px;
    background-color: var(--white-color);
}

.auth .form-auth button {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    height: 42px;
}

.auth .form-auth .or {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-block: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.preview-placeholder {
    color: #6c757d;
    font-style: italic;
}

.auth .form-auth .or::after,
.auth .form-auth .or::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: var(--primary-color);
}

.auth .form-auth .change-auth {
    font-size: 14px;
}

.auth .form-auth .change-auth a {
    color: var(--primary-color);
    font-weight: 600;
}
.div-center{
    display: flex;
    justify-content: center;
}
.auth .form-account {
    margin-inline: auto;
    max-width: 800px;
}

.form-account .avatar {
    margin-inline: auto;
    width: fit-content;
    height: fit-content;
    border-radius: 100%;
    position: relative;
    background-color: var(--primary-color);
    height: 120px;
    width: 120px;
}

.form-account .avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
    padding: 2px;
}

/**
* 1200
**/

@media screen and (max-width: 1200px) {

    /**
    * BANNER
    **/

    .banner .banner-img {
        width: 100%;
        height: calc(35vh - 76px);
    }

    .banner .content h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .banner .content {
        transform: translate(-50%, -30%);
    }

    /**
    * NEWS
    **/

    .news .news-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .detail .detail-container {
        padding-inline: 0;
    }

    #news-detail .news {
        padding-top: 60px;
    }

    .news .swiper-pagination {
        display: block;
    }

    /**
    * DESTINATION
    **/

    .destination .destination-heading .desc {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        line-clamp: 6;
        -webkit-box-orient: vertical;
    }

    .destination .destination-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOOD */
    .food .food-item.swiper-slide-active {
        opacity: 1;
        scale: 1.05;
    }

    .food.food-page .food-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /**
    * GUIDE
    **/

    .guide-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {

    .banner .banner-img {
        width: 100%;
        height: calc(30vh - 76px);
    }

    .banner .content {
        transform: translate(-50%, -60%);
    }

    /**
    * DISCOVERY
    **/

    .discover .discover-container {
        grid-template-columns: 1fr;
    }

    .discover .discover-container .title {
        font-size: 38px;
        line-height: 48px;
    }

    .discover .group-images {
        display: none;
    }

    .discover .discover-container .images {
        position: unset;
    }

    .discover .images .shape-map {
        position: absolute;
        left: 65%;
        top: 0;
        transform: translate(-50%, 35%);
        width: 70%;
        height: auto;
    }

    /**
    * NEWS
    **/

    .news {
        padding-block: 60px;
    }

    .news .news-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news .news-list .card-btn {
        margin-top: 12px;
    }

    /**
    * FOOD
    **/

    .food {
        padding-block: 60px;
    }

    .food .food-item {
        gap: 24px;
        padding-inline: 24px;
    }

    .food .food-item.swiper-slide-active {
        scale: 1;
    }

    .food .food-item .food-img img {
        width: 100%;
        height: auto;
    }

    .food .food-item.swiper-slide {
        padding-bottom: 0;
    }

    .food.food-page .food-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* MAP */

    .map .map-wrap {
        grid-template-columns: 1fr;
    }

    .map .map-list {
        max-height: 180px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .map {
        padding-block: 0 60px;
    }

    /**
    * GUIDE
    **/

    .guide-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide {
        padding-block: 60px 60px;
    }

    /**
    * ALBUM
    **/

    .album .album-list {
        grid-template-columns: repeat(4, 1fr);
    }

    /**
    * AUTH
    **/

    .auth {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .auth .form-auth {
        max-width: 100%;
        height: fit-content;
        width: 100%;
        padding: 120px 80px;
    }
}

/**
* 576
**/

@media screen and (max-width: 576px) {

    .banner .content {
        max-width: 90vw;
        width: 90vw;
        transform: translate(-50%, -65%);
    }

    .banner .content h1 {
        font-size: 18px;
        line-height: 28px;
    }

    /**
    * DISCOVERY
    **/

    .discover .images .shape-map {
        transform: translate(-10%, 75%);
    }

    .discover .discover-container {
        gap: 0;
    }

    /**
    * DESTINATION
    **/

    .destination {
        padding-block: 40px;
    }

    /**
    * SEARCH
    **/

    .search-container.search-sub {
        margin-top: 40px;
        margin-bottom: 24px;
        box-shadow: unset;
        padding-block: 0;
        padding-inline: 0;
    }

    .project .member-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .member-button {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }

    .member-button a {
        width: 100%;
    }

    /**
    *NEWS
    **/

    .news .seemore {
        margin-top: 0;
    }

    .news .news-list .card-title {
        min-height: unset;
    }

    .news .news-list .card-body {
        padding-top: 0;
    }

    .news .news-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .news .news-list .news-item .card {
        flex-direction: column;
        gap: 24px;
    }

    .news .news-list .card-img {
        height: 200px;
        width: 100%;
    }

    #news-detail .news {
        padding-top: 0px;
    }

    .detail .detail-header .title {
        font-size: 24px;
        line-height: 34px;
        margin-block: 6px;
    }

    .detail .detail-header .time {
        font-size: 14px;
    }

    .detail .detail-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .detail .detail-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .detail {
        padding-block: 20px 60px;
    }

    .detail .detail-header .type {
        font-size: 18px;
    }

    .detail .detail-container {
        gap: 12px;
    }

    .detail-comment .title {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 6px;
    }

    .detail-comment .date {
        margin-left: 0;
    }

    .detail-comment {
        gap: 12px;
    }

    /**
    * DESTINATION
    **/

    .destination .destination-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .destination {
        padding-block: 40px;
    }

    .destination .destination-heading .title {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        justify-content: center;
    }

    .destination .destination-heading .title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .destination .destination-heading .title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .destination .destination-heading .desc {
        text-align: center;
    }

    /**
    * FOOD
    **/

    .food {
        padding-block: 40px;
    }

    .food .food-item {
        grid-template-columns: repeat(1, 1fr);
        padding-inline: 0;
    }

    .food .card-button {
        margin-top: 12px;
    }

    .food .food-item.swiper-slide {
        padding-top: 0;
    }

    .food.food-page .food-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .food.food-page .food-item .food-img {
        height: 210px;
        display: block;
    }

    /**
    * SEARCH
    **/

    .search {
        height: fit-content;
        transform: translateY(-20%);
    }

    .search .search-main {
        grid-template-columns: 1fr;
    }

    .search .search-wrap {
        padding: 24px;
    }

    .search-button .group-btn {
        grid-template-columns: repeat(1, 1fr);
    }

    .search-button {
        flex-direction: column;
        gap: 12px;
    }

    .search-input,
    .search-button {
        width: 100%;
    }

    header .search-button {
        width: 100%;
    }

    .search-container {
        padding-inline: 12px;
        padding-block: 36px;
    }

    .map .map-list {
        grid-template-columns: 1fr;
    }

    /**
    * GUIDE
    **/

    .guide-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .guide-list {
        padding-top: 0;
        padding-bottom: 32px;
    }

    .detail-body--item .guide-list .card-body {
        display: none;
    }


    /**
    * ALBUM
    **/

    .album {
        padding: 60px 0;
    }

    .album .album-popup {
        padding: 48px 12px;
    }

    .album .album-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /**
    * AUTH
    **/

    .auth {
        height: fit-content;
        padding: 48px 6px;
    }

    .auth .form-auth {
        padding: 65px 24px;
        border-radius: 0;
    }
}
.form-edit-pe .form-control{
    font-size: 13px !important;
}
.form-edit-pe .form-select{
    font-size: 13px !important;
}


.leaflet-control-search .search-tooltip div {
    padding: 4px 8px;
    line-height: 1.3;
   
  }
  .leaflet-control-search {
    align-items: center;
    gap: 4px;
  }
  
  .leaflet-control-search .search-button {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-left: none;
    cursor: pointer;
    font-size: 18px;
    border: none
  }
  .search-tooltip{
    width: 100%;
    margin-top: 0.3rem;
  }
  .search-tooltip {
    max-width: 300px; /* hoặc theo nhu cầu của bạn */
    word-wrap: break-word;
    white-space: normal;
    background-color: #fff;
    list-style: none;
    border-radius: 4px;
  
  }
  .leaflet-control-search .search-tooltip {
    max-height: 300px !important;
  }
  
  .search-tooltip .search-tip {
    white-space: normal;
    word-break: break-word;
    padding: 6px 10px;
    cursor: pointer;
  }
  .custom-address {
    display: -webkit-box;         /* Tạo khối flexbox cho trình duyệt Webkit */
    -webkit-box-orient: vertical; /* Xác định hướng của flexbox là dọc */
    -webkit-line-clamp: 2;        /* Giới hạn số dòng hiển thị là 2 */
    overflow: hidden;             /* Ẩn phần văn bản vượt quá */
    text-overflow: ellipsis;      /* Thêm dấu ba chấm (...) nếu có văn bản bị ẩn */
    max-height: 3em;              /* Giới hạn chiều cao tối đa của phần tử (2 dòng) */
    line-height: 1.5em;           /* Thiết lập chiều cao dòng */
    overflow-y: auto;             /* Hiển thị thanh cuộn dọc nếu có nội dung vượt quá */
}

.tour .card-text{
    min-height: 40px;
}

.camera360 .news-list .card-body {
    padding: 10px 10px 0px;
    min-height: 57px;
}
