/* Style untuk scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Style untuk track scrollbar */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Style untuk thumb scrollbar */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Style untuk tombol arrow scrollbar */
::-webkit-scrollbar-button {
    display: none;
}

/* Style untuk corner scrollbar */
::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

.title-img{
    padding: 20px 0;
}

.menu-tab ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    margin: 20px 0;
}

.menu-tab li {
    float: left;
    border-right: 1px solid #bbb;
}

.menu-tab li:last-child {
    border-right: none;
}

.menu-tab li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu-tab li a:hover:not(.active) {
    background-color: #111;
}

.menu-tab .active {
    background-color: #ffffff;
}

.menu-tab select {
    width: 200px;
    padding: 5px 10px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    background-color: white;
}

.menu-tab select:hover {
    background-color: #f2f2f2;
}

.menu-tab a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.menu-tab a:hover {
    color: #999;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

#filterthkmd {
    display: none;
    position: absolute;
    top: 67px;
    right: 0;
    padding: 10px;
    z-index: 999;
    background-color: white;
    border: 1px solid gray;
    width: 200px;
    height: 365px;
    overflow: auto;
    overflow-x: hidden;
}

#filterthkmd h6 {
    margin-top: 0;
    margin-bottom: 10px;
}
  
#filterthkmd label {
    display: block;
    margin-bottom: 5px;
}
  
#filterthkmd input[type="checkbox"] {
    margin-right: 5px;
}

.checkbox-grup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: start;
}

.checkbox-grup .checkbox {
    display: flex;
    flex-direction: column;
}

.checkbox-grup .checkbox h6 {
    margin-top: 0;
    margin-bottom: 5px;
}

.checkbox-grup .checkbox label {
    display: flex;
    align-items: center;
}

.checkbox-grup .checkbox input[type="checkbox"] {
    margin-right: 5px;
}

#controlSelect {
    display: none;
    position: absolute;
    top: 230px;
    left: 1px;
    transform: translateX(35%);
    z-index: 999;
    width: 130px; /* Ubah lebar dropdown sesuai kebutuhan */
    padding: 6px 2px; /* Tambahkan padding untuk menambahkan ruang di dalam dropdown */
    border-radius: 4px; /* Tambahkan radius untuk membuat sudut dropdown menjadi melengkung */
    border: 1px solid #ccc; /* Tambahkan border untuk membuat dropdown terlihat lebih jelas */
    font-size: 13px; /* Ubah ukuran font sesuai kebutuhan */
    color: #333; /* Ubah warna font sesuai kebutuhan */
}

/* LIGHTBOX BACKGROUND */
#lightbox {
    position: fixed; 
    z-index: 9999;
    top: 0; 
    left: 0;
    width: 100vw; 
    height: 100vh;
   
    background: rgba(0, 0, 0, 0.8);
   
    display: flex;
    align-items: center;
    align-items: center;
   
    visibility: hidden;
    opacity: 0;
   
    transition: opacity ease 0.4s;
}
   
#lightbox.show {
    visibility: visible;
    opacity: 1;
}

.lightbox-container {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    width: 500px;
    overflow: hidden;
    cursor: zoom-in;
}

.lightbox-container img:hover {
    opacity: 0;
}

.lightbox-container img {
    transition: opacity 0.5s;
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    #ftco-nav {
        display: none;
    }
    #ftco-pic{
        width: 80%;
        display: flex;
        justify-content: center;
    }
}
