#container-gallery .dropdown-gallery-year {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px;
}

    #container-gallery .dropdown-gallery-year:focus {
        box-shadow: none;
    }

#container-gallery .dropdown-item {
    height: 38px;
    display: flex;
    align-items: center;
}
#container-gallery .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

#container-gallery .gallery {
    border-radius: 8px;
}
hr {
    background: #F6F6F6 !important;
    opacity: 1 !important;
}

#container-gallery #gallery-list img {
    border-radius: 8px;
}
#gallery-list .gallery-img img {
    border-radius: 5px;
    transition: 0.2s all;
    width: 100%;
}

    #gallery-list .gallery-img img:hover {
        opacity: 0.85;
    }

.grid-item {
    width: 230px;
    padding: 10px;
}
.grid {
    margin: 0 auto;
}
.grid-sizer {
    width: 230px;
}
.img-wrapper {
    position: relative;
    overflow: hidden;
}

    .img-wrapper img {
        display: block;
        width: 100%;
        height: auto;
    }
.overlay-text {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
    height: 100%;
    background: black;
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 150px;
    height: 36px;
}
.img-wrapper:hover .overlay-text {
    opacity: 1;
}
.img-wrapper:hover img {
    opacity: 0.85;
}
