.single-photo-wrap {
    display: flex;
    max-width: 99%;
    height: 99vh;
    flex-direction: column;
    margin: 0 auto;
}

.photo-container {
    display: flex;
    justify-content: space-evenly;
    position: relative;
    align-items: flex-start;
    margin-top: 1.2rem;
    padding: 0;
    height: 97vh;
}

.photo-container .single-photo {
    display: flex;
    max-width: 100%; /* or any custom size */
    max-height: 100%;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

.hover-area {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
}

.hover-area.left {
    left: 0;
    cursor: url(/icons/arrow_left.svg), w-resize;
}

.hover-area.right {
    right: 0;
    cursor: url(/icons/arrow_right.svg), e-resize; /* or your custom cursor */
}

.arrow-nav-container {
}

.arrow-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-nav-container .arrow-nav {
    max-width: 2rem;
    width: 1.4rem;
    opacity: .6;

}

.next-arrow, .prev-arrow {
}

.arrow-nav.disabled {
    opacity: 0;
}

@media (max-width: 992px) {
    .photo-container {
        align-items: flex-start;
        height: 80vh !important;
        padding-top: 0;
        margin: 0 auto;
    }

}

@media (max-width: 1200px) {
    .photo-container {
        padding-top: 7rem;
        justify-content: flex-end;
    }

    .single-photo-wrap {
        display: flex;
        justify-content: center;
        width: 100%;

    }

    .photo-container .single-photo {
    }
}
