.search-games {
    background-color: var(--bgModal);
    border-radius: 30px;
    box-sizing: initial;
    height: calc(100% - 60px);
    max-height: 100%;
    padding: 20px;
    position: absolute;
    top: 0;
    width: calc(100% - 60px)
}

.search-games .field {
    background: #11192d;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 40px auto;
    height: 50px;
    padding: 0 10px
}

.search-games .field svg {
    align-self: center;
    height: 20px;
    justify-self: center;
    width: 20px
}

.search-games .field input {
    background-color: #0000;
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    height: 50px;
    outline: 0;
    padding: 0
}

.search-games .items {
    height: 100%;
    margin-top: 5px;
    max-height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 10px;
    padding-top: 10px;
    position: relative;
    width: 100%
}

.search-games .items .list {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr))
}

.search-games .items .list .block-loader {
    max-height: calc(100% - 10px)
}

.search-games .items.waiting .item {
    animation: flashCustom .5s ease infinite
}

@keyframes flashCustom {
    0% {
        opacity: .75
    }

    50% {
        opacity: .25
    }

    to {
        opacity: .75
    }
}

.search-games .items .item {
    grid-gap: 10px;
    background: #11192d;
    border-radius: 20px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 55px calc(100% - 65px);
    height: 75px;
    padding: 10px
}

.search-games .items .item .thumb {
    border-radius: 9px;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.search-games .items .item .thumb:before {
    background-color: var(--slotHover);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .15s ease;
    z-index: 2
}

.search-games .items .item .thumb .play-btn {
    border-radius: 10px;
    height: 40px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .15s ease;
    width: 40px;
    z-index: 2
}

.search-games .items .item .thumb .play-btn:after {
    display: none
}

.search-games .items .item .thumb .play-btn img {
    height: 24px;
    width: 24px
}

.search-games .items .item .thumb .image {
    height: 80px;
    object-fit: cover;
    object-position: top center;
    transition: transform .15s ease;
    width: 100%
}

@media(max-width:600px) {
    .search-games .items .item {
        border-radius: 11px;
        grid-template-columns: 40px calc(100% - 50px);
        height: 60px
    }

    .search-games .items .item .thumb {
        border-radius: 8px
    }

    .search-games .items .item .thumb .image {
        height: 60px
    }

    .search-games .items .item .thumb .play-btn {
        height: 40px;
        width: 40px
    }

    .search-games .items .item .thumb .play-btn img {
        height: 20px;
        width: 20px
    }
}

.search-games .items .item:hover .thumb .image {
    transform: scale(1.2)
}

.search-games .items .item:hover .thumb .play-btn,
.search-games .items .item:hover .thumb:before {
    opacity: 1
}

.search-games .items .item .info {
    align-self: center
}

.search-games .items .item .info .name {
    font-size: .9rem;
    font-weight: 900;
    margin-bottom: 5px;
    overflow: hidden;
    text-transform: uppercase
}

.search-games .items .item .info .provider {
    color: var(--text);
    font-size: 7px;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap
}

.search-games .items-empty {
    align-items: center;
    color: var(--textSecondary);
    display: flex;
    flex-direction: column;
    grid-column: 1/-1;
    height: 100%;
    justify-content: center;
    margin-top: 20px
}

.search-games .items-empty svg {
    fill: var(--iconColor);
    height: 100px;
    width: 100px
}

.search-games .items-empty h6 {
    font-size: .95rem;
    font-weight: 700;
    margin-top: 10px
}

.search-games .items-empty p {
    font-size: .6rem;
    font-weight: 300;
    margin-top: 4px
}