.zoomDiv
{
    position: absolute;
    top: calc(.5vh + 4em);
    left: .5vw;
    height: calc(99vh - 4em);
    width: 99vw;
    background-color: var(--zoomed-background-color);
    display: grid;
    grid-template-columns: 70% 30%;
    z-index: 99;
}

.carrouselDiv
{
    grid-column: 1 / 2;
    width: 70%;
    height: 100%;
}

.portfolioZoomImg
{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--background-color);
}

.detailsDiv
{
    grid-column: 2 / 3;
    padding: .4em;
    display: flex;
    flex-direction: column;
    font-size: 1.5em;
    overflow-y: scroll;
    color: var(--content-text);
    height: 100%;
}

.navArrow
{
    position: absolute;
    top: calc(50% - .7em);
    z-index: 200;
    font-size: 10em;
    cursor: pointer;
}

.navArrow:hover
{
    color: var(--content-text);
}

#left
{
    left: .1em;
}

#right
{
    right: calc(30% + .1em);
}