:root {
    --button_size: 28px;
    --button_size_mobile: 32px;
    --scale_overlay_input: 0.6;
}

* {
    touch-action: manipulation;
}

html,
body {
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #dedede;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    pointer-events: none;
}

*:not(iframe)::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.noselect,
img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.error-highlight {
    border-color: #ff0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.disabled2 {
    pointer-events: none;
    opacity: 0.5;
}

.hidden {
    display: none !important;
}

input.hidden-password {
    -webkit-text-security: disc;
}

.logo {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
    opacity: 0;
}

.logo img {
    height: 40px;
}

.logo_mobile {
    display: none;
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
    opacity: 0;
}

.logo_mobile img {
    height: 40px;
}

.weather {
    position: absolute;
    top: 52px;
    right: 6px;
    z-index: 1;
    opacity: 0;
    width: 46px;
    height: 38px;
    border-radius: 6px;
    padding: 4px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.weather #w_icon {
    opacity: 0.5;
    margin: 0 auto;
    width: 32px;
    height: 24px;
    margin: 0 auto;
    display: block;
    background-image: none;
    background-size: cover;
    background-repeat: no-repeat;
}

.weather span {
    opacity: 0.5;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

.map_container {
    width: 100%;
    height: 100%;
    transition: width 0.2s;
}

.map_render {
    opacity: 0;
}

.my_position_icon {
    position: absolute;
    right: 121px;
    bottom: 7px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    z-index: 1;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.my_position_icon.searching {
    pointer-events: none;
    opacity: 0.7;
}

.home_icon {
    position: absolute;
    right: 160px;
    bottom: 7px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    z-index: 1;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.info_icon {
    position: absolute;
    right: 6px;
    top: 6px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    z-index: 1;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.center_right_controls {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--button_size);
    z-index: 1;
}

.center_right_controls div {
    margin: 3px 0;
}

.center_left_controls {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--button_size);
    z-index: 1;
}

.center_left_controls div {
    margin: 3px 0;
}

.nav_marker_next {
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav_marker_prev {
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn_story {
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn_share_map {
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn_song_map {
    display: none;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn_song_map i {
    pointer-events: none;
}

.btn_share_cookie_denied {
    display: none;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    font-size: 12px;
    cursor: not-allowed;
    opacity: 0.7;
    margin: 0 auto;
}

.btn_share_map i {
    pointer-events: none;
}

.share_map_section {
    display: none;
    position: absolute;
    z-index: 999999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.list_icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    text-align: center;
    line-height: 32px;
    color: #000000;
    z-index: 1;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
}

.list_icon.only {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.search_icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    text-align: center;
    line-height: 32px;
    color: #000000;
    z-index: 1;
    font-size: 14px;
    cursor: default;
    background: transparent;
}

.search_icon i.fa-times {
    font-size: 18px;
    vertical-align: text-bottom;
}

.filter_icon {
    display: none;
    position: absolute;
    right: 34px;
    top: 0;
    height: 32px;
    border-radius: 10px;
    text-align: center;
    line-height: 32px;
    color: #000000;
    z-index: 1;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
}

.filter_icon.only {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.globe_icon {
    position: absolute;
    bottom: 6px;
    left: 44px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    z-index: 1;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.connections_icon {
    position: absolute;
    bottom: 6px;
    left: 82px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    z-index: 1;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.featured_icon {
    position: absolute;
    bottom: 6px;
    left: 120px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    text-align: center;
    color: #000000;
    z-index: 1;
    font-size: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.map {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
}

.sheet_detail {
    position: absolute;
    top: 38px;
    left: 6px;
    width: calc(100% - 12px);
    max-width: 400px;
    max-height: calc(100% - 84px);
    border-radius: 10px;
    z-index: 100;
    display: none;
    overflow-x: hidden;
    transition: max-height 0.2s;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.sheet_detail.open {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.sheet_detail_container {
    margin-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 10px;
}

.new_sheet_detail {
    position: absolute;
    top: 38px;
    left: 6px;
    width: 400px;
    max-height: calc(100% - 84px);
    border-radius: 10px;
    z-index: 100;
    display: none;
    overflow-x: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.new_sheet_detail.btn_bar_no_search {
    max-height: calc(100% - 52px);
}

.new_sheet_detail.open {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.new_sheet_detail_container {
    margin-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 10px;
}

.direction_detail {
    position: absolute;
    top: 38px;
    left: 6px;
    width: calc(100% - 12px);
    max-width: 400px;
    max-height: calc(100% - 84px);
    border-radius: 10px;
    z-index: 100;
    display: none;
    overflow-x: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.direction_detail.open {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.direction_detail_container {
    margin-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 10px;
}

.list_detail {
    position: absolute;
    top: 38px;
    left: 6px;
    max-width: 400px;
    width: calc(100% - 12px);
    max-height: calc(100% - 84px);
    border-radius: 10px;
    z-index: 100;
    overflow-y: scroll;
    display: none;
    transition: max-height 0.2s;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.list_detail.open {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#list {
    margin-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 95%;
    display: flex;
    flex-flow: column;
}

.list_block {
    height: 80px;
    padding: 10px;
    border-bottom: 1px solid #e3e3e3;
    cursor: pointer;
}

.list_block:hover {
    background-color: #f5f5f5;
}

.list_image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    float: left;
}

.list_image video {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.list_name {
    width: calc(100% - 100px);
    float: left;
    margin-left: 15px;
    margin-top: -2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.list_address {
    width: calc(100% - 100px);
    float: left;
    height: 30px;
    margin-left: 15px;
    margin-top: 1px;
    overflow: hidden;
    line-height: 15px;
    font-weight: normal;
    font-size: 12px;
    color: #000000;
    cursor: pointer;
    word-break: break-word;
}

.list_distance {
    width: calc(100% - 100px);
    float: left;
    margin-left: 15px;
    margin-top: 1px;
    overflow: hidden;
    font-weight: normal;
    font-size: 12px;
    color: #000000;
    cursor: default;
}

.list_rating {
    width: calc(100% - 100px);
    float: left;
    margin-left: 15px;
    margin-top: 1px;
    overflow: hidden;
    cursor: pointer;
    white-space: pre;
}

.sheet_detail_image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.2s;
}

.sheet_detail_video {
    display: none;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.2s;
    object-fit: cover;
}

.new_sheet_detail_image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.sheet_detail_name {
    width: calc(100% - 30px);
    margin: 10px 15px 10px 15px;
    text-align: center;
    font-size: 20px;
    word-break: break-word;
}

.sheet_detail hr {
    width: 80px;
    margin-top: 10px;
    margin-bottom: 15px;
    background-color: lightgray;
    height: 1px;
    border: 0;
}

.new_sheet_detail hr {
    width: 80px;
    margin-top: 10px;
    margin-bottom: 15px;
    background-color: lightgray;
    height: 1px;
    border: 0;
}

.sheet_detail_features {
    display: flex;
    align-items: center;
    margin: 6px 6px;
}

.direction_features {
    display: flex;
    align-items: center;
    margin: 6px 6px;
}

.direction_features .features_value input {
    padding-left: 5px;
}

.features_icon {
    flex-grow: 0;
    align-self: flex-start;
    padding: 0 10px 0 0;
}

.direction_features .features_icon div {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    border-radius: 20px;
    text-align: center;
    background-color: black;
    color: white;
}

.direction_profile {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 10px;
    color: black;
    font-size: 20px;
    border: 1px solid black;
    cursor: pointer;
}

.direction_profile_active {
    background-color: black;
    color: white !important;
    pointer-events: none !important;
    cursor: default !important;
}

.direction_profile_active i {
    color: white !important;
}

.features_icon i {
    width: 30px;
    text-align: center;
    color: #000000;
}

.features_value {
    flex-grow: 10;
    font-size: 12px;
    word-break: break-word;
}

#sheet_images {
    width: calc(100% - 5px);
}

.nGY2GThumbnail {
    border-radius: 6px !important;
}

#store_description p {
    margin: 0;
    padding: 0;
    word-break: break-word;
}

#store_hours p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}

.blueimp-gallery a {
    display: block !important;
}

.blueimp-gallery .indicator {
    display: block !important;
}

#button_actions {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

#button_actions div {
    display: inline-table;
    margin: 0 3px;
    color: #ffffff;
    border: 1px solid black;
    font-size: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

#button_actions div i {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#new_button_actions {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

#new_button_actions div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 3px;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn_cancel_marker {
    background-color: #565656;
    border: 1px solid #3b3b3b;
}

.btn_cancel_marker:hover {
    background-color: #3b3b3b;
}

.btn_add_marker {
    background-color: #007000;
    border: 1px solid #005600;
}

.btn_add_marker:hover {
    background-color: #005600;
}

.search_div {
    display: none;
    position: absolute;
    z-index: 10;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    max-width: 400px;
    border-radius: 10px;
    height: 32px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.search_div.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#searchbox {
    position: absolute;
    z-index: 1;
    height: 32px;
    line-height: 32px;
    margin-left: 32px;
    width: calc(100% - 36px);
    padding: 5px;
    border: none;
    outline: none;
    background-color: transparent;
}

#searchbox:focus,
#searchbox:active,
#searchbox:hover,
#searchbox:visited {
    outline: none;
}

#searchbox::-webkit-search-decoration,
#searchbox::-webkit-search-cancel-button,
#searchbox::-webkit-search-results-button,
#searchbox::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.count_cat {
    font-weight: bold;
}

.categories_div {
    display: none;
    position: absolute;
    top: 38px;
    left: 6px;
    max-width: 390px;
    width: calc(100% - 22px);
    max-height: calc(100% - 84px);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    overflow-y: scroll;
    display: none;
    padding: 5px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.switch_style {
    position: absolute;
    left: 6px;
    bottom: 6px;
    z-index: 99;
    border-radius: 10px;
    width: var(--button_size);
    height: var(--button_size);
    overflow: hidden;
    cursor: pointer;
}

.switch_style img {
    width: 100%;
}

.review-section {
    background: transparent;
    width: 90%;
    margin: 0 auto;
    padding: 0 10px;
}

.average-rating {
    float: left;
    text-align: center;
    width: 30%;
    margin-top: 12px;
}

.average-rating h2 {
    margin: 0px;
    font-size: 36px;
}

.average-rating p {
    margin: 0px;
    font-size: 12px;
}

.fa-star,
.fa-star-o,
.fa-star-half-alt {
    color: #FDC91B;
    font-size: 12px !important;
}

.progress,
.progress-2,
.progress-3,
.progress-4,
.progress-5 {
    background: #e2e2e2;
    border-radius: 13px;
    height: 8px;
    width: 97%;
    padding: 3px;
    margin: 5px 0px 3px 0px;
}

.progress:after,
.progress-2:after,
.progress-3:after,
.progress-4:after,
.progress-5:after {
    content: '';
    display: block;
    background: black;
    width: 80%;
    height: 100%;
    border-radius: 9px;
}

.progress-2:after {
    width: 60%;
}

.progress-3:after {
    width: 40%;
}

.progress-4:after {
    width: 20%;
}

.progress-5:after {
    width: 10%;
}

.loder-ratimg {
    display: inline-block;
    width: 40%;
}

.start-part {
    float: right;
    width: 28%;
    text-align: left;
}

.user-img-part {
    width: 30%;
    float: left;
    word-break: break-all;
}

.user-text {
    float: right;
    padding-right: 5px;
}

.user-text p {
    font-size: 12px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0;
    text-align: right;
}

.user-text h4 {
    color: #B3B5B4;
    font-size: 12px;
    margin-top: 2px;
    margin-bottom: 0;
    text-align: right;
}

.comment-part {
    margin-top: 5px;
}

.comment {
    width: 68%;
    float: right;
    font-size: 12px;
}

.comment p {
    margin-top: 2px;
}

.comment .reply {
    font-style: italic;
}

.blocker {
    z-index: 99999 !important;
}

#form_new_review input[type="text"],
#form_new_review input[type="email"],
#form_new_review input[type="tel"],
#form_new_review input[type="url"],
#form_new_review textarea,
#form_new_review button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#form_new_review {}

#form_new_review h3 {
    display: block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

#form_new_review h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
    font-weight: bold;
}

fieldset {
    border: medium none !important;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#form_new_review input[type="text"],
#form_new_review input[type="email"],
#form_new_review textarea {
    width: calc(100% - 20px);
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

#form_new_review input[type="text"]:hover,
#form_new_review input[type="email"]:hover,
#form_new_review textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
}

#form_new_review textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#form_new_review button[type="submit"] {
    cursor: pointer;
    width: calc(100% + 6px);
    background: black;
    color: #FFF;
    margin: 5px -2px 5px;
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
}

#form_new_review button[type="submit"]:hover {
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#form_new_review input:focus,
#form_new_review textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

#new_rating {
    margin-bottom: 10px;
}

#new_rating i {
    cursor: pointer;
    font-size: 14px !important;
}

#review_feedback {
    display: none;
}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    border-radius: 10px;
    width: 250px;
    height: auto;
    color: #000000;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: default;
}

.popup_image,
.popup_video {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center center;
    background-size: cover;
    background-position: center;
    cursor: default;
}

.popup_title_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 10px 0px 10px;
}

.popup_title_div div {
    align-self: start;
}

.popup_title {
    padding: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
    cursor: default;
    width: 235px;
}

.popup_title_w_d {
    width: 196px;
}

.popup_rating {
    padding: 0;
    margin: 0;
    cursor: default;
}

.popup_icon {
    align-self: start;
    margin-top: 2px;
}

.popup_icon .btn_direction_p {
    display: inline-table;
    font-size: 12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
}

.popup_icon .btn_direction_p i {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.popup_description {
    padding: 0;
    margin: 2px 10px 5px 10px;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    cursor: default;
}

.popup_description p {
    margin: 0;
    padding: 0;
}

.popup_address {
    padding: 0;
    margin: 2px 10px 5px 10px;
    font-size: 12px;
    font-style: italic;
    cursor: default;
}

.popup_c {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    border-radius: 10px;
    width: auto;
    height: auto;
    padding: 8px 0;
    max-width: 250px;
    z-index: 99999;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: default;
}

.popup_c_title {
    padding: 0;
    margin: 2px 10px 0px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
    cursor: default;
}

.popup_c_description {
    padding: 0;
    margin: 2px 10px 0px 10px;
    font-size: 12px;
    cursor: default;
}

.ol-zoom {
    left: unset;
    right: 0;
    top: unset;
    bottom: 0;
}

.ol-zoom .ol-zoom-in {
    position: absolute;
    bottom: 6px;
    right: 82px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    cursor: pointer;
}

.ol-zoom .ol-zoom-out {
    position: absolute;
    bottom: 6px;
    right: 44px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    cursor: pointer;
}

.ol-control {
    background-color: unset;
}

.ol-control:hover {
    background-color: unset;
}

.ol-control button {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.ol-full-screen {
    top: unset;
    right: 0;
    bottom: 0;
}

.ol-full-screen button {
    position: absolute;
    left: unset;
    top: unset;
    bottom: 6px;
    right: 6px;
    width: var(--button_size);
    height: var(--button_size);
    line-height: var(--button_size);
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

.new_marker_msg,
.drag_marker_msg {
    padding: 4px 6px;
    font-size: 12px;
    line-height: 12px;
    position: absolute;
    z-index: 10;
    top: 44px;
    left: 6px;
    border-radius: 8px;
    text-align: center;
    cursor: default;
    display: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.new_marker_cancel {
    color: #565656;
    font-size: 14px;
    cursor: pointer;
    vertical-align: middle;
}

.new_marker_confirm {
    background-color: darkgreen;
    color: white;
    border-radius: 10px;
    padding: 0px 6px;
    cursor: pointer;
    font-size: 12px;
    line-height: 12px;
}

.new_marker_confirm i {
    font-size: 8px;
    vertical-align: middle;
}

.btn_bar {
    position: absolute;
    z-index: 10;
    top: 44px;
    left: 6px;
    text-align: center;
    pointer-events: none;
}

.btn_bar_no_search {
    top: 6px !important;
}

.new_marker_btn,
.live_tracking_btn,
.live_tracking_stop_btn {
    color: white;
    padding: 4px 6px;
    font-size: 12px;
    line-height: 12px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    display: block;
    pointer-events: initial;
}

.live_tracking_btn {
    background: #0084ca;
}

.live_tracking_stop_btn {
    background: white;
    color: #0084ca;
}

#live_tracking_count {
    color: #0084ca;
    pointer-events: none;
    opacity: 0;
}

#live_tracking_name {
    text-align: center;
}

.new_marker_btn i,
.live_tracking_btn i,
.live_tracking_stop_btn i {
    vertical-align: middle;
}

.new_sheet_detail .sheet_detail_features {
    margin: 3px 3px;
}

.features_value input {
    display: inline-block;
    width: calc(100% - 10px);
    text-align: left;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 2px;
    margin: 0 0 4px 0;
}

.features_value select {
    display: inline-block;
    width: calc(100% - 10px);
    text-align: left;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 2px;
    margin: 0 0 4px 0;
}

#new_store_name input {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 1px;
}

#new_store_coordinates input {
    display: inline-block;
    float: left;
    width: calc(50% - 8px);
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 2px;
    margin: 0 0 4px 0;
}

#new_store_hours textarea {
    display: inline-block;
    width: calc(100% - 10px);
    text-align: left;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    padding: 1px 2px;
}

#new_store_description textarea {
    display: inline-block;
    width: calc(100% - 10px);
    text-align: left;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    padding: 1px 2px;
}

.new_store_field textarea {
    display: inline-block;
    width: calc(100% - 10px);
    text-align: left;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    padding: 1px 2px;
}

#new_image_btn {
    background-color: lightgray;
    width: 58px;
    height: 58px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    float: left;
    margin: 5px;
    text-align: center;
    line-height: 58px;
    cursor: pointer;
}

#new_image_btn i {
    font-size: 18px;
    vertical-align: middle;
    color: white;
}

.resize_sheet_icon {
    position: sticky;
    bottom: 3px;
    float: right;
    margin-right: 10px;
    font-size: 18px;
    cursor: pointer;
}

.share-buttons {
    width: calc(100% - 10px);
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.share-buttons a {
    padding: 3px !important;
}

.sheet_detail.sheet_detail_minimized .sheet_detail_image {
    height: 150px;
}

.sheet_detail.sheet_detail_minimized .sheet_detail_video {
    height: 150px;
}

#close_btn_sd {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    line-height: 25px;
    color: white;
    background-color: darkgray;
    cursor: pointer;
}

#close_btn_sd i {
    vertical-align: middle;
}

#story {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30%;
    transform: scaleX(0);
    transform-origin: right;
    margin: auto;
    overflow-y: scroll;
    padding: 0;
    text-align: center;
    transition: transform 0.2s;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#story img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 250px;
}

.story_open {
    transform: scaleX(1) !important;
    padding: 0 10px !important;
}

.map_story_open {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(70% - 20px);
}

.ol-scroll-next {
    margin-top: 30px;
}

.ol-scroll-top {
    margin-bottom: 300px;
}

@media (max-width: 600px) and (orientation: portrait) {
    .sheet_detail_image {
        height: 150px;
    }

    .sheet_detail_video {
        height: 150px;
    }

    .sheet_detail {
        max-height: 280px;
    }

    .popup {
        width: 200px;
    }

    .popup_image {
        height: 50px;
    }

    .popup_title {
        width: 185px;
        font-size: 12px;
    }

    .popup_title_w_d {
        width: 146px;
    }

    .popup_address {
        font-size: 10px;
    }

    .popup_c {
        max-width: 200px;
    }

    .popup_c_title {
        font-size: 12px;
    }

    .popup_c_description {
        font-size: 10px;
    }

    .search_div,
    .list_detail,
    .sheet_detail,
    .categories_div,
    .direction_detail {
        max-width: 100%;
    }

    .new_sheet_detail {
        width: calc(100% - 12px);
    }

    .fa-star,
    .fa-star-o,
    .fa-star-half-alt {
        font-size: 10px !important;
    }

    #story h2 {
        font-size: 14px;
    }

    #story span {
        font-size: 14px;
    }

    #story p {
        font-size: 10px;
    }
}

