body, html {
    height: 100%;
    margin: 0;
    background-color: black;
}

#loading-screen {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: black;
    visibility: hidden;
}

.splash-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.logo {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.splash-animation {
    z-index: 100;
    width: 80%;
}

.bar-loader {
    width: 70%;
    height: 2%;
    max-height: 4px;
    min-height: 4px;
    max-width: 600px;
    margin-top: 80px;
    background-color: #4a4a4a;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

#progress-bar-fill {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #22e17c;
}

.bounce-in-fwd {
	-webkit-animation: bounce-in-fwd 0.5s both;
	        animation: bounce-in-fwd 0.5s both;
}

 @-webkit-keyframes bounce-in-fwd {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    70% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    85% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
      }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-fwd {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    70% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    85% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
      }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }

