diff --git a/scss/_loader.scss b/scss/_loader.scss
deleted file mode 100644
index 95538f13982b6e6ac737aee1e8069c5b5ed4d615..0000000000000000000000000000000000000000
--- a/scss/_loader.scss
+++ /dev/null
@@ -1,66 +0,0 @@
-.loader {
-  width: 100%;
-  height: 100%;
-  position: absolute;
-  top: 0;
-  left: 0;
-  transition: visibility 0s, opacity 0.5s linear;
-  background-color: $back-color;
-
-  .loader-dots {
-    position: absolute;
-    top: 50%;
-    left: 50%;
-
-    .dots {
-      position: absolute;
-      padding: 10px;
-      border-radius: 50%;
-      background: $accent-color;
-      -webkit-animation: loader 1s ease-in-out 0s infinite;
-      animation: loader 1s ease-in-out 0s infinite;
-
-      &:nth-child(1) {
-        -webkit-animation-delay: 0s;
-        animation-delay: 0s;
-      }
-
-      &:nth-child(2) {
-        -webkit-animation-delay: 0.15s;
-        animation-delay: 0.15s;
-      }
-
-      &:nth-child(3) {
-        -webkit-animation-delay: 0.30s;
-        animation-delay: 0.30s;
-      }
-
-      &:nth-child(4) {
-        -webkit-animation-delay: 0.45s;
-        animation-delay: 0.45s;
-      }
-    }
-
-  }
-}
-
-@keyframes loader {
-  0% {
-    -webkit-transform: translateX(-100px);
-    transform: translateX(-100px);
-    opacity: 0;
-  }
-  50% {
-    opacity: 1;
-  }
-  100% {
-    -webkit-transform: translateX(100px);
-    transform: translateX(100px);
-    opacity: 0;
-  }
-}
-
-.stop-scrolling {
-  height: 100%;
-  overflow: hidden;
-}
\ No newline at end of file
diff --git a/scss/style.scss b/scss/style.scss
index 54897cca49e1b13bdd990dbb6e37a58bdd445743..4dec1dc5e2d9784cf8864e13bd01434ad96e15a8 100644
--- a/scss/style.scss
+++ b/scss/style.scss
@@ -1,6 +1,5 @@
 @import "var";
 @import "colorMixer";
-@import "loader";
 @import "general";
 @import "menue";
 @import "normalize";