/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Defaults
2.0 Header
3.0 Content
  3.1 Tooltip
4.0 Footer
--------------------------------------------------------------*/
body {
  font-family: 'Source Sans Pro', sans-serif; }

/*--------------------------------------------------------------
  1.0 Defaults
--------------------------------------------------------------*/
html, body {
  height: 100%; }

body {
  color: #647290;
  background-color: #121418; }

*:focus {
  outline: none; }

a {
  color: #ABAEB5;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  a:hover {
    color: #856DFF; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/*--------------------------------------------------------------
	2.0 Header
--------------------------------------------------------------*/
header img {
  margin: 0 auto;
  display: table;
  margin-bottom: 2em;
  margin-top: 2em; }

/*--------------------------------------------------------------
	3.0 Content
--------------------------------------------------------------*/
.sorting {
  background-color: #363A45;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: 50px;
  border-bottom: 1px solid #000;
  -moz-box-shadow: inset 0 1px 2px #545861;
  -webkit-box-shadow: inset 0 1px 2px #545861;
  box-shadow: inset 0 1px 2px #545861; }
  .sorting ul {
    margin: 0 auto;
    display: table;
    position: relative;
    top: 13px; }
    .sorting ul li {
      display: inline-block; }
      .sorting ul li a {
        color: #9FA7B5;
        padding: 0em 0.75em; }
        .sorting ul li a:hover {
          color: white; }
        .sorting ul li a.active {
          color: white;
          background-color: #1E2128;
          padding: 0em 0.75em;
          border-radius: 3px; }

section {
  margin: 0 auto;
  display: table;
  width: 425px;
  min-height: 900px;
  background-color: #252931;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-radius: 10px; }
  @media only screen and (max-width: 40em) {
    section {
      width: 375px; } }

li {
  display: block; }
  li.filtered {
    display: none; }

ul#channels-list li {
  position: relative;
  background-color: #F5F6FA;
  border-radius: 3px;
  min-height: 100px;
  margin: 1em; }
  ul#channels-list li img {
    border-radius: 5px;
    margin-top: 1em; }
  ul#channels-list li span.status {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    padding: 0.1em 0.5em;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 3px; }
  ul#channels-list li.offline span.status {
    background-color: #ABAEB5; }
  ul#channels-list li.online span.status {
    background-color: #856DFF; }
  ul#channels-list li a.user-name {
    clear: both;
    display: block; }
  ul#channels-list li a.channel-name {
    display: block;
    height: 35px;
    padding-top: 1em;
    text-align: center;
    color: #7F8AA4;
    font-weight: 600;
    background-color: #ECEEF5;
    border-top: 1px solid #E8EAF1;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    ul#channels-list li a.channel-name:hover {
      color: #856DFF; }
ul#channels-list .channel-wrap {
  margin: 1em;
  padding: 0.75em 1em 0em 1em;
  text-align: center; }

/*--------------------------------------------------------------
  3.1 Tooltip
--------------------------------------------------------------*/
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer; }

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none; }

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2; }

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid rgba(51, 51, 51, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0; }

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }

/*--------------------------------------------------------------
  4.0 Footer
--------------------------------------------------------------*/
footer {
  text-align: center;
  color: #C2CBD4;
  font-size: 14px;
  margin: 3em 0; }
  footer a {
    color: #C2CBD4;
    text-decoration: none; }
    footer a:hover {
      color: #856DFF; }

/*# sourceMappingURL=style.css.map */
