.top-menu.inner-loading{
    position: absolute;
     width: 100%; 
     height: 100%;
}

.top-menu.inner-loading #imgLoading{
   visibility: visible;
   background: rgb(255, 212, 68);
   position: absolute;
   width: 100%;
   height: 100%;
   padding: 10.5px 0px;
   color: var(--Darkest-Grey) !important;
   font: var(--H2-Sub-Titles);
}
body.archive-mode .top-menu.inner-loading #imgLoading{
    width: fit-content;
    border-radius: 25px !important;
    padding: 10px;
    left: calc(50% - 72px);
    top: 20px;
}
body.archive-mode .top-menu.inner-loading #imgLoading > div{
    width: fit-content !important;
}
.loading-spinner {
    height: 10px;
    width: 70px !important;
    margin-top: 10px;
}

.loading-spinner > div {
  background-color: var(--Darkest-Grey);
  height: 10px;
  width: 10px;
  border-radius: 50% !important;
  display: inline-block;
  margin: 0 3px 0 0;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out
}

@-webkit-keyframes stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.7)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.7);
        -webkit-transform: scaleY(0.7);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.loading-overlay{
    position: absolute;
    content: '';
    width: 100vw;
    height: calc(100vh - 45px);
    background-color: rgba(0, 0, 0, 0.5);
    top: 45px;
    z-index:5;

}
@media (max-width:993px){
    .change-top{
        width: 100% !important;
    }
}
@media (max-width:916px){
    .change-top{
        top: 100px !important; 
    }
}
@media (max-width:880px){
    .change-top{
        top: 112px !important; 
    }
}