.radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.radio+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  margin-top: 1em;
  background-color: #F9FDFF;
}

.radio+label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 0.5em;
  background-image: url("icons/radio-unchecked.svg");
  background-size: cover;
}

.radio:checked+label::before {
  background-image: url("icons/radio-active.svg");
  background-size: cover;
}

.radio:not(:disabled):not(:checked)+label:hover::before {
  opacity: 0.5;
}

.range {
  -webkit-appearance: none;
  width: 100%;
  height: 64px;
  border-radius: 5px;  
  background: linear-gradient(90deg, #3FB1FF 0%, #19365E 108.28%);
  outline: none;
  margin: 0;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 48px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid #E00E2E; 
  background-image: url("icons/arrow-left.svg"), url("icons/arrow-right.svg");
  background-position: left, right;
  background-repeat: no-repeat;
  background-color: #fff;
  cursor: pointer;
}

.range::-moz-range-thumb {
  width: 48px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid #E00E2E;
  background-image: url("icons/arrow-left.svg"), url("icons/arrow-right.svg");
  background-position: left, right;
  background-repeat: no-repeat;
  background-color: #fff;
  cursor: pointer;
}
.input {
  border: 2px solid #EAEDEE;
  box-sizing: border-box;
  border-radius: 12px;
  height: 50px;
  width: 100%;
  padding-left: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select {
  background-color: #fff;
  -webkit-appearance: none;
}

.button {
  border-radius: 12px;
  height: 40px;
  width: 100%;
  max-width: 160px;
  display: inline-block;
  cursor: pointer;
  -webkit-appearance: none;
}
.button-next {
  background: #E00E2E;
  color: #ffffff;
  border-width: 0;
}
.button-back {
  background: #fff;
  color: #E00E2E;
  border-color: #E00E2E;
  border-style: solid;
  border-width: 1px;
}
.button-dream {
  background-color: #6CA1FF;
  background-position: 16px center;
  background-repeat: no-repeat;
  width: auto;
  color: #ffffff;
  border-width: 0;
  padding: 11px 14px 11px 44px;
  margin: 0.5em 0;
  max-width: none;
}
.button-start {
  height: 60px;
  width: 200px;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .button-start {
    margin: 0 auto;
  }
}
.button-share {
  background-image: url("icons/share.svg");
  background-position: 16px center;
  background-repeat: no-repeat;
  padding-left: 32px;
  margin: 64px 0;
}

.inactiveLanguage {
  display: flex;
  color: #E00E2E;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  height: 40px;
  width: 60px;
  border-radius: 0px 20px 20px 0px;
  cursor: pointer;
}

.activeLanguage {
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #E00E2E;
  height: 40px;
  width: 60px;
  border-radius: 20px 0px 0px 20px;
}

.language {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .language {
    margin: 0 auto;
  }
}