@import url("https://fonts.cdnfonts.com/css/satoshi");

:root {
  --primary: #d3b7ff;
  --secondary: #9fcdf9;
  --white: #fbfbfb;
  --black: #000000;
  --header-background: #eff0f6;
  --header-color: #6f6c90;
  --stroke: #e1e3e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  outline: none;
}

body {
  margin: 0px;
  font-family: "Satoshi", sans-serif;
}
.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.form {
  align-items: center;
}

.wrapper {
  max-width: 100%;
  padding: 45px;
  border-radius: 5px;
}

.wrapper .header {
  display: flex;
  justify-content: center;
}

.wrapper .header ul {
  display: flex;
}

.wrapper .header ul li {
  margin-right: 50px;
  position: relative;
}

.wrapper .header ul li:last-child {
  margin-right: 0;
}

.wrapper .header ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 55px;
  width: 100%;
  height: 4px;
  background: var(--header-background);
}

.wrapper .header ul li:last-child:before {
  display: none;
}

.wrapper .header ul li div {
  padding: 5px;
  border-radius: 50%;
}

.wrapper .header ul li p {
  width: 50px;
  height: 50px;
  background: var(--header-background);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}

.wrapper .header ul li.active:before {
  background: var(--primary);
}

.wrapper .header ul li.active p {
  background: var(--primary);
  color: var(--white);
}

.wrapper .form_wrap h2 {
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.wrapper .form_wrap .input_wrap {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 20px;
}

.wrapper .form_wrap .input_wrap:last-child {
  margin-bottom: 15px;
}

.wrapper .form_wrap .input_wrap label {
  display: block;
  margin-bottom: 5px;
}

.wrapper .form_wrap .input_wrap .input {
  border: 1.5px solid var(--stroke);
  border-radius: 6px;
  padding: 10px;
  display: block;
  width: 100%;
  font-size: 16px;
  transition: 0.5s ease;
}

.wrapper .form_wrap .input_wrap .input:focus {
  border-color: var(--primary);
}

.btns_wrap {
  width: 350px;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.btn_back {
  padding: 12px 15px;
  background: var(--primary);
  color: var(--white);
  width: 135px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.5s ease;
  cursor: pointer;
  font-family: "Satoshi", sans-serif;
  border: 3px solid white;
}
.btn_done {
  padding: 12px 15px;
  background: var(--primary);
  color: var(--white);
  width: 135px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.5s ease;
  cursor: pointer;
  font-family: "Satoshi", sans-serif;
  border: 3px solid white;
}
.btn_next {
  padding: 12px 15px;
  background: var(--primary);
  color: var(--white);
  width: 135px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.5s ease;
  cursor: pointer;
  font-family: "Satoshi", sans-serif;
  border: 3px solid white;
}

.btn_back {
  background: var(--secondary);
}

.btn_next .icon {
  display: flex;
  margin-left: 10px;
}

.btn_back .icon {
  display: flex;
  margin-right: 10px;
}

.btn_next:hover,
.btn_done:hover {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn_back:hover {
  background: var(--white);
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.two-columns-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.sidebar {
  height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(
    var(--primary),
    var(--secondary),
    var(--white)
  );
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
}

@keyframes Gradient {
  0% {
    background-position: 88% 0%;
  }
  50% {
    background-position: 13% 100%;
  }
  100% {
    background-position: 88% 0%;
  }
}
.logo {
  width: 60%;
}
.radio-btn-wrapper {
  display: flex;
}
.radio-btn {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  margin-right: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Aus W3 Schools */
/* Hide the browser's default radio button */
.radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border-radius: 50%;
  vertical-align: middle;
}

/* On mouse-over, add a grey background color */
.radio-btn:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-btn input:checked ~ .checkmark {
  background-color: var(--primary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-btn input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-btn .checkmark:after {
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
}

.date {
  width: 15rem;
  padding: 10px;
  height: 2.5rem;
  border: 1.5px solid var(--stroke);
  border-radius: 6px;
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
}

.dropdown {
  width: 15rem;
  padding: 10px;
  border: 1.5px solid var(--stroke);
  border-radius: 6px;
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
}
.textarea {
  max-width: 100%;
  min-width: 100%;
  padding: 10px;

  height: 6rem;
  border: 1.5px solid var(--stroke);
  border-radius: 6px;
  font-family: "Satoshi", sans-serif;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 5px;
  background: var(--stroke);
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border: 1.5px solid var(--stroke);
  border-radius: 6px;
}
.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04aa6d;
  cursor: pointer;
}
.btn_done {
  width: 200px !important;
}
.hide {
  display: none;
}
.input_wrap .btn {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.input_wrap #btn-confirm {
  background-color: var(--primary);
}
.input_wrap #btn-reset {
  background-color: var(--secondary);
}
.autofill {
  font-family: "Satoshi", sans-serif;
}
.autofill .txt-s {
  font-size: 16px;
}
.MinimapFooter {
  display: none;
}
.blue {
  color: var(--secondary);
}
fieldset {
  border: none;
}
.filled {
  background-color: var(--primary) !important;
  color: var(--white);
}
.error-text {
  color: var(--secondary);
}

@media screen and (max-width: 800px) {
  .two-columns-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    height: 20vh;
  }
  .wrapper {
    width: 100vw;
    padding: 20px;
  }
  .header {
    padding: 20px;
  }
}
