* {
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.permission-denied {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}


.permission-denied-img {
    width: 40%;
}

.permission-denied-text {
    font-size: 24px;
}

.loading-circle-wrap {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }

  @keyframes loading-circle {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes loading-circle-back {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(-360deg);
    }
  }

  @keyframes loading-circle-third {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(180deg);
    }
  }

  .loading-blank {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .loading-circle-first {
    animation: loading-circle 2.8s linear infinite;
    width: 70px;
    height: 70px;
    border: 5px solid transparent;
    border-top-color: #3296fa;
    border-bottom-color: #3296fa;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .loading-circle-second {
    animation: loading-circle-back 2.5s linear infinite;
    width: 46px;
    height: 46px;
    border: 5px solid transparent;
    border-right-color: #1afa29;
    border-left-color: #1afa29;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .loading-circle-third {
    animation: loading-circle 2.8s linear infinite;
    width: 22px;
    height: 22px;
    border: 5px solid transparent;
    border-right-color: #3296fa;
    border-left-color: #3296fa;
    border-radius: 50%;
    position: absolute;
    top: 22px;
    right: 12px;
    bottom: 12px;
    left: 22px;
  }

  .loading-name {
    position: absolute;
    top: 30px;
    right: 12px;
    bottom: 12px;
    left: 20px;
    color: #3296fa;
    font-size: 12px;
  }