body{background:url(bg.jpg) no-repeat; background-size:cover; }

.form-control{    background-color: #3e841a; color:#fff;}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


.loading {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
    display: inline-block;
    top: 50%;
    position: absolute;
    margin-top: -12px;
    margin-left: -12px;
}

#loader{
            height: 100%;
    width: 100%;
    position: absolute;
    text-align: center;
    z-index: 100;
    background: rgba(0,0,0,0.9);
display:none;
}

.tiles {
    border-top: 1px solid #ccc;
    margin-top: 15px;
    padding-top: 5px;
    margin-bottom: 0;
}

.tile {
    overflow: hidden;
}

.top_tiles {
    margin-bottom: 0;
}

.top_tiles .tile span {
font-size: 16px;
    font-weight: normal;
}

.top_tiles .tile h2 {
    font-size: 20px;
    line-height: 20px;
    margin: 3px 0 7px;
    font-weight: bold;
}


