.controls {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    /* color: black; */
}

.controls>div {
    font-weight: 600;
}

.controls>* {
    margin-right: 1rem;
    color: inherit;
    transition: all 0.2s ease;
}

.controls a:hover {
    color: #E27;
}

.controls .sort {
    display: flex;
    align-items: flex-end;
}

.controls .sort:after {
    display: block;
    opacity: 0;
    content: "";
    margin-left: 0.25rem;
    font-family: "Material Icons";
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
}

.controls .sort.asc,
.controls .sort.desc {
    color: #E27;
}

.controls .sort.asc:after {
    opacity: 1;
    content: "arrow_drop_up";
}

.controls .sort.desc:after {
    opacity: 1;
    content: "arrow_drop_down";
}

.sort_tag {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.sort_tag {
    display: flex;
    cursor: pointer;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    color: white;
    background: #999999;
    padding: 0.2rem 0.6rem 0.2rem 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.tags {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.tags div {
    font-weight: 600;
    margin-right: 0.5rem;
}

.tags .tag {
    display: flex;
    cursor: pointer;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    color: white;
    background: #999999;
    padding: 0.2rem 0.6rem 0.2rem 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.tags .tag:after {
    content: "x";
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    transition: all 0.2s ease;
}

.tags .tag.active:after {
    opacity: 1;
    visibility: visible;
    max-width: 2rem;
    margin-left: 0.4rem;
}

.tags .tag:hover,
.tags .tag.active {
    background: #E27;
}

.search_tag{
    width:52.5%;
    border:2px solid #aaa;
    border-radius:4px;
    margin:8px 0;
    outline:none;
    padding:8px;
    box-sizing:border-box;
    transition:.3s;
  }
  
.search_tag:focus{
    border-color:#E27;
    box-shadow:0 0 8px 0 #E27;
  }