/* Gallery */

.gallery {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.gallery_content {
    width: 100%;
}

/* Mobile Style */
@media only screen and (max-width: 768px) {

    .gallery_prev,
    .gallery_next {
        display: none;
    }

}

/* Desktop Style */
@media screen and (min-width: 769px) {

    .gallery_prev {
        position: absolute;
        left: 0.3125rem;
        width: 1.2rem;
        z-index: 2;
        cursor: pointer;
    }
    .gallery_next {
        position: absolute;
        right: 0.3125rem;
        width: 1.2rem;
        z-index: 2;
        cursor: pointer;
    }

}
