.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    margin: 0;
}
.wpcf7-form-control.wpcf7-radio {
    display: flex;
    gap: 3rem;
}
.map_content_contact{
    font-size: 20px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}


.tg_content_inquiry_wrap form .tg_content_inquiry_wrap_form_list_item .wpcf7-list-item label:has(input:checked)::after {
    content: "";
    width: 14px;
    height: 14px;
    background: #f9ac00;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 50%;
}

.map_content_contact {
    font-size: 1.4rem;
}
.wpcf7-not-valid-tip {
    font-size: 0.8em;
    margin: 2px 0px 0px 4px;
    font-style: italic;
}

.wpcf7-submit .btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.wpcf7-submit.loading {
    opacity: 0.6;
    pointer-events: none;
}

.wpcf7-submit.loading .btn-text {
    opacity: 0.8;
}

.wpcf7-submit.loading .btn-loader {
    display: inline-block;
}

.tg_content_commit_list_item {
    height: auto;
}

.tg_content_contact_superht .tg_contact_inner_img .img_primary img {
    height: 60rem;
}

.tg_content_rooms_amenities .wrap-swiper-control {
    display: none;
}

.tg_slide_pc img {
    border-radius: 0 0 100px 100px;
}

@media (max-width: 1024px) {
    .tg_banner_home .tg_contact_inner_img {
        border-radius: 0 0 50px 50px;
    }
}
/* Map Viewer - Namespace: map-viewer-* to avoid conflicts */
.data-map-viewer {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f5;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-viewer-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f5;
    border: 1px solid #ddd;
    overflow: hidden;
    margin-top:25px;
}

.map-viewer-wrapper.tg_wrap_content_reset{
    background: none;
    border:none;
    box-shadow: none;
    margin:60px 0 0 0;
}

/* Overlay to block scroll but still allow hotspots */
.map-viewer-wrapper::after,
.data-map-viewer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
    background: transparent;
}

/* Map Viewer Container */
.map-viewer-container {
    width: 100%;
    overflow: hidden;
}

.map-viewer-image {
    width: 100%;
    border: none;
    display: block;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    object-fit: contain;
    transform-origin: top left;
}

/* Hotspot Base Styles - Scoped to map viewer */
.map-viewer-hotspot {
    position: absolute;
    width: 8.8%;
    height: 9.6%;
    border-radius: 10%;
    background: red;
    opacity: 0;
    color: #d32f2f;
    cursor: pointer;
    border: none;
    box-shadow: none;
    font-weight: bold;
    font-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: auto;
    text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    0 0 4px rgba(255, 255, 255, 0.8);
}

.map-viewer-hotspot-left {
    width: 8.55%;
    height: 10.9% !important;
}

.map-viewer-hotspot:hover {
    color: #b71c1c;
    text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    0 0 6px rgba(255, 255, 255, 1);
}

.map-viewer-hotspot:active {
    transform: scale(0.95);
}

/* Tooltip */

.map-viewer-hotspot:hover::after {
    opacity: 0;
}


/* Modal Styles - Scoped to map viewer */
.map-viewer-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.map-viewer-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.map-viewer-modal-content {
    position: relative;
    margin: auto;
    width: 90vw;
    height: 90vh;
    border-radius: 8px;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.map-viewer-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f9ac00;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 172, 0, 0.3);
    font-family: inherit;
}

.map-viewer-modal-close:hover,
.map-viewer-modal-close:focus {
    transform: translateY(-2px) scale(1.05);
}

.map-viewer-modal-close:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 6px rgba(249, 172, 0, 0.3);
}

.map-viewer-modal-pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.map-viewer-modal-image-frame {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.map-viewer-modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.map-viewer-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    padding: 0;

    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}
.tg_header_bottom .tg_header_top_right_download_profile {
    margin: -4px 0;
}
.tg_header_bottom .tg_header_top_right_download_profile a:hover{
    color: #fff !important;
}

