/*================================================================
/*  Contact
/*===============================================================*/

.input-label{
	font-family: inherit;
	color:#777;
	font-size: 13px;
	font-weight: 600;
	margin: 0px 0px 0px;
	text-transform: uppercase;
}

input[type="text"], input[type="email"], input[type="url"], 
input[type="tel"], input[type="password"], input[type="number"], textarea {
    font-family: inherit;
	color: #495057;
	font-size: 14px;
	font-weight:400;
	background: transparent;
	background: #f5f7f2;
    border: 1px solid #ddd;
    border: 1px solid #a8d5b480;
	/*border-left:2px solid #ddd;*/
    display: block;
    margin: 10px 0 25px 0;
    padding: 8px;
    padding-left: 12px;
	max-width: 100%;
	width: 100%;
	border-radius: 4px;	
	transition: all 0.3s ease-in-out;

	letter-spacing: 0.2px;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
	transition: border-color .25s ease-in-out, box-shadow .25s ease-in-out;
	outline: none;

}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, 
input[type="tel"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus {
	border: 1px solid #ddd;
	/*border-left:2px solid #33333360;*/
	box-shadow: 0 0 0 3px rgb(232, 187, 157, .5);


	border-color: #a8d5b4;
  	outline: 0;
  	box-shadow: 0 0 0 3px rgba(41, 155, 70, 0.25);
}

textarea{
	height: 100px;
	line-height:20px;
}

::placeholder { color: #666; opacity: 0.5; }

input[type="submit"], .send-btn, .btn-green{
	font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #299b46	;
	font-size: 15px;
    font-weight: 500;
    line-height: 1.42857;
    text-align: center;
    border: 0;
	text-decoration: none;
	display: inline-block;
    padding: 12px 20px 12px 20px;
    margin-bottom: 10px;
	margin-top:10px;
    border-radius: 4px;
	letter-spacing:1px;
    transition: all 1s ease 0s;
}
.send-btn::before{
	content:close-quote;
	}
input[type="submit"]:hover, .send-btn:hover, .btn-green:hover{
	background: #50b96a;
	color:#fff;
	box-shadow: inset 12.5em 0 0 0 #50b96a;
	transition: all 1s ease 0s;
}

.ripple{position:relative;overflow:hidden}
.ripple:after{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;background-image:	radial-gradient(circle,#000 10%,transparent 10.01%);background-repeat:no-repeat;background-position:50%;transform:scale(10,10);opacity:0;transition:transform .5s,opacity 1s}
.ripple:active:after{transform:scale(0,0);opacity:.2;transition:0s}


.SuccessBox{
	font-family: inherit;
	color:#3C763D;
	border:1px solid #D6E9C6;
	border-left:4px solid #699;
	background-color:#DFF0D8;
	padding:15px;
	margin:0;
	margin-top:20px;
	width:100%;
	border-radius:2px;
}
.ErrorBox{
	font-family: inherit;
	color:#555;
	border:1px solid #F99;
	border-left:4px solid #F99;
	background-color:#FFCACA;
	padding:15px;
	margin:0;
	margin-top:20px;
	width:100%;
	border-radius:2px;
}

.SuccessMsgWD{
	font-family: inherit;
	color:#91d0bc;
	font-size:28px;
	padding-left:20px;
	margin-top:20px;
}
.SuccessMsgSEND{
	font-family: inherit;
	color:#888; 
	font-size:36px;
	font-weight:300;
	border-left:2px solid #bee6d9;
	margin:25px 0 0 20px;
	padding:0 0 0 30px;
}
.SuccessMsgStaff { 
	color:#aaa; font-size:22px; border-left:2px solid #bee6d9;
	margin:0px 0 0 20px;
	padding:0 0 0 30px;
}
.SuccessMsgTNX{
	font-family: inherit; 
	color:#888; 
	font-size:24px;
	padding-left:20px;
	margin-top:50px;
}

@media screen and (max-width: 767px) {

	input[type="submit"], .send-btn, .btn-green { width: 100% !important; }
	
	.SuccessMsgWD{
		padding-left:5px;
		margin-top:0px;
	}
	.SuccessMsgSEND{
		font-size:32px;
		line-height:1.3;
		padding:0 0 0 30px;
		margin:25px 0 0 5px;
	}
	.SuccessMsgStaff { 
		font-size:16px;
		line-height:1.2;
		padding:10px 0 0 30px;
		margin:0px 0 0 5px;
	}
	.SuccessMsgTNX{
		font-size:18px;
		line-height:1.3;
		padding:5px;
		margin-top:30px;
		margin-bottom:0;
	}
}

/*=====/ Contact /===============================================*/