.itemSuggest {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
    text-align: center;
    position: absolute;
    z-index: 9;
    background-color: #fff;
    transition: all .3s;
    height: 0;
    opacity: 0;
    top: 100px;
    width: 100%;
    min-height: 0px;
    border-radius: 20px;
    display: none;
}

.itemSuggest.show {
    transition: all .5s;
    opacity: 1;
    height: auto;
    min-height: 200px;
    display: block;
    max-height: calc(100dvh - 500px);
    overflow: auto;
}

.itemSuggest>.groupTitle {
    overflow-y: auto;
    max-height: 100%;
    display: grid;
    gap: 10px;
}

.itemSuggest>.groupTitle>.item {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    transition: all .3s;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.itemSuggest>.groupTitle>.item:hover {
    background-color: #f9f9f9;
    color: #2e6def;
}

.itemSuggest>.groupTitle>.item>.left {
    width: 100%;
    display: flex;
    gap: 10px;
}

.itemSuggest>.groupTitle>.item>.left>.icon {
    /* เพิ่ม styling ได้ตามต้องการ */
}

.itemSuggest>.groupTitle>.item>.left>.text {
    text-align: start;
}

.itemSuggest>.groupTitle>.item>.left>.text>.title {
    /* เพิ่ม styling ได้ตามต้องการ */
}

.itemSuggest>.groupTitle>.item>.left>.text>.subtitle {
    color: #b4b4b4;
    font-weight: 400;
    font-size: 14px;
}



.cardMain {
    background-color: #fff;
    border-radius: 14px;
    padding: var(--padding-horizontal);
    display: grid;
    row-gap: var(--row-gap);
}

.cardMain.cardShadow {
    box-shadow: rgba(0, 0, 0, 0.06) 0px -18px 28.8px 0px;
}

.cardMain.sectionCollapse {
    border-radius: 0 0 14px 14px;
}

.cardMain>.head>.title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-grey-950);
}

.cardMain>.head>.txtValue {
    color: var(--color-primary);
    font-size: var(--display-xs);
    font-weight: 600;
}

.cardMain>.head.center {
    text-align: center;
}

.cardMain>.headListItem {
    color: var(--color-grey-600);
    font-size: 14px;
    font-weight: var(--text-Regular);
    display: flex;
    gap: var(--gap);
}


.boxGrey {
    background-color: var(--color-grey-50);
    padding: var(--padding-horizontal);
    border-radius: 8px;
    display: grid;
    row-gap: var(--row-gap-sm);
}

.boxGrey>.subTxtHead {
    display: flex;
    gap: var(--gap);
    font-size: 16px;
    font-weight: var(--text-Semibold);
    color: var(--color-primary-600);
    align-items: center;
    line-height: 1.25;
}

.boxGrey>.subTxtHead::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: var(--color-primary-600);
    border-radius: 2px;
}

.boxGrey>.subTxtHead.beforeGrey::before {
    background-color: var(--color-grey);
}

.boxGrey>.subTxtHead.beforeRed {
    color: rgb(159, 0, 0);
}

.boxGrey>.subTxtHead.beforeRed::before {
    background-color: rgb(159, 0, 0);
}

.boxGrey>.areaInputOrder {
    display: grid;
    row-gap: 12px;
}

.boxGrey .groupInput {
    display: flex;
    gap: var(--gap);
    align-items: center;
    justify-content: space-between;
    color: var(--color-grey-950);
    font-weight: var(--text-Medium);
    text-wrap-mode: nowrap;
    font-size: 14px;
}

.boxGrey .groupInput>.title {
    /* width: 50%; */
    /* max-width: 50%; */
}

.boxGrey .groupInput>.input_ {
    display: flex;
    gap: 8px;
    align-items: center;
}

.boxGrey .groupInput>.input_>.input,
.boxGrey .groupInput>.input {
    position: relative;
    max-width: 100px;
}

.boxGrey .groupInput>.input_>.input.long,
.boxGrey .groupInput>.input.long {
    max-width: 150px;
}

.boxGrey .groupInput>.input_>.input>input,
.boxGrey .groupInput>.input>input {
    /* input style */
}

