@charset "utf-8";

.asSearchContainerList{
    position: relative;
}

.filteredList{
    background: var(--White, #FFF);
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    left:36px;
    right:36px;
    top:36px;
    bottom:36px;
    overflow-y: auto;
}
.filteredGroupTitle{
    background: var(--Athletics-Gold, #EFB21E);
    height: 45px;
    display: flex;
    align-items: center;
    padding-left:28px;
    padding-right:28px;
    margin-bottom:28px;

}
.filteredGroupTitle h1{
    color: var(--Athletics-Kelly-Green, #006241);
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom:0px;
    margin-top:2px;
    text-transform: uppercase;
}

.filteredGroupItem{
    display: flex;
    flex-direction: row;
    padding-left:28px;
    padding-right:28px;
    margin-bottom:28px;
    cursor: pointer;
}

.filteredGroupItemImage{
    margin-right:28px;
    width:160px;
    height:90px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.filteredGroupItemDetails{
    flex-shrink: 1;

}

.filteredGroupItemDetails h1{
    color: var(--Dark-Grey, #2E2E2E);
    font-family: "Proxima Nova";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.filteredGroupItemDetails p{
    color: var(--Dark-Grey, #2E2E2E);
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom:4px;
}


.filterAvailable{
    color: var(--Filter-Available);
    font-weight: 700;
}

.filterPending{
    color: var(--Filter-Pending);
    font-weight: 700;
}

.filterSold{
    color: var(--Filter-Sold);
    font-weight: 700;
}
