
/* for the sticky footer */
html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom:60px;
}

.footer {
  
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #f5f5f5;
}

/* For progress bar */
.progressbar {
  margin-bottom: 5px;
  flex: 10;
  position: relative;
  top: -5px;
  display: flex;
  width: 320px;
  flex-basis: 100%;
  transition: height 0.3s;
  height: 12px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  background-color: #e9e9e9;
}

.progress__filled {
  width:0%;
  background:#5cb85c;
  flex:0;
  /* flex-basis:50%; */
  /* width:50%; */
}

/*  For the sticky header */
body > .container {
  padding: 60px 15px 0px;
}

.comment-container .comment {
  font-size: 1em;
    border-left: 2px solid lightgray;
    padding-left: 8px;
    margin: 6px 0px 12px;
}

.comment-new {
  background-color: #fff5c1;
}

.post-author {
  font-size: 0.9em;
}

.resizehelptext {
  font-size: 0.8em;
}

ul#postListUl {
  padding-left: 0;
}
li.post-container {
  border-top: 1px solid lightgray;
  list-style-type: none;
  
}

.comment-form {
  margin-bottom: 10px;
}

div.song-in-list {
  border-bottom: 2px solid gray;
  padding: 8px 0px;
} 


/* webRTC stuff */
* {
  box-sizing: border-box;
}

.video-container {
  max-height: 350px;
  max-width: 700px;
  padding-top: 0px;
  padding-bottom: 50.1%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  background-color: black;
}
.remoteVideo {
  width: 100%;
  height: 100%;
  border:1px solid blue;
  position: absolute;
}
.localVideo {
  width: 25%;
  height: auto;
  border:1px solid orange;
  float: left;
  position: absolute;
  background-color: #afb7ba;
}

.dot {
  display: inline-block;
  border-radius: 50%;
  width: 50%;
  background-color: #EEE;
  height: 15px;
  width: 15px;
  margin: 0 2px;
}

.dot-warning {
  background-color: #F0AD4E;
}

.dot-success {
  background-color: #449D44;
}
    
.dot-danger {
  background-color: #D9534F;
}
  
.dot-sm {
  height: 10px;
  width: 10px;
}
    
.dot-lg {
  margin: 0 4px;
  height: 20px;
  width: 20px;
}

.notification-on {
  color: red !important;
}

.front-row {
  padding: 60px 50px;
}

span.mute {
  padding: 5px 10px;
  vertical-align: middle;
  font-size: 1.5em;
}

.comment .media-left img {
  width: 60px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .col-sm-3 {
    text-align: center;
    margin: 25px 0;
  }
}