.boxGrey .groupInput>.input_>.input::after,
.boxGrey .groupInput>.input::after {
    content: attr(txt);
    position: absolute;
    top: 50%;
    right: 6px;
    pointer-events: none;
    transform: translateY(-50%);
    color: var(--color-disabled);
    font-size: 14px;
    font-weight: var(--text-Regular);
}

.boxGrey .groupInput>.input::after {
    right: 10px;
    /* override สำหรับ .input */
}

.boxGrey .groupInput>.input_>.subtitle,
.boxGrey .groupInput>.subtitle {
    min-width: 20%;
    text-align: end;
}

.boxGrey>.groupSum {
    background-color: var(--color-grey-100);
    padding: var(--padding-horizontal);
    border-radius: 8px;
    display: grid;
    row-gap: var(--row-gap-sm);
}

.boxGrey>.groupSum .title {
    font-size: 14px;
    font-weight: var(--text-Medium);
}

.boxGrey>.groupSum .subtitle {
    font-size: 16px;
    font-weight: var(--text-Semibold);
}

.boxGrey>.groupSum .subtitle.sum {
    font-size: 18px;
    font-weight: var(--text-Bold);
}

.boxSecondary {
    background-color: var(--color-primary-50);
    padding: var(--padding-horizontal);
    border-radius: 8px;
    display: grid;
    row-gap: var(--row-gap-sm);
}

.boxSecondary .title {
    font-size: 16px;
    font-weight: var(--text-Medium);
}

.boxSecondary .subtitle {
    font-size: 18px;
    font-weight: var(--text-Semibold);
}

.boxSecondary .subtitle.sum {
    font-size: 20px;
    font-weight: var(--text-Bold);
}

.formUploadImgFile {
    display: grid;
    align-items: center;
    justify-items: center;
    border: 2px dashed var(--color-primary);
    border-radius: 8px;
    padding: var(--padding-horizontal);
}

.formUploadImgFile.fileMuliple {
    display: flex;
    gap: var(--gap);
}

.formUploadImgFile.fileMuliple>.inputFile {
    width: 75px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.formUploadImgFile.fileMuliple>.preview {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--gap);
    width: calc(100% - 75px - var(--gap));
    min-height: 80px;
    max-height: 80px;
    padding-bottom: 18px;
    margin-bottom: -13px;
}

.formUploadImgFile.fileMuliple>.preview>.filePreview {
    flex: 0 0 auto;
    position: relative;
    align-self: flex-start;
    overflow: hidden;
    display: grid;
    align-items: center;
    align-content: center;
    height: 65px;
    border-radius: var(--padding-vertical);
}

