    .container{
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 72%;
    margin: 5px;
    text-align: center;
    display: inline-flex;
    justify-content: flex-end;
    flex-direction: column;
    font-family: 'Gilroy';
    padding: 5px;
}
.container:hover{
    box-shadow: 1px 1px 5px #e2231a;
    border-radius:5px;
    transition: all 0.2s ease-in-out;
}
.container.activeBasket{
    box-shadow: 1px 1px 5px #e2231a inset;
    border-radius:5px;
    transition: all 0.2s ease-in-out;
}