.filters {
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.button-filter,
.select-filter {
    height: 40px;
    border-radius: 28px;
    background-color: #FC7D40;
    color: black;
    font-family: Oswald-SemiBold;
    margin-right: 32px;
    border: none;
    padding: 0 32px 0 16px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 32px;
}

.select-filter-wrapper {
    position: relative;
}

.disabled-filter {
    background-color: hsla(19, 97%, 51%, 0.5)
}

.select-filter-wrapper .arrow-down-icon {
    top: 10px;
    position: absolute;
    right: 38px;
    pointer-events: none;
}

.select-filter__option {
    background-color: black;
}

.button-filter:hover {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.reset-filters {
    background-color: transparent;
    color: white;
    font-family: Oswald-Regular;
    font-size: 16px;
    padding: 0 16px;
    cursor: pointer;
    min-width: 200px;
    height: 40px;
    border-radius: 28px;
    color: white;
    font-family: Oswald-Regular;
    border: none;
    border: 3px solid #FC7D40;
    padding: 0 32px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button-filter {
    background-color: hsla(19, 97%, 51%, 50%);
}

.button-filter.active {
    background-color: #FC7D40;
    color: black;
}

.filters-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#no-element-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#no-element-message p {
    color: white;
    font-family: Oswald-Regular;
    font-size: 36px;
    padding: 0 16px;
    cursor: pointer;
    margin-bottom: 32px;
    margin-top: 48px;
    line-height: 1.6;
    text-align: center;
}

@media all and (max-width: 980px) {

    .filters-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .filters-wrapper .reset-filters {
        margin-bottom: 16px;
    }

    .button-filter,
    .select-filter {
        margin-right: 16px;
        margin-bottom: 16px;
    }
}