.bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    padding-top: 1vh;
    padding-bottom: 1vh;
    height: 8%;
    border-bottom: 1px solid var(--gray);
}

.infoBox {
    border-bottom: 1px solid var(--gray);
    height: 6%;
}

.infoBoxInner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: left;
    margin-left: 15vw;
    margin-top: 0.5vh;
    width: 70vw;
    border: none;
}

.selectionContainer {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 70%;
    height: 100%;
    padding-left: 15vw;
}

.movementContainer {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 30%;
    height: 100%;
    padding-right: 15vw;
}

#barBottom {
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.ddLabel {
    font-size: 2.1vh;
    text-align: center;
    height: 4.4vh;
    margin: 0;
    color: var(--purple);
    margin-top: 1.0vh;
}

.infoBoxLabel {
    text-align: left;
}

.move, .sortSelect {
    width: 8vw;
    height: 4vh;
    margin-left: 2%;
    margin-right: 2%;
    font-size: 2.1vh;
    background-color: var(--off-white);
    color: var(--purple);
    border: 3px solid var(--purple);
    border-radius: 3% / 6%;

    outline: none;

    cursor: pointer;
}

.sortSelect {
    /* Until they're loaded and we manually change it back */
    color: var(--off-white);
}

.sortSelect.loaded {
    /* Until they're loaded and we manually change it back */
    color: var(--purple);
}

.sortSelect:disabled {
    border: 3px solid var(--gray);
    color: var(--gray);
    background-color: var(--light-gray);
    cursor: default;
}

.sortSelect:disabled:hover {
    background-color: var(--light-gray);
}

.move:hover, .sortSelect:hover,
.move:focus, .sortSelect:focus {
    background-color: var(--white);
}

.off, .off:hover {
    border: 3px solid var(--gray);
    color: var(--gray);
    background-color: var(--light-gray);
    cursor: default;
}

.selectUnique {
    margin-left: 0;
    width: 6vw;
}

.selectOrder {
    width: 10vw;
}

.selectDir {
    width: 5vw;
}

.next {
    margin-right: 0;
}

#imgList {
    margin-left: 15vw;
    margin-top: 5vh;
    width: 70vw;
    display: flex;
    flex-flow: row wrap;
    -webkit-justify-content: left;
    justify-content: left;
    align-content: start;
    -webkit-align-content: start;
    row-gap: 2.0vw;
    column-gap: 2.0vw;
}

.cardContainer, .cardImage {
    position: relative;
    width: calc(16vw);
    height: calc(7 / 5 * 16vw);
    border-radius: 4.75% / 3.5%;
    filter: drop-shadow(0 0 0.35rem #3339);
}