
#loading{
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 1;
}
#loading img{
  width: 200px;
}
#loading svg{
  transform: scale(2.8);
  position: absolute;
}
#loading p{
  position: absolute;
  margin-top: 15px;
  border: 1px solid red;
}
#loading p::after{
  content: 'Yükleniyor...';
  position: absolute;
  left: -30px;
  top: 130px;
  color: #fe8911;
}
@media (max-width: 992px) { 
  #loading{
    position: fixed;
    z-index: 99;
    top: 0;
  }
}
