/* Loading message ------------------------------------------------------------------------------ */
#loading {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    z-index: 1200;
}
#loading_container2 {
  width: 100%;
  height: 100%;
  display: table;
}

#loading_container3 {
  display: table-cell;
  vertical-align: middle;
}

#loading_container4 {
  width: 350px;
  height: 250px;
  position: relative;
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: #666;
  padding: 165px 0 0 0;
   -webkit-box-sizing: border-box;
  -moz-box-sizing:     border-box;
  box-sizing:          border-box;
  -webkit-border-radius: 6px;
  -moz-border-radius:    6px;
  border-radius:         6px;
  margin: 0 auto 0 auto;
}
    #loading_container4:before {
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        font-family: 'FontAwesome', Arial, Helvetica, sans-serif;
        font-weight: normal;
        font-size: 4rem;
        line-height: 4rem;
        text-align: center;
        color: #807b7a;
        content: '\f013';
        -webkit-animation: spin 2s infinite linear;
        animation: spin 2s infinite linear;
    }

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

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