.js-request-form {
padding:15px;
}

.modal-form-btn {
	cursor:pointer;
}

.modal__label {
    font-family: "Roboto", Arial, sans-serif;}

.success-text{
	display: none;
	font-family: "Roboto", Arial, sans-serif;
	padding: 15px;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  max-width: 400px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  text-align: center;
}

.modal__title {
  font-size: 24px;
}

.form-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 600px;
  
}

::-webkit-input-placeholder {     font-family: "Roboto", Arial, sans-serif;}
::-moz-placeholder {     font-family: "Roboto", Arial, sans-serif;}
:-ms-input-placeholder {     font-family: "Roboto", Arial, sans-serif;}
:-moz-placeholder {     font-family: "Roboto", Arial, sans-serif;}

.form-control {
  border-radius: 10em;
  text-align: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@-moz-document url-prefix() {
	.form-control {
	margin-bottom:10px
	}
}

.btn {
  display: inline-block;
	
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
}
.btn-feedback {
	text-transform:uppercase;
	cursor:pointer;
  background-color: #000000;
  -webkit-border-radius: 10em;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 15px;
  color: #fff;
  line-height: 1;
	transition:all 0.3s ease 0s;
	    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;

}
.btn-feedback:hover{
background-color: #febd17;
	color:#000;
	
}

.btn-feedback:disabled {
background-color:#c3c3c3;
}
.btn-feedback:disabled:hover {
	cursor:not-allowed;
	color:#fff;

}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
	position: absolute;
    top: 0;
    right: 15px;
}

    
    

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
	
  font-family: "Roboto", Arial, sans-serif;
	    text-transform: uppercase;
  padding: 16px;
  background-color: #FDBC2D;
  color: #000;
justify-content: center;
}

.modal-body {
  padding: 20px 0;
}