#categories-list {
    position: fixed;
    top: 0;
    max-height: calc(100vh - 75px);
    width: 70vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    left: -1000px;
    background: #FFF;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    transition: left 0.3s;
    margin-top: 75px;
}

@media only screen and (min-width: 1015px) {
    #categories-list {
        display: none;
    }
}

@media only screen and (max-width: 550px) {
    #categories-list {
        margin-top: 153.5px;
    }
}

.categories__title {
    width: 100%;
    background-color: var(--main-yellow);
    padding: 20px;
}

/* .categories__items {
    padding: .5em 1em;
} */

.category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid var(--main-blue);
}

.category:hover, .category.active {
    background-color: var(--main-dark-yellow);
    color: white;
    cursor: pointer;
}

.category div:first-child {
    display: flex;
    align-items: center;
}

.category svg {
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.category i {
    font-size: 1.5em;
    color: var(--main-blue);
    transform: rotate(0deg);
    transition: transform 400ms ease !important;
}

.category div.caret {
    color: var(--main-blue);
}

.category__headings {
    display: none;
}

.category__headings ul, .category__headings li {
    margin: 0;
    padding: 0;
}

.category__headings li {
    border-bottom: 1px solid var(--main-light-gray);
    list-style: none;
    padding-left: 3.3em;
}

.category__headings a {
    list-style: none;
    padding: 10px;
    display: block;
    font-size: 13px;
    color: black;
}