.loaded .preloaded {
    display: none;
}
 .preloaded {
    opacity: 1;
    background-color: rgba(255,255,255,0);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}
 .preloaded.hide-animation {
    opacity: 0;
}
 .preloaded .logo-animation h2 {
    color: #fff;
    font-size: 38px;
    display: flex;
    justify-content: center;
}
 .preloaded .logo-animation h2 img {
    max-height: 38px;
    display: block;
}
 .loading_line-main-wrapper {
    width: 100%;
    margin-top: 10px;
}
 .loading_line_wrapper {
    height: 10px;
    background: #000;
    width: 120px;
    border-radius: 5px;
    overflow: hidden;
}
 .loading_line {
    position: relative;
    top: 0px;
    left: 0px;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    transform-origin: 100% 0%;
    animation: kf_loading_line 1.5s cubic-bezier(0.645,0.045,0.355,1) 0s infinite;
    border-radius: 5px;
    overflow: hidden;
}
 .loading_line .loading_line_inner {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    transform-origin: 0% 0%;
    border-radius: 5px;
    overflow: hidden;
}
 .loading_line_inner--1 {
    opacity: 1;
    background-color: #000;
    animation: kf_loading_line_inner--1 1.5s cubic-bezier(0.645,0.045,0.355,1) 0s infinite;
    border-radius: 5px;
    overflow: hidden;
}
 .loading_line_inner--2 {
    opacity: 1;
    background: grey;
    animation: kf_loading_line_inner--2 1.5s cubic-bezier(0.645,0.045,0.355,1) 0s infinite;
    border-radius: 5px;
    overflow: hidden;
}
 @keyframes kf_loading_line {
    0% {
       transform: scaleX(1);
   }
    50% {
       transform: scaleX(1);
   }
    100% {
       transform: scaleX(0);
   }
}
 @keyframes kf_loading_line_inner--1 {
    0% {
       transform: scaleX(0);
   }
    25% {
       transform: scaleX(1);
   }
    100% {
       transform: scaleX(1);
   }
}
 @keyframes kf_loading_line_inner--2 {
    0% {
       transform: scaleX(0);
   }
    25% {
       transform: scaleX(0);
   }
    50% {
       transform: scaleX(1);
   }
    100% {
       transform: scaleX(1);
   }
}
 