/* ============================================================
   PANTAU UTILITAS
   GIS PEMAKAMAN FINAL
============================================================ */


/* ============================================================
   PAGE
============================================================ */

.gis-page {
    min-height: 100vh;
    padding-top: 76px;
    background: #07110e;
}


/* ============================================================
   HEADER
============================================================ */

.gis-header {
    padding: 28px 0;

    background:
    radial-gradient(
        circle at 90% 20%,
        rgba(47, 209, 124, .13),
        transparent 28%
    ),
    linear-gradient(
        180deg,
        #0a1712 0%,
        #08130f 100%
    );

    border-bottom:
    1px solid rgba(255,255,255,.08);
}


.gis-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 7px;

    color: #38d786;

    font-size: .75rem;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.gis-header h1 {
    margin: 0;

    color: #ffffff;

    font-size:
    clamp(
        1.8rem,
        3vw,
        2.6rem
    );

    font-weight: 800;

    letter-spacing: -.03em;
}


.gis-header p {
    max-width: 750px;

    margin-top: 8px;
    margin-bottom: 0;

    color: #8fa39a;

    line-height: 1.7;
}


/* ============================================================
   CONTENT
============================================================ */

.gis-content {
    padding: 18px 0 30px;
}


/* ============================================================
   SIDEBAR
============================================================ */

.gis-sidebar {
    height: 100%;

    padding: 18px;

    background: #0d1b16;

    border:
    1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}


.sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #ffffff;

    font-size: .86rem;
    font-weight: 800;
}


.sidebar-title i {
    color: #38d786;
}


.gis-sidebar hr {
    margin-top: 20px;
    margin-bottom: 20px;

    border-color:
    rgba(255,255,255,.08);
}


/* ============================================================
   TOTAL
============================================================ */

.total-box {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px;

    background:
    rgba(47,209,124,.07);

    border:
    1px solid rgba(47,209,124,.12);

    border-radius: 14px;
}


.total-icon {
    width: 47px;
    height: 47px;

    flex: 0 0 47px;

    display: grid;
    place-items: center;

    color: #38d786;

    background:
    rgba(47,209,124,.12);

    border-radius: 13px;

    font-size: 1.25rem;
}


.total-box > div:last-child {
    display: flex;
    flex-direction: column;
}


.total-box small {
    color: #8fa39a;
    font-size: .7rem;
}


.total-box strong {
    color: #ffffff;

    font-size: 1.6rem;

    line-height: 1.2;
}


/* ============================================================
   INFO
============================================================ */

