.ccUIContactAreaFont {

	color: #000000; 
	
	font-family: var(--ccUIFontFamily); 
	font-size: 22px;
	
	line-height: 28px;
	
	text-decoration: none;
}

.ccUIContactAreaAnchor {
	
	background-size: 24px 24px;
	background-position: left center;
	background-repeat: no-repeat;
	
	padding-left: 30px;
	
	margin-bottom: 10px;
	
	display: inline-block;
	
	cursor: pointer;
}

.ccUIContactAreaEmailAnchor {
	
	background-image: url('https://files.cloudcomp.com.br/Images/EmailBlack01.svg');
}

.ccUIContactAreaPhoneAnchor {
	
	background-image: url('https://files.cloudcomp.com.br/Images/PhoneBlack01.svg');
}

.ccUIContactAreaWhatsAppAnchor {
	
	background-image: url('https://files.cloudcomp.com.br/Images/WhatsAppBlack01.svg');
}

.ccUIContactAreaLocationAnchor {
	
	background-image: url('https://files.cloudcomp.com.br/Images/LocationBlack01.svg');
}

.ccUIContactFormTable {
	
	width: 80%;
	
	max-width: 500px;
}

.ccUIContactFormInputLabel {
	
	font: var(--ccUIFontFamilyBold);
	
	font-size: 18px;
	
	line-height: 18px;
	
	padding-bottom: 5px;
	
	color: #000000;
}

.ccUIContactFormInput {
	
	font: var(--ccUIFontFamily);
	
	font-size: 18px;
	
	line-height: 18px;
	height: 28px;
	
	background-color: none;
	
	border: none;
	border-bottom: solid 2px #E1E1E1;
	
	color: #6B6C70;
	
	box-sizing: border-box;
	
	padding: 5px 0px;
	
	width: 100%;
	
	background-color: transparent;
}

.ccUIContactFormInput::placeholder {
	
	color: #CED2D1;
}

.ccUIContactFormInput:focus {
	
	border-color: #386FCB;
}

.ccUIContactFormTextArea {
	
	font: var(--ccUIFontFamily);
	font-size: 20px;
	
	line-height: 24px;
	
	height: 120px;
	
	box-sizing: border-box;
	
	padding: 0px;
	padding: 5px 0px;
	
	width: 100%;
	
	background-color: none;
	
	border: none;
	border-bottom: solid 2px #E1E1E1;
	
	color: #6B6C70;

	background-color: transparent;	
}

.ccUIContactFormTextArea::placeholder {
	
	color: #CED2D1;
}

.ccUIContactFormTextArea:focus {
	
	border-color: #386FCB;
}

.ccUIContactFormButton {

/* EmailWhite01.svg */
	background-image: url('https://files.cloudcomp.com.br/Images/EmailWhite01.svg');
	background-position: 15px center;
	background-repeat: no-repeat;
	background-size: 22px 22px;
	
	font-size: 18px;
	
	line-height: 18px;
	
	color: #FFFFFF;
	
	background-color: #386FCB;
	
	transition: all 0.3s;
	
	border-radius: 5px;
	
	display: inline-block;
	
	padding: 15px 20px 15px 50px;
	
	cursor: pointer;
}

.ccUIContactFormButton:hover {
	
	outline: 0px;
	
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.ccUIContactFormButton.owsButton:focus, owsUIContactFormButton.owsButton:active {
	
	outline: 0px;
}

@media only screen and (max-width: 768px) {
	
	.ccUIContactFormTable {
		
		width: 100%;
	}	

	.ccUIContactAreaFont {
	
		font-size: 18px;
		
		line-height: 22px;		
	}
	
	.ccUIContactAreaAnchor {
		
		background-size: 20px 20px;
		background-position: left center;
		background-repeat: no-repeat;
		
		padding-left: 30px;
		
		margin-bottom: 10px;
		
		display: inline-block;
		
		cursor: pointer;
	}
}

