.rp_blank_page_loader {
  position: fixed;
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1080;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rp_rounding_plane {
  position: relative;
  height: 60%;
  width: 60%;
}
.rp_rounding_plane span {
  position: absolute;
  top: 50px;
  left: 50px;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(-webkit-calc(18deg * var(--i)));
  -ms-transform: rotate(calc(18deg * var(--i)));
  transform: rotate(calc(18deg * var(--i)));
}
.rp_blank_page_loader span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #3765af;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: animateRP 2s linear infinite;
  animation: animateRP 2s linear infinite;
  -webkit-animation-delay: -webkit-calc(0.1s * var(--i));
  animation-delay: calc(0.1s * var(--i));
}
.rp_plane_logo {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 100%;
  height: 100%;
  -webkit-animation: rotatingRP 2s linear infinite;
  animation: rotatingRP 2s linear infinite;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.rp_plane_logo::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBzdHJva2U9IiMzNzY1YWYiIGZpbGw9IiMzNzY1YWYiIHN0cm9rZS13aWR0aD0iMCIgdmlld0JveD0iMCAwIDU3NiA1MTIiIGhlaWdodD0iMjAwcHgiIHdpZHRoPSIyMDBweCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNDgwIDE5MkgzNjUuNzFMMjYwLjYxIDguMDZBMTYuMDE0IDE2LjAxNCAwIDAgMCAyNDYuNzEgMGgtNjUuNWMtMTAuNjMgMC0xOC4zIDEwLjE3LTE1LjM4IDIwLjM5TDIxNC44NiAxOTJIMTEybC00My4yLTU3LjZjLTMuMDItNC4wMy03Ljc3LTYuNC0xMi44LTYuNEgxNi4wMUM1LjYgMTI4LTIuMDQgMTM3Ljc4LjQ5IDE0Ny44OEwzMiAyNTYgLjQ5IDM2NC4xMkMtMi4wNCAzNzQuMjIgNS42IDM4NCAxNi4wMSAzODRINTZjNS4wNCAwIDkuNzgtMi4zNyAxMi44LTYuNEwxMTIgMzIwaDEwMi44NmwtNDkuMDMgMTcxLjZjLTIuOTIgMTAuMjIgNC43NSAyMC40IDE1LjM4IDIwLjRoNjUuNWM1Ljc0IDAgMTEuMDQtMy4wOCAxMy44OS04LjA2TDM2NS43MSAzMjBINDgwYzM1LjM1IDAgOTYtMjguNjUgOTYtNjRzLTYwLjY1LTY0LTk2LTY0eiI+PC9wYXRoPjwvc3ZnPg==");
  inset: 0;
  background-repeat: no-repeat;
  background-size: 40px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 135px;
  left: 110px;
  width: 40px;
  height: 40px;
}
.rp_loading_text {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #3765af;
  font-weight: bold;
  font-size: 1.3rem;
}
@-webkit-keyframes animateRP {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes animateRP {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes rotatingRP {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(370deg);
    transform: rotate(370deg);
  }
}
@keyframes rotatingRP {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(370deg);
    transform: rotate(370deg);
  }
}