.sheet_detail_minimized {
    max-height: 280px !important;
}

.sheet_detail_maximized {
    max-height: calc(100% - 84px);
}

.ol-attribution {
    bottom: 44px;
    right: 6px;
}

.ol-attribution:hover {
    background-color: rgba(255, 255, 255, .8);
}

.ol-attribution button {
    border-radius: 50%;
}

.search_q_container {
    display: block;
    height: 1px;
    pointer-events: none;
    opacity: 0;
}

#featured_container {
    position: absolute;
    z-index: 20;
    bottom: 46px;
    left: 0;
    width: 100%;
    height: 90px;
    opacity: 0;
    pointer-events: none;
}

.list_block_featured {
    height: 70px;
    width: 290px;
    padding: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    pointer-events: initial;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.list_block_featured .list_name {
    font-size: 12px;
}

.list_block_featured .list_rating {
    margin-top: -2px;
    width: calc(100% - 90px);
}

.list_block_featured .list_address {
    font-size: 12px;
    line-height: 13px;
    height: 38px;
    word-break: break-word;
}

.list_block_featured .list_image,
.list_block_featured .list_image video {
    width: 70px;
    height: 70px;
}

.owl-carousel .owl-stage {
    margin: 0 auto;
}

.cesium-credit-logoContainer,
.cesium-credit-textContainer {
    display: none !important;
}

.ol-overlaycontainer-stopevent {
    z-index: 1 !important;
}

.features_value p {
    margin: 0;
    padding: 0;
}

.hide_p::placeholder,
.hide_p::-webkit-input-placeholder {
    color: transparent;
}

.hide_p::-moz-placeholder {
    color: transparent;
    opacity: 0;
}

.hide_p:-ms-input-placeholder {
    color: transparent;
}

.hide_p::-ms-input-placeholder {
    color: transparent;
}

.hide_p::placeholder {
    color: transparent;
}

#background_loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: no-repeat center center fixed;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 1;
    display: none;
}

