:root {
	--primary-color: #fa9804;
	--primary-color-dark: #fa5e04;
	--secondary-color: #005BAA;
	--secondary-color-dark: #0e3c64;
}
body{
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
}

img{
	max-width:100%;
}

.container{
	max-width: 1200px;
	flex-grow: 1;
}

.error {
	border: 1px solid red;
}

/*  ----------------------------------------------------------	*/
/*  					Sticky Footer 	 						*/
/*  ----------------------------------------------------------	*/
html, body{
	height: 100% !important;
}

#wrapper.stickyFooter{
	display:flex;
	flex-direction: column;
	min-height: 100% !important;
}

#wrapper.stickyFooter #footer{
	margin-top:auto;
}


#navbarMyAccount .list-group-item{
	padding: 5px 0px;
	border: 0px;
	background: none;
}

#navbarMyAccount .list-group-item.list-group-item-parent{
	margin-top:15px;
}

.page-link {
    color: #005baa;
    background-color: #fff;
	border: 1px solid #dee2e6;	
}

.list-group-item.active {
	color: #fa9804;
	font-weight: 700;
}

@media (min-width: 576px) {
	.collapse-sm-none:not(.show) {
		display: block;
	}
	
	.w-sm-auto{
		width: auto !important;
	}
}

@media (min-width: 768px) {
	.collapse-md-none:not(.show) {
		display: block;
	}
	.w-md-auto{
		width: auto !important;
	}
}

@media (min-width: 992px) {
	.collapse-lg-none:not(.show) {
		display: block;
	}
	.w-lg-auto{
		width: auto !important;
	}
}

@media (min-width: 1200px) { 
	.collapse-xl-none:not(.show) {
		display: block;
	}
	.w-xl-auto{
		width: auto !important;
	}
	
}

/* ---------------------------------------------------- */
/* 						Styling							*/
/* ---------------------------------------------------- */
a {
	color: #fa5e04;
	/* font-weight: 600; */
	text-decoration: none;
}

a:hover {
	color: var(--green);
	text-decoration: none;
}
.input-group .form-control {
	height: auto;
}

.btn{
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: 600;
}

.btn-primary{
	background: #fa9804;
	border-color:  #fa9804; 
	color: #ffffff;
}

.btn-primary:hover{
	background-color: #3bbf41;
	border-color:  #3bbf41;
	color: #ffffff;
}

.btn-primary.active{
	background-color: #3bbf41;
	border-color:  #3bbf41;
	color: #ffffff;
}

.btn-secondary{
	background-color:#005BAA;
	border-color:  #005BAA;
	color: #fff;
}

.btn-secondary:hover{
	background-color:;
	border-color: ;
	color:;
}


.btn.disabled, .btn:disabled {
	background-color: ;
	border-color: ;
	color: ;
	cursor: default;
}


/* Other */
.btn-location {
	
}

.btn-number{
	background: #FFF;
	text-decoration: none;
	line-height: 20px;
	border: 1px solid #333333;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .6px;
	color: #333333;
	text-align: center;
	height: 60px;
	width: 60px;
	padding-top: 6px;
}

.btn-number.disabled{
	color: #dfe0e2;
	border: 1px solid #dfe0e2;
	pointer-events: none;
}

.card-body h4, .product-description {
	color: #333 !important;
}

select.form-control{
	position: relative;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	padding-right: 25px;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBkPSJNMTYuMDAzIDE4LjYyNmw3LjA4MS03LjA4MUwyNSAxMy40NmwtOC45OTcgOC45OTgtOS4wMDMtOSAxLjkxNy0xLjkxNnoiLz48L3N2Zz4=');
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: right 5px top 50%;
}


/* The switch - the box around the slider */
.toggleSwitch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide default HTML checkbox */
.toggleSwitch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.toggleSlider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.toggleSlider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .toggleSlider {
	/*background-color: #b2cb08;*/
    background-color: var(--green);
}

input:focus + .toggleSlider {
	box-shadow: 0 0 1px var(--green);
}

input:checked + .toggleSlider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.toggleSlider.round {
	border-radius: 34px;
}

.toggleSlider.round:before {
	border-radius: 50%;
} 


