html,
body {
  height: 100%;
  margin: 0;
  padding: 0; }

body {
  font-family: 'Roboto', sans-serif;
  background-color: #efefef;
  justify-content: center;
  align-items: center; }

.upload {
  position: relative;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 20px;
  min-height: 590px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: #fff;
  transform: translateY(20px); }
  .upload .upload-files header {
    background: #3d7e88;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    height: 100px; }
    .upload .upload-files header div {
      color: #fff;
      padding-top: 25px; }
      .upload .upload-files header div i {
        transform: translateY(20px);
        opacity: 0;
        animation: fadeup2 .5s 1s ease both;
        font-size: 38px;
        position: relative;
        top: 8px;
        margin-right: 15px; }
      .upload .upload-files header div .up {
        font-weight: bold;
        transform: translateX(-20px);
        display: inline-block;
        opacity: 0;
        animation: faderight .5s 1.5s ease both; }
      .upload .upload-files header div .load {
        display: inline-block;
        margin: 5px;
        margin-left: -8px;
        transform: translateX(-20px);
        opacity: 0;
        animation: faderight 1s 1.5s ease both;
        padding-top: 0px;
        font-size: 22px;
        font-weight: 100;
        line-height: 21px; }
    .upload .upload-files header h1 {
      display: inline-block;
      margin: 10px;
      margin-left: -8px;
      transform: translateX(-20px);
      opacity: 0;
      animation: faderight 1s 1.5s ease both;
      padding-top: 0px;
      font-size: 22px;
      font-weight: 100;
      line-height: 21px; }
  .upload .upload-files .body {
    text-align: center;
    padding: 130px 0;
    padding-top: 30px;
    padding-bottom: 20px; }
    .upload .upload-files .body.hidden {
      display: none; }
    .upload .upload-files .body input {
      visibility: hidden; }
    .upload .upload-files .body i {
      font-size: 100px;
      color: #13bcd7; }
    .upload .upload-files .body p {
      padding-top: 15px;
      line-height: 1.4; }
      .upload .upload-files .body p b,
      .upload .upload-files .body p a {
        color: #13bcd7; }
    .upload .upload-files .body.active {
      border: dashed 2px #3d7e88; }
      .upload .upload-files .body.active i {
        box-shadow: 0 0 0 -3px #fff, 0 0 0 lightgray, 0 0 0 -3px #fff, 0 0 0 lightgray;
        animation: file .5s ease both; }

@keyframes file {
  50% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -8px 8px 0 -3px #fff, -8px 8px 0 lightgray; }
  75%,
  100% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -16px 16px 0 -3px #fff, -16px 16px 0 lightgray; } }
      .upload .upload-files .body.active .pointer-none {
        pointer-events: none; }
  .upload .upload-files footer {
    width: 100%;
    margin: 0 auto;
    height: 0;
    padding: 0; }
    .upload .upload-files footer .divider {
      margin: 0 auto;
      width: 0;
      border-top: solid 4px #fff;
      /*darken($skin, 3.5%);*/
      text-align: center;
      overflow: hidden;
      transition: width .5s ease; }
      .upload .upload-files footer .divider span {
        display: inline-block;
        transform: translateY(-25px);
        font-size: 12px;
        padding-top: 48px; }
    .upload .upload-files footer.hasFiles {
      height: auto; }
      .upload .upload-files footer.hasFiles .divider {
        width: 100%; }
        .upload .upload-files footer.hasFiles .divider span {
          transform: translateY(0);
          transition: transform .5s .5s ease; }
    .upload .upload-files footer .list-files {
      width: 320px;
      margin: 0 auto;
      margin-top: 15px;
      padding-left: 5px;
      text-align: center;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 210px; }
      .upload .upload-files footer .list-files::-webkit-scrollbar-track {
        background-color: rgba(211, 211, 211, 0.25); }
      .upload .upload-files footer .list-files::-webkit-scrollbar {
        width: 4px;
        background-color: rgba(211, 211, 211, 0.25); }
      .upload .upload-files footer .list-files::-webkit-scrollbar-thumb {
        background-color: rgba(61, 126, 136, 0.5); }
      .upload .upload-files footer .list-files .file {
        width: 100%;
        min-height: 50px;
        display: block;
        justify-content: space-between;
        align-items: center;
        opacity: 0;
        animation: fade .35s ease both; }
        .upload .upload-files footer .list-files .file .name {
          font-size: 12px;
          white-space: nowrap;
          text-overflow: ellipsis;
          overflow: hidden;
          width: 100%;
          text-align: center; }
        .upload .upload-files footer .list-files .file .progress {
          width: 100%;
          height: 5px;
          border: solid 1px lightgray;
          border-radius: 2px;
          background: linear-gradient(to left, rgba(61, 126, 136, 0.2), rgba(61, 126, 136, 0.8)) no-repeat;
          background-size: 100% 100%; }
          .upload .upload-files footer .list-files .file .progress.active {
            animation: progress 30s linear; }

@keyframes progress {
  from {
    background-size: 0 100%; }
  to {
    background-size: 100% 100%; } }
        .upload .upload-files footer .list-files .file .done {
          cursor: pointer;
          width: 80px;
          height: 80px;
          background: #3d7e88;
          border-radius: 50%;
          margin-left: auto;
          margin-right: auto;
          transform: scale(0);
          position: relative; }
          .upload .upload-files footer .list-files .file .done:before {
            content: "View";
            position: absolute;
            top: 0;
            left: -5px;
            font-size: 24px;
            opacity: 0; }
          .upload .upload-files footer .list-files .file .done:hover:before {
            transition: all .25s ease;
            top: -30px;
            opacity: 1; }
          .upload .upload-files footer .list-files .file .done.anim {
            animation: done1 .5s ease forwards; }
            .upload .upload-files footer .list-files .file .done.anim #path {
              animation: done2 2.5s .5s ease forwards; }
          .upload .upload-files footer .list-files .file .done #path {
            stroke-dashoffset: 7387.59423828125;
            stroke-dasharray: 7387.59423828125 7387.59423828125;
            stroke: #fff;
            fill: transparent;
            stroke-width: 50px; }

@keyframes done2 {
  to {
    stroke-dashoffset: 0; } }

@keyframes done1 {
  50% {
    transform: scale(0.5);
    opacity: 1; }
  80% {
    transform: scale(0.25);
    opacity: 1; }
  100% {
    transform: scale(0.5);
    opacity: 1; } }
    .upload .upload-files footer .importar {
      width: 125px;
      outline: none;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 20px;
      margin: auto;
      border: solid 1px #3d7e88;
      color: #3d7e88;
      background: transparent;
      padding: 8px 15px;
      font-size: 12px;
      border-radius: 4px;
      font-family: Roboto;
      line-height: 1;
      cursor: pointer;
      transform: translateY(15px);
      opacity: 0;
      visibility: hidden; }
      .upload .upload-files footer .importar.active {
        transition: transform .5s 1.5s ease, opacity .5s 1.5s ease, background;
        transform: translateY(0);
        opacity: 1;
        visibility: visible; }
      .upload .upload-files footer .importar:hover {
        background: #3d7e88;
        color: #fff; }

@keyframes fadeup {
  to {
    opacity: 1; } }

@keyframes fadeup2 {
  to {
    transform: translateY(0);
    opacity: 1; } }

@keyframes faderight {
  to {
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade {
  to {
    opacity: 1; } }
  @media (max-width: 400px) {
    .upload {
      width: 100%;
      height: 100%; } }

.results {
  position: relative;
  width: 100%;
  min-height: 590px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(50, 50, 50, 0.8);
  transform: translateY(20px);
  color: #ccc; }
  .results .results-list header {
    background: #3d7e88;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    height: 100px; }
    .results .results-list header div {
      color: #fff; }
      .results .results-list header div i {
        transform: translateY(20px);
        opacity: 0;
        animation: fadeup2 .5s 1s ease both;
        font-size: 38px;
        position: relative;
        top: 10px;
        margin-right: 15px; }
      .results .results-list header div .up {
        font-weight: bold;
        transform: translateX(-20px);
        display: inline-block;
        opacity: 0;
        animation: faderight .5s 1.5s ease both; }
      .results .results-list header div .load {
        display: inline-block;
        font-weight: 100;
        margin: 5px;
        margin-left: -8px;
        transform: translateX(-20px);
        opacity: 0;
        animation: faderight 1s 1.5s ease both;
        padding-top: 0px;
        font-size: 22px;
        font-weight: 100;
        line-height: 21px; }
    .results .results-list header h1 {
      display: inline-block;
      font-weight: 100;
      margin: 10px;
      margin-left: -8px;
      transform: translateX(-20px);
      opacity: 0;
      animation: faderight 1s 1.5s ease both;
      padding-top: 0px;
      font-size: 22px;
      font-weight: 100;
      line-height: 21px; }
  .results .results-list .body {
    text-align: center;
    padding: 130px 0;
    padding-top: 60px;
    padding-bottom: 20px; }
    .results .results-list .body.hidden {
      display: none; }
    .results .results-list .body input {
      visibility: hidden; }
    .results .results-list .body i {
      font-size: 65px;
      color: lightgray; }
    .results .results-list .body p {
      padding-top: 15px;
      line-height: 1.4; }
      .results .results-list .body p b,
      .results .results-list .body p a {
        color: #3d7e88; }
    .results .results-list .body.active {
      border: dashed 2px #3d7e88; }
      .results .results-list .body.active i {
        box-shadow: 0 0 0 -3px #fff, 0 0 0 lightgray, 0 0 0 -3px #fff, 0 0 0 lightgray;
        animation: file .5s ease both; }

@keyframes file {
  50% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -8px 8px 0 -3px #fff, -8px 8px 0 lightgray; }
  75%,
  100% {
    box-shadow: -8px 8px 0 -3px #fff, -8px 8px 0 lightgray, -16px 16px 0 -3px #fff, -16px 16px 0 lightgray; } }
      .results .results-list .body.active .pointer-none {
        pointer-events: none; }
  .results .results-list footer {
    width: 100%;
    margin: 0 auto;
    height: 0;
    padding: 0; }
    .results .results-list footer .divider {
      margin: 0 auto;
      width: 0;
      border-top: solid 4px #37737c;
      text-align: center;
      overflow: hidden;
      transition: width .5s ease; }
      .results .results-list footer .divider span {
        display: inline-block;
        transform: translateY(-25px);
        font-size: 12px;
        padding-top: 48px; }
    .results .results-list footer.hasFiles {
      height: auto; }
      .results .results-list footer.hasFiles .divider {
        width: 100%; }
        .results .results-list footer.hasFiles .divider span {
          transform: translateY(0);
          transition: transform .5s .5s ease; }
    .results .results-list footer .list-files {
      width: 320px;
      margin: 0 auto;
      margin-top: 15px;
      padding-left: 5px;
      text-align: center;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 210px; }
      .results .results-list footer .list-files::-webkit-scrollbar-track {
        background-color: rgba(211, 211, 211, 0.25); }
      .results .results-list footer .list-files::-webkit-scrollbar {
        width: 4px;
        background-color: rgba(211, 211, 211, 0.25); }
      .results .results-list footer .list-files::-webkit-scrollbar-thumb {
        background-color: rgba(61, 126, 136, 0.5); }
      .results .results-list footer .list-files .file {
        width: 100%;
        min-height: 50px;
        display: block;
        justify-content: space-between;
        align-items: center;
        opacity: 0;
        animation: fade .35s ease both; }
        .results .results-list footer .list-files .file .name {
          font-size: 12px;
          white-space: nowrap;
          text-overflow: ellipsis;
          overflow: hidden;
          width: 100%;
          text-align: center; }
        .results .results-list footer .list-files .file .progress {
          width: 100%;
          height: 5px;
          border: solid 1px lightgray;
          border-radius: 2px;
          background: linear-gradient(to left, rgba(61, 126, 136, 0.2), rgba(61, 126, 136, 0.8)) no-repeat;
          background-size: 100% 100%; }
          .results .results-list footer .list-files .file .progress.active {
            animation: progress 30s linear; }

@keyframes progress {
  from {
    background-size: 0 100%; }
  to {
    background-size: 100% 100%; } }
        .results .results-list footer .list-files .file .done {
          cursor: pointer;
          width: 80px;
          height: 80px;
          background: #3d7e88;
          border-radius: 50%;
          margin-left: auto;
          margin-right: auto;
          transform: scale(0);
          position: relative; }
          .results .results-list footer .list-files .file .done:before {
            content: "View";
            position: absolute;
            top: 0;
            left: -5px;
            font-size: 24px;
            opacity: 0; }
          .results .results-list footer .list-files .file .done:hover:before {
            transition: all .25s ease;
            top: -30px;
            opacity: 1; }
          .results .results-list footer .list-files .file .done.anim {
            animation: done1 .5s ease forwards; }
            .results .results-list footer .list-files .file .done.anim #path {
              animation: done2 2.5s .5s ease forwards; }
          .results .results-list footer .list-files .file .done #path {
            stroke-dashoffset: 7387.59423828125;
            stroke-dasharray: 7387.59423828125 7387.59423828125;
            stroke: #fff;
            fill: transparent;
            stroke-width: 50px; }

@keyframes done2 {
  to {
    stroke-dashoffset: 0; } }

@keyframes done1 {
  50% {
    transform: scale(0.5);
    opacity: 1; }
  80% {
    transform: scale(0.25);
    opacity: 1; }
  100% {
    transform: scale(0.5);
    opacity: 1; } }
    .results .results-list footer .importar {
      width: 125px;
      outline: none;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 20px;
      margin: auto;
      border: solid 1px #3d7e88;
      color: #3d7e88;
      background: transparent;
      padding: 8px 15px;
      font-size: 12px;
      border-radius: 4px;
      font-family: Roboto;
      line-height: 1;
      cursor: pointer;
      transform: translateY(15px);
      opacity: 0;
      visibility: hidden; }
      .results .results-list footer .importar.active {
        transition: transform .5s 1.5s ease, opacity .5s 1.5s ease, background;
        transform: translateY(0);
        opacity: 1;
        visibility: visible; }
      .results .results-list footer .importar:hover {
        background: #3d7e88;
        color: #fff; }

@keyframes fadeup {
  to {
    opacity: 1; } }

@keyframes fadeup2 {
  to {
    transform: translateY(0);
    opacity: 1; } }

@keyframes faderight {
  to {
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade {
  to {
    opacity: 1; } }
  @media (max-width: 400px) {
    .results {
      width: 100%;
      height: 100%; } }

.results-details .body {
  padding: 30px;
  margin-bottom: 30px; }

.results .table-header {
  background-color: #c8c8c8; }

.results .table-header div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 7px; }

.results .description {
  text-align: justify;
  padding: 0px;
  color: #ccc; }

.results #imageContainer {
  overflow: hidden;
  background-color: #111;
  padding-bottom: 60px; }

.results #imageContainer img {
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.results .btn-home {
  transform: translateY(0);
  transition: transform .5s .5s ease; }

.results .results-list .body {
  padding: 0; }

.results {
  padding-bottom: 0px; }

.advertisment {
  animation: fadeup .7s .7s ease both;
  margin-top: 40px;
  margin-bottom: 20px;
  width: 100%;
  background-color: transparent;
  text-align: center;
  min-height: 360px;
  opacity: 0; }

.advertisment .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.advertisment .header {
  background-color: #3adff8;
  height: 40px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  vertical-align: middle; }

.advertisment img {
  max-width: 100%;
  max-height: 300px; }

@media screen and (max-width: 1024px) {
  body {
    margin-bottom: 0;
    background-color: #111111 !important;
    background: none; }
  .card-login {
    box-shadow: none; }
  .gradient-wrapper {
    min-height: 250vh; }
  .upload {
    height: 660px;
    margin-top: 0; }
  .upload .upload-files .body {
    padding-top: 10px; }
  .upload .upload-files header {
    height: 90px; }
  .results-container {
    background-color: #727272;
    border-top: 1px solid #727272;
    border-bottom: 1px solid #727272; }
  .results .results-list {
    padding-top: 0px;
    margin-top: 0; }
  .results #image-container {
    padding-top: 0px;
    margin-top: 0; }
  .results .results-list .body {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0; }
  .results .results-list header {
    height: 90px; }
  .results-details .body {
    padding-left: 15px;
    padding-right: 15px; }
  .footer {
    margin-top: 50px;
    margin-bottom: 0px;
    position: relative; }
  .advertisment {
    margin-bottom: 0px;
    margin-top: 80px; }
  .collapse.navbar-collapse {
    display: block; }
  .nav > li {
    display: inline-block; }
  .navbar-form {
    display: none; }
  .navbar-right {
    float: right; }
  .navbar-left {
    float: left; }
  .navbar-nav {
    margin: 0; }
  .navbar .navbar-nav .open .dropdown-menu > li > a {
    color: #fff; }
  .navbar-nav .open .dropdown-menu {
    background-color: #555; }
  .lang_container .dropdown-menu div > a {
    color: #fff; }
  .lang_container .dropdown-menu {
    background-color: #555; } }

.results.right-col {
  animation: none;
  opacity: 1; }
