.feedback {
    overflow: hidden;
    background:  ;
}

.feedback .form-box dl{
    margin-bottom: 20px;
}
.feedback .form-box dl dt{
    display: none;
}
.feedback .form-box dl dd span {
    display: block;
}

.feedback .form-box dl dd span.captcha {
    position: relative;
}

.feedback .form-box dl dd span.captcha i {
    position: absolute;
    top: 2px;
    right: 1px;
    bottom: 1px;
    border: 3px;
    padding: 5px;
    padding-bottom: 0;
}

.feedback .form-box dl dd span.captcha img {
    display: block;
    max-height: 100%;
    cursor: pointer;
}

.feedback .form-box button{
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  width: 100%;
  padding: 15px 25px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: rgb(29,26,37);
  background-color: rgb(252,107,0);
  border: 2px solid rgb(252,107,0);
}

.feedback .form-box button:hover{
    color: #ffffff;
    border-color: rgb(29,26,37);
}

.feedback .form-box button:after{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 100%;
  z-index: -1;
  bottom: 0; 
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
  background-color: rgb(29,26,37);
}
.feedback .form-box button:hover:after{
  height: 100%;
  top: 0;
  bottom: auto;
  visibility: visible;
  opacity: 1;
}

.feedback .info-box li .reply {
    border: 1px solid #f0f0f0;
    background: rgba(0, 0, 0, .008);
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.feedback .info-box li .reply>b {
    font-weight: inherit;
    padding: 5px 0;
    display: block;
    opacity: .8;
}
.feedback .page-box{
    padding: 20px 0;
}
select, textarea, input[type=file], input[type=text], input[type=password], input[type=number], input[type=tel], input[type=email]{
    border-radius: 0;
    background: transparent;
    height: 50px;
    padding: 10px;
    border: 1px solid #616F7D;
    margin-bottom: 30px;
}
.feedback *::-webkit-input-placeholder {
    color: ;
    color: ;
}

.feedback *::-moz-input-placeholder {
    color: ;
    color: ;
}

.feedback *::-ms-input-placeholder {
    color: ;
    color: ;
}

@media(min-width:992px) {
    .feedback .info-box li .reply {
        padding: 10px 12px;
    }
}

@media(max-width:991px) {
    .feedback .info-box li .reply {
        padding: 5px 10px;
    }
    .feedback .form-box button {
    font-size: 16px;
    }
}

@media(max-width:767px) {
    .feedback .info-box li .reply {
        margin-top: 10px;
        margin-bottom: 5px;
    }
}