.background_opacity:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 540px) and (orientation: portrait) {
    #background_loading {
        background: no-repeat top center scroll;
        background-size: cover;
    }
}

#icon_play {
    font-size: 66px;
    display: none;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 90px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    padding-left: 5px;
}

.loading {
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: white;
}

.progress_map {
    position: absolute;
    z-index: 9999;
    bottom: 10px;
    width: 100%;
}

.progress_map img {
    max-height: 80px;
}

.progress-circle {
    display: none;
    position: absolute;
    width: 100px;
    height: 100px;
    top: calc(50% - 90px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 9999;
}

#name_map {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: default;
}

.protect {
    display: none;
    position: absolute;
    top: calc(50% - 90px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

.password-wrapper {
    width: 300px;
    margin: 20px auto 20px auto;
    border-radius: 40px;
    background: transparent;
    position: relative;
}

.password-wrapper input {
    width: 250px;
    height: 20px;
    padding: 10px 0px;
    text-indent: 20px;
    float: left;
    font-size: 13px;
    border: none;
    border-radius: 40px;
    border-top-style: none;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
}

.password-wrapper input:focus {
    outline: 0;
}

.password-wrapper input::-webkit-input-placeholder {
    color: white;
    font-weight: normal;
    font-style: italic;
    padding-left: 5px;
}

.password-wrapper input:-moz-placeholder {
    color: white;
    font-weight: normal;
    font-style: italic;
}

.password-wrapper input:-ms-input-placeholder {
    color: white;
    font-weight: normal;
    font-style: italic;
    border-style: none;
}

.password-wrapper button {
    overflow: visible;
    position: absolute;
    right: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    width: 80px;
    font: 13px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #000000;
    text-transform: uppercase;
    border-radius: 40px;
    background-color: white;
}

.password-wrapper button:hover {
    background: #000000;
    color: #ffffff;
}

.password-wrapper button:active,
.password-wrapper button:focus {
    outline: 0;
}

.password-wrapper button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

#map_password {
    color: white;
    border: none;
    display: block;
    text-security: disc;
    -webkit-text-security: disc;
    -moz-text-security: disc;
}

.error_lead {
    color: white !important;
    background-color: red !important;
}

.ok_lead {
    color: white !important;
    background-color: green !important;
}

#search_radius_m {
    cursor: pointer !important;
    margin-right: 6px;
    display: none;
}

