.photo-selector-section {
    display: flex;
    position: fixed;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    left: 0px;
    height: 90px;
    width: 100%;
    background-color: white;
    margin: 0px 0px 0px 0px;
}

.photo-selector-caret-container {
    height: 80px;
    width: calc(100vw - 0px);
    margin: 0px;
    z-index: 199;
    overflow: hidden;
}

@media(max-height: 645px) {
    .photo-selector-section {
        height: 75px;
    }
    
    .photo-selector-caret-container {
        height: 65px;
    }
}

.photo-selector-caret {
    display: flex;
    height: 100%;
    width: 100000px;
    margin-left: calc(50vw - 88px);
    transition: .7s all;
}

.photo-selector-nav {
    height: 90px;
    width: 30px;
    z-index: 299;
}

.photo-selector-nav:hover {
    cursor: pointer;
}

.photo-selector-caret-element {
    opacity: 0.5;
    z-index: 199;
    margin: 0px 7px 0px 8px;
    background-color: white;
    cursor: pointer;
    transition: opacity .2s ease-in;
}

.photo-selector-caret-element:not(.photo-selector-caret-element-selected):hover {
    opacity: 0.7;
}

.photo-selector-caret-element-selected {
    opacity: 1 !important;
}