::-webkit-scrollbar {
    width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

@font-face {
    font-family: "LINESeedKR-Bd";
    src: url("https://dcjcxwlaeh1jz.cloudfront.net/fonts/LINESeedKR-Bd.ttf") format("truetype");
}

@font-face {
    font-family: "LINESeedKR-Th";
    src: url("https://dcjcxwlaeh1jz.cloudfront.net/fonts/LINESeedKR-Th.ttf") format("truetype");
}

/* @font-face {
    font-family: "LINESeedKR-Rg";
    src: url("https://dcjcxwlaeh1jz.cloudfront.net/fonts/LINESeedKR-Rg.ttf") format("truetype");
} */

:root {
    --font-family-LINESeedKR-Bd: "Roboto";
    --font-family-LINESeedKR-Th: "LINESeedKR-Th";
    --font-family-LINESeedKR-Rg: "Roboto";
    --width-screen: 480px;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--font-family-LINESeedKR-Rg), sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

.flex {
    display: flex;
}

.item-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

input {
    outline: none;
    border: none;
}

.d-app {
    margin: 0 auto;
    background: #fff;
    width: 100%;
    position: relative;
    height: 100%;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

#header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    padding-bottom: 15px;
    padding-top: 0;
}

#header .container {
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 48px;
    background: #fff;
}

#header .header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

#header .brand {
    overflow: hidden;
    text-indent: -999em;
    background: url("../images/logo.png") 50% 50% no-repeat;
    background-size: 30px;
    width: 30px;
    height: 30px;
    margin: 0 8px 0 -1px;
}

#header .keyword-search {
    position: relative;
    flex: 1;
}

#header .keyword-search.keyword-search-main input {
    padding-right: 15px;
}

#header .keyword-search input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 40px;
    height: 38px;
    font-size: 16px;
    padding-left: 32px;
    padding-right: 12px;
    font-weight: 500;
    background: #eee;
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: var(--width-screen);
    }

    .d-app {
        max-width: var(--width-screen);
    }

    #header .container {
        max-width: var(--width-screen);
    }
}

main {
    padding-bottom: 0;
}

.section_1 {
    position: relative;
}

.section_1 .item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.section_1 .item .abs-text-charactor {
    position: absolute;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) -6.99%,
            rgba(0, 0, 0, 0.98) 116.5%);
    text-transform: uppercase;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.username-wrapper-mb img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    object-fit: cover;
}

.section_2 {
    margin-top: 32px;
}

.section_2 .item_about {
    width: 100px;
    height: 85px;
    border-radius: 6px;
    background: #fbfbfb;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_2 .item_about p {
    margin-bottom: 0;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #333;
    margin-top: 10px;
}

.title_desception {
    margin-top: 28px;
    margin-bottom: 15px;
    /*position: relative;*/
    z-index: 9999;
}

.title_desception h2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: var(--font-family-LINESeedKR-Bd);
    margin-top: 0;
    margin-bottom: 0;
}

.title_desception a {
    color: #000;
}

.item_reviews_country {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.item_reviews_country .item,
.item_reviews_eats .item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.item_reviews_country .item img,
.item_reviews_eats .item img {
    width: 100%;
    object-fit: cover;
}

.item_reviews_country .item .abs_text_image {
    position: absolute;
    border-radius: 6px 6px 0px 0px;
    background: linear-gradient(180deg,
            rgba(13, 13, 13, 0.8) 0%,
            rgba(0, 0, 0, 0) 75%);
    color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: var(--font-family-LINESeedKR-Bd);
}

.item_reviews_country .item .abs_text_image p {
    margin-bottom: 0;
    color: #fff;
    padding-top: 10px;
}

.item_reviews_eats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
}

.item_reviews_eats .item .abs_text_image_eats {
    position: absolute;
    border-radius: 6px;
    color: #fff;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-family-LINESeedKR-Bd);
    background: linear-gradient(180deg,
            rgba(13, 13, 13, 0.8) 0%,
            rgba(0, 0, 0, 0) 75%);
    top: 0;
}

.item_reviews_eats .item .abs_text_image_eats p {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    padding-top: 10px;
}

.item_reivew_star {
    border-radius: 6px;
    background: #fbfbfb;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.item_reivew_star .text_image_review_star {
    padding: 20px 10px;
}

