.main {
  background: #fff1c607;
  width: 100%;
  min-height: 100%;
  text-align: center;
  font-family: IRANSans;
  direction: rtl;
  transition: 1s;
  padding-top: 5rem !important;
}

body {
  background: #fff1c6;
  outline: none;
}

* {
  outline: none;
}



.main_modal {
  background: #fff;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  border-radius: 3px;
}
.main_modal .help_buttom {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 30px;
  color: #fff;
  font-weight: lighter;
}
.main_modal .steps {
  right: 0;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  width: 22%;
  padding: 20px;
  height: 500px;
  padding-top: 50px;
  font-size: 13px;
  float: right;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  padding-bottom: 100px;
}
.main_modal .steps ul {
  text-align: right;
}
.main_modal .steps ul li {
  list-style: none;
  padding: 10px;
  position: relative;
}
.main_modal .steps ul li a {
  transition: 0.5s;
  text-decoration: none;
  color: #fff;
}
.main_modal .steps ul li a:hover {
  opacity: 0.8;
}
.main_modal .steps ul li:before {
  content: " ";
  background: #fff;

  height: 20px;
  width: 20px;
  right: -20px;
  border-radius: 50%;
  position: absolute;
}
.main_modal .steps ul li.done:after {
  content: "\f3fd";
  color: #f90;
  font-family: Ionicons;
  right: -15px;
  position: absolute;
  font-size: 2em;
  top: 0;
}
.main_modal .steps ul li.current {
  font-weight: bold;
}
.main_modal .steps ul li.current:after {
  content: "\f21b";
  color: #fff;
  font-family: Ionicons;
  right: -13px;
  position: absolute;
  font-size: 0.5em;
  top: 15px;
}
.main_modal .steps:after {
  content: "";
}
.main_modal .content {
  direction: rtl;
  width: 75%;
  padding: 10px;
  left: 0;
  float: left;
  color: #999;
  padding-bottom: 100px;
}
.main_modal .content section {
  text-align: right;
  padding: 10px;
}
.main_modal .actions {
  bottom: 0;
  position: absolute;
  height: 50px;
  text-align: left;
  left: 30px;
}
.main_modal .actions li {
  float: left;
  left: 0;
  margin: 5px;
  list-style: none;
  color: #a0abb0;
}
.main_modal .actions li a {
  border-radius: 1000000px;
  border: 1px solid #a0abb0;
  color: #a0abb0;
  padding: 4px 40px;
  font-size: 10px;
  text-decoration: none;
}
.main_modal .actions li:nth-child(2) a {
  color: #fff;
  background: #7cd5f5;
  background-image: linear-gradient(0deg, #f0ba00, #f48d06);
  /* border: 1px solid #f48d06;
      box-shadow: 0px 0px 10px #f48d06; */
}
.main_modal .title {
  display: none;
}
.main_modal .title.current {
  display: block;
}
.main_modal .bar-con {
  background-color: #fff;
  height: 9px;
  margin-bottom: 1em;
  border: 1px solid #27c5fc;
  border-radius: 100000px;
}
.main_modal .bar {
  float: left;
  position: relative;
  height: 100%;
  width: 0%;
  background-color: #27c5fc;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: width cubic-bezier(0.72, 0.45, 0.9, 0.12) 4s;
  -webkit-transition: width cubic-bezier(0.72, 0.45, 0.9, 0.12) 4s;
  -moz-transition: width cubic-bezier(0.72, 0.45, 0.9, 0.12) 4s;
  -o-transition: width cubic-bezier(0.72, 0.45, 0.9, 0.12) 4s;
}
.main_modal .bar:after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  right: -10px;
  border-left: 8px solid #27c5fc;
  border-top: 8px solid #27c5fc;
  border-right: 8px solid transparent;
  border-bottom: 0 solid transparent;
}
.main_modal #wizard {
  box-shadow: 0px 0px 28px #f2cc88;
}

@media (max-width: 768px) {
  .main {
    padding: 0;
    padding-top: 20px;
  }
}

@media (max-width: 400px) {
  .steps {
    display: none;
  }
  .main_modal .content {
    width: 100%;
  }
}

/* place holder */
.form-control::placeholder {
  color: #ccc;
}
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}

