section[id]:last-child {
    margin-bottom: unset;
}

#collectionLayoutFrame01 {
    width: 80%;
    margin: 0 auto 12vmax;
    display: grid;
    grid-template-columns: 1.5fr 8.5fr;
}

#collectionLayoutFrame01>div:first-child {
    position: relative;
}

#collectionLayoutFrame01 .collectionsList {
    position: sticky;
    /* top: 10vh; */
    left: 0;
}

#collectionLayoutFrame01 .collectionsList dd {
    font-size: .9em;
    font-weight: bolder;
    letter-spacing: 2px;
    margin-bottom: .8em;
}

#collectionLayoutFrame01 .collectionsList a {
    color: initial;
    text-decoration: unset;
    border-bottom: 1px solid #999999;
}

@media screen and (min-width:700px) and (max-width:1195px) {
    #collectionLayoutFrame01 {
        width: 90%;
        grid-template-columns: 1fr;
    }

    #collectionLayoutFrame01>div:first-child {
        display: none;
    }
}

@media screen and (max-width:700px) {
    #collectionLayoutFrame01 {
        width: 90%;
        grid-template-columns: 1fr;
    }

    #collectionLayoutFrame01>div:first-child {
        display: none;
    }
}