#search_radius_container {
    display: none;
    width: 100%;
    position: absolute;
    top: 10px;
    border-radius: 0 0 10px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#search_radius_container .irs {
    padding-bottom: 5px;
}

#search_radius_slider {
    margin-bottom: 5px;
    width: calc(100% - 10px);
    margin-left: 5px;
}

#search_radius_infinity {
    margin-top: 30px;
}

.bottom_left_controls {
    position: absolute;
    bottom: 0;
    left: 0;
}

.intro {
    position: absolute;
    bottom: 10px;
    z-index: 99999999;
    display: none;
    text-align: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: default;
}

.intro_content {
    width: 98%;
    max-width: 600px;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, -50%);
    top: auto;
}

.intro_title {
    font-size: 42px;
    font-weight: bold;
    color: black;
    margin: 20px;
}

.intro_description {
    font-size: 16px;
    color: black;
    margin: 20px;
}

.intro_image {
    margin: 20px;
}

.intro_image img {
    max-height: 80px;
}

.intro_button {
    width: fit-content;
    font-size: 18px;
    padding: 10px 25px;
    background: white;
    color: black;
    border: 2px solid black;
    border-radius: 25px;
    margin: 20px auto;
    cursor: pointer;
    pointer-events: initial;
    -webkit-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear;
}

