@charset "utf-8";
/* CSS Document */

.custom_button {
	background-color: #1FA1ED;
	border-radius: 3px;
	color:  #FFF;
	text-align: center;
	padding: 5px, 10px, 5px, 10px;
}

.custom_button:hover {
	background-color:  #ED951F;
	color:  #FFF;
}

.custom_button:active {
	background-color:  #ED951F;
	color:  #FFF;
}

.custom_button:focus {
	background-color: #1FA1ED;
	color:  #FFF;
}

.custom_button:focus:hover {
	background-color:  #ED951F;
	color:  #FFF;
}

.invalid_input {
	border-color: red;
}

.form_err_desc {
	display: none;
	color: red;
	margin-top: -2px;
    margin-left: 13px;
    margin-bottom: -10px;
}

/* Start of Mobile query */
@media (max-width: 740px){

}

/* End of Mobile query */
/*----------------------------------------------------------------------------------------------------------------------------------------------*/


/* Start of tablet query */
@media (min-width: 741px) and (max-width: 1023px){

}

/* End of tablet query */
/*----------------------------------------------------------------------------------------------------------------------------------------------*/

/* Start of desktop query */
@media (min-width: 1024px){
	
}
/*----------------------------------------------------------------------------------------------------------------------------------------------*/
