@media screen and (max-width: 767px){
.page-id-4959 #loader-div {
    position: fixed;
    top: 0px;
}
}

@media screen and (max-width:991px){

body:has(#loader-div) #head {
     position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
}

body:has(#loader-div) div#main-wrap {
    top:61px;
}
    
#loader-div {
    position: fixed !important;
    display: flex;
    top: 60px !important;
    bottom: 70px !important;
    right:0;
    left:0;
    justify-content: center;
    align-items: center;
    align-self: center !important;
    z-index: 99999;
    background-color: #0f0f0fed;
    border-radius: 5px;
    height: -webkit-fill-available;
}

}

#loader-div {
    position: absolute;
    display: flex;
    inset:0;
    justify-content: center;
    align-items: center;
    align-self: center !important;
    z-index: 99999;
    background-color: #161616e6;
    border-radius: 5px;
    height:-webkit-fill-available;
}

.loader {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--white) !important;
  border-top-color: transparent !important;
  animation: rot1 1.2s linear infinite;
}

@keyframes rot1 {
  to {
    transform: rotate(360deg);
  }
}