﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/
html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif!important;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
	}

/*===================== 
	link styles 
=======================*/
a:focus {outline: thin dotted;/*reset*/
	}
a {color: ;}
a:hover {color: ;}

a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/ 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
	}

.header-wrap {
    max-width: 1440px;
    padding: 0px 15px;
    margin: auto;
    display: block;
}

.header-padding {padding:12px 0px;}

.header-phone-icon {color:#ffd200;}
.header-contact-info {text-align:right; padding:5px 0px;}
.header-contact-link {color:#fff!important; font-size:12px; letter-spacing:.5px;}
.header-contact-link:hover, .header-contact-link:active, .header-contact-link:focus {color:#fff!important; text-decoration:underline;}

.header-tl-img {height: 61px; width:61px; margin:12px 12px 12px 0px;}
.logo-name {display:inline-block; text-transform:uppercase; font-size:27px; color:#102c52; font-weight:800; position:relative; top:7px;}

/*===================== 
	nav styles 
=======================*/
.underline-yellow {
    text-decoration: none!important;
    position: relative;
    padding-bottom: 5px;  
}
.underline-yellow:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    background: #ffd200;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.underline-yellow:hover:after { 
    width: 100%; 
    left: 0; 
}

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: right;
    background-color: transparent;
    width: 100%;
	}

nav ul {
	padding:30px 0;
	margin:0;
}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
    margin-left: 30px;
}

nav ul li a {
	font-size: 13px;
    color: #102c52!important;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}	

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active{
	color: #102c52!important;
}


/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
    background: rgba(255, 255, 255, 0.9);
    text-align: left;
    padding: 0px;
    min-width: 150px;
}

nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}

nav.primary ul li:hover > ul {  
    display: block;
    z-index: 2000 !important;
}

nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
}

nav.primary ul ul li a {
    text-transform:none;
    padding: 12px;
    transition:.3s;
    font-weight: 400;
}

nav.primary ul ul li a:hover, nav.primary ul ul li a:active, nav.primary ul ul li a:focus {
    background-color:#102c52;
    color:#fff!important;
}

.dropdown_arrow {
	display: inline-block !important;
}
/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:49%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background-color: transparent;
	text-align: right;
	min-height: 0 !important;
    top:13px;
	}
	#menu-button a{
		 color: #102c52;
		 text-decoration: none;
		 text-align: right !important;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -300px;
	width: 300px;
	height: 100%;
	background: #102c52;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}

nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
    font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
}

a.close_mobile {
	font-size: 26px !important;
	font-weight: 600;
	text-align: right;
    padding-right: 10px;
    float: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}

nav.mobile ul {
	list-style: none;
	margin:0;
	padding:0;
}

nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 15px;
	color: #fff!important;
	text-decoration: none;
	font-size: 13px;
    text-transform:uppercase;
    clear: both;
    line-height:48px;
}

nav.mobile ul li a:hover {
	background: #ffd200;
	color: #102c52!important;
}

nav.mobile ul ul {
    background-color:#fff!important;
}

nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #102c52!important;
	text-decoration: none;
	text-transform: none !important;
    font-weight:400;
    font-size:12.5px;
}

nav.mobile ul li li a:hover { /* appearance of the sub-level links */
	background-color: #102c52;
    color:#fff!important;
}

nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 45px;
	color: #000;
	text-decoration: none;
}

nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(/templates/pivotdoc.com/siteart/white-plus.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}

nav.mobile ul li span.click:hover{
	background-size:60%;
}

/*===================== 
	General styles 
=======================*/
.container-fluid {padding: 0px;}
.row-piv {padding: 0px; margin: 0px;}
.div-piv {padding: 0px;}

.center {text-align: center;}

.navy-bknd {background-color:#102c52;}
.light-navy-bknd {background-color:#12335f;}
/*===================== 
	Shop styles 
=======================*/
.page-header {margin:0px!important;}
.label {color: black!important;}
.checkout-view .form .label {display: block;text-align: left;}
.hs-facet-name.elipsis {padding-left:3px;}
.product .markdown-percentage {max-width:100%;} 
.checkout-view .checkout-steps {display:inherit; margin-top:45px;}
.payment #pay-fields div.show>div {height:67px; margin-botom:7px;}
.payment #pay-fields div.show>div#card-button {margin-top:15px;}
.hs-btn.hs-highlighted {
    background-color: #102c52;
    color: #fff!important;
    transition:.3s;
} 
.hs-btn.hs-highlighted:hover {background-color:#ffd200; color:#102c52!important;}
.hs-btn.hs-highlighted.checkout-full-hs-btn {color:#000!important; background-color:#ffd200;}
.hs-btn.hs-highlighted.checkout-full-hs-btn:hover {background-color:#ccc;}

#bottom-mobile .hs-btn.hs-highlighted:hover {
    background-color:black; 
    color:white!important;
}

/*===================== 
	footer styles 
=======================*/
.footer-logo-div {padding: 48px 0px 30px 0px;}

.footer-tl-img {width:75px; 
    height:75px; 
    margin-right:12px;
}
.footer-logo-name {
    color:#fff!important; 
    text-transform: uppercase;
    font-weight: 800;
    font-size:36px;
    display:inline-block;
    position:relative;
    top:9px;
}

.footer-ul {padding:0px 0px 48px 0px; margin:0px;}
.footer-li {display:inline-block; margin:0px 17px;}
.footer-quick-link {color:#fff!important; font-size:13px; text-transform:uppercase; font-weight:600;}

.copyright-info {color:#fff; padding:12px 0px; font-size:12px; letter-spacing:1px; font-weight:400;}
.copyright-link, .copyright-link:hover, .copyright-link:active, .copyright-link:focus {color:#fff!important; text-decoration:underline!important;}

footer {
	margin: 0;
	width: 100%;
	}

/*========================= 
	 Responsive styles 
===========================*/
/*==========  Non-Mobile First Method  ==========*/

@media only screen and (max-width : 1180px) {
/*========================= 
	 Nav styles 
===========================*/     
    nav ul {top:3px;}
    nav > ul > li {margin-left:18px;}
    nav ul li a {font-size:12px;}
    
    nav.primary ul ul {top:auto;}
}

@media only screen and (max-width : 1000px) {
/*========================= 
	 Shop styles 
===========================*/   
    #bottom-mobile .hs-search-box {
        padding: 1em 1.25em;
    }
    
    .hs-search-box {
        height: 4.25em;
    }	

}

@media only screen and (max-width : 991px) {	
/*========================= 
	 Nav styles 
===========================*/     
    nav > ul > li {margin-left:18px;}
    nav ul li a {font-size:13px; color:#fff!important;}
}

@media only screen and (max-width : 767px) {
/*========================= 
	 header styles 
===========================*/
    .header-tl-img {width:39px; height:39px; margin:15px 10px 15px 0px;}
    .logo-name {font-size:24px;}
    
/*========================= 
	 footer styles 
===========================*/    
    .footer-tl-img {width:63px; height:63px;}
    .footer-logo-name {font-size:30px;}
    
    .footer-li {margin: 2px 17px;}
}

@media only screen and (max-width : 575px) {
/*========================= 
	 header styles 
===========================*/ 
    .header-contact-info {text-align:center;}
 
}

@media only screen and (max-width : 480px) {
 
 
}

@media only screen and (max-width : 320px) {


}

