:root {
  --element_Font: 'Open Sans', sans-serif;
  --element_FontColor: white;
  --backGroundColor: #60379F;
  --onlineColor: green;
  --offlineColor: red;
}
 /* var(--main-bg-color); */
/* #f4f6f5 #b1b5b7 #05729b #30577c #02325f */

body {
  background-color: #60379F;
  font-family: var(--element_Font);
  font-style: normal;
}

.loader {
  border: 16px solid #7B47CC;
  border-top: 16px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin:auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jumbotron {
  background-color: rgba(0, 0, 0, 0.0);
}

.jumbo {
  /* background-image:url("https://cdn.dribbble.com/users/802553/screenshots/2268094/twitch_logo_animation.gif"); */
  background-image:url("http://ivacontent.blob.core.windows.net/ivacomwp/wp-content/uploads/2014/09/Twitch_Logo.png");
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 110px;
  transition: all 0.8s ease .05s;
}

.textBG {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5px;
  border-radius: 5px;
}

.mainContainer { /* FOR MAIN CONTAINER*/
  background-color: none;
}

.listContainer { /* HOLDS STREAM USERS */
  margin-left: 5%;
  margin-right: 5%;
}

.media-object { /* PROFILE IMAGE */
  width: 64px;
  padding: 5px;
}

.media { /* STREAM ROW */
  padding: 10px;
  background-color: none;
  border-radius: 2px;
}

.placementBox { /* TEST */
  background-color: white;
  text-align: center;
  margin: 10px;
}

.status_online {
  background-color: none ;
  color: white;
  border-style: solid;
  border-left: none;
  border-right: none;
  border-width: thin;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.status_offline {
  background-color: #64527F;
  color: gray;
  font-style: italic;
  border-style: solid;
  border-left: none;
  border-right: none;
  border-width: thin;
}

.popover-content {
    color: #7B47CC;
    font-size: 12px;
}

.element_Buttons {
  background-color: none;
  color: white;
  font-size: 30px;
  padding: 10px;
  transition: all 0.8s ease .05s;
}

.element_Buttons:hover {
  color: #7B47CC;
  cursor: pointer;
  transition: all 0.8s ease .05s;
  font-size: 28px;
}

.element_ButtonGroup {
  transition: all 0.8s ease .05s;
  position: fixed;
  right: 2%;
  background-color: #9A58FF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.headingUsername, .headingUsername:active, .headingUsername:focus, .headingUsername:visited {
  font-size: 20px;
  color : white;
  text-decoration: none;
  transition: all 0.8s ease .05s;
}

.headingUsername:hover {
  color: #9f87c4;
  font-weight: 200;
  text-decoration: none;
  transition: all 0.2s ease 0.03s;

}

.media-object {
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease 0.03s;
}

.media-object:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.8s ease .05s;
}

.loading_stat {
  background-color: none;
  transition: all 0.8s ease .05s;
}

.listContainer {
  padding-bottom: 50px;
}
