/*Controller for the previous uploads portion of the content provider site*/
/*Copyright Stringr, Inc 2018*/

.stringrBody .providerProfileTab {
    padding: 15px;
    background-color: #222;
}

.stringrBody .providerProfileTab .refreshVideosButton {
    margin-bottom: 15px;
}

.stringrBody .providerProfileTab .pagingButtons {
    margin-bottom: 15px;
    overflow: auto;
    clear: both;
}

.stringrBody .providerProfileTab .pageButton {
    border: 1px solid #ccc;
    color: #ccc;
    background: #222;
    border-radius: 0px;
    width: 7.5em;
}

.stringrBody .providerProfileTab .pageButton:hover {
    background-color: #333;
}

.stringrBody .providerProfileTab .pagingButtons {
    text-align: center;
}

.stringrBody .providerProfileTab .videosContainer {
    text-align: center;
}

.stringrBody .providerProfileTab .videosContainer .videoGroupContainer {
    position: relative;
    border: 2px solid black;
    margin: 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.stringrBody .providerProfileTab .videosContainer .videoGroupContainer:hover {
    border: 2px solid white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls {
    background-color: rgba(68, 68, 68, 0.6);
    bottom: 0px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    display: block;
    font-family: "Open Sans", "Helvetica Neue", helvetica, sans-serif;
    font-size: 14px;
    height: 26px;
    line-height: 20px;
    padding-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    pointer-events: auto;
    position: absolute;
    text-size-adjust: 100%;
    width: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    text-align: left;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls span,
.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls a {
    float: right;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls>* {
    margin-left: 5px;
    padding: 2px;
    border-radius: 0;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls>.btn {
    padding-top: 0;
    padding-bottom: 0;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls>.btn[disabled] {
    opacity: 0;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls .duration {
    width: 40px;
}

.stringrBody .providerProfileTab .videoGroupContainer .videoGroupControls .title {
    width: 154px;
    height: 20px;
    float: left;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.stringrBody .providerProfileTab .video-js.vjs-user-active .vjs-big-play-button,
.stringrBody .providerProfileTab .video-js .vjs-big-play-button {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    width: 1.8em;
    height: 1.8em;
    background-color: white;
    color: #c22;
    text-shadow: none;
    border: 1px solid #ccc;
    opacity: .7;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.stringrBody .providerProfileTab .video-js.vjs-user-inactive .vjs-big-play-button {
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.stringrBody .providerProfileTab .videoGroupContainer {
    display: inline-block;
}

.stringrBody .providerProfileTab .videoGroupContainer .vjs-control-bar {
    bottom: initial;
    top: 0;
}

.vjs-control:focus {
    outline: none;
}

.stringrBody .providerProfileTab .videoGroupContainer .vjs-fullscreen .vjs-control-bar {
    bottom: 0 !important;
    top: initial;
}

.vjs-icon-placeholder:before {
    line-height: 1.9em;
    left: 0.08em;
    top: -0.06em;
}

.vjs-poster {
    display: none;
}

.stringrBody .providerProfileTab .providerProfileTab-sidenav {
height: 100%;
width: 160px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
padding-top: 20px;
}
.stringrBod .providerProfileTab .providerProfileTab-sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
}
.stringrBody .providerProfileTab .providerProfileTab-sidenav a:hover {
color: #f1f1f1;
}
.stringrBody .providerProfileTab .providerProfileTab-main {
margin-left: 160px; /* Same as the width of the providerProfileTab-sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.stringrBody .providerProfileTab .providerProfileTab-sidenav {padding-top: 15px;}
.stringrBody .providerProfileTab .providerProfileTab-sidenav a {font-size: 18px;}
}

.sidebar {
margin: 0;
padding: 0;
width: auto;
background-color: #f1f1f1;
height: 100%;
flex-shrink: 0;
overflow: auto;
}

/* Sidebar links */
.sidebar a {
display: block;
color: black;
padding: 16px;
text-decoration: none;
}

/* Active/current link */
.sidebar a.active {
background-color: darkgray;
color: white;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
background-color: #555;
color: white;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
    padding: 1px 16px;
    min-height: 1000px;
    width: 100%;
}
.providerProfileTab{
    display: flex;
}

.w-100 {
    width: 100% !important;
}