.btn_bottom_banner {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5rem !important;
    text-align: center !important;
}
/* Responsive - Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .map-viewer-wrapper,
    .data-map-viewer {
        max-width: 100%;
    }
    .map_content_contact {
        font-size: 1.4rem;
        padding: 0 0 2rem 0 !important;
    }
    .map-viewer-modal-content {
        width: 92%;
/*         height: 92vh; */
}
.map_content_grand_open a.tg_btn_type1 {
    font-size: 1.8rem !important;
}
.map_content_grand_open{
    margin: 1rem 0 1rem 0 !important;
}
.btn_bottom_banner {
    gap: 3rem !important;
}
}
@media (max-width: 1024px) {
    .btn_bottom_banner {
        gap: 3rem !important;
    }
}
/* Responsive - Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .map-viewer-modal-close {
        top: 15px;
        right: 15px;
        width: 15px;
        height: 15px;
    }
}

/* Responsive - Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .map_content_grand_open a.tg_btn_type1 {
        font-size:1.8rem !important;
    }
    .map_content_grand_open {
        margin-top: 1rem !important;
    }
}

@media (min-width: 1400px) {
    .map-viewer-wrapper,
    .data-map-viewer {
        max-width: 1400px;
    }
    .map_content_grand_open a.tg_btn_type1 {
        font-size: 2.5rem !important;
    }
    .map_content_grand_open {
        margin-top: 6rem !important;
    }
}

.tg_pop_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  overflow: auto;
  display: none;
}
.tg_pop_menu .content_popup {
  padding: 8rem 1.5rem;
}
.tg_pop_menu .tg_pop_title {
  font-size: 3.6rem;
  line-height: 140%;
  color: #ac8c58;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 0 0 4rem 0;
}
.tg_btn_type1_right {
    margin-left: 10px;
}
@media (min-width: 1400px) {
    .map_content_contact {
        font-size: 2rem;
        padding: 0 0 2rem 0 !important;
    }
    .map_content_grand_open{
        margin: 1rem 0 2rem 0 !important;
    }
}
@media (min-width: 1025px) and (max-width: 1599px) {
    .map_content_contact {
        font-size: 2rem;
        padding: 0 0 2rem 0 !important;
    }
    .map_content_grand_open{
        margin: 1rem 0 2rem 0 !important;
    }
    
}
.map_content_grand_open .tg_cta_btn {
    margin-bottom: 2rem!important;
    margin-top: 3rem!important;
}

.privacy_page{
    min-height: 500px;
}

.privacy_page .show_hide_tab{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.privacy_page .title_main_privacy{
    margin:0 0 30px 0;
}

.privacy_page .show_hide_tab li{
    font-size: 1.8rem;
    line-height: 140%;
    color: #f9ac00;
    font-weight: 500;
    font-style: normal;
    border: 0.1rem solid #f9ac00;
    padding: 12px 20px;
    border-radius: 10rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 170px;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
}

.privacy_page .show_hide_tab li.tg_current{
    background: #f9ac00;
    color:#fff;
}

.tab-content.tg_current{
    display: inherit;
    -webkit-animation: slide-down 0.3s ease-out;
    -moz-animation: slide-down 0.3s ease-out;
}


.list_privacy_content h3{
        font-weight: 600;
        font-size: 3.4rem;
        line-height: 120%;
        padding: 0 0 0 20px;
        position: relative;
        color: #333333;
        margin: 30px 0 20px 0;
        padding:20px 0 0 0;
        border-top:1px solid #ccc;
}

.list_privacy_content h3:first-of-type{
    padding:0;
    border:none;
}


.list_privacy_content  h4{
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 120%;
    padding: 0;
    position: relative;
    color: #333333;
    margin:30px 0 10px 0;
}



.list_privacy_content  ul{
    font-size: 1.6rem;
    line-height: 140%;
    color: #333333;
    font-weight: 400;
    font-style: normal;
    display: flex;
    gap:15px;
    padding: 10px 0 5px 20px;
    flex-direction: column;
}

.list_privacy_content  ul li{
    padding:0 0 0 5px;
}

.list_privacy_content  p{
    font-size: 1.6rem;
    line-height: 140%;
    color: #333333;
    font-weight: 400;
    font-style: normal;
    margin: 1rem 0 0 0;
}

.privacy_note{
   padding: 0;
   position: relative;
   text-align: center;
   margin: 0 0 30px 0;
}

.privacy_note h3{
 font-weight: 500;
 font-size: 2.2rem;
 line-height: 120%;
 color: #ff0000;
 margin: 0 0 15px 0;
}

.privacy_note a{text-decoration: underline;color: #333333;font-size: 1.6rem;line-height: 120%;}

.tg_btn_privacy{
    display: table;
    margin:30px auto 0 auto;
}

.tg_btn_privacy .tg_btn_type1{
    font-size: 2.2rem;
}

.tg_footer_top {
    display: flex;
    gap:20px;
}

.tg_footer_top .tg_footer_terms{
    margin:0 0 0 auto;
}

.tg_footer_top .tg_footer_terms a{
    font-size: 1.6rem;
    line-height: 130%;
    color: #000;
    font-weight: 400;
    font-style: normal;
    border:1px solid #000;
    padding: 10px 20px;
    border-radius: 30px;
    display: table;
    background: none;
}

.tg_footer_top .tg_footer_terms a:hover{
   border:1px solid transparent;
   color: #fff;
}

.list_privacy_content table tr{
    height: auto;
}

.list_privacy_content table{
    width: 100% !important;
    table-layout: fixed; /* Bắt buộc có để các cột chia đều */
    border-collapse: collapse !important;
}

.list_privacy_content table td{
    font-size: 1.6rem;
    line-height: 140%;
    color: #333333;
    font-weight: 400;
    font-style: normal;
    padding:10px;
    border:1px solid #ccc;
    width: auto !important;
}

.list_privacy_content table tr{
    height: auto !important;
}
td, th {
    word-wrap: break-word;
    height: auto !important;
}

.list_privacy_content table tr td:first-child, 
.list_privacy_content table tr th:first-child {
    width: 16% !important;
    min-width: 210px;
}