.info-gis {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.info-gis span {
    display: flex;
    align-items: center;
    gap: 5px;

    color: #94a79e;

    font-size: .75rem;
}


.info-gis i {
    width: 21px;
    color: #38d786;
}


.info-gis strong {
    color: #d9e4df;
    font-weight: 700;
}


/* ============================================================
   SEARCH
============================================================ */

.search-map .form-control {
    padding: 11px 13px;

    background: #091511;

    color: #ffffff;

    border:
    1px solid rgba(255,255,255,.09);

    border-radius: 11px;

    font-size: .8rem;
}


.search-map .form-control::placeholder {
    color: #65776f;
}


.search-map .form-control:focus {
    background: #091511;

    color: #ffffff;

    border-color:
    rgba(47,209,124,.45);

    box-shadow:
    0 0 0 .15rem
    rgba(47,209,124,.08);
}


/* ============================================================
   LIST MAKAM
============================================================ */

.daftar-pemakaman {
    max-height: 380px;

    margin-top: 12px;

    overflow-y: auto;

    scrollbar-width: thin;

    scrollbar-color:
    #1c5c42
    #0d1b16;
}


.pemakaman-item {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 8px;

    color: #ffffff;

    text-align: left;

    background: transparent;

    border: 0;

    border-bottom:
    1px solid rgba(255,255,255,.05);

    transition:
    background .2s ease,
    transform .2s ease;
}


.pemakaman-item:hover {
    background:
    rgba(47,209,124,.06);

    transform:
    translateX(2px);
}


.item-icon,
.item-photo {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    overflow: hidden;

    color: #38d786;

    background:
    rgba(47,209,124,.1);

    border-radius: 10px;
}


.item-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.item-info {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.item-info strong {
    overflow: hidden;

    color: #ffffff;

    font-size: .77rem;
    font-weight: 700;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.item-info small {
    overflow: hidden;

    margin-top: 2px;

    color: #73877e;

    font-size: .66rem;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.item-info .item-location {
    color: #5f756b;
    font-size: .62rem;
}


/* ============================================================
   MAP CONTAINER
============================================================ */

.map-container {
    overflow: hidden;

    background: #0d1b16;

    border:
    1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}


.map-topbar {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 18px;
}


.map-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.btn-map-fullscreen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 36px;

    padding: 7px 11px;

    color: #ffffff;

    background:
    rgba(47, 209, 124, .12);

    border:
    1px solid rgba(56, 215, 134, .30);

    border-radius: 9px;

    font-family:
    'Inter',
    sans-serif;

    font-size: .7rem;
    font-weight: 700;

    cursor: pointer;

    transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}


.btn-map-fullscreen:hover {
    color: #ffffff;

    background:
    rgba(47, 209, 124, .22);

    border-color:
    rgba(56, 215, 134, .55);

    transform:
    translateY(-1px);
}


.btn-map-fullscreen:focus-visible {
    outline:
    2px solid #38d786;

    outline-offset: 2px;
}


.btn-map-fullscreen i {
    font-size: .82rem;
}


.map-topbar > div:first-child {
    display: flex;
    flex-direction: column;
}


.map-topbar strong {
    color: #ffffff;

    font-size: .85rem;
    font-weight: 800;
}


.map-topbar small {
    margin-top: 2px;

    color: #71857c;

    font-size: .7rem;
}


.map-status-gis {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #98aaa2;

    font-size: .72rem;
}


.map-status-gis span {
    width: 8px;
    height: 8px;

    display: block;

    background: #2fd17c;

    border-radius: 50%;

    box-shadow:
    0 0 0 5px
    rgba(47,209,124,.1);
}


/* ============================================================
   MAP
============================================================ */

#map {
    width: 100%;

    height:
    calc(
        100vh - 225px
    );

    min-height: 630px;

    background: #dce5e0;

    z-index: 1;
}


/* ============================================================
   FULL SCREEN MAP
============================================================ */

.map-container:fullscreen,
.map-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;

    margin: 0;

    background: #0d1b16;

    border: 0;
    border-radius: 0;

    box-shadow: none;
}


.map-container:fullscreen .map-topbar,
.map-container:-webkit-full-screen .map-topbar {
    min-height: 62px;

    background: #0d1b16;
}


.map-container:fullscreen #map,
.map-container:-webkit-full-screen #map {
    width: 100%;

    height: calc(100vh - 62px);
    min-height: 0;
}


/* ============================================================
   MARKER
============================================================ */

.custom-marker {
    background: transparent !important;
    border: none !important;
}


.marker {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: #ffffff;

    border:
    3px solid #ffffff;

    border-radius:
    50% 50% 50% 5px;

    transform:
    rotate(-45deg);

    box-shadow:
    0 6px 18px rgba(0,0,0,.3);
}


.marker i {
    transform:
    rotate(45deg);

    font-size: 1rem;
}


.marker-makam {
    background: #14875a;
}


/* ============================================================
   CLUSTER
============================================================ */

.custom-cluster-icon {
    background: transparent !important;
    border: none !important;
}


.cluster-makam {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    color: #ffffff;

    background:
    rgba(20,135,90,.94);

    border:
    3px solid rgba(255,255,255,.97);

    border-radius: 50%;

    box-shadow:
    0 8px 22px rgba(0,0,0,.30);
}


.cluster-makam i {
    position: absolute;

    left: 7px;
    top: 50%;

    transform:
    translateY(-50%);

    font-size: 9px;

    opacity: .6;
}


.cluster-makam span {
    font-size: 13px;
    font-weight: 800;
}


