/*
    DEMO STYLE
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
*/





body {
  font-family: 'opensans-bold', sans-serif;
  background: #fafafa;
}


.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
  width: 280px;
  position: fixed;
  top: 0;
  left: -280px;
  height: 100vh;
  z-index: 999;
  background: #fff;
  color: #6c757d;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #dc3545;
  position: absolute;
  top: 27px;
  right: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dismiss:hover {

  color: #dc3545;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px 0 0 0;
  display: table;
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #47748b;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}

#sidebar ul li a:hover {
  color: #7386D5;
  background: #fff;
}


a[data-toggle="collapse"] {
  position: relative;
}


a.article,
a.article:hover {
  background: #6d7fcc !important;
  color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */





.sidebar-user, .sidebar-ace {
  float: left;
}

.sidebar-user {
  padding: 6px 8px 0 10px;

}

.sidebar-ace {
  padding: 5px;
  font-size: 14px;
  height: 40px;
  line-height: 1.4;
  color: #007bff;

}

.sidebar-ace h3 {
  font-size: 18px;
  color: #6c757d;  
}


.menu-body {
  display: table;
  width: 100%;
  margin: 20px 0 0 0;

  padding: 20px;
}


.menu-body-icon {
  float: left;
  padding: 8px;
  width: 20%;
}

.menu-body-tit {
  float: left;
  padding: 12px 8px;
  width: 80%;
}

.menu-body-icon img {
  width: 100%;
  border-radius: 7px;
}



.menu-icon-video, .menu-icon-grupo, .menu-icon-secreto, .menu-icon-app {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.2);

}

.menu-icon-video {
background-color: #007bff;
background-image: linear-gradient(to right, #007bff, #7eb1e7);
}

.menu-icon-grupo {
  background-color: #cc0000;
  background-image: linear-gradient(to right, #cc0000, #ee7676);
}

.menu-icon-secreto {
  background-color: #912978;
  background-image: linear-gradient(to right, purple, rgb(204, 143, 155));
}

.menu-icon-app {
  background-color: #ffa500;
  background-image: linear-gradient(to right, #ffa500, #fecc6c);
}




.menu-item-separator {
  height: 1px;
  background-color: #eee;
  list-style-type: none;
}