.pokies__row {
    margin-bottom: 10px;
}

.pokies .pokies__row:last-of-type {
    margin-bottom: 0px;
}

.pokies__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pokies__label {
    padding: 8px 14px;
    border-radius: 8px;
    background: #1E2A35;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pokies__icon img{
    width: 24px;
    height: 24px;
}

.pokies .pokies__button,
.pokies .pokies__button:hover,
.pokies .pokies__button:target,
.pokies .pokies__button:active,
.pokies .pokies__button:valid {
    color: #E5F6FF;
}

.pokies__slide {
    background: #141D26;
    padding: 6px;
    border-radius: 14px;
    position: relative;
    display: block;
    max-height: 156px;
    box-sizing: border-box;
}

.pokies picture {
    height: 100%;
    display: flex;
    max-height: 144px;
    width: 100%;
}


.pokies__slide img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 144px;
}

.pokies__slide-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(20, 29, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: all ease 0.3s;
}

.pokies__slide:hover .pokies__slide-hover {
    opacity: 1;
    transition: all ease 0.3s;
}

.pokies__slide-hover-text {
    background: linear-gradient(156deg, #d89c34 0%, #f9f290 52.5%, #d89c34 100%);
    line-height: 1;
    -webkit-background-clip: text;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 990.98px) {
    .pokies__slider {
        overflow: visible;
    }
}