.videos{
    display: flex;
    
    overflow: hidden;
    flex-wrap: wrap;
    flex-direction: row;
}

.fit{
    width: 100%;
    height: 100%;
}

.video{
    object-fit: cover;

    width: 100%;
    height: 100%;
}

.fade-gradient{
    background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.fade-gradient-down{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

#sealtok-pause{
    position: relative;
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: center;

    transition: transform 0.03s ease-out;
    transform: scale(0);
}

#sealtok-pause.paused{
    transition: transform 0.07s ease-in;
    transform: scale(1);
}