#cookie_consent_preferences {
    position: absolute;
    z-index: 999;
    bottom: 85px;
    right: 0;
    padding: 2px 6px;
    background: white;
    color: black;
    cursor: pointer;
    font-size: 12px;
    border-radius: 10px 0 0 10px;
}

#cookie_consent_preferences span {
    display: none;
}

#cookie_consent_preferences:hover span {
    display: inline-block;
}

.disabled_cookie {
    opacity: 0.7;
    cursor: not-allowed;
}

@media screen and (max-width: 600px) {
    .btn_bar {
        top: 48px;
    }

    .new_marker_btn,
    .live_tracking_btn,
    .live_tracking_stop_btn {
        padding: 6px 10px;
        font-size: 14px;
        line-height: 14px;
        border-radius: 14px;
    }

    #live_tracking_count {
        font-size: 16px;
    }

    .new_marker_msg,
    .drag_marker_msg {
        padding: 8px 12px;
        font-size: 16px;
        line-height: 16px;
        border-radius: 16px;
    }

    .new_marker_confirm {
        display: inline-block;
        margin-top: 6px;
        border-radius: 10px;
        padding: 4px 12px;
        font-size: 16px;
        line-height: 16px;
    }

    .new_marker_cancel {
        font-size: 24px;
        margin-left: 6px;
        padding-bottom: 2px;
    }

    #new_store_name input {
        font-size: 16px;
    }

    .features_value input,
    .features_value select,
    #new_store_hours textarea,
    #new_store_description textarea {
        font-size: 14px;
    }

    #btn_delete_images {
        font-size: 14px;
    }

    #button_actions div {
        font-size: 16px;
        width: 40px;
        height: 40px;
    }

    .search_div {
        height: 36px;
    }

    #searchbox {
        margin-left: 32px;
        width: calc(100% - 40px);
        font-size: 14px;
        line-height: 36px;
        height: 36px;
    }

    .list_icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        line-height: 36px;
        font-size: 16px;
    }

    .filter_icon {
        right: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
    }

    .search_icon {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
    }

    .search_icon i.fa-times {
        font-size: 20px;
    }

    .nav_marker_prev,
    .nav_marker_next,
    .btn_story {
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
        font-size: 14px;
    }

    .btn_song_map,
    .btn_share_map {
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
        font-size: 14px;
    }

    .switch_style {
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
    }

    .globe_icon {
        left: 48px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
        font-size: 14px;
    }

    .connections_icon {
        left: 90px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
        font-size: 14px;
    }

    .featured_icon {
        left: 132px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
        font-size: 14px;
    }

    .center_right_controls,
    .center_left_controls {
        width: var(--button_size_mobile);
    }

    .ol-zoom .ol-zoom-in {
        right: 90px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
    }

    .ol-zoom .ol-zoom-out {
        right: 48px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
    }

    .ol-full-screen button {
        right: 6px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
    }

    .my_position_icon {
        right: 132px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
    }

    .home_icon {
        right: 174px;
        width: var(--button_size_mobile);
        height: var(--button_size_mobile);
        line-height: var(--button_size_mobile);
    }

    .ol-scale-line {
        bottom: 48px;
    }
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-black {
    background-color: #34495e;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.category-list {
    margin: 0;
    padding: 0px;
    list-style: none;
    font-size: 14px;
    clear: both;
}

