.video-box {
    background-color: black;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
}

.video-box-info {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px;
    padding-bottom: 43px;
    width: 100%;
    /* background: linear-gradient(rgb(0 0 0 / 73%), transparent 70%); */
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-repeat: repeat-x;
    background-color: transparent;
}

.video-box-info .portrait {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-box-info .title {
    color: white;
    font-size: 18px;
    line-height: 20px;
    font-family: 'lektonregular';
    text-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

.video-box-controller {
    display: inline-block;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 128px;
    height: 128px;
    transform: translate(-50%, -50%);
    background-image: url('../asets/video/player.svg');
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(1);
}

.audio-box {
    background-image: url('../asets/audio/player.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 40px !important;
}

.video-box a,
.audio-box a {
    display: inline-block;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}