body {
    margin: 0;
    padding: 0;
    background-color: #191919;
    font-family: Ubuntu, sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
}

.b-page-loader-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #191919;
    z-index: 10000;
}
.b-page-loader {
    position: fixed;
    top: 25%;
    left: 50%;
    width: 80%;
    margin-left: -40%;
    text-align: center;
    z-index: 10001;
}

.b-page-loader__logo {
    display: block;
    width: 250px;
    height: 60px;
    margin: 0 auto;
}

.b-page-loader__text {
    font-size: 16px;
    color: #AAA;
    margin: 15px 0;
}

.b-page-loader__reload {
    margin-top: 20px;
    display: none;
}

.b-progress {
    width: 100%;
    height: 7px;
    background-color: #FFF;
    position: relative;
}

.b-progress__bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 7px;
    background-color: #87a8ff;
    transition: .5s width ease;
}

.b-btn {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 3px;
    border-width: 2px;
    border-style: solid;
    transition: 0.3s;
    cursor: pointer;
    margin: 0px;
    font-weight: 700;
    font-family: Ubuntu, sans-serif;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    background-image: none;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -moz-tap-highlight-color: rgba(0,0,0,0);
}

.b-btn:hover {
    text-decoration: none;
}

.b-btn_grey {
    color: #CCC;
    background-color: #434345;
    border-color: #434345;
}

.b-btn_grey:hover {
    color: #FFFFFF;
    background-color: #555;
    border-color: #434345;
}

.b-btn_primary {
    color: #FFFFFF;
    background-color: #42B574;
    border-color: #42B574;
}

.b-btn_primary:hover {
    color: #FFFFFF;
    background-color: #55BBEB;
    border-color: #55BBEB;
}

.g-error {
    color: #FB0;
}

.b-page-loader__fail {
    display: none;
}
