/*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS, USE WITH CAUTION.
*/

.custom_button, .content .custom_button {
		
    background-color: #c41230;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
    
    margin: 15px auto;
    border-radius: 0;
    border: none;
    min-width: 140px;
    transition: background .2s ease-out,color .2s ease-out,border .2s ease-out;
    -webkit-transition: background .2s ease-out,color .2s ease-out,border .2s ease-out;
    -moz-transition: background .2s ease-out,color .2s ease-out,border .2s ease-out;
    -ms-transition: background .2s ease-out,color .2s ease-out,border .2s ease-out;
    -o-transition: background .2s ease-out,color .2s ease-out,border .2s ease-out;
    position: relative;
    z-index: 3;

		
		}
		
		
		.custom_button:hover, .custom_button:focus{
    background-color: #002c76;
	color: #fff;
}