@charset "utf-8";

.asSearchDetailContainer{
    position: absolute;
    top:0px;
    bottom:0px;
    width:var(--SearchDetailContainer-Width);
    right:0px;
    display: flex;
    flex-direction: column;
    background: var(--White, #FFF);
    z-index:10000;
    padding:33px;
    padding-top:24px;
    overflow-y: auto;
}

.asSearchDetailContainer h1{
    color: var(--Light-Grey, #9C9C9C);
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.asSearchDetailContainer p{
    color: #000;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.asSearchDetailContainer .detailMain h1{
    color: var(--Dark-Grey, #2E2E2E);
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: none;
    margin-top:0px;
    padding-top:16px;
    margin-bottom:0px;
}

.asSearchDetailContainer .detailNav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom:24px;
    border-bottom:solid 1px #DADADA;
    margin-bottom:0px;

}

.asSearchDetailContainer .closeButton{
    cursor: pointer;
}

.asSearchDetailContainer .detailNav h1{
    margin-bottom:0px;
}

.asSearchDetailContainer p.furtherDetails{
    color: #000;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}


.asSearchDetailContainer p.mainDetails{
    color: var(--Dark-Grey, #2E2E2E);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}


.asSearchDetailContainer p.mainDetails .mainDetailsSecondOffset{
    margin-left:16px;

}

.asSearchDetailContainer.sold p.mainDetails .detailStatus{
    color:var(--Filter-Sold);
    font-weight:700;
}
.asSearchDetailContainer.available p.mainDetails .detailStatus{
    color:var(--Filter-Available);
    font-weight:700;
}
.asSearchDetailContainer.pending p.mainDetails .detailStatus{
    color:var(--Filter-Pending);
    font-weight:700;
}



.detailMain ul{
    list-style: none;

}

.detailMain li{
    color: var(--Dark-Grey, #2E2E2E);
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom:0px;
    border-radius: 15px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.10);
    padding-top:7px;
    padding-bottom:6px;
    padding-left:13px;
    padding-right:13px;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom:8px;

}
.detailMain li:last-child{
    margin-bottom:0px;
}
.detailMain li:before{
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--Athletics-Kelly-Green, #006241);
    flex-shrink: 0;

}



.asSearchDetailContainer.sponsorships .detailMain li:before{
    background: var(--Athletics-Type-Sponsorships, #2F6DB0);
}

.asSearchDetailContainer.club .detailMain li:before{
    background: var(--Athletics-Type-Clubs, #8348A6);
}

.asSearchDetailContainer.fan .detailMain li:before{
    background: var(--Athletics-Type-Fan, #CC6A39);
}

.asSearchDetailContainer.art .detailMain li:before{
    background: var(--Athletics-Type-Art, #E3ADC5);
}

.asSearchDetailContainer.team .detailMain li:before{
    background: var(--Athletics-Type-Team, #1B9E97);
}

.asSearchDetailContainer.retail .detailMain li:before{
    background: var(--Athletics-Type-Retail, #A07E2C);
}



.detailThumbnails{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:4px;
}

.detailThumbnail{
    background-position: center;
    background-size: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}


.detailDescription h1{
    margin-top:24px;
    margin-bottom:10px;
}


.detailDescription p{
    margin-top:0px;
    margin-bottom:14px;
}


.asSearchDetailPopup{
    width:calc(100% - var(--SearchDetailContainer-Width));
    background-color: rgba(0, 0, 0, 0.50);
    height:100%;
    padding:36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asSearchDetailPopup .featuredImageContainer{
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.asSearchDetailPopup .featuredImageContainer img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 172px); /* 100px header + 36px popup padding top/bottom */
    cursor: pointer;
}

.asSearchDetailPopup .featureImageTopNav{
    position: absolute;
    top:0px;
    width:100%;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s all;
    color:#fff;
    padding:16px;
    display: flex;
    justify-content: end;

}


.asSearchDetailPopup .featureImageDescription{
    position: absolute;
    bottom:0px;
    width:100%;
    background-color: rgba(0, 0, 0, 0.10);
    transition: 0.3s all;
    color:#fff;
    padding:16px;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;


}


.featuredImageContainer:hover .featureImageTopNav,.featuredImageContainer:hover .featureImageDescription{
    background-color: rgba(0, 0, 0, 0.50);
}

.asSearchDetailPopup{
    display: none;
}

.asSearchDetailPopup.active{
    display: flex;
}


.asSearchDetailPopup.active{
    display: flex;
}