#container {
  position: relative;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}
.buttons {
  position: absolute;
  top: 180px;
  text-align: center;
  width: 100%;
}
.step-wizard {
  display: inline-block;
  position: relative;
  width: 85%;
}
.step-wizard .progress {
  position: absolute;
  top: 47px;
  left: 12.5%;
  width: 75%;
}
.step-wizard .progressbar {
  position: absolute;
  background-color: #3B5343;
  opacity: 1;
  height: 3px;
  width: 0%;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.step-wizard .progressbar.empty {
  opacity: 1;
  width: 100%;
  background-color: #d0d0d0;
}
.step-wizard ul {
  position: absolute;
  width: 100%;
  list-style-type: none;
  padding: 0;
  left: -2%;
}
.step-wizard li {
  display: inline-block;
  text-align: center;
  width: 24%;
}
.step-wizard li .step {
  text-align: center;
  position: absolute;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #d0d0d0;
  background: #ffffff;
  -webkit-transition: background-color 0.6s ease, border-color 0.6s ease;
  -o-transition: background-color 0.6s ease, border-color 0.6s ease;
  transition: background-color 0.6s ease, border-color 0.6s ease;
}
.step-wizard li .title {
  text-decoration: underline;
  position: absolute;
  width: 100%;
  left: 20px;
  padding-top: 42px;
  color: #777;
  -webkit-transition: color 0.6s ease;
  -o-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
.step-wizard li.active .step {
  border-color: #3B5343;
  color: #3b5343;
}
.step-wizard li.active .title {
  text-decoration: none;
  color: #3b5343;
  font-weight: bold;
}
.step-wizard li.done .title {
  color: #3b5343;
}
.step-wizard li.done .title:hover {
  color: #3B5343;
}
.step-wizard li.done .step {
  color: white;
  background-color: #3B5343;
  border-color: #3B5343;
}
.step-wizard li > a {
  display: block;
  width: 100%;
  color: #777;
  position: relative;
  text-align: center;
}
.step-wizard li > a:hover .step {
  border-color: #3b5343;
  background: #eee;
  color: #3b5343;
}
.step-wizard li > a:hover .title {
  color: #3b5343;
}
@media only screen and (max-width: 1200px) {
  .step-wizard li {
    width: 24%;
  }
}
@media only screen and (max-width: 375px) {
  .step-wizard li {
    width: 22%;
  }
}
li.done a span.step {
  font-size: 0;
}
li.done a span.step::before {
  content: "\2713 ";
  font-size: 18px;
}

/*ÖZEL RADYO*/

label.ozel-radyo {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
  /* Accessible outline */
  /* Remove comment to use */
  /*
  	&:focus-within {
  			outline: .125em solid $primary-color;
  	}
  */
}
label.ozel-radyo input {
  position: absolute;
  left: -9999px;
}
label.ozel-radyo input:checked + span {
  background-color: #d6d6e5;
}
label.ozel-radyo input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #00005c;
}
label.ozel-radyo span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}
label.ozel-radyo span:hover {
  background-color: #d6d6e5;
}
label.ozel-radyo span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #00005c;
}

