html, body{
    margin: 0;
    width:100%;
    height:100%;
    font-family: 'Roboto', sans-serif;
}

#miniViewContainer{
    position:absolute;
    width:100%;
    height:100vh;
    top:0px;
    left:0px;
    background-color:white;
 }
 
 #header{
    position: relative;;
    width:100%;
    height:460px;
    top:0px;
    left:0px;
    background-color:#22282c;
 }
 
 #topBar{
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    width:100%;
    height:70px;
    top:0px;
    left:0px;
    background-color:#000;
 }

 #logo{
   width:180px;
   height:27px;
   background-size: 100% auto;
   background-repeat: no-repeat;
   background-image:url(../img/logo.png);
}
 
 #dropZone{
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   position:absolute;
   width:90%;
   height:325px;
   top:100px;
   left:5%;
   border-width: thin;
   border-radius: 2px;
   border-color: rgba(255, 255, 255, 0.4);
   border-style: dashed;
   transition: all 0.4s;
 }
 #dropZone.over{
   width:94%;
   height:346px;
   top:90px;
   left:3%;
   border-radius: 30px;
   border-color: rgba(255, 255, 255, 1);
   background-color: rgba(54, 125, 167, 0.1);
 }

 #dropZone.dropped{
  width:0%;
  height:80px;
  top:210px;
  left:50%;
  border-color: rgba(255, 255, 255, 0);
  background-color: rgba(54, 125, 167, 0);
}
 
 #downloadBtn{
    position:absolute;
    width:100px;
    height:100px;
    top:0px;
    left:0px;
    background-color:#a0071c;
 }
 
 #uploadIcon{
   pointer-events:none;
    width:64px;
    height:50px;
    background-size: 100% 100%;
    background-image: url(../img/cloud.png);
    transition: opacity 0.4s, margin 0.4s, transform 0.4s;
 }
 #uploadIcon.over{
    margin-top:30px;
    transform: scale(1.3);
   opacity: 0.1;
 }
 #uploadIcon.dropped{
  margin-top:-60px;
  opacity: 0;
}
 #uploadText{
   pointer-events:none;
    width:auto;
    margin-top:10px;
    color:#fff;
    font-size: 19px;
    font-weight: 300;
    transition: opacity 0.4s;
 }
 #uploadText.over{
   opacity: 0;
 }



 #errorBox{
    display: none;
    justify-content: center;
    align-items: center;
    position:absolute;
    border-radius: 10px;
    width:700px;
    height:100px;
    top:212px;
    left:50%;
    margin-left:-350px;
    background-color:#9c5050;
 }

 #errorIcon{
   width: 44px;
   height:40px;
   background-size: 100% 100%;
   background-image: url(../img/erroricon.png);
 }
 
 #errorMsg{
   margin-left:10px;
   color:#fff;
   max-width:520px;
 }
 #errorBox.fixed{
  background-color:#4c92bb;
 }
 #errorIcon.fixed{
  background-image: url(../img/successicon.png);
 }
 #errorBox.nothingwrong{
  background-color:#70a074;
 }
 #errorIcon.nothingwrong{
  background-image: url(../img/successicon.png);
 }




 #introText{
    position: relative;
    margin: 0 auto;
    margin-top:20px;
    margin-bottom:60px;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   width:100%;
   max-width:420px;
   color:#000;
   text-align: center;
 }

 #introTitle{
   margin-bottom: 0px;
   font-size:40px;
 }

 #introSubTitle{
   font-size:19px;
   font-weight: 500;
 }

 #introBody{
   font-size:13px;
   font-weight: 500;
   color:#575757;
 }





#loginContainer{
  position: absolute;
  top:0px;
  display: none;
  flex-wrap: wrap;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}

.errorShake{
  animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-2px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(3px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-5px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(5px, 0, 0);
  }
}


#loginWindow{
  position: relative;
  width: 400px;
  height: 300px;
  display: flex;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  background-color: #22282c;
  background-image: url(../img/dots.png);
  background-repeat: no-repeat;
  background-position: center 40px;
}

#loginWindow a:link, #loginWindow a:hover, #loginWindow a:active, #loginWindow a:visited{
  color: #cdd61f;
  text-decoration: none;
}

#loginTitle{
  font-size: 15px;
  line-height: 19px;
  padding: 0px 30px 0px 30px;
  font-size:13px;
  font-weight: 500;
  color:#fff;
}

#loginUser{
  position: absolute;
  left: 27px;
  bottom: 54px;
  width:220px;
  height:10px;
  border-radius: 9px;
  border:none;
  margin:4px;
  outline: none;
  color:#555;
  font-size: 14px;
  padding:10px 5px;
  line-height:18px;
  text-align: center;
}

#loginBtn{
    width: 90px;
    position: absolute;
    right: 30px;
    bottom:58px;
    transition: left 0.4s, color 0.3s, background-color 0.3s, bottom 0.4s;
    border-radius: 9px;
    height: 30px;
    background-color: #cdd61f;
    border: 0;
    font-size: 14px;
    color: #3d474e;
    font-weight: 400;
    cursor: pointer;
    outline: 0;
}
#loginBtn:hover{
    background-color: #e1eb29;
    color: #31393f;
}

#logs{
   position: relative;
   display: flex;
   flex-wrap: wrap;
   margin-top:40px;
   background-color:#fff;
   
}

.logContainer{
   display: flex;
   flex-direction: column;
   position: relative;
   margin-left:5%;
   margin-bottom: 70px;
   color:#000;
}

.log{

  margin-left: 60px;
   margin-right: 30px;
   margin-bottom: 14px;
   width:340px;
   height:auto;
   color:#666;
}
.log hr{
  border: 0;
  height: 1px;
  margin-top:4px;
  background-color: #ccc;
}
.log span{
  font-size: 13px;
}
.log ul{
  margin-top:10px;
  padding-left:12px;
}
.log ul li{
  font-size: 12px;
}
.log ul li span{
  font-size: 12px;
  color:#d88282;
}
.log ul li span.perfect{
  color:#70a074;
}
.logTitle{

  padding-left: 58px;
  font-size: 24px;
  margin-bottom: -18px;
   height:50px;
   width:auto;
   background-repeat: no-repeat;
   background-size: contain;
   background-image: url(../img/zip-icon.png);
}




#loader{
  position: absolute;
  display:none;
  top:210px;
  left:50%;
  width: 200px;
  height:120px;
  text-align: center;
  margin-left:-100px;
  background-image: url(../img/loader.svg);
  background-repeat: no-repeat;
  background-size: 90px 80px;
  background-position: center top;
  line-height: 190px;
  font-size: 15px;
  color: white;
  bottom:0;
}



@media only screen and (max-width: 945px) {
  #logs{
    justify-content: center;
  }
}