* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  background-image: url(../img/background.png);
  background-repeat: repeat-x;
  background-position: top;
  margin: 0;
  padding: 0;
  overflow-x: hidden; }

p, h1, h2, h3, h4, input, button, li, a {
  font-family: futura-pt; }

.logo {
  display: block; }

.img-cont img {
  max-height: 100%;
  max-width: 100%; }
.img-cont .page-bg {
  position: absolute;
  top: 10vw;
  right: 14vw;
  z-index: 1; }

.grid-cont {
  max-width: 1140px;
  margin: 0 auto;
  width: 95%;
  overflow: hidden;
  display: block;
  z-index: 1;
  margin-top: 10px; }

.file-tree-cont {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  opacity: 0;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background: gray;
  padding: 10px;
  height: 100vh;
  width: 250px; }
  .file-tree-cont a {
    color: white; }
  .file-tree-cont li {
    color: white; }
  .file-tree-cont h1 {
    line-height: 0;
    color: white;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #838383;
    font-size: 40px;
    padding-bottom: 5px; }
  .file-tree-cont.active {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1); }
  .file-tree-cont .file-tree {
    margin: 0;
    padding: 0; }
    .file-tree-cont .file-tree i {
      padding-right: 10px;
      color: #ed3023;
      font-size: 25px;
      color: white; }
      .file-tree-cont .file-tree i.open-folder {
        font-size: 30px;
        color: #ed3023; }
    .file-tree-cont .file-tree li {
      font-size: 22px;
      padding-bottom: 10px;
      list-style-type: none; }
      .file-tree-cont .file-tree li a {
        text-decoration: none;
        font-size: 20px; }
      .file-tree-cont .file-tree li ul li:hover {
        color: #ed3023; }
    .file-tree-cont .file-tree a:hover {
      cursor: pointer;
      color: #ed3023; }
    .file-tree-cont .file-tree .directory ul {
      height: 0;
      -webkit-transition: all .3s ease-in;
      -o-transition: all .3s ease-in;
      transition: all .3s ease-in;
      opacity: 0;
      -webkit-transform-origin: left;
      -ms-transform-origin: left;
      transform-origin: left;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0); }
      .file-tree-cont .file-tree .directory ul.active {
        opacity: 1;
        height: auto;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }
    .file-tree-cont .file-tree .directory i {
      color: white;
      padding-right: 5px; }
    .file-tree-cont .file-tree .directory li {
      font-size: 18px;
      padding: 10px 0 0 10px; }
    .file-tree-cont .file-tree .directory:hover {
      cursor: pointer; }
    .file-tree-cont .file-tree .directory .directory-icon {
      color: #ed3023; }

.login-cont {
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  opacity: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  position: relative;
  z-index: 100; }
  .login-cont.active {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1); }
  .login-cont .login-error {
    margin: 30px 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    padding: 0;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    width: 30%; }
    .login-cont .login-error.active {
      -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
      transform: scaleY(1);
      border: 2px solid #ed3023;
      padding: 10px; }
    .login-cont .login-error p {
      text-align: center;
      color: #ed3023;
      line-height: 1.3; }
  .login-cont h1 {
    text-align: center; }

.post-login {
  display: none; }
  .post-login p {
    width: 45%;
    font-size: 20px; }
  .post-login a {
    color: #ed3023;
    text-decoration: none;
    display: inline-block; }
    .post-login a:hover {
      text-decoration: underline; }

.logout {
  border: 0;
  display: block;
  margin: 40px 0 0;
  background: #ed3023;
  padding: 10px;
  color: white;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 200px;
  text-align: left;
  font-size: 25px;
  margin-bottom: 20px; }
  .logout:hover {
    background: #3c3c3c;
    color: white;
    cursor: pointer; }

.page-wrapper.push {
  transition: all .5s ease-in-out;
  margin-left: 250px; }

.content {
  min-height: calc(100vh - 160px); }

input[type='text'], input[type='password'] {
  width: 30%;
  border: 1px solid #c0c0c0;
  padding: 5px;
  margin-bottom: 10px;
  color: #3c3c3c;
  display: block;
  font-size: 25px;
  font-weight: bold; }

input[type='submit'] {
  border: 0;
  display: block;
  margin: 40px 0 0;
  background: #ed3023;
  padding: 10px;
  color: white;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 200px;
  text-align: left;
  font-size: 25px; }
  input[type='submit']:hover {
    background: #3c3c3c;
    color: white;
    cursor: pointer; }

footer {
  background: #bbb;
  width: 100%;
  padding: 20px 0 50px;
  position: relative;
  height: 150px; }
  footer p {
    clear: left;
    padding-top: 10px;
    color: #838383; }
  footer:after {
    content: "";
    display: table;
    clear: both; }
  footer.push {
    right: 0; }
  footer .footer-gradall-logo {
    float: left; }
  footer .footer-ima-logo {
    float: right; }

@media screen and (max-width: 1000px) {
  .grid-cont .post-login p {
    width: 100%; } }
@media screen and (max-width: 768px) {
  .page-bg {
    display: none; }

  .grid-cont {
    width: 95%; }
    .grid-cont .file-tree-cont {
      position: initial;
      border-right: 0;
      width: 100%;
      -webkit-transform-origin: top;
      -ms-transform-origin: top;
      transform-origin: top;
      -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
      transform: scaleY(0);
      height: 0;
      margin: 40px 0; }
      .grid-cont .file-tree-cont.active {
        opacity: 1;
        height: auto;
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1); }
    .grid-cont input[type='text'] {
      width: 50%; }
    .grid-cont .login-cont .login-error {
      width: 100%; }
    .grid-cont .post-login p {
      width: 100%; }

  footer {
    width: 100% !important; }

  .page-wrapper.push {
    margin-left: 0; } }
@media screen and (max-width: 600px) {
  .grid-cont input[type='text'], .grid-cont input[type='password'] {
    width: 100%; }

  footer {
    height: auto; }
    footer p {
      clear: both; } }

/*# sourceMappingURL=style.css.map */
