
@font-face {
    font-family: 'DINOT';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/dinot/DINOT.woff') format('woff');
    /*src: url('webfont.eot');*/ /* IE9 Compat Modes */
    src: /*url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    /*url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../fonts/dinot/DINOT.woff') format('woff'); /* Pretty Modern Browsers */
    /*url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
    /*url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}


@font-face {
    font-family: 'DINWeb-Light';
    src: url("../../fonts/DINWeb/DINWeb-Light.eot");
    src: url("../../fonts/DINWeb/DINWeb-Light.woff") format("woff"), 
        url("../../fonts/DINWeb/DINWeb-Light.eot?#iefix") format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'DINWeb' ;
    src: url("../../fonts/DINWeb/DINWeb.eot");
    src: url("../../fonts/DINWeb/DINWeb.woff") format("woff"), 
        url("../../fonts/DINWeb/DINWeb.eot?#iefix") format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
}



html, body, .body-content {
    font-family: 'DINOT', 'DINWeb';
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

#preloader {
    background-color: rgba(255,255,255,0.4) !important;
    position: absolute;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: initial;
    right: initial;
    z-index: 9999
}

 
#status {
    width: 180px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
    font-size: larger;
    font-weight: 600
}

@-webkit-keyframes bouncing-loader {
    to {
        opacity: .1;
        -webkit-transform: translate3d(0,-16px,0);
        transform: translate3d(0,-16px,0)
    }
}

@keyframes bouncing-loader {
    to {
        opacity: .1;
        -webkit-transform: translate3d(0,-16px,0);
        transform: translate3d(0,-16px,0)
    }
}

.bouncingLoader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .bouncingLoader > div {
        width: 13px;
        height: 13px;
        margin: 32px 3px;
        background: #3b73da;
        border-radius: 50%;
        -webkit-animation: bouncing-loader .6s infinite alternate;
        animation: bouncing-loader .6s infinite alternate
    }

        .bouncingLoader > div:nth-child(2) {
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
            background: #f64f69
        }

        .bouncingLoader > div:nth-child(3) {
            -webkit-animation-delay: .4s;
            animation-delay: .4s;
            background: #2bc3a5
        }
