.c-load {
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgb(19, 31, 57,0.93);
  /* background-color: rgba(0, 0, 0, 0.7); */
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
}
.c-load .custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  animation: s4 4s infinite;
}
.c-load .custom-loader.custom-loader::before, .c-load .custom-loader.custom-loader::after {
  content: "";
  grid-area: 1/1;
  border: 8px solid;
  border-radius: 50%;
  border-color: #C51919 #C51919 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  mix-blend-mode: darken;
  animation: s4 2s infinite linear;
}
.c-load .custom-loader.custom-loader::after {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #E4E4ED #E4E4ED;
  animation-direction: reverse;
}
@keyframes s4 {
  100% {
    transform: rotate(1turn);
  }
}
@media (max-width: 575px) {
  .c-load .custom-loader {
    width: 40px;
    height: 40px;
  }
}
.c-load.c-load-is-sheight {
  display: none;
}