/* fontawesome */

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: local('Roboto Black'), local('Roboto-Black'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBBc9.ttf) format('truetype');
}

body {
    font-family: 'Roboto';
}

p {
    font-weight: 400;
    font-size: 100;
}

h1 {
    text-align: center;
    font-weight: 300;
    color: #555;
    text-transform: uppercase;
}

.container {
    width: 85%;
    margin: 0 auto;
    position: relative;
}

.alert {
    display: none;
    box-shadow: inset 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    max-height: 0px;
}

.alert.open {
    max-height: 80px;
    min-height: 80px;
    display: block;
    text-align: center;
}

.alert p {
    padding: 0;
    text-align: center;
}

.alert span.close {
    float: right;
    font-size: 1.5em;
    position: relative;
    top: 0.12em;
}

.alert span.close:hover {
    color: #2b8c46;
}

.alert span.icon {
    margin-right: 0.5em;
    font-size: 1.5em;
    position: relative;
    top: 0.12em;
}

.alert.success {
    background: #000051;
    color: #fff;
    margin: 5px;
}

.instruction {
    width: 420px;
    margin: 1em auto;
    text-align: center;
    color: #999;
    line-height: 1.5em;
}

.instruction a.button {
    display: block;
    clear: both;
    width: 65%;
    padding: 1em;
    text-align: center;
    border: 1px solid #ccc;
    margin: 1em auto;
    border-radius: 0.5em;
}

.instruction a.button:hover {
    background: #eaeaea;
    border: 1px solid #c4c4c4;
}

.instruction a.button:active {
    background: #dddddd;
}


/* Style all font awesome icons */

.fa {
    padding: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}


/* Add a hover effect if you want */

.fa:hover {
    opacity: 0.7;
}


/* Set a specific color for each brand */


/* Twitter */

.fa-twitter {
    background: #55ACEE;
    color: white;
    font-size: 48px;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
    font-size: 48px;
}

.fa-github {
    background: #000;
    color: white;
    font-size: 48px;
}

body {
    background-color: #222;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#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;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}