.cantor-super-nav {
    position: absolute;
    z-index: 92; /* Because cantor.com header was arbitrarily set to be 91... */

    width: 100%;
}

.cantor-super-nav:hover {
    .cantor-super-nav__overlay {
        opacity: 1;
    }
}

.cantor-super-nav__list {
    display: flex;
    justify-content: center;
    gap: 40px;

    height: 30px;
    margin: 0;
    padding: 3px 20px;

    list-style: none;
}

@media (min-width: 800px) {
    .cantor-super-nav__list {
        gap: 100px;
    }
}

.cantor-super-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    height: 100%;
    width: 100%;

    background-color: #EDF1F6;
    opacity: 0.45;
    transition: opacity 0.2s ease-in-out;
}

.cantor-super-nav__item {
    display: grid;
    align-content: center;

    transition: transform 0.2s ease-in-out;
}

.cantor-super-nav__item:hover {
    transform: translateY(-4px);
}

.cantor-super-nav a {
    height: 100%;
}

.cantor-super-nav a:hover {
    cursor: pointer;
    text-decoration: none;
}

.cantor-super-nav__image-wrapper {
    display: grid;
    max-width: 70px;
}

.cantor-super-nav img {
    max-height: 100%;
    max-width: 100%;

    object-fit: cover;
}