.notepanel{
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    background-color: rgb(30,76,151);
    animation-name: fadein;
    animation-duration: 2s;
    animation-iteration-count: 1;
    z-index: 99;
}
@keyframes fadein {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.notepanel p a{
    color: #FFF;
}
.notepanel .inner {
    max-width: 1000px;
    margin: 0px auto;
    position: relative;
    color: #FFF;
}
.notepanel .inner p {
    font-size: 12px;
    line-height: 2em;
    padding: 10px 10px;
    color: #FFF;
    width: 100%;
}

.notepanel .inner #analytics_btm {
    cursor: pointer;
    background-color: #FFF;
    color: #353535;
    padding: 6px;
    font-size: 12px;
    text-decoration: none;
    float: right;
    margin-top: 0;
}

.notepanel .inner #analytics_close{
  position:absolute;
  display:inline-block;
  top:-15px;
  right:0px;
  width:32px;
  height:32px;
  border:0;
  background-color:#353535;
  border-radius:32px;
  margin:0;
  padding:0;
  transform:scale(0.5);
  cursor:pointer;
}
.notepanel .inner #analytics_close:before{
  content:"";
  position:absolute;
  display:inline-block;
  top:4px;
  left:13px;
  width:6px;
  height:24px;
  border:0;
  margin:0;
  padding:0;
  background-color:#FFF;
  -moz-transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
}
.notepanel .inner #analytics_close:after{
  content:"";
  position:absolute;
  display:inline-block;
  top:4px;
  left:13px;
  width:6px;
  height:24px;
  border:0;
  margin:0;
  padding:0;
  background-color:#FFF;
  -moz-transform:rotate(-45deg);
  -webkit-transform:rotate(-45deg);
  transform:rotate(-45deg);
}
.notepanel .inner #analytics_close:hover{
  background-color:#FFF;
}
.notepanel .inner #analytics_close:before:hover{
  background-color:#353535;
}
.notepanel .inner #analytics_close:after:hover{
  background-color:#353535;
}

.notepanel.close{
  display: none;
}
