.loading-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-content {
  height: 535px;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-logo {
  width: 125px;
  height: 43px;
  margin-top: 57px;
}

.loading-spinner {
  border: 3px solid #009688;
  border-top: 3px solid #ECEFF2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width: 33px !important;
  height: 33px !important;
  animation: spin 1.1s linear infinite;
  top: calc(50% - 30px) !important;
  position: absolute !important;
  left: calc(50% - 17px) !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  } to {
    transform: rotate(360deg);
  }
}