body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
  /* padding: 16px !important; */
}

.progress-bar {
  margin-top: 22px;
  height: 4px;
  width: 91%;
  background-color: #C3DEF3;
  /* background-color: #f1bec8; */
  border-radius: 100px;
}

.progress-bar .fill {
  background-color: #3E6FEB;
  /* background-color: #eb365a; */
  height: 100%;
  border-radius: 100px;
}

.slide-1 .progress-bar .fill {
  width: 75%;
}

.slide-2 .progress-bar .fill {
  width: 75%;
}

#android-slide-2 .progress-bar .fill,
#android-slide-2-cookies .progress-bar .fill {
  width: 100%;
}

.slide-3 .progress-bar .fill {
  width: 100%;
}

#progress-bar {
  display: block;
}

h1 {
  font-weight: 590;
  font-size: 32px;
  line-height: 32px;
  color: #323f4b;
}

.light-text {
  color: #6f8497;
  font-size: 20px;
}

.dark-text {
  color: #323f4b;
  margin: 0;
}

.bold-text {
  font-weight: 900;
  font-size: 23px;
}

.success-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.center {
  align-self: center;
}

.center-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

ol {
  list-style: none;
  counter-reset: counter;
  margin-top: 0px;
  margin-left: 10px;
  list-style-type: decimal;
}

ol li {
  counter-increment: counter;
  position: relative;
  height: 28px;
  margin-bottom: 6px;
  line-height: 28px;
  display: flex;
  color: #666666;
  font-size: 16px;
  list-style-type: decimal;
  /* font-weight: 600; */
}

ol li:nth-child(1)::before {
  opacity: 1;
}

ol li:nth-child(2)::before {
  opacity: 1;
}

ol li::before {
  content: counter(counter);
  color: rgb(0, 0, 0);
  position: absolute;
  --size: 28px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: #f6f6f7;
  border-radius: 50%;
  text-align: center;
  list-style-type: decimal;
}



.button-done {
  width: 167px;
  height: 47px;
  background: black;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  align-self: flex-end;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button-enable__container {
  width: 100%;
}

.button-enable {
  width: 100%;
  height: 47px;
  background: #eb365a;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  align-self: flex-end;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-enable .spinner {
  visibility: hidden;
}

#auth-error {
  visibility: hidden;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  color: red;
}

#auth-error.auth-error--visible {
  visibility: visible;
}

.button-back {
  width: 110px;
  color: #eb365a;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  align-self: flex-start;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  margin-top: 73px;
}

.button--loading {
  opacity: 25%;
}

.button--loading .spinner {
  visibility: visible;
}

.button--loading .button__text {
  visibility: hidden;
}

.inline-icons {
  margin: 0px 4px 0px 4px;
}

.inline-new-icons {
  margin: 2px 4px 0px 4px;
}

.inline-switch-icon {
  margin: 2px 4px 0px 4px;
}

.done-container {
  align-self: flex-end;
  margin-top: 8px;
  display: flex;
}

.slides-container {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  overflow-x: hidden;
}

.slide {
  height: 100%;
  flex: 1 0 100%;
  transition: transform 0.8s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-1,
.slide-2, .slide-3 {
  padding: 16px !important;
}

/* .slide.slide-3 {
  width: 100%;
   /* flex: 1 0 calc(100%); */
/* }  */
 

.success-image {
  width: 100%;
  object-fit: cover;
}

.link {
  text-decoration: none;
  color: #eb365a;
  align-self: center;
  font-weight: 700;
  margin-top: 16px;
}

.header {
  display: flex;
  justify-content: space-between;
  width: 98%;
}

.return-button {
  width: 91%;
  text-decoration: none;
  color: white;
  background: black;
  /* background: #eb365a; */
  height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  /* align-self: center; */
}

.padding {
  padding: 16px;
  color: #333;
}

.slide-enable {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 15vh);
}

.slide-enable h1 {
  font-size: 20px;
}

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

.spinner {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  width: 32px;
  height: 32px;
  color: #e5e7eb;
  fill: rgb(0 0 0 / 0.5);
  animation: spin 1s linear infinite;
}

img.responsive-img {
  position: fixed;
  bottom: 0;
  left: 30px;
  width: 25vh;
}

@media (min-height: 700px) {
  img.responsive-img {
    width: 33vh;
  }
}

@media (min-height: 650px) {
  img.responsive-img {
    width: 30vh;
  }
}