/**
/*  Preloader
/* ==========================================*/
#preloader {
    background-color: rgba(255, 255, 255, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/*Battery*/
.loder-box {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1px;
  height: 100px;
  left: 50%;
  margin-left: -64px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 128px;
}

.battery{
    width: 70px;
    height: 28px;
    top: 35%;
    border: 1px #2E2E2E solid;
    border-radius: 2px;
    position: relative;
    -webkit-animation: charge 3s linear infinite;
       -moz-animation: charge 3s linear infinite;
            animation: charge 3s linear infinite;
    margin: 0 auto;
}

.battery:after {
  background-color: #2E2E2E;
  border-radius: 0 1px 1px 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -5px;
  top: 7px;
  width: 3px;
}

@-webkit-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@-moz-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

.btn.btn-Mcount{
  float:right;
  margin:-5px;
  font-weight:700;
  font-size: 12px;
}

.AddSender{
  padding: 10px;
  margin-left: 10px;
  color: #000;
  border-top-width:5px; 
  border-right-width:5px; 
  border-bottom-width:5px; 
  border-left-width:5px;
  border:dashed;
  border-color: #999;
}
.AddSender p{
  padding: 3px;
  margin: 0;
  
}


