.loader{
  background-color: rgba(0, 0, 36, 0.2);
  min-height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
}

/*  begin cubes css */

.cubes {
  width: 70px;
  height: 70px;
}

.cubes .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #fff;
  float: left;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.cubes .sk-cube1 {
  animation-delay: 0.2s;
}

.cubes .sk-cube2 {
  animation-delay: 0.3s;
}

.cubes .sk-cube3 {
  animation-delay: 0.4s;
}

.cubes .sk-cube4 {
  animation-delay: 0.1s;
}

.cubes .sk-cube5 {
  animation-delay: 0.2s;
}

.cubes .sk-cube6 {
  animation-delay: 0.3s;
}

.cubes .sk-cube7 {
  animation-delay: 0s;
}

.cubes .sk-cube8 {
  animation-delay: 0.1s;
}

.cubes .sk-cube9 {
  animation-delay: 0.2s;
}

@keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}

















.preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  transition: .3s all ease;
}

.preloader * {
  box-sizing: content-box;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-body {
  text-align: center;
}

.preloader-body p {
  position: relative;
  right: -8px;
}

.cssload-bell {
  width: 97px;
  height: 99px;
  border-radius: 100%;
}

.cssload-circle {
  width: 100%;
  height: 100%;
  position: absolute;
}

.cssload-circle .cssload-inner {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 5px solid rgba(148, 209, 204, 0.7);
  border-right: none;
  border-top: none;
  background-clip: padding;
  box-shadow: inset 0 0 10px rgba(148, 209, 204, 0.15);
}

.cssload-circle:nth-of-type(0) {
  transform: rotate(0deg);
}

.cssload-circle:nth-of-type(0) .cssload-inner {
  animation: cssload-spin 2.3s infinite linear;
}

.cssload-circle:nth-of-type(1) {
  transform: rotate(70deg);
}

.cssload-circle:nth-of-type(1) .cssload-inner {
  animation: cssload-spin 2.3s infinite linear;
}

.cssload-circle:nth-of-type(2) {
  transform: rotate(140deg);
}

.cssload-circle:nth-of-type(2) .cssload-inner {
  animation: cssload-spin 2.3s infinite linear;
}

.cssload-bell {
  animation: cssload-spin 5.75s infinite linear;
}

@keyframes cssload-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}