.prop_line {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  align-items: center;
}
.prop_line label {
  display:block;
  margin: 3px 5px;
  margin-left: 10px;
  cursor:pointer;
}
.prop_line label span {
  font-weight: 400;
  border: 1px #838383 solid;
  padding: 5px 10px;
  display:block
}
.prop_line label input {
  display: none;
}
.prop_line label input:checked + span{
  border: 2px #A618BD solid;
  margin: -1px;
}
.config p:first-child {
    font-weight: bold;
    font-size: 18px;
    margin-top: 16px;
}
.submit_btn {
    background: rgb(150,18,199);
    background: -moz-linear-gradient(top,  rgba(150,18,199,1) 0%, rgba(188,30,175,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(150,18,199,1) 0%,rgba(188,30,175,1) 100%);
    background: linear-gradient(to bottom,  rgba(150,18,199,1) 0%,rgba(188,30,175,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9612c7', endColorstr='#bc1eaf',GradientType=0 );
    color: #fff !important;
    border-radius: 40px;
    width: 210px;
    /* height: 50px; */
    padding: 15px 20px;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
    transition: 0.8s;
    position: relative;
    cursor: pointer;
	border:0px;
}

.form_personal{
	display:none;
}

.order_form_container.active .form_personal{
	display:block;
}

.order_form_container.active {
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.order_form_container.active #order_form {
  background: #F9F9F9;
  padding: 50px;
  max-width: 1030px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.order_form_container.active .prop_line {
  background: #fff;
  box-shadow: 30px 0px 0px #fff, -30px 0px 0px #fff;
}
.order_form_container.active .form_personal_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 16px;
}
.order_form_container.active .form_personal_flex > label {
  width: 50%;
  flex: 1 1 auto;
  margin-bottom: 30px;
}
.order_form_container.active .form_personal_flex textarea {
  width: 100%;
}
.order_form_container.active .form_personal > p:first-child {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 24px;
}