.cluster-medium {
    width: 52px;
    height: 52px;

    background:
    rgba(12,107,69,.96);
}


.cluster-large {
    width: 58px;
    height: 58px;

    background:
    rgba(7,79,51,.98);
}


.cluster-large span {
    font-size: 14px;
}


/* ============================================================
   POPUP MAKAM
============================================================ */

.leaflet-popup-content-wrapper {
    border-radius: 14px;
}


.leaflet-popup-content {
    margin: 14px;
}


.popup-pemakaman {
    min-width: 245px;
}


.popup-photo {
    width: 100%;
    height: 160px;

    margin-bottom: 12px;

    overflow: hidden;

    background: #e9efec;

    border-radius: 11px;
}


.popup-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.popup-title {
    display: flex;
    align-items: center;
    gap: 7px;

    padding-bottom: 9px;

    margin-bottom: 7px;

    color: #163c2d;

    border-bottom:
    1px solid #e7ece9;

    font-size: .9rem;
    font-weight: 800;
}


.popup-title i {
    color: #18895a;
}


.popup-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    padding: 4px 0;

    font-size: .72rem;
}


.popup-row span {
    flex-shrink: 0;

    color: #78867f;
}


.popup-row strong {
    max-width: 155px;

    color: #273d34;

    text-align: right;

    font-weight: 700;
}


.popup-coordinate {
    margin-top: 10px;

    padding: 7px 8px;

    color: #5c7067;

    background: #f2f6f4;

    border-radius: 7px;

    font-size: .65rem;

    text-align: center;
}


.popup-google-map {
    width: 100%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 8px;

    padding: 8px 10px;

    color: #ffffff !important;

    background: #14875a;

    border-radius: 8px;

    font-size: .7rem;

    font-weight: 700;

    text-decoration: none;
}


.popup-google-map:hover {
    color: #ffffff !important;
    background: #0e7049;
}




/* ============================================================
   TAMAN KOTA
============================================================ */

.total-box-taman {
    background:
    rgba(68, 199, 104, .08);

    border-color:
    rgba(68, 199, 104, .16);
}

.total-icon-taman {
    color: #71e68f;

    background:
    rgba(68, 199, 104, .14);
}

.custom-taman-marker {
    background: transparent !important;
    border: none !important;
}

.marker-taman {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: #35a854;

    border: 3px solid #ffffff;

    border-radius:
    50% 50% 50% 6px;

    transform:
    rotate(-45deg);

    box-shadow:
    0 6px 18px rgba(0,0,0,.30);
}

.marker-taman i {
    transform:
    rotate(45deg);

    font-size: 14px;
}


/* CLUSTER TAMAN */

.custom-cluster-taman {
    background: transparent !important;
    border: none !important;
}

.cluster-taman {
    width: 48px;
    height: 48px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
    rgba(53, 168, 84, .96);

    border:
    3px solid rgba(255,255,255,.98);

    border-radius: 50%;

    box-shadow:
    0 8px 22px rgba(0,0,0,.30);
}

.cluster-taman i {
    position: absolute;

    left: 7px;
    top: 50%;

    transform:
    translateY(-50%);

    font-size: 9px;

    opacity: .70;
}

.cluster-taman span {
    font-size: 13px;
    font-weight: 800;
}

.cluster-taman-medium {
    width: 52px;
    height: 52px;

    background:
    rgba(40, 143, 69, .98);
}

.cluster-taman-large {
    width: 58px;
    height: 58px;

    background:
    rgba(27, 112, 52, .99);
}

.cluster-taman-large span {
    font-size: 14px;
}


/* POPUP TAMAN */

.popup-taman {
    min-width: 255px;
    max-width: 320px;
}

.popup-taman-photo {
    width: 100%;
    height: 155px;

    margin-bottom: 11px;

    overflow: hidden;

    background: #e9f1eb;

    border-radius: 10px;
}

.popup-taman-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.popup-taman-title {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 10px;
    margin-bottom: 8px;

    border-bottom:
    1px solid #e6ebe8;
}

.popup-taman-title > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: #35a854;

    border-radius: 10px;

    font-size: 16px;
}

