/* Base Application Styles */

html {
  display: flex;
  flex: 1;
}

body {
  display: flex;
  flex: 1;
}


#app {
  display: flex;
  flex: 1;
}


.index {
  display: flex;
  flex: 1;
  background-color: #F5F5F5;
}

.full-wrap {
  display: flex;
  flex: 1;
}

.dashboard-container {
  display: flex;
  flex: 1;
  flex-direction: column;
}

/* For app's initial loading while DOM renders */
.app-start-loader-wrapper {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  background-color: #FAFAFB;
  height: 100vh;
  width: 100vw;
}

.app-start-loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #4dba97;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: spin .85s linear infinite;
  margin-top: 40px;
  margin-bottom: 40px;
}

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