﻿.list {
    display: grid;
    gap: 15px;
    width: 100%;
}

.noData {
    background: black;
    color: white;
    padding: 50px;
    display: none;
    font-weight: normal;
    font-size: 32px;
}

.showMore {
    text-align: center;
    margin-top: 35px;
}

    .showMore button {
        padding: 15px;
    }

section .table .list {
    grid-template-columns: 1fr;
}

section.video.tile .list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

/*section.cut.tile .list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}*/


/* .item */
.item {
    color: #e0e0e0;
    position: relative;
}

    .item:hover {
        color: white;
    }

section.table .list .item {
    display: grid;
    grid-template-columns: 0px 60px 1fr auto auto;
}

section.filtered .list .item {
    display: none;
}

    section.filtered .list .item.visible {
        display: block;
    }


.item a {
    color: #e0e0e0;
}

/* .image */
.item .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    /* background-color: silver;*/
    border-radius: 15px;
    box-shadow: 0px 10px 15px 0px rgba(255,255,255,0.2);
    transition: all 0.5s;
}

.item:hover .image {
    box-shadow: 0px 10px 15px 0px rgba(255,255,255,0.4);
}



.item .image img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: all 0.5s;
}

.item:hover .image img {
    transform: scale(1.10);
}

/* .starting */
.tile .item .starting, .swiper .starting {
    padding: 4px;
    border-radius: 5px;
    background-color: #c0c0c0;
    color: #404040;
    transition: all 0.5s
}

section.tile .starting, .swiper .starting {
    position: absolute;
    top: 10px;
    right: 10px;
}

.item .starting .date::after {
    content: ' ';
}

.tile .item.live .starting, .swiper .item.live .starting {
    background: #ff003a;
    color: white;
}



.tile .item:hover .starting, .swiper .item:hover .starting {
    color: #c0c0c0;
    background: black;
}

.tile .item.live:hover .starting, .swiper .item.live:hover .starting {
    color: #ff003a;
    background: white;
}

/* .title */
.item .title {
    display: grid;
    font-size: 112%;
}

    .item .title .home, .item .title .away {
        display: inline;
    }

    .item .title .separator {
        display: none;
    }


.tile .item .title, .swiper .item .title {
    margin-top: 5px;
}
/* .sport a soutez */
.item .sport, .item .league, .item .gender, .item .leaguePart, .item .leaguePartPhase {
    font-size: 92%;
    font-weight: 200;
    color: #dfdfdf;
}

.item .league, .item .gender, .item .leaguePart, .item .leaguePartPhase {
    display: inline-block;
}

/*.item .gender, .item .leaguePart, .item .leaguePartPhase {
    text-transform: lowercase;
}
*/
    .item .gender::before, .item .leaguePart::before, .item .leaguePartPhase::before {
        content: ' , ';
    }

/* jine rozmery a pocty sloupcu */
@media screen and (max-width: 1500px) {
    :root {
        --video-cols: 5;
    }

    section.video.tile .list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 1100px) {
    :root {
        --video-cols: 4;
    }

    section.video.tile .list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 1000px) {
    :root {
        --video-cols: 3;
    }

    section.video.tile .list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 700px) {
    :root {
        --video-cols: 2;
    }

    section.video.tile .list {
        grid-template-columns: 1fr 1fr;
    }
}
