section.galleria {
    background-color: black;
}
section.galleria .thumbnail {
    width: 100%;
    height: 100%;
}
section.galleria .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
section.galleria .gallery-item {
    cursor: pointer;
}
section.galleria .gallery-item .thumbnail {
    position: relative;
}
section.galleria .gallery-item .thumbnail:after {
    position: absolute;
    content: "";
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 300ms ease;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}
section.galleria .gallery-item:hover {
    background-color: rgba(0, 0, 0, 0.6) !important;
}
section.galleria .gallery-item:hover .load-more {
    transform: translate(-50%, -50%) rotate(180deg) !important;
    opacity: 1 !important;
}
section.galleria .gallery-item:hover .load-more:before {
    background-color: white;
}
section.galleria #lightbox-gallery {
    position: relative;
}
section.galleria #lightbox-gallery .load-more {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: block;
    width: 115px;
    opacity: 0;
    height: 115px;
    border: 2px solid white;
    border-radius: 50%;
    transition:
        transform 500ms ease,
        opacity 300ms ease;
}
section.galleria #lightbox-gallery .load-more:after {
    content: "";
    display: inline-block;
    background-color: white;
    width: 50px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
section.galleria #lightbox-gallery .load-more:before {
    content: "";
    display: inline-block;
    background-color: white;
    width: 2px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