/* ---------------------------------------------------- */
/* 						H Tags							*/
/* ---------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
	font-family: ethnocentric, sans-serif;
	font-weight: 400;
	font-style: normal;
}

h1, .h1{
	font-size: ;
}

h2, .h2{
	font-size: ;
}

h3, .h3{
	font-size: ;
}

h4, .h4{
	font-size: ;
}

h5, .h5{
	font-size: ;
}

h6, .h6{
	font-size: ;
}


@media (min-width: 768px) {
	h1, .h1{
		font-size: ;
	}
	
	h2, .h2{
		font-size: ;
	}
	
	h3, .h3{
		font-size: ;
	}
	
	h4, .h4{
		font-size: ;
	}
	
	h5, .h5{
		font-size: ;
	}
	
	h6, .h6{
		font-size: ;
	}
}

@media (min-width: 1024px) {
	h1, .h1{
		font-size: ;
	}
	
	h2, .h2{
		font-size: ;
	}
	
	h3, .h3{
		font-size: ;
	}
	
	h4, .h4{
		font-size: ;
	}
	
	h5, .h5{
		font-size: ;
	}
	
	h6, .h6{
		font-size: ;
	}
}
@media (min-width: 1440px) {
	h1, .h1{
	}
	
	h2, .h2{
		
	}
	
	h3, .h3{
	}
	
	h4, .h4{
		
	}
	
	h5, .h5{
		
	}
	
	h6, .h6{
		
	}
}



/*  ----------------------------------------------------------	*/
/*  						Header 	 							*/
/*  ----------------------------------------------------------	*/
#header{
	background: #005baa;
	color: #fff;
}

#header a, #header .nav-link{
	color: #fff;
}
#header .nav-link{
	font-weight: 700;
	text-transform: uppercase;
}


#header .nav-link {
	height: 100%;
	display: flex;
	align-items: center;
	border-top: 3px solid transparent;
	text-transform: uppercase;
	background: transparent;
	transition: background .5s;
	backface-visibility: hidden;
	padding-right: 15px;
	padding-left: 15px;
}

#header .nav-link:hover {
	background: #0e3c64;
}

#header .nav-item {
	position: relative;
}

#header .nav-link::after {
	content: "";
	border: 1px solid transparent;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 0;
	transition: .3s width ease-in-out;
	z-index: 1003;
} 

 #header .nav-link:not(.social):hover::after {
	width: 100%;
	border: 1px solid #fa9804;
	background: #fa9804;
}


#header .dropdown-menu {
	background: #005baa;
    padding: 0px;
    margin-left: 0px;
	border: none;
	border-radius: 0px;
}

#header .dropdown-item {
	padding-top: 0;
	padding-bottom: 0;
	padding: 10px 10px;
	transition: padding .3s;
	position: relative;
	border-radius: 0px;
}

#header .dropdown-item:hover {
	background: #0e3c64;
	padding: 10px 15px;
}

#header .dropdown-item {
	
}

#header .dropdown-item::after {
	content: "";
	border: 1px solid transparent;
	position: absolute;
	top: 100%;
	left: 0%;
	width: 0;
	transition: .3s width ease-in-out;
	z-index: 1003;
} 

#header  .dropdown-item:hover::after {
	width: 100%;
	border: 1px solid #fa9804;
	background: #fa9804;
}

#locationsBar {
	background: #005baa;
}

/*  ----------------------------------------------------------	*/
/*  						Footer 	 							*/
/*  ----------------------------------------------------------	*/
footer{
	background: #0e3c64;
	color: #fff;
	border-top: 5px solid #fa9804;
	padding: 30px 10px;
}

footer a{
	color: #fff;
	text-transform: capitalize;
	display: block;
	margin: 10px 0px;
}

footer a:hover {
	color: #fff;
}

#bottomFooter{
	background: #0e3c64;
	color: #fff;
}



.breadcrumbWrap{
	display: none;
}

#member-login {
	background-color: #005baa;
}

#member-login strong {
	color: #fff;
}

@media(max-width: 1190px) {
	#header .nav-link {
		padding-left: 5px;
		padding-right: 5px;
	}
}

@media(max-width: 1055px) and (min-width: 992px) {
	#header .nav-link {
		padding-left: 3px;
		padding-right: 3px;
		font-size: 13px;
	}
}

/**************************************************************
 *                          POP UP                            *
 **************************************************************/

 #popupOverlay{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
}

.messagePopup.tcenter{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999999999;
    background-color: #fff;
    padding: 15px 15px;
    align-items: center;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

@media(max-width: 992px) {
	.video-container iframe {
		width: 100%;
	}
}

