@charset "utf-8";

.asSearchContainer{
    position: absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    pointer-events: none;

}

.asSearchContainerList{
    flex-grow: 1;
    pointer-events: all;
}

.asSearchContainerFilter{
    width:calc(334px + 36px);
    padding-left:0px;
    padding-right:36px;
    padding-top:36px;
    pointer-events: all;

}

.asSearchFilter{
    width:100%;
    border-radius: 20px;
    background: var(--White, #FFF);
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.25);
    padding:22px;
}

.searchHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom:22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
}

.searchSelect{
    margin-bottom:22px;
    padding-bottom:22px;
    border-bottom: solid 1px #DADADA;
}

.asSearchFilter h1{
    color: #7E7E7E;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin:0px;
    padding:0px;
}
.asSearchFilter h2{
    color: #7E7E7E;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin:0px;
    padding:0px;
    margin-bottom:22px;
}

.searchCheck{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}

.searchCheck div{
    display: flex;
    flex-direction: row;
    margin-bottom:6px;

}
.searchCheck img{
    margin-right:16px;

}
.searchCheck img:nth-child(1){
    width:20px;
    height:20px;
    display:none;
}
.searchCheck img:nth-child(2){
    width:20px;
    height:20px;
    display:block;
}

.searchCheck.active img:nth-child(1){
    display:block;
}
.searchCheck.active img:nth-child(2){
    display:none;
}

.searchText{
    position: relative;
}

.searchText input{
    width:100%;
    height:33px;
    border: solid 1px var(--Dark-Grey);
    padding-left:10px;
    padding-right:44px;
    font-family: "Proxima Nova";
    font-size: 14px;
    color: #2E2E2E;
    outline: none;
}

.searchText .searchSubmit{
    position: absolute;
    top:50%;
    right:14px;
    transform: translateY(-50%);
    width:17px;
    height:19px;
    padding:0;
    border:none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='19' viewBox='0 0 17 19' fill='none'%3E%3Ccircle cx='8.19615' cy='8.19615' r='5' transform='rotate(30 8.19615 8.19615)' fill='white' stroke='black' stroke-width='2'/%3E%3Crect x='4.83008' y='12.0262' width='2' height='6' transform='rotate(30 4.83008 12.0262)' fill='black'/%3E%3C/svg%3E");
    cursor: pointer;
}




p.circleType{
    display: flex;
    align-items: center;
    gap: 8px;
}

p.circleType::before{
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--Athletics-Kelly-Green, #006241);
    flex-shrink: 0;
}

p.circleTypeSponsor::before{
    background: var(--Athletics-Type-Sponsorships, #2F6DB0);
}

p.circleTypeClubs::before{
    background: var(--Athletics-Type-Clubs, #8348A6);
}

p.circleTypeFan::before{
    background: var(--Athletics-Type-Fan, #CC6A39);
}

p.circleTypeArt::before{
    background: var(--Athletics-Type-Art, #E3ADC5);
}

p.circleTypeTeam::before{
    background: var(--Athletics-Type-Team, #1B9E97);
}

p.circleTypeRetail::before{
    background: var(--Athletics-Type-Retail, #A07E2C);
}



.asSearchFilter .searchSelect, .asSearchFilter .searchText{
    display:none;
}

.asSearchFilter .searchHeader{
    margin-bottom:0px;
}

.asSearchFilter .searchHeader img{
    transform: rotate(180deg)
}


.asSearchFilter.active .searchSelect, .asSearchFilter.active .searchText{
    display:block;
}

.asSearchFilter.active .searchHeader{
    margin-bottom:22px;
}

.asSearchFilter.active .searchHeader img{
    transform: rotate(0deg)
}