main .Content {
    opacity: 0;
    animation: fadeIn 0.2s ease 0.8s forwards;
}

.abonneer {
    width: fit-content;
    gap: 0.5em;
    flex-direction: row-reverse;
    background-color: #e52421;
    border-radius: 5px;
}
.abonneer p {
    margin: 0;
    color: #f2f2f2;
    padding-right: 1em;
    font-weight: 600;
}
.abonneer img {
    width: 40px;
    border-radius: 5px;
}

.videos {
    --videos-gap: 4em;
    gap: var(--videos-gap);
    margin-top: 2em;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.video-item {
    position: relative;
    width: calc(50% - var(--videos-gap));
    background-color: var(--light-text);
}
.video-item .video {
    width: 100%;
    height: auto;
    margin-bottom: -0.6em;
}
.video-item .video video {
    height: 295px;
    width: 100%;
}
video[poster] {
    object-fit: cover;
}
.video-item .video-bar {
    display: block;
    color: var(--light-text);
    cursor: pointer;
}
.video-item .video-bar p {
    position: absolute;
    z-index: 0;
    bottom: 1em;
    left: 0;
    right: 0;
    height: 0;
    padding: 0;
    background-color: rgba(41, 41, 41, 0.75);
    color: #d7d7d7;
    cursor: default;
    transition: height 150ms ease, bottom 150ms ease, padding 1ms linear 150ms;
    overflow: hidden;
}
.video-item .video-bar p.active {
    bottom: 2.2em;
    height: 19.65em;
    padding: 4em 3em 1em 3em;
    transition: height 150ms ease, bottom 150ms ease, padding 0s linear 0s;
}
.video-item .video-bar .video-description .close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.5em;
    box-sizing: content-box;
    cursor: pointer;
}
.video-item .video-bar h2 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.75em 2.5em 0.75em 1em;
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background: url(/templates/Wot/images/info.svg) no-repeat var(--topMenu);
    background-position: calc(100% - 0.8em) center;
    background-size: 1.8em;
}

@media screen and (min-width: 2200px) {
    .video-item {
        width: calc(25% - var(--videos-gap)) !important;
    }
}
@media screen and (min-width: 1400px) {
    .videos {
        position: relative;
        width: 95vw;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
    }
    .video-item {
        width: calc(33.333% - var(--videos-gap));
    }
}

@media screen and (max-width: 1200px) {
    .video-item .video video,
    .video-item .video-bar p.active {
        height: 21.9vw;
    }
    .video-item .video-bar p.active {
        padding: 2em 4em 1em 3em;
        font-size: 1.4rem;
        overflow-x: hidden;
        overflow-y: scroll;
        scrollbar-color: rgba(255,255,255,0.6) transparent;
        scrollbar-width: 5px;
    }
    .video-item .video-bar p::-webkit-scrollbar {
        width: 5px;
    }
    .video-item .video-bar p::-webkit-scrollbar-track {
        background: transparent;
    }
    .video-item .video-bar p::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.6);
    }
}
@media screen and (max-width: 980px) {
    .videos {
        --videos-gap: 2em;
    }
    .video-item video {
        height: 23.5vw;
    }
    .video-item .video-bar p.active {
        height: 22.1vw;
    }
}
@media screen and (max-width: 768px) {
    .videos {
        --videos-gap: 1.5em;
    }
    .video-item .video-bar h2 {
        font-size: 1.6rem;
    }
    .video-item .video-bar p.active {
        height: 21.5vw;
    }
}
@media screen and (max-width: 600px) {
    .videos {
        --videos-gap: 2.5em;
    }
    .video-item {
        width: 100%;
    }
    .video-item video {
        height: auto !important;
        aspect-ratio: 2 / 1;
    }
    .video-item .video-bar p.active {
        height: 44.4vw;
    }
}