.formUploadImgFile.fileMuliple>.preview>.filePreview>img {
    width: 80px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.formUploadImgFile .default {
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: 150px;
    align-content: center;
    cursor: pointer;
    width: 100%;
}

.formUploadImgFile .default>.icon {
    /* เพิ่ม icon styling ตามต้องการ */
}

.formUploadImgFile .default>.title {
    font-size: var(--text-sm);
    color: var(--color-grey-950);
}

.formUploadImgFile .default>.subtitle {
    font-size: var(--text-xs);
    color: var(--color-grey-300);
}

.formUploadImgFile .preview {
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: 150px;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: var(--padding-vertical);
}

.formUploadImgFile .preview>.filePreview {
    position: relative;
}

.formUploadImgFile .preview .btnRemove {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #000000;
    border-radius: 1rem;
    background-color: #ffffffc9;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
}

.formUploadImgFile .preview .btnRemove>i {
    display: flex;
}


.dt-container {
    position: relative;
    font-family: var(--font-main);
}

.dt-container input.form-control {
    min-height: unset;
}

.dt-container>.dt-buttons>button {
    padding: 5px 12px;
    line-height: 1.2;
}

.dt-container>.dt-buttons>button i {
    margin-right: 2px;
}

.dt-container>.dt-search {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}

.dt-container>table.dataTable {
    margin-top: .5rem;
    margin-bottom: .5rem !important;
    border-radius: .5rem;
    overflow: hidden;
    background-color: var(--bg-table);
}

.dt-container>table.dataTable thead,
.dt-container>table.dataTable thead th {
    font-size: .8rem;
    font-weight: 300;
}

.dt-container>table.dataTable tbody,
.dt-container>table.dataTable tbody td {
    font-size: .8rem;
    font-weight: 300;
    vertical-align: top;
}

.dt-container>.dt-info {
    left: 0;
    font-size: .75rem;
    margin-top: 3px;
}

.dt-container>.dt-paging {
    right: 0;
}

.dt-container>.dt-paging .pagination>.dt-paging-button>button {
    padding: 0 7px;
    font-size: 11px;
    padding-top: 5px;
}


.boxGrey .Htitle {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 8px;
    margin-bottom: 8px;
}


.groupInputText {
    display: flex;
    gap: var(--gap);
    align-items: center;
    justify-content: space-between;
    color: var(--color-grey-950);
    font-weight: var(--text-Medium);
    text-wrap-mode: nowrap;
}

.groupInputText>.title {
    width: 50%;
}

.groupInputText>.input {
    position: relative;
    max-width: 100px;
}

.groupInputText>.input.long {
    max-width: 150px;
}

.groupInputText>.input>input {
    /* คุณสามารถเพิ่ม styling input ตรงนี้ได้ */
}

.groupInputText>.input::after {
    content: attr(txt);
    position: absolute;
    top: 50%;
    right: 10px;
    pointer-events: none;
    transform: translateY(-50%);
    color: var(--color-disabled);
    font-size: 14px;
    font-weight: var(--text-Regular);
}

.groupInputText>.subtitle {
    /* เว้นไว้เผื่อมีสไตล์เพิ่ม */
}

.boxHeadNewA {
    min-height: unset !important;
}

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

.boxHeadNewA>.boxGrey .title {
    font-weight: 800;
}

.boxHeadNewA>.boxGrey .iconCustomA {
    color: #a6a6a6;
    font-size: 38px;
}

.boxHeadNewA>.boxGrey .iconCustomA>i {
    display: flex;
}

.hideInput_ {
    border: none;
    max-width: 88px;
    background: none;
}

.hideInput_:focus,
.hideInput_:focus-visible,
.hideInput_:active,
.hideInput_:hover {
    border: none;
    background: none;
}


.ControlOrderStatus {
    font-weight: 400;
    padding: 1px 4px;
    border-radius: 6px;
}

.ControlOrderStatus.Status0 {
    color: #000000;
    background-color: #00000014;
}

.ControlOrderStatus.Status1 {
    color: #009aca;
    background-color: #009aca14;
}

.ControlOrderStatus.Status2 {
    color: #2300ca;
    background-color: #2300ca14;
}

.ControlOrderStatus.Status3 {
    color: #ca6c00;
    background-color: #ca6c0014;
}

.ControlOrderStatus.Status4 {
    color: #03ca00;
    background-color: #03ca0014;
}

.ControlOrderStatus.Status5 {
    color: #ca0000;
    background-color: #ca000014;
}

/* ยังไม่มีสไตล์เฉพาะใน SCSS ต้นทาง */
.ControlOrderStatus.Status9 {}

.ControlOrderStatus.detailS0 {}

.ControlOrderStatus.detailS1 {}

.ControlOrderStatus.detailS2 {}

.ControlOrderStatus.detailS3 {}

.ControlOrderStatus.detailS4 {}

.headContent {
    margin: 20px 0px;
}

.headContent>.Htitle {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}

.headContent>.Hsubtitle {
    color: #6e6e6e;
}



.filterSlide>.txtFilter {
    margin-right: 0px;
    transition: all .3s;
    color: #6d6d6d;
    cursor: pointer;
    background-color: #ffffff;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 15px;
    border: 1px solid #f2f2f2;
    line-height: 3;
}

.filterSlide>.txtFilter.active {
    color: var(--secondary-color);
    font-weight: 600;
    background-color: #f0f3fd;
    border: 1px solid var(--secondary-color);
}

.container_ section,
.sectionFeaturedListings,
.sectionNewProject,
.sectionPopularLocation,
.sectionBlogReview,
.sectionHotPrice,
.sectionContactUs {
    padding: 70px 20px;
}

.container_ section .slideFeaturedListings .item,
.container_ section .slideNewProject .item,
.container_ section .slideHotPrice .item,
.container_ section .slideMoreRecommendedUnits .item,
.sectionFeaturedListings .slideFeaturedListings .item,
.sectionNewProject .slideNewProject .item,
.sectionHotPrice .slideHotPrice .item,
.sectionHotPrice .slideMoreRecommendedUnits .item,
.sectionPopularLocation .slideFeaturedListings .item,
.sectionBlogReview .slideFeaturedListings .item,
.sectionContactUs .slideFeaturedListings .item {
    padding: 10px;
}


.contentSlide {
    position: relative;
    min-height: 250px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.1) 0px 1px 7px 0px;
    border-radius: 20px;
    overflow: hidden;
}

