atomic-favorites [slot="output"]{
    display: grid;
    grid-template-columns: var(--a-favorites-gridcolumns, minmax(auto, 1fr) minmax(auto, 1fr));
    gap: var(--a-favorites-gap, 1rem);
}

atomic-favorites .instance-wrapper a .text{
    color: black;
}
atomic-favorites .instance-wrapper a{
    position: relative;
    display:block;
    border: 1px solid #ccc; padding: 10px; margin-bottom: 10px;
    height: 100%;
}
atomic-favorites .instance-wrapper .image{
    width:100%;
    height: 150px;
    position:relative;
    overflow: hidden;
    margin-bottom: 1rem;
}
atomic-favorites .instance-wrapper .image img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
atomic-favorites .instance-wrapper h2{margin-bottom: 2rem;}
atomic-favorites .instance-wrapper .text > *:last-child{
    margin-bottom: 0;
}
atomic-favorites .instance-wrapper .text .price{
    position: absolute;
    bottom: 10px;

}
atomic-favorites .instance-wrapper .closeBt{
    --a-favorites-closebt-top: 15px;
    --a-favorites-closebt-right: 15px;
    color:white;
    text-shadow: 1 5px black;
    text-shadow: 1px 2px 4px black;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
atomic-favorites .instance-wrapper .closeBt:hover{
    opacity: 0.8;
}
