.product-list--items {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-list--items .product-list--item a {

    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all .2s ease;
}

.product-list-item-link-inner {
    padding: 20px 28px 20px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-list--items .product-list--item .excerpt {
    padding: 0 28px 0 36px;
    padding-right: 90px;
    color: #ffffff;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.product-list--items .product-list--item .product-list-item--link{
    overflow: hidden;
}

.product-list--items .product-list--item .product-list-item--link:not(.active) .excerpt {
    height: 0 !important;
}

.product-list--items .product-list--item .product-list-item--link.active .excerpt {
    height: auto;
    overflow: visible;
    opacity: 1;
}

.excerpt-inner{
    padding-bottom: 20px;
}


.product-list--items .product-list--item a .icon {
    padding: 14px;
    background-color: #FFEB03;
    border-radius: 60px;
    display: flex;
    color: #3A39FF;
    box-shadow: 5px 5px #ffffff;
}

.product-list--items .product-list--item a:hover .icon, .product-list--items .product-list-item--link.active .icon {
    background-color: #ffffff;
    box-shadow: 5px 5px #3A39FF;
}

.product-list--items .product-list--item.contrast a:hover .icon, .product-list--items .product-list--item.contrast .product-list-item--link.active .icon {
    box-shadow: 5px 5px #FFEB03;
}

.product-list--items .product-list--item a .text {
    line-height: 1.1;
}

.product-list--items .product-list--item a .icon svg {
    width: 24px;
    height: auto;
}


@keyframes delayFadeIn {
    0% {
        display: block;
    }

    100% {
        opacity: 1;
        display: block;
    }
}

@media (min-width: 992px) {
    .product-list--items .product-list--item a .icon svg {
        width: 40px;
    }

    .product-list--items .product-list--item a .text {
        max-width: 70%;
    }
}