/******************************************************************************
* Buttons
******************************************************************************/
a,
button,
btn,
.btn {
    -webkit-transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
    -moz-transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
    -o-transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
    transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out, opacity 0.3s ease-out;
}

.button,
a.button,
button {
	background-color: #c1292a;
	border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-family: "Swiss721W01-BoldCondens", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1;
	margin-top: 15px;
	padding: 9px 0 10px;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	-webkit-appearance: none;
	width: 145px;
}



.button:hover,
.button:active,
.button:focus,
a.button:hover,
a.button:active,
a.button:focus,
button:hover,
button:active,
button:focus{
    background-color: #d32d2e;
    color: #ffffff;
}

.button:active,
a.button:active,
button:active {
    background: #d32d2e;
    color: #ffffff;
}

a.button:focus,
button:focus {
    background-color: #d32d2e;
}

a.button:hover {
    background-color: #d32d2e;
    color: #fff;
}
.btn {
	background: 0 0;
	background-color: #d8292e;
	border-radius: 0;
	color: #ffffff;
    display: block;
    font-family: "Swiss721W01-BoldCondens", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	margin-top: 30px;
	padding: 7px 0 7px;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	text-transform: uppercase;
	-webkit-appearance: none;
	width: 140px;
}

.btn:hover,
.btn:active,
.btn:focus,
a.btn:hover,
a.btn:active,
a.btn:focus {
    background-color: #f93439;
	color: #ffffff;
}

a.button.blue {
	background-color: #265068;
	margin-left: 20px;
}

a.button.blue:hover {
	background-color: #316b8c;
}

input[type=submit] {
    background: 0 0;
	background-color: #d8dd55;
    border: none;
    border-radius: 5px;
    color: #000;
    display: block;
    font-family: 'Zandes';
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    padding: 12px 0 11px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
    -webkit-appearance: none;
    width: 100%;
}

input[type=submit]:hover {
	background: #353541;
    color: #fff;
}

input[type=text], input, select, select[multiple] {
    background: #fff;
    border: 1px solid #cacaca;
    border-radius: 0;
    /*color: #040404;*/
    font-family: 'Zandes';
    font-weight: 400;
    font-size: 16px;
    padding: 5px 12px;
    text-transform: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* XS - Phone */
@media (max-width: 767px) {
    .button,
    a.button,
    button{
        display: inline-block;
        width: 125px;
    }

    a.button {
        display: block;
        width: 100%;
    }

    a.button.blue {
		display: block;
		margin-left: 0;
        width: 100%;
    }

}

/* SM - Tablet */
@media (min-width: 768px) {

	.button,
	a.button,
	button {
		margin-top: 35px;
	}

	.btn {
		margin-top: 25px;
		margin-bottom: 40px;
	}

    .button.btn-center {
        margin-top: 50px;
    }

}

/* MD - Desktop */
@media (min-width: 992px) {

}

/* LG - Large desktop */
@media (min-width: 1200px) {

}

/* XL - Extra large desktop */
@media (min-width: 1600px) {

}