/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/

/* Contact 7 Forms
--------------------------------------------- */
.entry-content .wpcf7 input {
	margin-bottom: 0;
}

.wpcf7 {
	color: #000000;
	font-weight: normal;
	font-family: open sans, arial, helvetica, tahoma, sans-serif;
}

/*Input Fields*/
.wpcf7 input[type="password"], .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
	width: 50%;
	background: rgba(255,255,255,.70) !important;
	border: 2px solid  #e0005f;
	font-family: open sans, arial, helvetica, tahoma, sans-serif;
  	text-transform: none;
}

.wpcf7-textarea {
	height: 80px;
}

/*Message Area*/
.wpcf7 textarea {
	width: 75%;
	background: rgba(255,255,255,.70) !important;
	border: 2px solid #e0005f;
	font-family: open sans, arial, helvetica, tahoma, sans-serif;
  	text-transform: none;
	padding: 6px;
}

.wpcf7 :focus {
	outline: none;
}

/*All Fields when Active*/
.wpcf7 input[type="text"]:active, .wpcf7 input[type="email"]:active, .wpcf7 textarea:active,
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 textarea:focus {
	background-color: #e5f7ff !important;
	border: 2px solid #E69C78;
}

/*Send Button*/
.wpcf7  input[type="submit"] {
	padding: 10px 20px;
	background-color: #6699FF;
	color: #ffffff;
	text-align: left;
	border: 1px solid #99CCFF;
	float: left;
}

/*Send button hover*/
.wpcf7 input[type="submit"]:hover {
	background-color: #e0005f;
	border: 1px solid #e0005f;
}

div.wpcf7-response-output {
	margin: 2em 0 1em;
	padding: 20px 10px;
	font-family: open sans, arial, helvetica, tahoma, sans-serif;
	font-size: 1.2em;
}

div.wpcf7-mail-sent-ok {
	border: none;
	background-color: #8ED2C0;
	color: #fff;
}

div.wpcf7-mail-sent-ng {
	border: none;
	background-color: #8ED2C0;
	color: #fff;
}

div.wpcf7-spam-blocked {
	border: none;
	background-color: #f85342;
	color: #fff;
}

div.wpcf7-validation-errors {
	border: none;
	background-color: #f85342;
	color: #fff;
}

span.wpcf7-not-valid-tip {
	color: #f85342;
	font-size: 1em;
	display: block;
}