/*
 Video feed 
*/

.invisible {
    display: none;
}

.searchwrapper {
    display: flex;
    justify-content: space-between;
    height: max-content;
}
.tagswrapper div {
    margin: auto 0;
}
.tagswrapper div .searchbutton {
    
    padding: 10px 8px;
    border: none;
    background-color: #000;
    border-radius: 8px;
    transition: all 300ms ease;
}

.tagswrapper div .searchbutton:hover {
    background-color: #b72424;
}

.pageinfowrapper .uploadbuttonwrapper .uploadvideobutton {
    background: #1FE080;
    border: none;
    padding: 9px 17px;
    border-radius: 9px;
    transition: all 500ms ease;
}

.pageinfowrapper .uploadbuttonwrapper .uploadvideobutton:hover {
    background: #b72424;
}


.videothumbnail {
    
    position: relative;
    padding: 0 6px;
}


.thumbnailimagewrapper {
    position: relative;
    z-index: 1;
}

.thumbnailimagewrapper img {
    background-color: #a1a1a1;
    width: 272px;
    height: 153px;    
    z-index: 1;
    bottom: -10px;
    position: relative;
    border-radius: 15px;
}

.thumbnailvideoname, .thumbnailimagewrapper {
    transition: all 250ms ease;
}

.videothumbnail:hover .thumbnailvideoname, .videothumbnail:hover .thumbnailimagewrapper {
    transform: scale(1.04);
}

.thumbnailvideotime {
    width: fit-content;
    position: absolute;
    right: 10px;
    bottom: 8px;
    z-index: 2;
}
   

.thumbnailvideotime p {
    position: relative;
    background: rgb(0, 0, 0, 0.7);
    padding: 0 8px;
    font-weight: 600;
    text-align: right;
    width: max-content;
}


.thumbnailvideoname {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    font-weight: 600;
    padding-top: 12px;
    margin-bottom: 0px;
    width: 272px;
    max-height: 50px;    
}

.aboutvideo {
    display: flex;
    position: relative;
}

.releasetime {
    font-weight: 500;
    opacity: 65%;
}

.releasetime::before {
    margin: 0 4px;
    content: "•";
    font-weight: 500;
}

.author {
    
    opacity: 65%;
    text-align: left;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    white-space: nowrap;
}