.subcategory-list {
    margin: 0;
    padding: 0 0 0 50px;
    list-style: none;
}

[dir="rtl"] .subcategory-list {
    padding: 0 50px 0 0;
}

.category-list-item,
.subcategory-list-item {
    margin-bottom: 2px;
    border-radius: 6px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.category-list-item:hover,
.subcategory-list-item:hover {
    background-color: #f3f3f3;
}

.category-icon-expand {
    position: relative;
    width: 20px;
    text-align: center;
}

.category-icon-expand:before {
    position: absolute;
    content: '';
    top: -5px;
    right: -5px;
    left: -5px;
    bottom: -5px;
    z-index: 1;
}

.category-icon-check {
    width: 24px;
    margin-left: 5px;
    text-align: center;
}

.category-icon-check svg {
    padding-top: 4px;
}

.category-title {
    position: relative;
    flex-grow: 1;
    padding-left: 6px;
}

.category-title:before {
    position: absolute;
    content: '';
    top: -5px;
    right: 0px;
    left: 0px;
    bottom: -5px;
    z-index: 1;
}

.category-count {
    text-align: right;
    margin-left: auto;
}

.category-icon-image {
    margin-left: 6px;
}

.category_icon {
    width: 24px;
    height: 24px;
    line-height: 20px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
}

.category_icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

#category_header {
    width: 100%;
}

.title-filters {
    display: inline-block;
    width: calc(40% - 5px);
    padding-left: 5px;
    float: left;
    margin-bottom: 10px;
    white-space: nowrap;
}

.reset-filters {
    display: inline-block;
    width: calc(60% - 5px);
    padding-right: 5px;
    float: right;
    text-align: right;
    margin-bottom: 10px;
    white-space: nowrap;
}

#and_or_switch_div {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    zoom: 0.8;
}

.reset_categories_btn,
.select_all_categories_btn {
    display: initial;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 14px;
    color: grey;
    border: 1px solid grey;
    cursor: pointer;
    margin-left: 6px;
}

.reset_categories_btn:hover,
.select_all_categories_btn:hover {
    background-color: grey;
    color: white;
}

.progress_bar_map .ol-bar {
    background-color: rgba(0, 0, 0, .5) !important;
    height: .25em !important;
    top: 0 !important;
    bottom: unset !important;
}

.overlay_slider {
    display: none;
    position: absolute;
    z-index: 2;
    left: 6px;
    bottom: 72px;
    transform-origin: bottom left;
    transform: scale(var(--scale_overlay_input));
}

.overlay_slider .wrapper {
    position: relative;
    height: 20rem;
    width: 3rem;
    background: rgba(0, 0, 0, .8);
    border-radius: 2rem;
    touch-action: pan-y;
}

.overlay_slider .wrapper::before,
.overlay_slider .wrapper::after {
    display: block;
    position: absolute;
    z-index: 99;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.75rem 0;
    pointer-events: none;
}

.overlay_slider .wrapper::before {
    content: "+";
}

.overlay_slider .wrapper::after {
    content: "−";
    bottom: 0;
}

.overlay_slider .wrapper input[type=range] {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    width: 20rem;
    height: 3.5rem;
    transform: translate(-50%, -50%) rotate(-90deg);
    border-radius: 1rem;
    overflow: hidden;
    cursor: row-resize;
}

.overlay_slider .wrapper input[type=range][step] {
    background-color: transparent;
}