.popup-taman-title div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.popup-taman-title small {
    color: #288843;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .06em;
}

.popup-taman-title strong {
    color: #253b32;

    font-size: 13px;
    font-weight: 800;
}

.popup-taman-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    padding: 5px 0;

    border-bottom:
    1px dashed #edf0ee;

    font-size: 10px;
}

.popup-taman-row span {
    max-width: 42%;

    color: #7c8983;

    overflow-wrap: anywhere;
}

.popup-taman-row strong {
    max-width: 58%;

    color: #2e4038;

    text-align: right;

    overflow-wrap: anywhere;
}

.popup-google-map-taman {
    background: #35a854;
}

.popup-google-map-taman:hover {
    background: #278741;
}

.tooltip-taman {
    padding: 6px 10px !important;

    color: #ffffff !important;

    background:
    rgba(24, 91, 45, .94) !important;

    border: 0 !important;

    border-radius: 8px !important;

    box-shadow:
    0 5px 15px rgba(0,0,0,.18);

    font-size: 11px;
    font-weight: 700;
}

.tooltip-taman::before {
    display: none;
}


/* ============================================================
   PJU - BOX PANEL
============================================================ */

.custom-pju-marker {
    background: transparent !important;
    border: none !important;
}


.marker-pju {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: #ff9f1c;

    border: 3px solid #ffffff;

    border-radius: 10px;

    box-shadow:
    0 5px 16px rgba(0,0,0,.32);
}


.marker-pju i {
    font-size: 16px;
}


/* ============================================================
   CLUSTER PJU - BOX PANEL
============================================================ */

.custom-cluster-pju {
    background: transparent !important;
    border: none !important;
}


.cluster-pju {
    width: 48px;
    height: 48px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
    rgba(255, 159, 28, .96);

    border:
    3px solid rgba(255,255,255,.98);

    border-radius: 50%;

    box-shadow:
    0 8px 22px rgba(0,0,0,.30);
}


.cluster-pju i {
    position: absolute;

    left: 7px;
    top: 50%;

    transform:
    translateY(-50%);

    font-size: 10px;

    opacity: .70;
}


.cluster-pju span {
    font-size: 13px;
    font-weight: 800;
}


.cluster-pju-medium {
    width: 52px;
    height: 52px;

    background:
    rgba(226, 128, 0, .97);
}


.cluster-pju-large {
    width: 58px;
    height: 58px;

    background:
    rgba(190, 100, 0, .98);
}


.cluster-pju-large span {
    font-size: 14px;
}


.tooltip-pju {
    padding: 6px 10px !important;

    color: #ffffff !important;

    background:
    rgba(91,52,0,.94) !important;

    border: 0 !important;

    border-radius: 8px !important;

    box-shadow:
    0 5px 15px rgba(0,0,0,.18);

    font-size: 11px;

    font-weight: 700;
}


.tooltip-pju::before {
    display: none;
}


.popup-pju {
    min-width: 250px;
    max-width: 310px;

    color: #273d34;
}


.popup-pju-title {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 10px;
    margin-bottom: 8px;

    border-bottom:
    1px solid #e6ebe8;
}


.popup-pju-title > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: #ff9f1c;

    border-radius: 10px;

    font-size: 17px;
}


.popup-pju-title div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.popup-pju-title small {
    color: #b16a00;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .06em;
}


.popup-pju-title strong {
    color: #253b32;

    font-size: 13px;
    font-weight: 800;
}


.popup-pju-properties {
    max-height: 260px;

    overflow-y: auto;
}


.popup-pju-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;

    padding: 5px 0;

    border-bottom:
    1px dashed #edf0ee;

    font-size: 10px;
}


.popup-pju-row span {
    max-width: 45%;

    color: #7c8983;

    overflow-wrap: anywhere;
}


.popup-pju-row strong {
    max-width: 55%;

    color: #2e4038;

    text-align: right;

    overflow-wrap: anywhere;
}


.popup-pju-empty {
    padding: 8px 0;

    color: #7c8983;

    font-size: 10px;
}


