/* ********************************************************************************** *
 *                                                                                    *
 *   Please, place all global styles that need to be applied to the whole app here.   *
 *                                                                                    *
 * ********************************************************************************** */

html,
body {
  font-size: 16px;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  color: #5a5a5a; /* primary text color */
  margin: 0;
}

div .custom-ripple {
  background: rgba(0, 0, 0, 0.22);
}

.initial-loader-outer-container {
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  color: rgb(90, 90, 90);
  display: flex;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 100vh;
  justify-content: center;
  width: 100vw;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-font-smoothing: antialiased;
}

@keyframes progress-loader-inner-container {
  100% {
    transform: rotate(360deg);
  }
}

.initial-loader-inner-container {
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 1.4s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: progress-loader-inner-container;
  animation-play-state: running;
  animation-timing-function: linear;
  box-sizing: border-box;
  color: rgb(0, 85, 164);
  display: block;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 16px;
  width: 40px;
  -webkit-font-smoothing: antialiased;
}

@keyframes progress-loader-circle {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0px;
  }

  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }

  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -120px;
  }
}

.initial-loader-circle {
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 1.4s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: mui-progress-circular-dash;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
  box-sizing: border-box;
  color: rgb(0, 85, 164);
  display: inline;
  fill: none;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 16px;
  stroke: rgb(0, 85, 164);
  stroke-dasharray: 34.6073px, 200px;
  stroke-dashoffset: -5.09202px;
  stroke-width: 3.6px;
  transform-origin: 0px 0px;
  -webkit-font-smoothing: antialiased;
}
