﻿body {
  padding-top: 40px; }

.loader-page {
  position: fixed;
  padding-top: 2em;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(250, 250, 250, 0.75);
  z-index: 999998;
  display: none;
  justify-content: center;
  align-items: center; }

.loader-page.is-active {
  display: flex; }

.triple-spinner {
  display: block;
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #FF5722;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(100, 100, 100, 0.075); }

.triple-spinner::before,
.triple-spinner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent; }

.triple-spinner::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: #FF9800;
  -webkit-animation: spin 3.5s linear infinite;
  animation: spin 3.5s linear infinite; }

.triple-spinner::after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: #FFC107;
  -webkit-animation: spin 1.75s linear infinite;
  animation: spin 1.75s linear infinite; }

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