.selection-item {
    height: 340px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 0 rgb(14 21 47 / 1%), 0 0 0 rgb(14 21 47 / 11%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.1s linear;
    color: white;
    overflow: hidden;
}

.selection-item:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%), url(image.png);
    background-color: transparent;
    transition: all 0.3s ease;
}

.selection-item > * {
    position: relative;
    z-index: 1;
}

.selection-item .upper,
.selection-item .bottom {
    padding: 20px;
}

.selection-item .bottom {
    padding-bottom: 15px;
}

.selection-item__actions {
    position: absolute;
    left: 0;
    bottom: 0;
}

.selection-item__profile_link {
    height: 34px;
    border-radius: 17px;
    background: var(--bggray);
    float: left;
    padding-right: 15px;
    padding-left: 40px;
    color: var(--yellow);
    font-weight: 500;
    position: relative;
}

.selection-item__profile_link span {
    position: absolute;
    background-position: left center;
    background-repeat: no-repeat;
    display: inline-block;
    right: 0;
    top: calc(50% - 15px);
    background-size: cover;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    right: auto;
    left: 10px;
    top: 7px;
}

.selection-item__profile_link i {
    font-style: normal;
    line-height: 34px;
    font-size: 14px;
}

.selection-item__section {
    height: 34px;
    border-radius: 17px;
    background: var(--yellow);
    padding-right: 15px;
    padding-left: 15px;
    color: var(--bggray);
    font-weight: 500;
    line-height: 34px;
    font-size: 14px;
    float: right;
    cursor: default;
}

.selection-item h3 a {
    font-size: 18px;
    line-height: 22px;
    color: white;
}

.selection-item h3 a:hover {
    color: var(--yellow)
}

.selection-item h3 {
    margin-bottom: 16px;
}

.selection-item__description {
    font-size: 15px;
    display: none;
}


.selection-item:hover .selection-item__description{
    display: block;
}

.selection-item__likes-dislikes {
    display: flex;
    margin-bottom: 18px;
}

.selection-item:hover {
    color: white;
}

.selection-item:hover:after {
    background-color: rgba(48, 48, 48, 0.5);
    backdrop-filter: blur( 6.0px );
    -webkit-backdrop-filter: blur( 6.0px );
}

.selection-item__likes,
.selection-item__dislikes,
.selection-item__tests {
    font-size: 14px;
    height: 24px;
    line-height: 24px;
    padding-right: 34px;
    background-size: 24px;
    background-position: right center;
    background-repeat: no-repeat;
    margin-right: 20px;
}

.selection-item__likes {
    background-image: url('/local/templates/pikuco/images/icons/like.svg');
}

.selection-item__dislikes {
    background-image: url('/local/templates/pikuco/images/icons/dislike.svg');
}

.selection-item__tests {
    background-image: url(/local/templates/pikuco/images/icons/trophy-min.svg);
}

.selection-item__actions {
    display: flex;
    width: 100%;
}
