body:not(.external-path) .loader {
  width: 100%;
  position: relative;
}

body:not(.external-path) .loader .line {
  height: 5px;
  background: #0ca0c7;
  position: absolute;
  left: 0;
  -webkit-animation: dude .5s 1 forwards;
  -moz-animation: dude .5s 1 forwards;
  -o-animation: dude .5s 1 forwards;
  animation: dude .5s 1 forwards;
}

@-webkit-keyframes dude {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-moz-keyframes dude {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-o-keyframes dude {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes dude {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