.contentSlide .numImages {
    background-color: #00000054;
    color: #fff;
    position: absolute;
    right: 13px;
    top: 13px;
    z-index: 1;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    font-weight: 400;
    display: flex;
    gap: 3px;
    align-items: center;
}

.contentSlide .numImages>i {
    display: flex;
}

.contentSlide .txtTag {
    background-color: #1e8300;
    color: #fff;
    position: absolute;
    left: 13px;
    top: 13px;
    z-index: 1;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    font-weight: 400;
    display: flex;
    gap: 3px;
    align-items: center;
}

.contentSlide .txtTag>i {
    display: flex;
}

.contentSlide .txtTag.red {
    background-color: #ce0000;
}

.contentSlide .txtTag.blue {
    background-color: #0097ce;
}

.contentSlide .imgCover {
    max-height: 180px;
    overflow: hidden;
    display: grid;
    align-content: center;
    position: relative;
}

.contentSlide .imgCover .slick-dots {
    margin-bottom: 25px;
}

.contentSlide .imgCover .slick-dots li button:before {
    content: '';
    display: block;
    width: 20px;
    height: 4px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.contentSlide .imgCover .slick-dots li.slick-active button:before {
    background: #000;
    opacity: 1;
}

.contentSlide .imgCover .slick-arrow.slick-prev {
    left: 13px;
    z-index: 1;
}

.contentSlide .imgCover .slick-arrow.slick-next {
    right: 13px;
}

.contentSlide .imgCover .slick-arrow::before {
    color: #fff;
    font-size: 20px;
}

.contentSlide .imgCover .img.more {
    position: relative;
}

.contentSlide .imgCover .img.more::before {
    content: "View All";
    width: 100%;
    background-color: #00000029;
    display: grid;
    align-items: center;
    height: 250px;
    position: absolute;
    justify-items: center;
    cursor: pointer;
    backdrop-filter: blur(3px);
    color: #fff;
    height: 100%;
}

.contentSlide .imgCover .img>img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
}


.body>.title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    border-bottom: 1px dashed #f1f1f1;
    padding-bottom: 10px;
}

.body>.detail>.head>.tag {
    font-size: 12px;
    color: #a6a6a6;
}

.body>.detail>.head>.price {
    margin: 4px 0;
    font-weight: 500;
}

.body>.detail>.listOption {
    min-height: 100px;
    background-color: #f7f7f7;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    justify-items: stretch;
    align-items: stretch;
}

.body>.detail>.listOption>.listItem {
    display: flex;
    gap: 3px;
    font-size: 12px;
    color: #545454;
}

.body>.detail>.listOption>.listItem>.icon {
    width: 18px;
    text-align: center;
}

.body>.detail>.listOption>.listItem>.txt {
    width: calc(100% - 3px - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.body>.detail>.footer>button {
    background: linear-gradient(145deg, var(--secondary-color), #2b5371);
    font-size: 14px;
    border: none;
    min-height: 40px;
}




@media screen and (max-width:1200px) {
    .contentSlide .body>.detail>.listOption {
        grid-template-columns: repeat(1, 1fr);
    }

}

.sectionIntroAbout {
    padding: 100px 0 70px 0 !important;
    background: linear-gradient(145deg, var(--secondary-color), #2b5371);
    color: #fff;
    position: relative;
}

.sectionIntroAbout>.container {
    z-index: 2;
    position: relative;
}

@media screen and (max-width: 751px) {
    .container_ section {
        padding: 70px 10px;
    }

    .sectionIntroAbout {
        padding: 200px 20px 220px 20px !important;
    }

    .areaBlogs>.list {
        align-items: flex-start !important;
    }

    .areaBlogs>.list>.img {
        width: 100px !important;
    }
}

.sectionContactUs>.container {
    z-index: 1;
    position: relative;
}

.loaderText {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 16px;
    display: flex;
    line-height: 1;
}

.loaderText>.words {
    overflow: hidden;
    position: relative;
}

.loaderText>.words::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--bg-color) 10%,
            transparent 30%,
            transparent 70%,
            var(--bg-color) 90%);
    z-index: 20;
}

.loaderText>.words>.word {
    display: block;
    height: 100%;
    padding-left: 6px;
    color: #f79421;
    animation: spin_4991 4s infinite;
}



.scroll-top-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color-dark);
    color: white;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    transition: background-color 0.3s;
}

