html {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    background-color: #444444;
    background-image: url("/images/new.png");
    background-repeat: repeat-x;
    background-position: bottom;
    min-height: 100%;
    height:100%;
    font-family: 'Heebo', sans-serif;
    font-size: 1.5rem;
    color: #fafafa;
    margin: 0;
    padding: 0;
    padding-bottom: 0px;
    overflow-x: hidden;

}

#root {
    min-height: 100%;
}

.ul-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style-type: none;
    padding:0;
}
.li-menu-item {
    display: inline-flex;
    margin: 5px 10px;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.5s linear 0s;
    flex-grow: 1;
    text-align: center;
}
.li-menu-item:hover{
    background-color: rgba(255,255,255,0.95);
}

.li-menu-item a{
    display: block;
    width: 100%;
    padding: 10px;
    color: #f7f7f7;
    text-decoration: none;
    transition: all 0.5s linear 0s;
    text-transform: uppercase;
}

.li-menu-item:hover a{
    color: #121212;
}

.biglogo {
    display: flex;
    justify-content: center;
}
.biglogo:only-child {
    display: inline-block;
}

/************ WRAPPER *************/

.page-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-content {
    flex-grow: 1;
}
/********* FORM BLOCK ***********/

.page-content {

}

.input-icon {
    position: absolute;
    color: #444;
    display: inline-block;
    right: 5px;
    top:5px;
}

.form-block {
    max-width: 60%;
    min-width: 360px;
    margin: 0 auto;
    padding-top: 10rem;
}

.form-block .form-control {
    font-family: 'Arial', sans-serif;
}
/************ HEADINGS*************/

.page-header{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(1.25);
}

.page-header .page-title {
    font-size: 4rem;
    font-weight: normal;
    display: block;
    text-align: center;
}

.page-header .page-subtitle {
    display: inline-block;
    font-size: 1.4rem;
    text-align: left;
    align-self: flex-end;
    padding-bottom: 0.95rem;
    white-space: pre-wrap;
}
.page-header .page-subtitle p {
    margin: 0;
}

/*************END HEADINGS************/

/************LOADING**************/

.loading {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
}

.loading-box {
    display: block;
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto
}

.loading-icon {
    display: inline-block;
    width: 0px;
    height: 0px;
    margin: 0;
    position: absolute;
}
.loading-icon:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading-ring 1.8s linear infinite;
}

.loading-icon2 {
    display: inline-block;
    width: 0px;
    height: 0px;
    margin: 7px;
    position: absolute;
}
.loading-icon2:after {
    content: " ";
    display: block;
    width: 48px;
    height: 48px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading-ring-back 1.2s linear infinite;
}

.loading-icon3 {
    display: inline-block;
    width: 0px;
    height: 0px;
    margin: 15px;
    position: absolute;
}
.loading-icon3:after {
    content: " ";
    display: block;
    width: 32px;
    height: 32px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading-ring 0.6s linear infinite;
}
@keyframes loading-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading-ring-back {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}


/************ LOADING END**************/



/************ MEDIA QUERIES**********/

@media screen and (max-width: 800px) {
    .ul-menu {
        flex-wrap: wrap;
    }
    .li-menu-item {
        flex-basis: 100%;
    }
    .biglogo img {
        width: 100%;
        height: auto;
    }
}
