@media (min-width: 768px) {
    .dialog-setting .setting-btn-share,
    .dialog-setting .image-share-popup {
        display: none !important;
    }
}

.dialog-setting {

}
.dialog-setting .setting-list {
    margin-top: 20px;
}
.dialog-setting .image-share-popup {
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 99999;
    display: flex;
}
.dialog-setting .image-share-popup.hidden {
    display: none;
}
.dialog-setting .image-share-popup .images {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    position: relative;
}
.dialog-setting .image-share-popup .images > img {
    width: 100%;
    height: auto;
}
.image-share-popup .map-overlay {
    position: absolute;
    border: 2px solid red; /* Border màu đỏ để hình dung */
    background: rgba(255, 0, 0, 0.1); /* Nền mờ để thấy rõ vùng */
    box-sizing: border-box;
    pointer-events: none; /* Ngăn overlay chặn sự kiện nhấp */
}

.dialog-setting.in .modal-dialog,
.dialog-setting.in .modal-content {
    height: 100%;
    background-color: var(--bg-color);
}

.dialog-setting .modal-body {
    background-color: var(--bg-color);
    overflow: auto;
}

.dialog-setting .setting-items {
    flex-flow: column-reverse;
    display: flex;
    min-height: 62px;
    border-radius: 12px;
    background-color: var(--bg-item-color);
    margin: 15px;
}

.dialog-setting .setting-list .setting-items:first-child {
    margin-top: 0px;
}

.dialog-setting .setting-list .setting-items:first-child .setting-items-link {
    border-top: 0px dashed var(--border-color);
}

.dialog-setting .setting-items-link {
    margin: 12px 0;
    display: flex;
    align-items: center;
    padding: 15px;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
}

.dialog-setting .setting-items-title {
    flex: 3;
    font-size: var(--fsize-medium-under);
    color: var(--text-color);
    font-size: var(--fsize-15);
    font-family: var(--font-family);
    font-weight: 600;
    line-height: var(--line-height-16);
    word-wrap: break-word;
}

.dialog-setting .setting-items-icon {
    width: 15px;
    height: 15px;
    text-align: right;
}

.dialog-setting .setting-btn-share {
    display: flex;
    justify-content: center;
    align-items: end;
    padding-top: 20px;
}

.dialog-setting .setting-btn-share img {
    width: 25px;
    height: 25px;
}

.dialog-setting .setting-btn-share span {
    color: var(--text-color-active);
    font-size: var(--fsize-medium-under);
    margin-top: 30px;
}
