/* General Fonts */
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

/* Loader Content */
.loaderStart {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1010;
}

.loaderInner {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
    line-height: 0;
}

.logoIntro {
    width: 10%;
    position: absolute;
    top: 13%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.loaderBar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    padding: 0;
}

.loadBar {
    width: 0;
    height: 100%;
    background-color: #04dfc8;
    padding: 0;
    position: relative;
    transition: all .1s ease;
}

.titleLoad {
    font-family: 'Quicksand', sans-serif;
    color: #04dfc8;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35%;
    text-align: center;
    margin: auto;
}

.barLeft , .barRight {
    background-color: #ffffff;
    position: absolute;
    height: 100%;
}

.barLeft {
    width: 50%;
    top: 0;
    left: 0;
}

.barRight {
    width: 50%;
    top: 0;
    right: 0;
}
/*  */

/* Responsive */
@media screen and (max-width: 992px) {
    .logoIntro {
        width: 11%;
    }

}

@media screen and (max-width: 600px) {
    .logoIntro {
        width: 25%;
    }

    .titleLoad {
        font-size: 1.5em;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .logoIntro {
        width: 10%;
    }

    .titleLoad {
        bottom: 25%;
    }
}

@media screen and (max-height: 400px) and (orientation: landscape) {
    .logoIntro {
        width: 8%;
    }
}
/*  */
