@charset "utf-8";

/* CSS Document */

@import url(http://weloveiconfonts.com/api/?family=fontawesome);
@import url(http://fonts.googleapis.com/css?family=Raleway);
@import url(http://fonts.googleapis.com/css?family=Roboto:100);
@import url(http://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.css);
body {
    overflow-x: hidden;
    background-attachment: fixed;
    font-family: Arial !important;
    box-sizing: border-box;
    background-image: url(../images/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

@keyframes background {
    0% {
        background: #44619c;
    }
    25% {
        background: #9c4444;
    }
    50% {
        background: #4c449c;
    }
    75% {
        background: #449c76;
    }
    100% {
        background: #44619c;
    }
}

@-webkit-keyframes background {
    0% {
        background: #44619c;
    }
    25% {
        background: #9c4444;
    }
    50% {
        background: #4c449c;
    }
    75% {
        background: #449c76;
    }
    100% {
        background: #44619c;
    }
}

@keyframes color {
    0% {
        color: #2f487b;
    }
    25% {
        color: #712828;
    }
    50% {
        color: #373077;
    }
    75% {
        color: #245d44;
    }
    100% {
        color: #2f487b;
    }
}

@-webkit-keyframes color {
    0% {
        color: #2f487b;
    }
    25% {
        color: #712828;
    }
    50% {
        color: #373077;
    }
    75% {
        color: #245d44;
    }
    100% {
        color: #2f487b;
    }
}


/* ---------- LOGIN-FORM ---------- */


/* ---- Logout Button -------- */

.button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 26px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 15px;
}

.button5 {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid #fff;
}

.lstudent {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.lstudent:hover {
    background-color: rgba(0, 0, 0, 0);
}

.header-user-dropdown {
    box-shadow: 0 2px 2px -2px #000;
    padding: 20px 40px;
    height: 80px;
    color: #ffffff;
    box-sizing: border-box;
}

.header-user-dropdown .header-limiter {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}


/* Logo */

.header-user-dropdown .header-limiter h1 {
    font: normal 28px Cookie, Arial, Helvetica, sans-serif;
    line-height: 40px;
    margin: 0;
}


/* The header links */

.header-user-dropdown .header-limiter a {
    color: #ffffff;
    text-decoration: none;
}

.header-user-dropdown .header-limiter nav {
    font: 16px Arial, Helvetica, sans-serif;
    line-height: 40px;
    float: left;
    margin: 0 0 0 60px;
    padding: 0;
}

.header-user-dropdown .header-limiter nav a {
    font-size: 14px;
    display: inline-block;
    padding: 0 12px;
    opacity: 0.9;
    position: relative;
    text-decoration: none;
    line-height: 1;
}

.header-user-dropdown .header-limiter nav a:hover {
    opacity: 1;
}


/* The "new" badge */

.header-user-dropdown .header-limiter nav a span {
    position: absolute;
    top: -12px;
    border-radius: 2px;
    background-color: #2A6A92;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    height: 13px;
    font-size: 11px;
    right: -15px;
    padding: 1px 4px 0;
}


/* The user menu */

.header-user-dropdown .header-limiter .header-user-menu {
    position: relative;
    float: right;
    z-index: 1;
    width: 85px;
    height: 50px;
    border-radius: 2px;
}

.header-user-dropdown .header-limiter .header-user-menu:before {
    content: '';
    width: 0;
    height: 0;
    top: 18px;
    left: 15px;
    position: absolute;
    border: 5px solid transparent;
    border-top-color: #fff;
}

.header-user-dropdown .header-limiter .header-user-menu ul {
    display: none;
    font: bold 13px Arial, Helvetica, sans-serif;
    background-color: inherit;
    list-style: none;
    position: absolute;
    text-align: center;
    width: 125px;
    top: 25px;
    right: 0;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.header-user-dropdown .header-user-menu:active ul,
.header-user-dropdown .header-user-menu:hover ul,
.header-user-dropdown .header-user-menu.show ul {
    display: block;
}

.header-user-dropdown .header-user-menu ul li {
    padding: 5px;
}

.header-user-dropdown .header-user-menu ul li a:hover {
    opacity: 0.9;
}

.header-user-dropdown .header-user-menu ul li a.highlight {
    color: #e9ac09;
}

.header-user-dropdown .header-user-menu img {
    border-radius: 50%;
    position: absolute;
    top: 6px;
    max-width: 35px;
    right: 10px;
}

@media all and (max-width: 800px) {
    .header-user-dropdown .header-limiter h1 {
        font-size: 24px;
    }
    .header-user-dropdown .header-limiter nav a {
        padding: 0 5px;
    }
    .header-user-dropdown .header-limiter nav {
        margin-left: 20px;
    }
}

@media all and (max-width: 600px) {
    .header-user-dropdown .header-limiter nav {
        display: none;
    }
}

.overlay-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    z-index: 3;
    /* high z-index */
    background: #000;
    /* fallback */
    background: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    overflow: hidden;
    display: none;
    background: rgba(0, 0, 0, 0);
    padding: 1%;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    min-height: 10em;
    margin-right: auto;
    margin-left: auto;
    cursor: default;
    z-index: 4;
    border-radius: 4px;
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000;
}

.close-btn {}

.close-btn1 {}


/* ---------- LOGIN-FORM ---------- */

.flat-form {
    height: 330px;
}

.tabs {
    background-color: transparent;
    height: 40px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.tabs li {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
}

.tabs a {
    background: rgba(0, 0, 0, 0.4);
    display: block;
    float: left;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 22px 12px 22px;
    /*border-right: 1px solid @tab-border;*/
}

.tabs li:last-child a {
    border-right: none;
    width: 160px;
    padding-left: 0;
    font-weight: bold;
    padding-right: 0;
    text-align: center;
}

.tabs a.active {
    background-color: transparent;
    color: #000000;
    font-weight: 900;
    border-right: none;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.form-action {
    padding: 0 20px;
    position: relative;
    color: #fff;
}

.form-action h1 {
    font-size: 42px;
    padding-bottom: 0;
}

.form-action p {
    font-size: 12px;
    padding-bottom: 0;
    line-height: 25px;
    width: 380px;
    font-weight: 0 !important;
}

.form-action ul {
    list-style-type: none;
}

form {
    padding-right: 20px !important;
}

form input[type=text],
form input[type=password],
form input[type=submit] {
    font-family: Arial, Helvetica, sans-serif;
}

form input[type=text],
form input[type=password] {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    color: #fff;
    outline: none;
    border: 1px solid #fff;
}

.dark-box {
    background: #ffffff;
    box-shadow: 1px 3px 3px #ffffff inset;
    height: 40px;
    width: 50px;
}

.form-action .dark-box.bottom {
    position: absolute;
    right: 0;
    bottom: -24px;
}

.tabs+.dark-box.top {
    position: absolute;
    right: 0;
    top: 0px;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.aabutton {
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    height: 40px;
    width: 80px;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.aabutton:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    /*box-shadow: 0 3px 1px #237bb2;*/
}

.aabutton:active {
    background-color: transparent;
    color: #ffffff;
    /*box-shadow: 0 3px 1px #0f608c;*/
}

.aabutton:focus {
    outline: 0;
}

::-webkit-input-placeholder {
    color: #fff;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

:-ms-input-placeholder {
    color: #fff;
}