.scroll-top-btn>.icon {
    line-height: 1;
    margin-bottom: 9px;
    margin-top: -5px;
}

.scroll-top-btn>.txt {
    margin-top: -20px;
    font-size: 10px;
}

.scroll-top-btn:hover {
    background-color: #0056b3;
}

.formInquireNow .formDetailRef {
    width: 100%;
    transition: all 0.3s;
}

.formInquireNow .formDetailRef.show {
    background-color: #f6f6f6;
    min-height: 20px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
}

.boxShowImgPreview {
    --heightcustom: 600px;
    --mbcustom: 20px;
    overflow: hidden;
    margin-bottom: var(--mbcustom);
    position: relative;
}

.boxShowImgPreview>.img {
    display: grid;
    height: 100%;
}

.boxShowImgPreview>.img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxShowImgPreview.style1 {
    height: var(--heightcustom);
}

.boxShowImgPreview.style2 {
    height: calc(var(--heightcustom) / 2 - var(--mbcustom) / 2);
}

.boxShowImgPreview.more {
    position: relative;
}

.boxShowImgPreview.more::before {
    content: "View All";
    width: 100%;
    background-color: #00000029;
    display: grid;
    align-items: center;
    height: 250px;
    position: absolute;
    justify-items: center;
    cursor: pointer;
    backdrop-filter: blur(3px);
    color: #fff;
    height: 100%;
}

.boxShowImgPreview>.numImages {
    background-color: #00000054;
    color: #fff;
    position: absolute;
    right: 13px;
    top: 13px;
    z-index: 1;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    font-weight: 400;
    display: flex;
    gap: 3px;
    align-items: center;
}

.boxShowImgPreview>.numImages>i {
    display: flex;
}

.boxShowImgPreview>.txtTag {
    background-color: #1e8300;
    color: #fff;
    position: absolute;
    left: 13px;
    top: 13px;
    z-index: 1;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    font-weight: 400;
    display: flex;
    gap: 3px;
    align-items: center;
}

.boxShowImgPreview>.txtTag>i {
    display: flex;
}

.boxShowImgPreview>.txtTag.red {
    background-color: #ce0000;
}

.boxShowImgPreview>.txtTag.blue {
    background-color: #0097ce;
}

/* Responsive */
@media screen and (max-width: 751px) {
    .boxShowImgPreview {
        --heightcustom: 300px;
        --mbcustom: 10px;
        margin-bottom: var(--mbcustom);
    }

    .boxShowImgPreview.style1 {
        height: var(--heightcustom);
    }

    .boxShowImgPreview.style2 {
        display: none;
    }
}


.detailCondo>.title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 35px;
    color: #393939;
    margin-bottom: 2px;
}

.detailCondo>.subtitle {
    font-size: 14px;
    color: #767676;
}

.detailCondo>.price {
    margin: 15px 0px;
    font-weight: 600;
    font-size: 20px;
}

.detailCondo>.listOption {
    min-height: 100px;
    background-color: #f7f7f7;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    justify-items: stretch;
    align-items: stretch;
}

.detailCondo>.listOption>.listItem {
    display: flex;
    gap: 3px;
    font-size: 12px;
    color: #545454;
}

.detailCondo>.listOption>.listItem>.icon {
    width: 18px;
    text-align: center;
}

