/*********************************************************************

	Name:		Push - Bootstrap Button Pack
	Author:		BootstrapBay - (http://www.bootstrapbay.com/)
	Version:	1.0
	
*********************************************************************/

/******************************************************
	CUSTOM BTN VALUES
******************************************************/
.button {}

/**** GENERAL BUTTON ROOT CLASS */
input[type="submit"],input[type="button"],button,.button {
    -webkit-transition:ease-in all 0.6s;
    -moz-transition:ease-in all 0.6s;
    -o-transition:ease-in all 0.6s;
    transition:ease-in all 0.6s;
}
.btn {
	padding: 7px 15px;
	border: 0 none;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	font-size: 17px;
}
/* PRIMARY BUTTON */
.btn-primary {
    color: #fff;
    background-color:#27476f;
    border-color: #2e6da4;
    padding: 5px 15px;
}
/* SECONDARY BUTTON */
.btn-secondary {
    background-color:#71add3;
    color:#fff;
    padding: 10px 30px;
}
.btn-fullwidth {width:100%;}
.btn-secondary:hover {
    background-color:#71add3;
}
/* TERTIARY BUTTON */
.btn-tertiary {
    background-color:#9bcfef;
    color:#fff;
    padding: 10px 30px;
}
.btn-tertiary:hover {
    background-color:#71add3;
    color:#fff;
}


.btn:focus, .btn:active:focus, .btn.active:focus {
	outline: 0 none;
}
/* SEARCH BUTTON */
#search form > button:hover, #search-mobile form > button:hover {
     background-color:#71add3;
}
/* CHECKOUT BUTTONS */
.btn-checkout {
    background-color: #9bcfef;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight:bold;
}
.btn-checkout:hover,.btn-checkout:focus {
    background-color:#71add3;
    color:#fff;
}
/* NEWSLETTER BUTTON */
#newsletter-container .newsletter-button:hover {
    background-color:#71add3;
    color:#fff;
}