.legend-pju {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: #ff9f1c;

    border: 2px solid #ffffff;

    border-radius: 7px;

    box-shadow:
    0 2px 6px rgba(0,0,0,.22);
}


.legend-pju i {
    font-size: 11px;
}


.legend-cluster-pju {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: #e28000;

    border:
    2px solid #ffffff;

    border-radius: 50%;

    box-shadow:
    0 2px 6px rgba(0,0,0,.22);

    font-size: 9px;
    font-weight: 800;
}


/* ============================================================
   KECAMATAN
============================================================ */

.tooltip-kecamatan {
    padding: 6px 10px !important;

    color: #ffffff !important;

    background:
    rgba(10,25,20,.90) !important;

    border: 0 !important;

    border-radius: 8px !important;

    box-shadow:
    0 5px 15px rgba(0,0,0,.18);

    font-size: 11px;

    font-weight: 700;
}


.tooltip-kecamatan::before {
    display: none;
}


.popup-kecamatan {
    min-width: 150px;

    color: #273d34;
}


.popup-kecamatan strong {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 6px;

    color: #14875a;
}


.popup-kecamatan div {
    font-size: 13px;

    font-weight: 700;
}


/* ============================================================
   GROUPED LAYER CONTROL
============================================================ */

.grouped-layer-control {
    width: 215px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    font-family:
    'Inter',
    sans-serif;
}


.layer-card {
    padding: 9px 11px;

    color: #33483e;

    background:
    rgba(255,255,255,.96);

    border:
    1px solid rgba(26,61,47,.08);

    border-radius: 12px;

    box-shadow:
    0 6px 18px rgba(0,0,0,.18);

    backdrop-filter:
    blur(5px);
}


.layer-card-title {
    display: flex;
    align-items: center;
    gap: 7px;

    padding-bottom: 6px;
    margin-bottom: 6px;

    color: #173e31;

    border-bottom:
    1px solid #e6ece9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .055em;
    text-transform: uppercase;
}


.layer-card-title i {
    width: 16px;

    text-align: center;

    font-size: 11px;
}


.layer-option {
    min-height: 25px;

    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0;

    cursor: pointer;

    color: #3d5148;

    font-size: 11px;
    font-weight: 600;

    user-select: none;
}


.layer-option + .layer-option {
    margin-top: 2px;
}


.layer-option input {
    width: 14px;
    height: 14px;

    flex: 0 0 14px;

    margin: 0;

    cursor: pointer;
}


/* Basemap */
.layer-card-basemap .layer-card-title i {
    color: #1976d2;
}

.layer-card-basemap input {
    accent-color: #1976d2;
}


/* Seksi Pemakaman */
.layer-card-pemakaman .layer-card-title i {
    color: #14875a;
}

.layer-card-pemakaman input {
    accent-color: #14875a;
}


/* Seksi PSU */
.layer-card-psu .layer-card-title i {
    color: #e88700;
}

.layer-card-psu input {
    accent-color: #e88700;
}


/* Seksi Taman */
.layer-card-taman .layer-card-title i {
    color: #2e9d50;
}

.layer-card-taman input {
    accent-color: #2e9d50;
}


/* Data Dasar */
.layer-card-datadasar .layer-card-title i {
    color: #b58a00;
}

.layer-card-datadasar input {
    accent-color: #b58a00;
}


/* ============================================================
   LEGENDA
============================================================ */

.map-legend {
    min-width: 190px;

    padding: 12px 14px;

    color: #30433a;

    background:
    rgba(255,255,255,.96);

    border-radius: 12px;

    box-shadow:
    0 8px 25px rgba(0,0,0,.22);

    font-family:
    'Inter',
    sans-serif;
}


.legend-title {
    display: flex;

    align-items: center;

    gap: 7px;

    padding-bottom: 8px;

    margin-bottom: 8px;

    color: #173e31;

    border-bottom:
    1px solid #e4ebe7;

    font-size: 12px;

    font-weight: 800;
}


.legend-item {
    display: flex;

    align-items: center;

    gap: 9px;

    margin: 7px 0;

    color: #52675e;

    font-size: 11px;

    font-weight: 600;
}


