
/*
 * Copyright (c) 2022 Red Hat, Inc.
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   Red Hat, Inc. - initial API and implementation
 */

/* Add your branding customizations here. */
.main-page-loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    margin: auto;
    color: #fff;
    font-size: 24px;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #000;
  }

  .main-page-loader .ide-page-loader-content img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 140px;
    max-height: 140px;
    margin: auto;
    animation-name: opacity;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }

  @keyframes opacity {
    0%,
    100% {
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  }

.ide-page-loader-text {
  text-align: center; 
  position: fixed; 
  top: 0; bottom: 0; 
  left: 0; right: 0; 
  margin: auto; 
  height: 100%;
}

p {
  position: relative;
  top: 50%;
  margin-top: 100px;
  font-weight: 500; 
  color: #bbb;
}