.item_reivew_star .text_image_review_star h3 {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item_reivew_star .text_image_review_star p {
    margin-bottom: 5px;
    color: #505050;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.star_box_count {
    text-align: left;
    display: flex;
    align-items: center;
}

.star_box_count img {
    width: auto !important;
    margin-right: 5px;
    margin-top: -6px;
}

.slider_reivew_carousel.owl-carousel .owl-stage-outer {
    padding: 10px 0 12px;
}

.pt-block {
    padding-top: 15px;
}

.details-page-pro .block-image-cover {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.details-page-pro .block-image-cover .icon_back {
    position: absolute;
    top: 15px;
    left: 30px;
}

.details-page-pro .block-image-cover .logo_branch {
    position: relative;
    text-align: center;
    margin-top: -30px;
}

.information_branch {
    margin-top: 20px;
}

.information_branch h1 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: var(--font-family-LINESeedKR-Bd);
    margin-top: 0;
}

.information_branch .desp_inf {
    margin-top: 12px;
}

.amenities-block-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
}

.amenities-block-item .item {
    text-align: center;
}

.amenities-block-item .item p {
    margin-bottom: 0;
    color: #0d0d0d;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menu-details-block .item_reviews_eats .item .abs_text_image_eats {
    flex-direction: column;
}

.menu-details-block .item_reviews_eats .item .abs_text_image_eats p {
    font-size: 10px;
}

.photo-album-thumbs_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.photo-album-thumbs_item .item img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    border-radius: 4px;
}

.map-important-div .btn-check-map-wrapper {
    margin-top: 12px;
}

.map-important-div .btn-check-map-wrapper .button-location-btn {
    border-radius: 3px;
    background: #e60023;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
}

