@keyframes infinite-spinner {
  0% {
    left: -30%; }
  100% {
    left: 100%; } }
body {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  color: #4b4b4b;
  padding: 0 20px; }

* {
  box-sizing: border-box; }

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px; }

.button {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  padding: .5em 1em;
  display: inline-block;
  background: red;
  color: #FFF;
  cursor: pointer;
  transition: all .4s;
  font-size: 20px;
  text-decoration: none; }
  .button.disabled {
    background: #c4c4c4;
    cursor: default; }
  .button:not(.disabled):hover {
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.08); }

.bg {
  background: red;
  position: absolute;
  height: 60%;
  top: 0;
  left: 0;
  right: 0; }

.container {
  width: 90%;
  max-width: 1270px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 36px;
  min-height: 700px;
  box-shadow: 0 0 70px 25px rgba(0, 0, 0, 0.08);
  margin: 0 0 50px; }
  .container header {
    margin-bottom: 36px;
    position: relative; }
    .container header .header-link {
      text-decoration: none; }
    .container header .logo {
      max-width: 300px; }
    .container header .title,
    .container header .text-logo {
      font-family: "Roboto Slab", serif;
      font-size: 48px;
      font-weight: 300;
      color: #4b4b4b; }
      @media all and (max-width: 770px) {
        .container header .title,
        .container header .text-logo {
          font-size: 36px; } }
    .container header .title {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }
      @media all and (max-width: 770px) {
        .container header .title {
          position: static;
          font-size: 36px;
          margin-top: 0.5em;
          transform: none; } }
  .container .border {
    width: 100%;
    border-bottom: solid 1px #dfdfdf;
    margin-bottom: 36px; }
  .container .queue .queue-entry {
    margin-bottom: 36px; }
    .container .queue .queue-entry .image-wrapper {
      float: left;
      width: 67px;
      margin-right: 36px;
      position: relative; }
      .container .queue .queue-entry .image-wrapper .file-image {
        width: 100%; }
      .container .queue .queue-entry .image-wrapper .status-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 1s; }
        .container .queue .queue-entry .image-wrapper .status-image.processing {
          width: 20px; }
        .container .queue .queue-entry .image-wrapper .status-image.success {
          width: 26px;
          opacity: 0; }
        .container .queue .queue-entry .image-wrapper .status-image.error {
          width: 20px;
          opacity: 0; }
    .container .queue .queue-entry .wrapper {
      float: left;
      width: calc(100% - 67px - 36px); }
    .container .queue .queue-entry .filename {
      font-size: 20px;
      margin-bottom: 15px; }
      .container .queue .queue-entry .filename .name {
        font-weight: 500;
        color: red;
        margin-right: 1em; }
      .container .queue .queue-entry .filename .size strong {
        font-weight: 300; }
    .container .queue .queue-entry .progress {
      width: 100%;
      height: 6px;
      background: #dfdfdf;
      position: relative;
      margin-bottom: 15px; }
      .container .queue .queue-entry .progress span {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        background: blue;
        transition: width .02s; }
    .container .queue .queue-entry .cancel {
      text-align: right; }
      .container .queue .queue-entry .cancel a {
        color: red;
        text-decoration: none;
        font-size: 20px; }
    .container .queue .queue-entry .dz-error-message {
      color: red; }
    .container .queue .queue-entry.dz-complete .image-wrapper .status-image.processing {
      opacity: 0; }
    .container .queue .queue-entry.dz-complete .cancel {
      display: none; }
    .container .queue .queue-entry.dz-error .image-wrapper .status-image.error {
      opacity: 1; }
    .container .queue .queue-entry.dz-success .image-wrapper .status-image.success {
      opacity: 1; }
  .container .link-button-wrapper {
    display: none;
    text-align: center;
    margin-bottom: 36px; }
    .container .link-button-wrapper .link-button-loading-wrapper {
      display: inline-block; }
      .container .link-button-wrapper .link-button-loading-wrapper .loader {
        width: 100%;
        height: 0;
        background: #dfdfdf;
        position: relative;
        overflow: hidden;
        transition: .4s; }
        .container .link-button-wrapper .link-button-loading-wrapper .loader span {
          position: absolute;
          height: 6px;
          background: blue;
          width: 30%;
          top: 0;
          left: -30%;
          animation: infinite-spinner .9s linear infinite; }
        .container .link-button-wrapper .link-button-loading-wrapper .loader.active {
          height: 6px; }
  .container .dropzone-wrapper {
    width: 100%;
    height: 240px;
    border: dashed 2px #dfdfdf;
    border-radius: 20px;
    transition: all .4s;
    cursor: pointer;
    position: relative; }
    .container .dropzone-wrapper.dz-drag-hover, .container .dropzone-wrapper:hover {
      background: rgba(0, 0, 0, 0.025); }
      .container .dropzone-wrapper.dz-drag-hover .placeholder, .container .dropzone-wrapper:hover .placeholder {
        color: #969696; }
    .container .dropzone-wrapper form {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .container .dropzone-wrapper .placeholder {
      width: 90%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #969696;
      font-size: 30px;
      font-weight: normal;
      transition: all .4s; }
      .container .dropzone-wrapper .placeholder .colored {
        color: blue; }
    .container .dropzone-wrapper.not-supported {
      width: 100%;
      height: auto;
      border: none;
      cursor: default; }
      .container .dropzone-wrapper.not-supported .placeholder {
        display: none; }
  .container .info {
    margin-top: 36px;
    color: #969696;
    line-height: 1.5em; }
    .container .info p:last-child {
      margin-bottom: 0; }
  .container .link-wrapper {
    display: none;
    text-align: center;
    font-size: 20px; }
    .container .link-wrapper .title {
      font-family: "Roboto Slab", serif;
      font-size: 30px; }
    .container .link-wrapper .link {
      font-size: 20px;
      display: block;
      background: #dfdfdf;
      padding: 1em;
      margin: 0;
      width: 80%;
      border: none;
      margin: 0 auto;
      resize: none;
      line-height: 1;
      text-align: center; }
    .container .link-wrapper .button-wrapper {
      margin-top: 36px; }
      .container .link-wrapper .button-wrapper .button {
        margin: 0 9px 18px; }
    .container .link-wrapper .copy-hint {
      display: none;
      font-size: 15px;
      color: #dfdfdf; }
      .container .link-wrapper .copy-hint span {
        display: none; }
  .container .footer {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center; }
    .container .footer a {
      color: #969696;
      text-decoration: none;
      margin: 0 .5em; }
      .container .footer a:hover {
        text-decoration: underline; }

.promotion {
  position: fixed;
  display: block;
  left: -148px;
  font-size: 19px;
  top: 50%;
  background: blue;
  padding: .5em 1em;
  text-align: center;
  transform: rotate(90deg);
  color: #000000;
  text-decoration: none;
  transition: .4s;
  width: 339px;
  height: 44px; }
  .promotion:hover {
    transform: rotate(90deg) scale(1.1); }

/** We call these so because "ad" would be blocked by adblockers **/
.free-boxes {
  margin-top: 3%; }
  .free-boxes a {
    display: block;
    float: left;
    transition: transform .4s;
    margin-right: 3%;
    margin-bottom: 3%; }
    @media screen and (min-width: 850px) {
      .free-boxes a {
        width: 31.33333%; }
        .free-boxes a:nth-child(3n+3) {
          margin-right: 0; }
        .free-boxes a:nth-child(1n+4) {
          margin-bottom: 0; } }
    @media screen and (min-width: 520px) and (max-width: 850px) {
      .free-boxes a {
        width: 48.5%; }
        .free-boxes a:nth-child(2n+2) {
          margin-right: 0; }
        .free-boxes a:nth-child(1n+5) {
          margin-bottom: 0; } }
    @media screen and (max-width: 520px) {
      .free-boxes a {
        margin-right: 0; }
        .free-boxes a:last-child {
          margin-bottom: 0; } }
    .free-boxes a:hover {
      transform: scale(1.1); }
    .free-boxes a img {
      width: 100%;
      height: auto;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }

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