/* Additional styles for OdulAlanlar page */
.item {
    transition: all 0.6s ease;
    opacity: 1;
}

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}

.isotope,
.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

#filters {
    margin-bottom: 30px;
}

#filters li {
    display: inline-block;
    margin-right: 8px;
}

#filters a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

#filters a.selected,
#filters a:hover {
    background: #fb6148;
    color: #fff;
    border-color: #fb6148;
}

/* Make sure the filtered items are properly hidden/shown */
.isotope-item {
    z-index: 2;
    display: block !important;
}

.isotope-hidden {
    pointer-events: none;
    z-index: 1;
    display: none !important;
}
