body{
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    position: relative;
    min-height: 100vh;
    padding-top: 10vh;
    padding-bottom: 40px;
    box-sizing: border-box;
    background-color: #FFF;
}
body.np{
    min-height: 100vh;
    padding: 0;
}
.footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.footer-content{
    color: #777;
    font-size: 11px;
    padding: 8px;
}
.footer-content a{
    color: #777;
    text-decoration: none;
}
.footer-content a:hover{
    color: #444;
    text-decoration: underline;
}
.file-drag-window{
    display: none;
}
body.file-drag .file-drag-window{
    pointer-events: none;
    display: block;
    position: fixed;
    top: 0;left: 0;right: 0;bottom: 0;
    outline: dashed 3px rgba(255, 255, 255, 0.28);
    outline-offset: -20px;
}
body.file-drag .file-drag-window .tbl{
    display: table;
    height: 100%;
    width: 100%;
}
body.file-drag .file-drag-window .tbl-txt{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    font-weight: 100;
}
#upload-cancel{
    display: inline-block;
    transform: scale(0);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
#upload-cancel.enabled{
    transform: scale(1);
    display: inline-block;
    padding: 10px 20px;
    border: solid 1px rgba(0, 0, 0, 0.39);
    border-radius: 4px;
    background-color: #FFF;
    cursor: pointer;
    color: #6c6c6c;
    margin: 15px 0;
}
#upload-cancel.enabled:hover{
    color: #FFF;
    background-color: #f83a3a;
    border-color: rgba(0, 0, 0, 0.39);
}
.not-found-body, .download-body, .expired-body{
    display:table;
    min-height:100vh;
    min-width:100%;
    margin:0
}
.not-found-title, .download-content, .expired-content{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    color: #727171;
    font-weight: 400;
}
.not-found-title{
    font-size: 20px;
}
.download-title{
    font-size: 16px;
    font-weight: 400;
}
.download-title span{
    padding-left: 10px;
    color: #777;
    font-size: 12px;
}
.download-content .download-button{
    outline: none;
}
.download-content .download-button button{
    padding: 20px;
    border: solid 1px rgba(0, 150, 230, 0.61);
    border-color: rgba(105, 105, 185, 0.56);
    border-radius: 4px;
    background-color: #FFF;
    margin: 20px 0;
    width: 90%;
    max-width: 200px;
    cursor: pointer;
    font-size: 16px;
    color: #0096e6;
    color: #7575bc;
    outline: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.download-content .download-button:hover button, .download-content .download-button:focus button{
    background-color: #0096e6;
    color: #FFF;
    border-color: rgba(66, 125, 157, 0.77);
}
.download-content .download-button:active button{
    transform: scale(0.95);
    background-color: #097ebc;
}
.download-content a{
    text-decoration: none;
}
.preview-button{
    font-size: 12px;
    text-decoration: none;
    color: #555;
    margin-bottom: 10px;
    cursor: pointer;
    outline: none;

    color: #7575bc;
    margin: 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.preview-button div{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
}
.preview-button div span{
    display: block;
    width: 0%;
    height: 100%;
    margin: 0 auto;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    background-color: rgba(127, 127, 224, 0.51);
}
.preview-button:hover, .preview-button:focus{
    color: #7f7fe0;
}
.preview-button:hover div span, .preview-button:focus div span{
    width: 100%;
}
.download-date{
    font-size: 12px;
    color: #818181;
}
.preview-image-table{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    width: 100%;
    height: 100%;
    display: table;
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    pointer-events: none;
}
.preview-image-table.active{
    background-image: url(icons/close.svg);
    background-position: right 14px top 14px;
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: #0d0d12;
    pointer-events: all;
    z-index: 10;
}
.preview-image-table-cell{
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.preview-image{
    max-height: 95vh;
    max-width: 95vw;
    border-radius: 2px;
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.preview-image-table.active .preview-image{
    transform: scale(1);
    opacity: 1;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
}
.expired-content{
    color: #444;
}
.expired-content h2{
    font-weight: 400;
}
#files{

}
#file-browse{
    margin: 20px 0;
    color: #6c6c6c;
    box-sizing: border-box;
    font-size: 18px;
    border: solid 1px rgba(0, 0, 0, 0.39);
    display: inline-block;
    padding: 20px 30px;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
#file-browse:hover{
    background-color: rgb(39, 159, 53);
    background-color: #7f7fe0;
    color: #FFF;
    border: solid 1px rgba(0, 0, 0, 0.17);
}
#file-browse:active{
    transform: scale(0.95);
}
#file-browse.inactive{
    /*display: none;*/
    transform: scale(0);
    padding: 0;
    margin: 0;
    border: none;
}
.upload-to-zip{
    z-index: 10;
    position: fixed;
    bottom: 0px; left: 0px;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.upload-to-zip:active{
    transform: scale(0.9);
}
.upload-to-zip span{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(/assets/icons/zip.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
}
.upload-to-zip div{
    display: inline-block;
    font-size: 12px;
    padding-left: 6px;
    color: #6969b9;
}
.upload-to-zip.hidden{
    pointer-events: none;
    transform: scale(0) translateX(-150px);
}
.upload-more{
    font-size: 14px;
    color: #444;
    color: #6969b9;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.upload-more.hidden{
    /*display: none;*/
    margin: 0;
    padding: 0;
    transform: scale(0);
}
.upload-more div{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
}
.upload-more div span{
    display: block;
    width: 0%;
    height: 100%;
    margin: 0 auto;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    background-color: rgba(127, 127, 224, 0.7);
}
.upload-more:hover{
    color: #7f7fe0;
}
.upload-more:hover div span{
    width: 100%;
}
.upload-more:active{
    transform: scale(0.95);
}

.input-file-id{
    box-sizing: border-box;
    font-size: 18px;
    border: solid 1px rgba(255, 255, 255, 0.39);
    display: inline-block;
    padding: 20px 30px;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    width: 200px;
}
.main-window{
    /* display: table; */
    /*margin-top: 10vh;*/
    display: block;
    width: 100%;
    text-align: center;
}
.main-window-wrap{
    /* display: table-cell; */
    vertical-align: middle;
}
.main-window-content{
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    padding: 10px;
    padding-bottom: 70px;
    box-sizing: border-box;
}
.main-window-content h1{
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 40px;
    color: #444;
}
.upload-progress{
    display: none;
    transform: scale(0);
    height: 0px;
    font-size: 0px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.upload-progress.progress span.pop{
    animation: pop .2s 1;
    display: block;
}
@keyframes pop {
  0% {
      transform: scale(1);
  }
  100% {
      transform: scale(1.25);
  }
}
.upload-progress p{
    font-size: 16px;
    color: #555;
}
.upload-progress.uploading{
    transform: scale(1);
    font-size: 30px;
    font-weight: 100;
    color: #444;
    display: block;
    height: auto;
}
.upload-results-wrap{
    margin-top: 20px;
}
.upload-results-wrap.hidden{
    display: none;
}
.upload-result{
    margin-bottom: 20px;
    transform: scale(1);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 2000ms ease;
    transition: all 200ms ease;
}
.upload-result.scaled{
    transform: scale(0);
}
.upload-result .title{
    font-size: 14px;
    margin-bottom: 10px;
}
.upload-result .title span{
    color: #777;
    padding-left: 10px;
    font-size: 12px;
}
.upload-result .url{
    margin: 0 auto;
    padding: 15px 20px;
    border: solid 1px #9f9fd0;
    border-radius: 4px;
    width: 90%;
    max-width: 250px;
    color: #585858;
    font-size: 20px;
    box-sizing: border-box;
    position: relative;
}
.upload-result .url .domain{
    font-weight: 100;
    /* font-size: 16px; */
}
.upload-result .url .text-id{
    font-weight: 400;
}
.upload-result .url .protocol{
    font-weight: 100;
    font-size: 0px;
}
.upload-result .url .copy{
    display: inline-block;
    position: absolute;
    right: 10px;
    height: 30px;
    width: 30px;
    top: 50%;
    margin-top: -15px;
    cursor: pointer;
    background-image: url(icons/copy.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    -webkit-transition: all 150ms ease;
    -moz-transition: all 150ms ease;
    -ms-transition: all 150ms ease;
    -o-transition: all 150ms ease;
    transition: all 150ms ease;
}
.upload-result .url .copy:active{
    transform: scale(0.8);
}
body.ios .upload-result .url .copy{
    display: none;
}
.upload-result .url input{
    height: 0px;
    border: none;
}
.steps{
    margin: 0 auto;
    margin-bottom: 10vh;
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    border: none;
}
.step-circle{
    position: relative;
    vertical-align: middle;
    display: inline-block;
    height: 70px;
    width: 70px;
    border-radius: 40px;
    border: solid 2px #dedede;
    background-position: center;
    background-size: 24px;
    background-repeat: no-repeat;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.step-circle span{
    position: absolute;
    top: 90px;
    width: 200px;
    margin-left: -100px;
    text-align: center;
    color: #DEDEDE;
}
.step-circle.active span{
    color: #6c6c6c;
}
.step-circle.s-upload{
    background-image: url(icons/up-grey.png);
}
.step-circle.s-link{
    background-image: url(icons/link-grey.png);
}
.step-circle.s-send{
    background-image: url(icons/send-grey.png);
}
.step-circle.active.s-upload{
    background-image: url(icons/up.png);
}
.step-circle.active.s-link{
    background-image: url(icons/link.png);
}
.step-circle.active.s-send{
    background-image: url(icons/send.png);
}
.step-circle.active{
    border-color: #9f9fd0;
}
.step-circle.s-upload.uploading{
    background-size: 0px;
}
.step-circle.s-upload p{
    display: none;
    margin: 0;
    line-height: 70px;
    padding-left: 6px;
    color: #9f9fd0
}
.step-circle.s-upload.uploading p{
    display: block;
}
.step-line{
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    vertical-align: middle;
    display: table-cell;
    display: inline-block;
    height: 2px;
    width: 150px;
    background-color: #dedede;
}
.step-line.active{
    background-color: #9f9fd0;
}
.step-line span{
    width: 0%;
    height: 100%;
    display: block;
    background-color: #9f9fd0;
    -webkit-transition: width 400ms ease;
    -moz-transition: width 400ms ease;
    -ms-transition: width 400ms ease;
    -o-transition: width 400ms ease;
    transition: width 400ms ease;
}
.step-line.active span{
    width: 100%;
}
@media screen and (max-width: 700px) {
    .step-circle{
        height: 60px;
        width: 60px;
    }
    .step-line{
        width: 70px;
    }
    .step-circle span{
        font-size: 12px;
    }
    .step-circle.s-upload p{
        line-height: 60px;
    }
}
@media screen and (max-width: 470px) {
    .steps{
        display: none;
    }
}
body::after{
    position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
    content:url(icons/up.png) url(icons/link.png) url(icons/send.png);
}
/* Loader */
.loader {
    position: relative;
    margin:  0 auto;
    width: 100px;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}


.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}

/* Login */
.login-page-wrap{
    display: table;
    height: 100vh;
    width: 100%;
}
.login-wrap{
    display: table-cell;
    vertical-align: middle;
}
@media screen and (max-width: 700px) {
    .login-wrap{
        padding-top: 50px;
        vertical-align: inherit;
    }
    body.np{
        min-height: auto;
    }
    .login-page-wrap{
        height: auto;
    }
}
.login-form, .reset-form, .new_pass_form, #sign-up-form{
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.login-form.hidden, .reset-form.hidden, .new_pass_form.hidden, #sign-up-form.hidden{
    transform: scale(.8);
    opacity: 0;
    left: 5%;
    right: 5%;
    position: absolute;
    z-index: -1;
}
.login-wrap label{
    font-size: 12px;
}
.login-wrap input[type=text],.login-wrap input[type=password]{
    margin: 5px 0;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 4px;
    border: solid 1px rgba(0,0,0,0.15);
    outline: none;
}
.login-wrap input[type=text]:focus,.login-wrap input[type=password]:focus{
    border-color: #9f9fd0;
}
.login-wrap input[type=submit]{
    margin-top: 10px;
    padding: 10px 20px;
    border: solid 1px rgba(0,0,0,0.1);
    border-radius: 4px;
    background-color: transparent;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    outline: none;
}
.login-wrap input[type=submit]:hover,.login-wrap input[type=submit]:focus{
    background-color: #7f7fe0;
    color: #FFF;
}
.login-wrap .alright{
    text-align: right;
}
.login-loader{
    display: none;
    animation: login_loader 400ms ease 1;
}
@keyframes login_loader{
    0% {
        transform: scale(.8);
    } 25% {
        transform: scale(1.1);
    } 100% {
        transform: scale(1);
  }
}
.login-error, .reset-error, .sign-up-error{
    background-color: #d62626;
    padding: 10px;
    border-radius: 4px;
    border: solid 1px rgba(0,0,0,0.1);
    color: #FFF;
    font-size: 14px;
    margin-bottom: 20px;
    /*animation: login_error 300ms ease 1;*/
}
@keyframes login_error{
    0% {
        transform: scale(.8);
    } 100% {
        transform: scale(1);
  }
}
.login-msg{
    font-size: 14px;
    text-align: center;
    padding: 10px;
    color: #7f7fe0;
    animation: login_msg 300ms ease 1;
}
@keyframes login_msg{
    0% {
        transform: scale(.8);
    } 100% {
        transform: scale(1);
  }
}
.sign-up-msg{
    font-size: 12px;
    padding-bottom: 10px;
}
.login-wrap .forgot-pass{
    font-size: 12px;
    width: 100%;
}
.login-wrap .forgot-pass a{
    color: #656565;
    text-decoration: none;

}
.login-wrap .forgot-pass a:hover{
    text-decoration: underline;
}