.detailCondo>.listOption>.listItem>.txt {
    width: calc(100% - 3px - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detailCondo>.txtdetail {
    font-size: 14px;
    color: #727272;
    line-height: 1.8;
    margin-bottom: 15px;
}

.detailCondo>.tableDetail>table {
    width: 100%;
}

.detailCondo>.mapsArea {
    width: 100%;
    min-height: 400px;
    background-color: #f7f7f7;
    padding: 10px;
    display: grid;
    gap: 8px;
    border-radius: 5px;
}

.detailCondo>.mapsArea>.imgPreviewMaps {
    border-radius: 5px;
    overflow: hidden;
}

.formContactUs {
    box-shadow: rgb(0 30 64 / 50%) 0px 7px 29px 0px;
    padding: 25px;
    background-color: #fff;
    border-radius: 14px;
    color: #000;
    min-height: 350px;
    z-index: 2;
    position: relative;
}

.formContactUs.detail,
.formContactUs.result {
    box-shadow: rgb(193 193 193 / 43%) 0px 3px 11px 0px;
    position: sticky;
    top: 120px;
}

.air-datepicker {
    z-index: 1055 !important;
}

.resultAres {
    margin-top: 20px;
    min-height: 100dvh;
}

.resultAres>.head>.title {
    font-size: 25px;
    font-weight: 700;
    color: #393939;
}

.showLocationItem {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    max-height: 480px;
    min-height: 140px;
    cursor: pointer;
    position: relative;
}

.showLocationItem>.content {
    position: absolute;
    bottom: 0;
    color: #fff;
    z-index: 1;
    width: 100%;
    padding: 15px;
}

.showLocationItem>.content>.title {
    font-size: 16px;
    font-weight: 600;
}

.showLocationItem>.content>.subtitle {
    font-size: 11px;
}

.showLocationItem>.content>.tagC {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.showLocationItem>.content>.tagC>.tag {
    width: 100%;
    border: 1px solid;
    padding: 1px 6px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.showLocationItem>.content>.tagC>.tag:hover {
    background-color: #fff;
    color: #000;
}

.showLocationItem>.imgBG {
    height: 230px;
}

.showLocationItem>.imgBG>img {
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showLocationItem>.imgBG>img:hover {
    scale: 1.1;
}

.showLocationItem>.overBG {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    box-shadow: rgb(0, 0, 0) 0px -400px 100px -341px inset;
    border-top-right-radius: 5px;
}


.btnSearchOnMapsAres {
    position: relative;
    margin-top: 10px;
}

.btnSearchOnMapsAres>.detail {
    height: 80px;
    display: grid;
    align-content: center;
    justify-items: center;
    overflow: hidden;
    border-radius: 6px;
}

.btnSearchOnMapsAres>.detail .group {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
}

.btnSearchOnMapsAres>.detail .group>.iconpin {
    width: 28px;
}

.btnSearchOnMapsAres>.detail .group>txt {}

.btnSearchOnMapsAres>.detail .preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areaMapsContent {
    box-shadow: rgb(193 193 193 / 43%) 0px 3px 11px 0px;
    padding: 5px;
    background-color: #fff;
    border-radius: 14px;
    min-height: 265px;
    overflow: hidden;
}

.areaMapsContent>.imgPreviewMaps {
    height: 265px;
    overflow: hidden;
    border-radius: 10px;
}

.areaMapsContent>.mapDetailGoogle {
    height: 265px;
    overflow: hidden;
    border-radius: 10px;
}

@media screen and (max-width: 751px) {
    .formContactUs {
        margin-top: 50px;
        margin-bottom: 0px;
    }

    .resultAres {
        padding: 15px;
    }
}

.areaBlogs {
    display: grid;
    gap: 20px;
}

.areaBlogs>.list {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.areaBlogs>.list:hover {
    color: #184994;
}

.areaBlogs>.list>.img {
    width: 100px;
    display: grid;
    align-items: center;
    overflow: hidden;
    max-height: 100px;
    border-radius: 10px;
}

.areaBlogs>.list>.img>img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.areaBlogs>.list>.detail {
    width: calc(100% - 15px - 100px);
}

.areaBlogs>.list>.detail>.title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 19px;
    color: #4e4e4e;
}

.areaBlogs>.list>.detail>.subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: #9b9b9b;
    font-weight: 300;
}

.areaBlogs>.list>.detail>.update {
    font-size: 12px;
    color: #9e9e9e;
    margin-top: 5px;
}

.blogsContentArea>.head {}

.blogsContentArea>.body {}

.blogsContentArea>.footer {}