.filter {
    /* padding: 0px 0px; */
    /* max-width: 1200px; */
    margin: 0 auto;
}

.aspect-1-1:before {
    display: none;
}

.filter__options__container {
    position: relative;
    display: inline-block;
    margin: 0px 3px;
    width: 18%;
}

.filter__options__grades, .filter__options__continents {
    display: none;
    position: absolute;
    overflow: scroll;
    border: 1px solid #d7d7d6;
    border-top: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 1;
    background-color: white;
    min-width: 193px;
}

/* .filter__options__grades {
    min-width: 89px;
}

.filter__options__continents {
    min-width: 117px;
} */

#grade-dropdown:hover .filter__options__grades {
    display: block;
}

#continent-dropdown:hover .filter__options__continents {
    display: block;
}

.dropdown-label {
    display: flex;
    align-items: center;
    border: 1px solid #d7d7d6;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    background-color: #f7fbf7;
}

#grade-dropdown:hover .dropdown-label, #continent-dropdown:hover .dropdown-label {
    /* border-bottom: none; */
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}


.dropdown-label h2 {
    color: #706C7C;
    font-family: 'Lato', sans-serif;
    width: 95%;
}

.dropdown-label svg {
    position: relative;
    top: 2px;
}

.filter__options {
    display: flex;
    flex-wrap: wrap;
}

.filter__options__click {
    color: #20812D;
    font-family: 'Brandon Grotesque', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.75rem;
    transition: .3s ease-in-out;
    cursor: pointer;
    display: block;
    padding: 8px 10px;
    letter-spacing: .12em;
    border: 1px solid rgba(32,129,45, 0.7);
    border-radius: 50px;
    min-width: 80px;
    margin: 0px 3px;
    text-align: center;
    line-height: 1;
    margin-bottom: 8px;
}

.filter__options__click:hover {
    cursor: pointer;
    background-color: rgba(32,129,45, 0.7);
    color: white;
}

.filter__options__click.filter--active {
    background-color: rgba(32,129,45, 1);
    color: white;
}

.filter__options__click input {
    display: none;
}

.filter__options__click label:hover {
    cursor: pointer;
}

.filter__options__grades__band:hover, .filter__options__continents__band:hover {
    background-color: rgba(32, 129, 45, 0.25);
}

.filter__active {
    background-color: #20812D;
    color: white;
}

.programs__block, .grid-medium-third>.cell {
    transition: all 0.3s ease-out;
    opacity: 1;
}

.programs__block--hidden, .programs__block--hidden.grid-medium-third>.cell {
    height: 0;
    width: 0 !important;
    max-width: 0 !important;
    opacity: 0;
    visibility: hidden;
    padding: 0px;
}

.filter-side__container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.filter-side__container__grade {
    margin-right: 50px;
    margin-bottom: 18px;
    width: 25%;

}

.filter-side__container__topic {
    width: 70%;
}

@media all and (max-width: 1024px) {
    .filter-side__container__grade {
        margin-right: 0px;
        width: 100%;
    }

    .filter-side__container__topic {
        width: 100%;
    }

    .filter-side__container {
        margin-left: 5px;
        justify-content: left;
    }
}

.filter-side__container h2 {
    margin-left: 6px;
    margin-bottom: 12px;
    font-family: 'Brandon Grotesque', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .12em;
    font-size: 1rem;
    color: #85754e;
}