/*
  03
  Preloader
*/
#loader {

    filter:alpha(opacity=70); 
  -moz-opacity:0.7; 
  -khtml-opacity: 0.7; 
  opacity: 0.7; 
  
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    text-align: center;
    background-color: white;
  }
  #mask {
    position: relative;
    height: 30px;
    width: 50px;
    margin: 0 auto;
  }
  #mask span {
    display: block;
    bottom: 0px;
    left: 0;
    width: 1px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    -webkit-animation: preloader 1.5s infinite ease-in-out;
    animation: preloader 1.5s infinite ease-in-out;
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  #mask span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
  }
  #mask span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
  }
  #mask span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
  }
  #mask span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
  }

  .centrize {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    position: relative;
  }

  .v-center {
    display: table-cell;
    vertical-align: middle;
  }



  pre {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #dae1e8;
    border-radius: 8px;
    /*background-color: white;*/
    background-color: #f5fef3;
    display: block;
    white-space: pre-wrap;
    word-break:break-all;
    
}
del {
text-decoration: none;
color: #b30000;
background: #fadad7;
}
ins {
background: #eaf2c2;
color: #406619;
text-decoration: none;
}
#settings label{font-size: 1rem;}