.overlay_slider .wrapper input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0;
    box-shadow: -20rem 0 0 20rem rgba(255, 255, 255, 0.4);
}

.overlay_slider .wrapper input[type=range]::-moz-range-thumb {
    border: none;
    width: 0;
    box-shadow: -20rem 0 0 20rem rgba(255, 255, 255, 0.4);
}

.fancybox-active {
    height: 100vh;
}

.fancybox-slide--html .fancybox-close-small {
    color: red !important
}

.fancybox-content {
    overflow: hidden !important;
    padding: 22px;
    /* bottom: -354px; */
    border-radius: 22px;
}

@media only screen and (max-width: 767px) {
    .fancybox-content {
        padding: 20px;
        border-radius: 22px;
    }
}

#featured_slider .owl-stage {
    padding: 10px;
}

.weather,
.list_block_featured,
.popup,
.popup_c,
.search_div,
.list_detail,
.new_marker_btn,
.live_tracking_btn,
.categories_div,
.sheet_detail,
.new_marker_msg,
.drag_marker_msg,
.new_sheet_detail,
.story_open,
.info_icon,
.btn_share_map,
.btn_song_map,
.btn_story,
.nav_marker_prev,
.nav_marker_next,
.switch_style,
.globe_icon,
.connections_icon,
.featured_icon,
.home_icon,
.my_position_icon,
.ol-zoom-in,
.ol-zoom-out,
.ol-full-screen button,
.ol-attribution button,
.share_map_section,
.direction_detail,
.ol-scale-line,
.scale-buttons button {
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    position: relative;
}

.btn_tts {
    color: white;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 12px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    vertical-align: bottom;
}

.btn_tts i {
    font-size: 10px;
}

.jconfirm-audio_prompt .jconfirm-content-pane {
    display: none !important;
}

#custom_html {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.clusterize-no-data {
    padding: 5px 10px;
}

#uploaded_images .sheet_image {
    background-color: lightgray;
    width: 58px;
    height: 58px;
    border-radius: 6px;
    object-fit: cover;
    float: left;
    margin: 5px;
}

#store_description img,
#store_hours img {
    max-width: 100%;
}

.ol-ctx-menu-container {
    z-index: 100001;
    padding: 4px;
}

.ol-ctx-menu-container li {
    border-radius: 4px;
    background-position-x: 4px;
    padding: 3px 6px;
}

.ol-ctx-menu-container li.feature_name {
    font-weight: bold;
    display: none;
    pointer-events: none;
}

.ol-ctx-menu-container li.center_icon:hover {
    background-image: url(../images/center_white.png) !important;
}

.share_popup {
    background: rgb(255, 254, 254);
    padding: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 380px;
    width: calc(100% - 60px);
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(1.2);
    transition: top 0s 0.2s ease-in-out,
        opacity 0.2s 0s ease-in-out,
        transform 0.2s 0s ease-in-out;
}

.ui-tooltip {
    z-index: 10002;
}

.share_popup.show {
    top: 50%;
    left: 50%;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: top 0s 0s ease-in-out,
        opacity 0.2s 0s ease-in-out,
        transform 0.2s 0s ease-in-out;
}

.share_popup :is(header, .share_icons, .share_field) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share_popup header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf9;
}

.share_popup header span {
    font-size: 18px;
    font-weight: 600;
}

.share_popup header .share_close,
.share_popup .share_icons a {
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.share_popup header .share_close {
    color: #878787;
    font-size: 16px;
    background: #f3f3f3;
    height: 33px;
    width: 33px;
    cursor: pointer;
}

.share_popup header .share_close:hover {
    background: #ebedf9;
}

.share_popup .share_content {
    margin-top: 20px;
    margin-bottom: 10px;
}

.share_popup .share_content .a2a_kit {
    text-align: center;
}

.share_popup .share_content .a2a_kit a {
    display: inline-block;
    float: unset;
}

.share_popup .share_content .share_field {
    margin: 12px 0 -5px 0;
    height: 45px;
    border-radius: 6px;
    padding: 0 5px;
    border: 1px solid #757171;
}

.share_popup .share_field.active {
    border-color: #2f2f2f;
}

.share_popup .share_field .share_url-icon {
    width: 50px;
    font-size: 18px;
    text-align: center;
}

.share_popup .share_field.active .share_url-icon {
    color: #2f2f2f;
}

.share_popup .share_field input {
    width: 100%;
    height: 36px;
    padding-right: 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

.share_popup .share_field button {
    color: #fff;
    padding: 10px 14px;
    background: #2f2f2f;
    border-radius: 6px;
    outline: none;
    border: none;
    cursor: pointer;
}

.share_popup .share_field button i {
    font-size: 16px;
}

.share_popup .share_field button:hover {
    background: #1a1a1a;
}

.popup_rating span,
.list_rating span {
    color: #484848;
    font-size: 12px;
}

#sheet_categories {
    margin-top: 5px;
    text-align: center;
}

.category_detail {
    margin-right: 10px;
}

.category_detail .category_icon {
    display: inline-block;
    width: 16px !important;
    height: 16px !important;
    line-height: 14px !important;
    vertical-align: middle !important;
}

.category_detail img {
    display: inline-block;
    width: 16px !important;
    height: 16px !important;
}

.category_detail .category_icon i {
    font-size: 9px !important;
    vertical-align: middle !important;
}

.category_detail span {
    display: inline-block;
    font-size: 12px;
}

.list_rating .category_detail,
.popup_rating .category_detail {
    margin-right: 4px;
}

.list_rating .category_detail .category_icon,
.popup_rating .category_detail .category_icon {
    width: 12px !important;
    height: 12px !important;
    line-height: 10px !important;
}

.list_rating .category_detail img,
.popup_rating .category_detail img {
    width: 12px !important;
    height: 12px !important;
}

.list_rating .category_detail .category_icon i,
.popup_rating .category_detail .category_icon i {
    font-size: 6px !important;
}

.fancybox-slide {
    padding: 32px;
}

.fancybox-slide--html {
    padding: 2px;
}

#report_issue_div span {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

#modal_report_issue {
    padding: 20px 30px 15px;
}