.information-details-list h2 {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.information-details-list p {
    margin-bottom: 0;
}

.block-image-cover,
.amenities-block-section,
.menu-details-block,
.photo-album-thumbs-details-block,
.location-details-block,
.information-details-block,
.wrapper_item_reviews_box_cate_tag {
    padding-bottom: 28px;
    border-bottom: 3px solid #e6e6e6;
}

.slider_albums_carousel-blog .item_albums {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.list-menu-item-vertical .item {
    border-radius: 10px;
    background: #fbfbfb;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
    overflow: hidden;
}

.list-menu-item-vertical .item .text-content {
    width: 100%;
}

.list-menu-item-vertical .item a {
    color: #333;
}

.list-menu-item-vertical .item .image img {
    width: 123px;
    height: 123px;
    object-fit: cover;
}

.list-menu-item-vertical .item .information_branch {
    margin-top: 0;
    padding-right: 7px;
}

.list-menu-item-vertical .item .desp_inf {
    margin-bottom: 6px;
    margin-top: 6px;
    font-size: 10px;
    padding: 6px 0;
}

.list-menu-item-vertical .item h2 {
    color: #333;
    font-family: var(--font-family-LINESeedKR-Bd);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

.list-menu-item-vertical .item p {
    font-size: 10px;
}

.line {
    width: 0.75px;
    height: 19px;
    background: #797979;
}

.list-menu-item-vertical .item a .desp_inf .line {
    height: 10px;
}

.filter-box {
    padding-bottom: 7px;
    margin-bottom: 14px;
    position: sticky;
    top: 0;
    background: #fff;
}

.form-search {
    position: relative;
    margin-bottom: 12px;
}

.form-style-input {
    border-radius: 20px;
    background: #eee;
    border: none;
    outline: none;
    box-shadow: unset;
    padding-left: 32px;
    padding-top: 9px;
}

.modal_langguage {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.42);
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_content {
    max-width: 300px;
    margin: auto;
    width: 100%;
    border-radius: 5px;
    background: #fff;
    text-align: center;
    padding: 20px;
}

.modal_content .modal_head {
    position: relative;
    margin-bottom: 20px;
}

.modal_content .modal_head h2 {
    margin: auto;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.modal_content .modal_head .onclose-model-language {
    position: absolute;
    right: 0;
    top: -5px;
    cursor: pointer;
}

.modal_content .choose-language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
}

.modal_content .choose-language a {
    border-radius: 5px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    padding: 12px;
    color: #fff;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
}

.modal_content .choose-language a.active {
    border: 1px solid #E60023;
    color: #E60023;
}

.btn-search {
    position: absolute;
    top: 3px;
    outline: none;
}

.btn-filter-tag {
    display: block;
}

.btn-filter-tag .btn-filter {
    border-radius: 20px;
    border: 1px solid #bcbcbc;
    background: #fff;
    padding: 4px 19px;
    text-align: center;
    color: #5c5c5c;
    line-height: 20px;
    display: inline-block;
    margin-bottom: 7px;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btn-filter-tag .btn-filter:first-child {
    max-width: 49px;
}

.btn-filter-tag .btn-filter:nth-child(2) {
    border-radius: 20px;
    border: 1px solid #e60023;
    background: #e60023;
    color: #fff;
}

.btn-filter-tag .btn-filter:nth-child(3),
.btn-filter-tag .btn-filter:nth-child(4),
.btn-filter-tag .btn-filter:nth-child(5) {
    border-radius: 20px;
    border: 1px solid #e60023;
    background: rgba(230, 0, 35, 0.12);
    color: #e60023;
}

.btn-filter-tag .btn-filter:nth-child(6) {
    border-radius: 20px;
    border: 1px solid #5c5c5c;
    background: #e6e6e6;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: unset;
}

.btn.active,
.btn:active {
    box-shadow: unset;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.font-base {
    font-size: 14px;
}

/*****************Menu******************/

#dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transform: translateZ(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    -webkit-transform: translateZ(0);
    display: none;
}

#dock .dock-container {
    position: relative;
    margin: 0 auto;
    max-width: var(--width-screen);
    background: #fff;
    border-top: 1px solid #f9f9f9;
}

#dock .dock-container .dock-menu {
    display: flex;
    height: 48px;
    box-sizing: border-box;
    position: relative;
}

#dock .dock-container .dock-menu a {
    position: relative;
    display: block;
    flex: 1;
    height: 48px;
}

._1fdmqfe0 {
    width: 40%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_5 {
    margin-top: 35px;
}

.slider_albums_carousel.owl-carousel .owl-stage-outer {
    padding: 30px 0;
}

.slider_albums_carousel .owl-item .item_albums {
    border-radius: 10px;

    background: rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
    text-align: center;
}

.slider_albums_carousel .owl-item.active {
    position: relative;
    z-index: 9;
}

.slider_albums_carousel .owl-item.active .item_albums {
    background: #fbfbfb;
    transform: scale(1.1);
}

.item_albums img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.item_albums .text_image_albums {
    padding: 20px 10px;
}

.item_albums .text_image_albums h3 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: var(--font-family-LINESeedKR-Bd);
    margin-top: 0;
    margin-bottom: 0;
}

.item_albums .text_image_albums p {
    margin-bottom: 0;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.banner_cover img {
    width: 100%;
}

.model-acount {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999999;
    height: calc(100vh - env(safe-area-inset-bottom, 0px));
    /* Fix cho iOS */
    max-height: var(--real-vh, 100vh);
}

.popup_social {
    min-height: 277px;
    background: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 30px 30px 0 0;
}

.popup_social .head-popup {
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.popup_social .head-popup h2 {
    margin: 0;
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.body-content-func {
    padding: 24px;
}

.btn-socicals-select {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.btn-socicals-select a {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    padding: 10px;
}

.btn-socicals-select a img {
    width: fit-content;
}

.btn-socicals-select a span {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-socicals-select .text-note {
    margin-top: 24px;
    font-size: 10px;
    text-align: center;
}

.btn-socicals-select .text-note a {
    color: #747474;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: block;
    margin-bottom: 12px;
}

.form-model-fields .form-input {
    margin-bottom: 20px;
}

.form-model-fields .form-input .input-model {
    border-radius: 5px;
    background: #f4f4f4;
    height: 35px;
    border: none;
    box-shadow: none;
}

.btn-group-func {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 10px;
}

.btn-checkbox-policy .checkox {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn-checkbox-policy .checkox label {
    margin-bottom: 0;
}

.btn-checkbox-policy .checkox input {
    margin-top: 0;
}

.btn-create {
    background: #e60023;
    color: #fff;
    width: 100%;
}

.btn-cancle {
    color: #fff;
    background: #c7c7c7;
    width: 100%;
}

.forgot-pwd {
    margin-bottom: 20px;
}

.forgot-pwd a {
    color: #000;
    display: block;
    text-align: center;
    text-decoration: line-through;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#time-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
}

.otp-inputs .otp {
    width: 50px;
    height: 44px;
    text-align: center;
}

.group-check-success {
    text-align: center;
}

.group-check-success-icon {
    width: 88px;
    height: 88px;
    background: rgba(0, 202, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 88px;
    margin: 20px auto;
}

.group-check-success p {
    color: #00ca2c;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.model-acount,
.model-hide,
.forgot-step-1,
.forgot-step-2,
.forgot-step-3 {
    display: none;
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #fff;
}

.header-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 24px;
}

.header-page h2 {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.infor-wrapper .face-image-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.infor-wrapper .face-image-wrapper h2 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.infor-wrapper .btn-wrapper-edit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.infor-wrapper .btn-wrapper-edit a {
    display: block;
    border-radius: 100px;
    border: 1px solid #b9b9b9;
    background: #fff;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    padding: 16px 0;
    min-width: 57px;
}

.infor-wrapper-save-like {
    margin-top: 25px;
}

.infor-wrapper-save-like .btn-reserve {
    border-radius: 3px;
    background: #838080;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
    padding: 10.5px 12px;
    pointer-events: none;
}
.btn-disable {
    background: #838080 !important;
    color: #fff;
}

.infor-wrapper-save-like .btn-mark-like {
    border-radius: 3px;
    background: #fff;
    color: #333;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: 1px solid #b9b9b9;
}

.face-image-wrapper img {
    width: 73px;
    height: 73px;
    object-fit: cover;
    border-radius: 50%;
}

.tabs-content-item {
    border-top: 9px solid #ececec;
    margin-top: 40px;
}

.tabs-content-item ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.tabs-content-item ul li {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-bottom: 2px solid #d9d9d9;
    cursor: pointer;
}

.tabs-content-item ul li.active {
    border-bottom: 2px solid #000;
}

.tabs-content-item ul li h3 {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#allTabsContainer {
    margin-top: 14px;
}

.wrapper-edit-image {
    position: relative;
}

.btn-pencil-edit {
    position: absolute;
    background: #fff;
    display: flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.wrapper-edit-image img {
    height: 73px;
    width: 73px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-menu-settings ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.nav-menu-settings ul li {
    padding: 12px 0;
}

.nav-menu-settings ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-settings ul li span {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 17px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #e60023;
}

input:focus+.slider {
    box-shadow: 0 0 1px #e60023;
}

input:checked+.slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.infor-wapper-page {
    margin-top: 32px;
    margin-bottom: 32px;
}

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

.infor-wapper-page .infor h2 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

.infor-wapper-page .infor p {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.border-9 {
    border-top: 9px solid #ececec;
    padding-top: 32px;
    padding-bottom: 32px;
}

.sign-out h2 {
    margin: 0;
}

.sign-out h2 a {
    color: #b6b6b6;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.permanently p {
    margin-bottom: 0;
    color: #b6b6b6;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.permanently p a {
    color: #797979;
}

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

.toogle-wrapper p {
    margin-bottom: 0;
}

.term {
    margin-top: 20px;
}

.term-policy-wrapper {
    min-height: 52vh;
}

@media (max-width: 1025px) {
    #dock {
        display: block;
    }
}

.wrapper_item_reviews_box .title_destinal {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pagination ul li {
    padding: 0;
    border: unset;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background: #e60023;
    border-color: #e60023;
}

.reservation_wrapper_block {
    width: 100%;
    min-height: 1000px;
    position: relative;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-wrapper-reservation {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: center center;
}

.bg-wrapper-reservation::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.44);
}

.section-step-oder {
    padding: 24px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.section-step-oder .element-block {
    margin-bottom: 20px;
}

.section-step-oder .element-block h3 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

.my-input {
    border-radius: 5px;
    background: #F4F4F4;
    border: none;
    box-shadow: none;
    color: #B6B6B6;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 16px;
    min-height: 52px;
}

.group-select-time .btn-style-time {
    border-radius: 8px;
    background: #EBEBEB;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 6px 8px;
    width: 100%;
}

.group-select-time .btn-style-time:hover,
.group-select-time .btn-style-time.active {
    border-radius: 8px;
    background: #E60023;
    color: #fff;
}

#counterInput {
    background: transparent;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 50px;
    text-align: right;
}

.counter-click-btn {
    border-radius: 5px;
    background: #EBEBEB;
    border: none;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 100px;
    text-align: center;
}

.wrapper-block-icon {
    margin-top: 36px;
}

.wrapper-block-icon .icon {
    text-align: center;
    border-radius: 5px;
    background: #F4F4F4;
    width: 25%;
    color: #000;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 36px;
}

.wrapper-block-icon .icon img {
    margin-bottom: 16px;
}

.w-50 {
    width: 80%;
    margin: auto;
}

.section-step {
    position: relative;
}

.step-2 .element-block:last-child {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.image-icon-request {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    margin: 40px auto;
    overflow: hidden;
}

.image-icon-request .success {
    background-color: rgba(0, 202, 44, 0.15);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-icon-request .error {
    background-color: rgba(202, 0, 0, 0.15);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-icon-request .error svg {
    width: 70px;
}

.image-icon-request .loading {
    background-color: rgba(255, 176, 0, 0.17);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-request p {
    color: #565656;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.block-ready-check-order .title h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.block-ready-check-order .title h3 {
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.block-ready-check-order .title p {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.loader {
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%, #FFB000) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
        radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: l4 1s infinite steps(10);
}

.request {
    border-radius: 3px;
    padding: 5px 12px;
    width: fit-content;
    color: #fff;
    font-weight: 600;
}

.waiting {
    background: #F6B910;
}

.success {
    background: #168C06;
}

.error {
    background: #E10D0D;
}

.note-request .success {
    background: transparent;
}

.alert-error-pass {
    text-align: center;
    color: #E10D0D;
    padding: 12px 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

@keyframes l4 {
    to {
        transform: rotate(1turn)
    }
}

.information_branch .desp_inf {

    border-top: 2px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
    padding: 6px 0;

}

.pagination {
    margin-top: 40px;
}

.pagination>li>a,
.pagination>li>span {
    margin: 0 5px;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #000;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
    margin-left: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.back-button {
    width: 20px;
    height: 20px;
}

@media (min-width: 1025px) {
    #header {
        border-radius: 100px;
        background: #fff;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        width: 90%;
        margin: auto;
        position: absolute;
        top: 5%;
        padding-bottom: 0;
    }

    #header .container {
        width: 100%;
        height: auto;
        background: transparent;
        gap: 15px;
        padding: 12px 12px;
    }

    #header .header-left {
        gap: 85px;
    }

    #header .brand {
        overflow: hidden;
        text-indent: -999em;
        background: url("../images/pc/icon_logo.png") 50% 50% no-repeat;
        background-size: 65px;
        width: 65px;
        height: 65px;
        margin: 0 8px 0 -1px;
    }

    #header .keyword-search input {
        height: 50px;
    }

    #header .header-right {
        margin-left: 70px;
    }

    #header .header-right .username {
        border-radius: 100px;
        background: #e60023;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 26px;
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        cursor: pointer;
    }

    #header .header-right .username img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
    }

    .wrapper_item_reviews_box .title_destinal {
        color: #333;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 40px;
    }

    .slider-banner-owl .item {
        position: relative;
        max-height: 600px;
        overflow: hidden;
        border-radius: 20px;
    }

    .slider-banner-owl .item img {
        object-fit: cover;
        height: 100%;
    }

    .slider-banner-owl .item::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .slider-banner-owl .item .text-content-slider {
        position: absolute;
        left: 0;
        z-index: 9999;
        font-size: 55px;
        color: #fff;
        width: 100%;
        text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.45);
        line-height: 1.1;
        background: linear-gradient(0deg,
                rgba(13, 13, 13, 0.8) 0%,
                rgba(0, 0, 0, 0) 75%);
        bottom: 0;
        padding-top: 40px;
        padding-left: 40px;
        padding-bottom: 40px;
        padding-right: 60px;
    }

    .slider-banner-owl .item .text-content-slider img {
        width: 900px;
    }

    .infor-wrapper-save-like {
        margin-bottom: 25px;
    }

    .infor-wrapper-save-like a:first-child {
        margin-bottom: 16px;
    }

    .infor-wrapper-save-like .btn-mark-like {
        width: 100%;
        padding: 10.5px 12px;
    }

    .section {
        padding-bottom: 80px;
    }

    .section_2 .item_about {
        width: 400px;
        height: 246px;
    }

    .section_2 {
        margin-top: 85px;
    }

    .section_2 .item_about p {
        margin-bottom: 0;
        color: #333;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .item_reviews_country {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .item_reviews_country .item .abs_text_image {
        text-align: left;
        text-indent: 20px;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .item_reviews_country .item .abs_text_image p {
        padding-top: 20px;
    }

    .title_desception {
        margin-bottom: 32px;
    }

    .title_desception h2 {
        color: #333;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        position: relative;
        padding-left: 35px;
    }

    .title_desception h2::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 36px;
        background: #e60023;
        left: 0;
        top: 4px;
    }

    .title_desception p {
        color: #3a3a3a;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .item_reviews_eats .item .abs_text_image_eats {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .item_reviews_eats .item .abs_text_image_eats p {
        padding-top: 20px;
        text-indent: 20px;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-align: left;
    }

    .item_reviews_eats {
        gap: 15px;
    }

    .item_reivew_star {
        margin: 10px 0;
    }

    .item_reivew_star .item {
        border-radius: 6px;
        overflow: hidden;
    }

    .title_desception a {
        font-size: 20px;
    }

    .item_reivew_star .text_image_review_star h3 {
        font-size: 20px;
    }

    .item_reivew_star .text_image_review_star p {
        font-size: 16px;
        margin: 10px 0;
    }

    .section_5 {
        padding-top: 70px;
        background: url("https://dcjcxwlaeh1jz.cloudfront.net/templates/images/pc/bg-top-restaurent.png") no-repeat;
        background-size: cover;
        margin-bottom: 60px;
    }

    .pc-main-block {
        padding-bottom: 0;
    }

    .slider_albums_carousel-blog {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .entry-content {
        margin-top: 40px;
    }

    .thumbnail-item img,
    .avatar-item img {
        width: 100%;
        border-radius: 10px;
    }

    .avatar-item img {
        height: 560px;
        object-fit: cover;
    }

    .thumbnail-item img {
        height: 270px;
    }

    .thumbnail-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .thumbnail-block {
        position: relative;
        margin-top: -350px;
        z-index: 9999;
    }

    .page-details-item-block-wrapper {
        padding-bottom: 85px;
    }

    .information_branch .desp_inf {
        margin-top: 0;
        border-top: 2px solid #e6e6e6;
        border-bottom: 2px solid #e6e6e6;
        padding: 8px 0;
    }

    .star_box_count,
    .dollar,
    .location {
        color: #000;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .tag-review-star {
        display: flex;
        gap: 15px;
        flex-flow: wrap;
        justify-content: space-between;
        margin-top: 32px;
        padding-bottom: 32px;
        margin-bottom: 42px;
        border-bottom: 3px solid #e6e6e6;
    }

    .tag-review-star .item {
        border-radius: 5px;
        border: 1px solid #b9b9b9;
        background: #fff;
        display: flex;
        align-items: center;
        float: left;
        gap: 16px;
        padding: 12px 14px;
    }

    .tag-review-star .item p {
        margin-bottom: 0;
    }

    .tag-review-star .item p strong {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .item_reviews_eats-page-details .item .abs_text_image_eats {
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .menu-details-block .item_reviews_eats-page-details .item .abs_text_image_eats p {
        font-size: 16px;
    }

    .amenities-block-item {
        display: flex;
        gap: 11px;
        flex-wrap: wrap;
    }

    .amenities-block-item .item {
        border-radius: 5px;
        border: 1px solid #b9b9b9;
        background: #fff;
        display: flex;
        align-items: center;
        float: left;
        padding: 4px 11px;
    }

    .amenities-block-item .item p {
        font-size: 15px;
    }

    .amenities-block-item .item svg {
        width: 35px;
        height: 35px;
    }

    .side_bar-right {
        border-radius: 10px;
        background: #fff;
        box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
        padding: 12px 16px;
    }

    .block-image-cover,
    .amenities-block-section,
    .menu-details-block,
    .photo-album-thumbs-details-block,
    .information-details-block,
    .wrapper_item_reviews_box_cate_tag {
        padding-bottom: 28px;
        border-bottom: unset;
    }

    .map-important-div .btn-check-map-wrapper {
        font-size: 16px;
    }

    .map-important-div .btn-check-map-wrapper .button-location-btn {
        font-size: 16px;
    }

    .information-details-list h2 {
        font-size: 16px;
    }

    .thumbnail-block {
        margin-bottom: 40px;
    }

    .breacum {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .breacum a,
    .breacum p {
        color: #333;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .infor-wrapper {
        border-radius: 10px;
        background: #fff;
        box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
        padding: 50px;
    }

    .infor-wrapper .face-image-wrapper {
        flex-direction: column;
    }

    .infor-wrapper .face-image-wrapper img {
        width: 191px;
        height: 191px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 1px 1px 4px 0px #00000040;
    }

    .infor-wrapper .face-image-wrapper h2 {
        color: #000;
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
    }

    .tabs-content-item {
        border: none;
        margin-top: 0;
        border-radius: 10px;
        background: #fff;
        box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
        padding: 12px 24px;
    }

    .tabs-content-item ul li h3 {
        font-size: 20px;
    }

    .tabs-content-item ul li.active {
        border-bottom: 2px solid #e60023;
    }

    .nav-menu-settings {
        padding: 30px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
    }

    .btn-pencil-edit {
        width: 36px;
        height: 36px;
        right: 25px;
    }

    .term-policy-wrapper {
        min-height: auto;
    }

    .infor-wapper-pc {
        border-radius: 10px;
        background: #fff;
        box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
    }

    .border-9 {
        padding-left: 32px;
        padding-right: 32px;
    }

    .infor-wapper-page {
        padding: 32px;
        margin-bottom: 0;
        margin-top: 0;
    }

    .infor-wapper-page .infor p,
    .toogle-wrapper {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .infor-wapper-page .infor h2 {
        font-size: 20px;
    }

    .popup_social {
        margin: auto;
        width: 500px;
        height: fit-content;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        border-radius: 30px;
    }

    .popup_social .head-popup {
        border-bottom: none;
        justify-content: center;
    }

    .onclose-model {
        position: absolute;
        top: 15px;
        right: 25px;
        z-index: 999;
    }

    .username a {
        color: #fff;
    }

    .btn-socicals-select a span {
        font-size: 12px;
    }

    .entry-photo-pc-show .photo-grid-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .entry-photo-pc-show .photo-grid-list .item {
        overflow: hidden;
    }

    .entry-photo-pc-show .photo-grid-list .item img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }
}

@media (max-width: 1023px) {
    .banner_cover img {
        height: 300px;
        object-fit: cover;
    }

    .slider-charactor-owl img {
        height: 235px;
        object-fit: cover;
    }

    .tag-review-star {
        display: flex;
        gap: 6px;
        flex-flow: wrap;
        margin-top: 24px;
        padding-bottom: 24px;
        border-bottom: 3px solid #e6e6e6;
        padding-left: 10px;
        padding-right: 10px;
    }

    .tag-review-star .item {
        border-radius: 5px;
        border: 1px solid #b9b9b9;
        background: #fff;
        display: flex;
        align-items: center;
        float: left;
        gap: 6px;
        padding: 12px 7px;
    }

    .tag-review-star .item p {
        margin-bottom: 0;
    }

    .photo-grid-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .photo-grid-list .item img {
        width: 100%;
    }
}

.text-white {
    color: #fff !important;
}

@media (min-width: 1200px) {
    .container.container-cate-pc {
        width: 1570px;
    }
}

@media (max-width: 768px) {
    #header {
        padding-top: 0;
    }

    .owl-nav {
        display: block;
    }

    .owl-carousel .owl-nav img {
        width: 40px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        top: -60px !important;
        left: -15px !important;
    }

    .owl-carousel .owl-nav button.owl-next {
        top: -60px !important;
        right: -15px !important;
    }

    .pagination {
        margin-top: 20px;
    }
}

@media (max-width: 350px) {
    .section_2 .flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .section_2 .item_about {
        width: 100%;
    }

    .item_reviews_eats {
        grid-template-columns: repeat(3, 1fr);
    }

    .item_albums img {
        height: 200px;
    }

    .item_albums .text_image_albums h3 {
        font-size: 14px;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .item_albums .text_image_albums p {
        font-size: 13px;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .item_albums .text_image_albums {
        padding: 8px 4px;
    }

    .restaurant_img {
        height: 150px;
    }

    .slider-charactor-owl img {
        height: 200px;
    }

    .list-menu-item-vertical .item .information_branch {
        padding: 12px;
    }

    .list-menu-item-vertical .item a,
    .list-menu-item-vertical a .item>div {
        flex-direction: column;
    }

    .list-menu-item-vertical .item .image img {
        width: 100%;
        height: auto;
    }

    .popular_areas_slider.owl-carousel .owl-nav button.owl-prev,
    .popular_areas_slider.owl-carousel .owl-nav button.owl-next {
        top: 0 !important;
    }
}
