/**
 * Astra Theme compatibility with Contact Form 7
 */
.wpcf7 form {
  position: relative;
}

.wpcf7 form > p,
.wpcf7 form > div {
  margin-bottom: 1.2em;
}

.wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7 input:not([type="submit"]):focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #eaeaea;
  outline: 0;
}

.wpcf7 input:not([type="submit"]), .wpcf7 textarea, .wpcf7 select {
  width: 100%;
  padding: 0.75em;
}

.wpcf7 input[type="file"] {
  color: #666;
  height: auto;
  border-radius: 2px;
  box-shadow: none;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  display: inline-block;
  background: #E9EEF2;
  color: #555;
  clear: none;
  cursor: pointer;
  line-height: 0;
  height: 1.2em;
  margin: -3px 4px 0 0;
  outline: 0;
  padding: 0;
  border-radius: 0.2em;
  text-align: center;
  vertical-align: middle;
  width: 1.4em;
  min-width: 1.4em;
  transition: all 0.2s linear;
}
input:focus, textarea:focus {
	outline: 0;
	box-shadow: 0 0 5px 0 #000!important;
	border: 2px solid #000!important;
	
}
input, textarea, select {
	border: 2px solid #dddddd!important; 
	height: 40px;
}

label span input {
    width: 100%;
}
label span textarea {
    width: 70%;
}
textarea {
	height:100px;
}

.submit-button input {
	color: #fff;
	background: #00C853;
	padding: 12px 25px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	border-radius:4px;
	border: none!important;
	display: inline-block;
	height: auto;
	cursor:pointer;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

@media only screen and (max-width: 600px) {
	label span textarea {
		width: 100%;
	}
	.submit-button input {
		margin-left:17%;
	}
}