#form_report_issue input[type="text"],
#form_report_issue input[type="email"],
#form_report_issue input[type="tel"],
#form_report_issue input[type="url"],
#form_report_issue textarea,
#form_report_issue button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#form_report_issue h3 {
    display: block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

#form_report_issue h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
    font-weight: bold;
}

#form_report_issue input[type="text"],
#form_report_issue input[type="email"],
#form_report_issue textarea {
    width: calc(100% - 20px);
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

#form_report_issue input[type="text"]:hover,
#form_report_issue input[type="email"]:hover,
#form_report_issue textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
}

#form_report_issue textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#form_report_issue button[type="submit"] {
    cursor: pointer;
    width: calc(100% + 6px);
    background: black;
    color: #FFF;
    margin: 5px -2px 5px;
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
}

#form_report_issue button[type="submit"]:hover {
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#form_report_issue input:focus,
#form_report_issue textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

#issue_feedback {
    display: none;
}

#issue_name {
    margin-top: 5px;
}

#tripadvisor_container {
    text-align: center;
}

.tripadvisor-badge {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tripadvisor-logo {
    height: 16px;
    margin-right: 6px;
}

.tripadvisor-bubble {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 2px;
    background-color: #ffffff;
    border: 2px solid #00AA6C;
    position: relative;
    overflow: hidden;
}

.tripadvisor-bubble.full {
    background-color: #00AA6C;
}

.tripadvisor-bubble.half::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #00AA6C;
}

.tripadvisor-link {
    text-decoration: underline;
    font-size: 12px;
    color: #333;
    margin-left: 6px;
}

.ol-scale-line {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#scale-line-target .ol-scale-line {
    position: static;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
}

.scale-controls {
    position: absolute;
    bottom: 44px;
    left: 6px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scale-buttons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.scale-buttons button {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.scale-buttons button i {
    font-size: 10px;
}

.scale-buttons button:focus {
    outline: none;
}

#measure-btn {
    background-color: #ffffff;
}

#measure-btn.measuring {
    color: #ffffff;
}

#clear-btn {
    background-color: #dc2626;
}

#clear-btn:hover {
    background-color: #b91c1c;
}

.tooltip-m {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid white;
    pointer-events: none;
}

.tooltip-measure {
    font-weight: bold;
}

.loading_geodata {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid white;
    pointer-events: none;
}

.title {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.title_style {
    color: #009933;
    font-family: Quicksand;
    font-weight: 600;
    font-size: 1.5vw;
    line-height: 1.5vw;
    text-align: center;
    pointer-events: initial;
}

.copyright_style {
    position: absolute;
    left: 2.5vw;
    bottom: -25px;
    z-index: 99;
    width: 5vw;
    height: 60px;
    overflow: hidden;
}

.copyright_style img {
    width: 100%;
}

.ecommercial {
    position: fixed;
    bottom: 15px;
    /* luôn sát đáy màn hình */
    left: 0;
    width: 100%;
    /* chiếm toàn bộ ngang */
    z-index: 99999999;
    display: block;
    /* luôn mở */
    pointer-events: auto;
    padding: 0 10px;
    /* chừa khoảng cách 2 bên */
    box-sizing: border-box;
    text-align: center;
    /* căn giữa nội dung */
}

.ecommercial_content {
    display: inline-block;
    /* bo quanh nội dung */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    max-width: 600px;
    /* không rộng hơn 600px */
    text-align: center;
    position: relative;
}

/* Text và button */
.ecommercial_title {
    font-size: 22px;
    font-weight: bold;
    color: black;
    margin: 5px 0;
}

.ecommercial_description {
    font-size: 15px;
    color: black;
    margin: 5px 0 10px 0;
}

.ecommercial_button {
    display: inline-block;
    font-size: 16px;
    padding: 8px 18px;
    background: white;
    color: rgb(1, 100, 1);
    border: 1px solid rgb(1, 100, 1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 250ms linear;
    text-decoration: none;
    margin-top: 8px;
}

.ecommercial_button:hover {
    background: rgb(1, 100, 1);
    color: white;
}

/* Nút đóng */
.ecommercial_close {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    line-height: 1;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .ecommercial_content {
        width: 100%;
        /* full chiều ngang */
        max-width: 100%;
        /* không giới hạn */
        border-radius: 0;
        /* bỏ bo góc nếu muốn full */
        padding: 12px 15px;
    }

    .ecommercial_title {
        font-size: 18px;
    }

    .ecommercial_description {
        font-size: 13px;
    }

    .ecommercial_button {
        font-size: 14px;
        padding: 6px 15px;
    }
}

/* Mobile tối ưu */
@media (max-width: 480px) {
    .ecommercial_close {
        right: 8px;
        top: 8px;
        font-size: 20px;
        width: 26px;
        height: 26px;
    }
}