/* Beautiful loading screen */
#loadingWrap{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: 250;
    background-color: rgba(255, 255, 255, 0.46);
}

/*

z-index: 10;
      position: absolute;
      right: 20px;
      bottom: 20px;
      line-height: 0px;
      background: url(../1-0.gif) no-repeat center center;
      width: 20px;
      height: 20px;

*/

.loader {
    position:absolute;
    top: 50%;
    left:50%;
    margin-left: -60px;
    margin-top: -60px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

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

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

/*
.glyphicon.spin {
    font-size: 36px;
    -webkit-animation: spin 1.822s infinite linear;
    -moz-animation: spin 1.822s infinite linear;
    -o-animation: spin 1.822s infinite linear;
    animation: spin 1.822s infinite linear;
    -webkit-transform-origin: 50% 58%;
    transform-origin:50% 58%;
    -ms-transform-origin:50% 58%; /* IE 9 *//*
    line-height: 0px;
}

@-moz-keyframes spin {
    from {    -moz-transform: rotate(0deg);  }
    to {    -moz-transform: rotate(360deg);  }
}

@-webkit-keyframes spin {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to {transform: rotate(360deg); }
}
#loadingIcon {
    z-index: 10;
    position: absolute;
    right: 20px;
    bottom: 20px;
    line-height: 0px;
}

*/