body {
  margin: 0 !important;
  padding: 0 !important;
  height:100%;
  background: #242424;
  font-family: 'Roboto', sans-serif !important;
}

html{
  height:100%;
}

button {
  font-family: 'Roboto', sans-serif !important;
}

input {
  font-family: 'Roboto', sans-serif !important;
}

textarea {
  font-family: 'Roboto', sans-serif !important;
}

* {
  box-sizing: border-box;
}

#react-container{
  height:100% !important;
  background: white;
}

#loader-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
}

.loaded #loader-wrapper {
    visibility: hidden;
}

#loader {
    z-index: 1001;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #ff751a;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

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