.list_privacy_content table tr:first-child td, .list_privacy_content table tr td:first-child{
    background: #e6e6e6;
}

.list_privacy_content table{
    margin:20px 0px 15px 0;
}

.tg_overflow{
    display: block;
    overflow: auto;
}

.list_privacy_content ol{
    font-size: 1.6rem;
    line-height: 140%;
    color: #333333;
    font-weight: 400;
    font-style: normal;
    
}

.list_privacy_content ol {
       display: block;
       list-style-type: decimal;
       margin-block-start: 10px;
       margin-block-end: 10px;
       padding-inline-start: 30px;
       unicode-bidi: isolate;
}

.list_privacy_content ol ol{
    padding-left: 0 0 0 20px;
}

.list_privacy_content ol li {
    display: list-item;
    unicode-bidi: isolate;
    padding: 0 0 0 5px;
}

.tg_click_active_list li[hreflang="ja"]{
    order:1;
}
.tg_click_active_list li[hreflang="vi"]{
    order:2;
}
.tg_click_active_list li[hreflang="en-US"]{
    order:3;
}
.tg_click_active_list li[hreflang="ko-KR"]{
    order:4;
}
.tg_click_active_list li[hreflang="zh-CN"]{
    order:5;
}
.tg_click_active_list li[hreflang="zh-TW"]{
    order:6;
}
 .tg_click_active_list li a{
   display: flex;
    border: 0.1rem solid transparent;
    border-radius: 50%;
    padding: 0.4rem;
}
.tg_click_active_list li.tg_active a{
    border: 0.1rem solid #f9ac00;
}
.list_privacy_content h5 {
    margin: 0 auto 20px auto;
    position: relative;
    display: table;
}
.list_privacy_content h5 strong em{
    font-size: 20px;
    line-height: 30px;
    padding: 0 20px 0 20px;
    background: #fff;
    position: relative;
    color:#f9ac00;
}

.list_privacy_content h5 strong::before{
    content:"";
    position: absolute;
    top: 50%;
    height: 1px;
    background: #f9ac00;
    width: 50px;
    left: -50px;
}

.list_privacy_content h5 strong::after{
 content:"";
    position: absolute;
    top: 50%;
    height: 1px;
    background: #f9ac00;
    width: 50px;
    right: -50px;
}

/*end rau dev css*/
@media (max-width: 1024px) {
    .list_privacy_content h3{
        font-size: 2.4rem;
    }
    .list_privacy_content ul, .list_privacy_content ol, .list_privacy_content table td{
        font-size: 1.4rem;
    }
    .list_privacy_content table{
        min-width: 700px;
    }
    .tg_footer_top_logo{
        text-align: center;
    }
    .list_privacy_content  h4::before{
        top:6px;
    }
    .privacy_note h3{
        font-size: 1.8rem;
    }
    .privacy_note a{font-size: 1.2rem;}
    .list_privacy_content  h4{
        font-size: 1.8rem;
    }
    .list_privacy_content  p{
        font-size: 1.4rem;
    }
    .privacy_page .show_hide_tab{
        gap:10px;
    }
    .privacy_page .show_hide_tab li{
        font-size: 1.3rem;
        padding: 15px 20px;
    }
   .wpcf7-form-control.wpcf7-radio {
    flex-direction: column;
}
.tg_content_inquiry_wrap form .tg_content_inquiry_wrap_form_list_item .wpcf7-list-item label:has(input:checked)::after {
    width: 16px;
    height: 16px;
    top: 2px;
    left: 4px;
}
.map_content_grand_open .tg_cta_btn {
    margin-bottom: 1rem !important;
    margin-top: 2rem !important;
}
}

@-webkit-keyframes slide-down {
 0% {
    opacity: 0;
    -webkit-transform: translateY(15%);
}
100% {
    opacity: 1;
    -webkit-transform: translateY(0);
}
}
@-moz-keyframes slide-down {
 0% {
    opacity: 0;
    -moz-transform: translateY(15%);
}
100% {
    opacity: 1;
    -moz-transform: translateY(0);
}
}

/* Responsive - Mobile (max-width: 768px) */
@media (max-width: 767px) {
    .list_privacy_content h5 strong em {
        padding: 0 10px;
    }
    .tg_btn_privacy .tg_btn_type1{
        font-size: 1.8rem;
        text-align: center;
    }
    .tg_footer_top{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .tg_footer_top .tg_footer_terms{
        margin:0;
        display: table;
    }

    .map-viewer-wrapper,
    .data-map-viewer {
        max-width: 100%;
        border: none;
        box-shadow: none;
        margin: 0 auto;
        margin-top:25px;
    }

    .map-viewer-image {
        width: 100%;
    }

    .map-viewer-modal-content {
        width: 100%;
        height: 70vh;
        max-width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .map-viewer-modal-close {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .map-viewer-modal-pdf-frame,
    .map-viewer-modal-image-frame {
        border-radius: 0;
    }
}