 /* From Uiverse.io by Abrar-Hussain1 */
            .loader-container {
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              height: 50 vh;
            }

            .loader {
              width: 70px;
              height: 70px;
              position: relative;
            }

            .loader:before {
              content: "";
              width: 70px;
              height: 70px;
              border-radius: 50%;
              border: 6px solid #0fe23d;
              position: absolute;
              top: 0;
              left: 0;
              animation: pulse 1s ease-in-out infinite;
            }

            .loader:after {
              content: "";
              width: 70px;
              height: 70px;
              border-radius: 50%;
              border: 6px solid transparent;
              border-top-color: #48f802;
              position: absolute;
              top: 0;
              left: 0;
              animation: spin 2s linear infinite;
            }

            .loader-text {
              font-size: 24px;
              margin-top: 20px;
              color: #02e402;
              font-family: Arial, sans-serif;
              text-align: center;
              text-transform: uppercase;
            }

            @keyframes pulse {
              0% {
                transform: scale(0.6);
                opacity: 1;
              }

              50% {
                transform: scale(1.2);
                opacity: 0;
              }

              100% {
                transform: scale(0.6);
                opacity: 1;
              }
            }

            @keyframes spin {
              0% {
                transform: rotate(0deg);
              }

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

            .content {
              display: none;
            }

            .loaded .loader-container {
              display: none;
            }

            .loaded .content {
              display: block;
            }