.legend-marker {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: grid;

    place-items: center;

    color: #ffffff;

    border:
    2px solid #ffffff;

    border-radius:
    50% 50% 50% 4px;

    transform:
    rotate(-45deg);

    box-shadow:
    0 2px 6px rgba(0,0,0,.22);
}


.legend-marker i {
    transform:
    rotate(45deg);

    font-size: 8px;
}


.legend-marker-makam {
    background: #14875a;
}


.legend-cluster {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: grid;

    place-items: center;

    color: #ffffff;

    background: #0c6b45;

    border:
    2px solid #ffffff;

    border-radius: 50%;

    box-shadow:
    0 2px 6px rgba(0,0,0,.22);

    font-size: 9px;

    font-weight: 800;
}


.legend-taman {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: #35a854;

    border: 2px solid #ffffff;

    border-radius: 50% 50% 50% 5px;

    transform: rotate(-45deg);

    box-shadow:
    0 2px 6px rgba(0,0,0,.22);
}

.legend-taman i {
    transform: rotate(45deg);
    font-size: 10px;
}

.legend-cluster-taman {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: #278f45;

    border: 2px solid #ffffff;
    border-radius: 50%;

    box-shadow:
    0 2px 6px rgba(0,0,0,.22);

    font-size: 9px;
    font-weight: 800;
}


.legend-kecamatan {
    width: 27px;
    height: 18px;

    flex: 0 0 27px;

    background:
    rgba(255,204,51,.18);

    border:
    2px solid #d8aa20;

    border-radius: 3px;
}


.legend-satellite {
    width: 27px;
    height: 18px;

    flex: 0 0 27px;

    background:
    linear-gradient(
        135deg,
        #335f35 0%,
        #6f815a 45%,
        #465a33 46%,
        #788967 100%
    );

    border:
    1px solid #677761;

    border-radius: 3px;
}


/* ============================================================
   EMPTY
============================================================ */

.empty-map {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 30px 10px;

    color: #71857c;

    font-size: .75rem;

    text-align: center;
}


.empty-map i {
    color: #38d786;

    font-size: 1.5rem;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (
    max-width: 991.98px
) {

    .gis-page {
        padding-top: 70px;
    }


    .gis-sidebar {
        height: auto;
    }


    .daftar-pemakaman {
        max-height: 300px;
    }


    #map {
        height: 650px;
        min-height: 650px;
    }

}


@media (
    max-width: 575.98px
) {

    .gis-header {
        padding: 22px 0;
    }


    .gis-header h1 {
        font-size: 1.55rem;
    }


    .gis-content {
        padding-top: 12px;
    }


    .map-topbar {
        min-height: 55px;

        padding: 10px 13px;
    }


    .map-status-gis {
        display: none;
    }


    #map {
        height: 550px;
        min-height: 550px;
    }


    .popup-pemakaman {
        min-width: 210px;
    }


    .map-legend {
        min-width: 155px;

        padding: 9px 10px;
    }


    .legend-item {
        font-size: 10px;
    }

}

/* ============================================================
   RESPONSIVE GROUPED LAYER CONTROL
============================================================ */

@media (max-width: 575.98px) {

    .grouped-layer-control {
        width: 175px;
        gap: 6px;
    }


    .layer-card {
        padding: 7px 9px;

        border-radius: 10px;
    }


    .layer-card-title {
        padding-bottom: 5px;
        margin-bottom: 4px;

        font-size: 8.5px;
    }


    .layer-option {
        min-height: 22px;

        font-size: 10px;
    }


    .layer-option input {
        width: 13px;
        height: 13px;

        flex-basis: 13px;
    }

}

/* ============================================================
   FULL SCREEN - RESPONSIVE
============================================================ */

@media (max-width: 575.98px) {

    .map-topbar-actions {
        gap: 7px;
    }


    .btn-map-fullscreen {
        width: 36px;
        min-width: 36px;

        padding: 7px;
    }


    .btn-map-fullscreen span {
        display: none;
    }

}

