* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #e5f1fe;
  font-family: "Montserrat";
  font-size: 22px;
}

#qtspinner {
  position: absolute;
  height: 550px;
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%)
}

#screen {
  width: 100%;
  height: 100%;
}

.card {
  display: flex;
  width: 500px;
  min-height: 350px;
  height: auto;
  padding: 40px 24px 0 24px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 12px;
  background: #fff;

  /* Shadow/xl */
  box-shadow: 0 20 24 -4 rgba(16, 24, 40, 0.08), 0 8 8 -4 rgba(16, 24, 40, 0.03);
}

.text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  align-self: auto;
}

#heading {
  color: #101828;
  text-align: center;
  align-self: stretch;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

#headingError {
  color: #101828;
  text-align: center;
  align-self: stretch;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

#descriptionError {
  align-self: stretch;
  color: #475467;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

#support {
  display: flex;
  width: auto;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
  color: #2e97de;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

#slides {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#error {
  width: 100%;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#error-picture {
  width: 100%;
  height: 300px;
  background-size: 500% 500%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #fdeae7;
  border-radius: 1rem;
}

.btn {
  width: 100px;
  height: 35px;
  border-radius: 6px;
  background-color: #0870dc;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  box-shadow: 0 20 24 -4 rgba(16, 24, 40, 0.08), 0 8 8 -4 rgba(16, 24, 40, 0.03);
  border-color: transparent;
  margin-bottom: 40px;
}

#loading-icon {
  width: 48;
  height: 48;
  display: block;
}