@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #5b5b60;
}

.MuiMobileStepper-dot {
  background-color: #a4e22d !important;
  opacity: 0.2 !important;
  width: 50px !important;
  border-radius: 3px !important;
  height: 4px !important;
  align-self: center;
  margin-right: 28px !important;
}

.try-again {
  background: #f27023 !important;
  font-size: 14px !important;
}

.swal-content {
  text-align: center;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.53;
  letter-spacing: 0.38px;
}

.swal {
  color: #595959;
  font-family: 'Source Sans Pro';
}

.MuiMobileStepper-dotActive {
  opacity: 1 !important;
  height: 6px !important;
}

#root {
  height: 100vh;
}

#uiContainer {
  margin: auto;
  width: 90%;
}

h1 {
  text-align: center;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.imageBox img {
  width: 100px;
  height: 180px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.imageBox {
  text-align: justify;
  width: 100px;
}

.loader-wrap {
  position: fixed;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-left: -60px;
  margin-top: -60px;
  display: none;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  border-bottom: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}
