body::-webkit-scrollbar{
    display: none;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

body.loaded #loader {
    -webkit-animation: none;
    animation: none;
}

body.loaded #loader:after, body.loaded #loader:before {
    -webkit-animation: none;
    animation: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 200;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.block {
    margin: 0 -50% 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
}

.modal-login,
.modal-signup {
    position: relative;
    margin: 6rem auto;
    padding: 20px;
    max-width: 24rem;
    background-color: #fff;
    border-radius: .2rem;
    box-shadow: 0 0.5rem 0.8rem rgba(0,0,0,.15)
}

.has-success input,
.has-success select {
    background: aliceblue;
    border-color: #1ba203;
}

.has-error input,
.has-error select {
    background: #ffffff;
    border-color: #856404;
}

.has-error .help-block {
    font-size: 14px;
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    padding: 6px;
}

.form-control {
    border-radius: 0;
}