@charset "UTF-8";
/* Body */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Roboto;
  box-sizing: border-box;
  transition: 0.15s ease-out;
}
 @keyframes slideOut {
 from {
 top: 0;
}
 to {
 top: -1000px;
}
}
 @keyframes fadeIn {
 from {
 background-color: rgba(255,255,255,1);
 opacity: 0;
}
 to {
 background-color: rgba(255,255,255,0);
 opacity: 1;
}
}
 @keyframes fadeOut {
 from {
 background-color: rgba(255,255,255,1);
 opacity: 1;
}
 to {
 background-color: rgba(255,255,255,0);
 opacity: 0;
}
}
body {
  background: #222 url(../images/bg.png);
  font-style: normal;
  color: #ccc;
  font-size: 13px;
}
body.include {
  background: none;
}
h5 {
  margin-top: 5px;
  text-transform:  uppercase;
}
a {
  color: #0066BB;
  font-weight: bold;
  text-decoration: none;
}
p {
  margin-bottom: 8px;
  line-height:  1.2;
}
a:hover {
  color: #000;
}
optgroup {
  color: #333;
}
option {
  color: #777;
}
.notice {
  padding: 15px;
  background-color: #252;
  color: #fff;
  font: bold 14px/1 Roboto;
  position: fixed;
  top: 0;
  left: 0;
  margin: 10px;
  max-width: 40%;
  min-width: 25%;
  z-index: 3;
  border-radius: 5px;
}
.notice.warning {
  background-color: #900;
}
input[type=text], input[type=password], select, textarea {
  font: bold 12px/13px Roboto;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #f0f0f0;
  transition: 0.1s all ease-out;
  width: 100%;
  margin: 0 0 2px;
  color: #666;
}
input[type=text]:focus, input[type=password]:focus, select:focus, textarea:focus {
  background-color: #fff;
  color: #000;
}
option {
  font: bold 12px/13px Roboto;
}
input[type=submit] {
  font: bold 12px/14px Roboto;
  background-color: #aaa;
  color: #fff;
  display: inline-block;
  text-align: center;
  transition: 0.1s all ease-out;
  margin: 0 0 2px;
  padding: 8px;
  vertical-align: middle;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #09f;
}
textarea {
  resize: none;
}
.on {
  color: #393;
}
.off {
  color: #e00;
}
.blue {
  color: #069;
}
.positionpage {
  margin-top: -50px;
  position: absolute;
}
[class*="divider"] {
  float: left;
  padding-right: 1%;
}
[class^="divider"].end {
  float: right;
  padding-right: 0;
}
.divider {
  width: 50%;
}
.divider.end {
  width: 50%;
}
.dividerthree {
  width: 33.3%;
}
.divider30 {
  width: 30%;
  padding: 0;
}
.divider40 {
  width: 40%;
  padding: 0;
}
.dividerthree.end {
  width: 33.4%;
}
.dividerthreelong {
  width: 66.6%;
}
.dividerthreelong.end {
  width: 66.7%;
}
.dividerfour {
  width: 25%;
}
.dividerfourlong {
  width: 75%;
}
.dividerfour.end {
  width: 25%;
}
.dividerfourlong.end {
  width: 75%;
}
.dividerfive {
  width: 20%;
}
.dividerfive.end {
  float: right;
  width: 20%;
}
.dividerfivelong {
  width: 80%;
}
.dividerfivelong.end {
  width: 80%;
}
.clear {
  clear: both;
}
.floatleft {
  float: left;
  margin-right: 10px;
}
.floatright {
  float: right;
  margin-left: 10px;
}
.inside {
  padding: 20px;
}
section.inside {
  padding: 30px;
}
section.inside + section.inside {
  padding-top: 0;
}
.login {
  width: 50%;
  margin: auto;
}
.login input[type=submit] {
  width: 100%;
}
iframe {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}
.togglepanel {
  display: none;
}
.togglebutton::after {
  display: none;
}
h1 {
  font-weight: normal;
  font-size: 22px;
  color: #000;
  text-transform: uppercase;
}
h2 {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
}
h3 {
  color: #666;
  font-weight: bold;
  font-size: 14px;
}
h4 {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  color: #000;
}
audio {
  display: none;
}
.radiobutton {
  position: relative;
  width: 80px;
}
.radiobutton:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.radiobutton span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  border-radius: 100%;
  border: 6px solid #fff;
}
.radiobutton span:hover {
  border: 6px solid #ccc;
}
.radiobutton.play span {
  background-image: url('../images/play.png');
  transform: rotate(0deg);
}
.radiobutton.pause span {
  background-image: url('../images/pause.png');
  transform: rotate(0deg);
}
/* Container */
.container {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
nav {
  overflow: hidden;
}
nav ul {
  background-color: #c0c0c0;
  white-space: nowrap;
  font-size: 0px;
}
nav ul li {
  list-style: none;
  display: inline-block;
}
nav ul li a {
  display: block;
  padding: 15px 25px;
  font: bold 13px/1 Roboto;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  border-right: 1px dotted rgba(0,0,0,0.1);
}
nav ul li a:hover {
  background: #eee;
  color: #000;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
nav ul li a.current {
  background: #fafafa;
  color: #000;
  position: relative;
  z-index: 2;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
}
header {
  padding: 10px 15px;
  background: #e0e0e0;
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}
header h4 {
  padding-bottom: 10px;
}
header .button {
  display: block;
  background: #aaa url(../images/mic.png) no-repeat center 15px;
  background-size: 30px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  width: 80px;
  position: relative;
  box-shadow: inset 0px 0px 12px rgba(0,0,0,0.2);
}
header .button:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
header .button a, header .button span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 50px;
  color: #fff;
}
header .button:hover {
  background-color: #000;
  color: #fff;
}
header .offair, header .offrequests, header .offmessages {
  background-image: url(../images/delete.png);
}
header .onrequests {
  background-image: url(../images/song.png);
}
header .logout {
  background-image: url(../images/logout.png);
}
header .circle {
  width: 80px;
  margin-top: 0px;
}
header .circle span, header .circle span:hover {
  background-color: #aaa;
  border: 5px solid #aaa;
  box-shadow: none;
}
header .circle cite {
  background-color: #aaa;
  opacity: 1;
  bottom: 0;
}
[class*="adminbar"] {
  float: left;
  border-right: 1px dotted #d0d0d0;
  height: 110px;
  margin-right: 10px;
  padding-right: 10px;
}
.adminbar-current, .adminbar-radiobutton, .adminbar-livestatus, .adminbar-requeststatus, .adminbar-logout {
  width: auto;
}
.adminbar-selectdj, .adminbar-message {
  width: 250px;
}
.adminbar-logout {
  float: right;
  border: 0;
  padding: 0;
}
.circle, .square {
  position: relative;
  width: 100%;
}
.circle:after, .square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.circle span, .square span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  transition: 0.2s all ease-out;
}
.circle span {
  border-radius: 100%;
}
.circle span:hover, .square span:hover {
  box-shadow: 0px 0px 12px rgba(0,0,0,0.5);
}
.circle cite, .square cite {
  opacity: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  background: #f90;
  z-index: 3;
  width: 100%;
  padding: 8% 0%;
  border-radius: 4px;
  font: normal 9px/1 Roboto;
  text-align: center;
  color: #000;
  transition: 0.1s all ease-out;
}
.circle:hover cite, .circle.live cite, .square:hover cite, .square.live cite {
  opacity: 1;
}
.heyfmlogo {
  height: 100px;
  background: url(http://97-1fmcasablanca.net/logo2.png) no-repeat center center;
  background-size: contain;
  margin: 10px auto;
}
.mainpanel {
  background: #fafafa;
  padding: 25px;
}
.panel {
  display: block;
  background: #e0e0e0;
  color: #555;
}
.item {
  padding: 15px;
  border-top: 1px dotted #fff;
  font-size: 12px;
}
.item .content {
}
.item.current {
  background-color: #fff;
  box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.6);
  margin: 0px -10px 20px;
  border: 5px solid #eee;
  border-radius: 5px;
}
.item .menu {
  box-shadow: inset 0px -5px 15px -5px rgba(0,0,0,0.3);
  margin: -16px 0 0;
  border-radius: 0 0 5px 5px;
  background-color: #f0f0f0;
}
.item .menu input[type=submit] {
  float: left;
  display: block;
  width: auto;
  background-color: rgba(255,255,255,0);
  color: #444;
  padding: 8px 15px;
  border: 0;
  border-radius: 0 0 5px 5px;
  margin: 0;
}
.item .menu input[type=submit]:hover {
  background-color: rgba(255,255,255,0.9);
  box-shadow: 0px 3px 10px rgba(0,0,0,0.25);
  color: #000;
}
.item input,  .item textarea,  .item select {
  margin-bottom: 10px;
}
input[type=submit].deleteButton {
  display: block;
  float: right;
  background: #777 url(../images/delete.png) no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 25px;
  border: 3px solid #777;
  border-radius: 100%;
}
input[type=submit].deleteButton:hover {
  border-color: #000;
  background-color: #000;
}
.rsitem {
  display: none;
  opacity: 0;
}
#rsmore {
  padding: 12px 12px 0;
  margin: 0 -10px;
  display: none;
}
#rsmore h4 {
  font: 12px/1 Roboto;
  color: #aaa;
}
#rsmore span {
  font-weight: bold;
}
.newrequest {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.oldrequest {
  opacity: 1;
  display: block;
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.chatbox {
  height: 680px;
}
.avatar {
  width: 70px;
  float: left;
  padding-right: 2%;
  position: relative;
}
.avatar .circle span,  .avatar .square span {
  border: 5px solid #bbb;
}
.avatar.live::after {
  content: '';
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  background: #f90 url(../images/mic.png) no-repeat center center;
  background-size: 60%;
  z-index: 2;
  border-radius: 100%;
}
.avatar.live .circle span,  .avatar.live .square span {
  border: 5px solid #f90;
}
.notes textarea {
  height: 250px;
}
#notebin .item
{
  display:  none;
}

#notebin .item.shownote
{
  animation-name: fadeIn;
  animation-duration: 0.5s;
  display:  block;
}
footer {
  margin-top: 15px;
  padding: 20px;
  font: 11px/1 Roboto;
  text-align: center;
  background-color: #000;
}
