.vilka-vendors-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vilka-vendors {
    width: 100%;
    max-width: 768px;
    margin-bottom: 1rem;
}
.vilka-vendors .item {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-gap: 24px;
    margin-bottom: 2rem;
}
.vilka-vendors .item .img {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.vilka-vendors .item .img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.vilka-vendors .item .name {
    /*text-transform: uppercase;*/
    margin: 0 0 1rem 0;
}
.vilka-vendors .item .v-link {
    text-decoration: underline;
    margin-top: 1rem;
    display: block;
}
.vilka-vendors .item .v-link:hover {
    text-decoration: none;
}
.vilka-vendors .item .text {
    max-height: 100px;
    transition: max-height .3s ease-out;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}
.vilka-vendors .item .text:after {
    content: '';
    display: block;
    height: 40px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent, white);
    transition: .3s ease-out;
    position: absolute;
}
.vilka-vendors .item .text.open {
    max-height: 2000px;
}
.vilka-vendors .item .text.open:after {
    opacity: 0;
    visibility: hidden;
}
.vilka-vendors .item .show-more {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dashed;
    display: inline-flex;
    margin-right: auto;
    margin-top: 1rem;
}
.vilka-vendors .item .btns {
    display: flex;
    flex-wrap: wrap;

}
@media (max-width: 580px) {
    .vilka-vendors .item {
        grid-template-columns: 1fr;

    }
}