/*-----------------------------------------------------------------------------------*
/* = Body, Common Classes & Wrap
/*-----------------------------------------------------------------------------------*/
*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
body {
	background: #ececec;
    font-size: 14px;
    line-height: 1.6em;
    color: #333;
	font-weight: 400;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.row{
    max-width: 1200px;
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
}
a {
    text-decoration: none;
    color: #2e82b1;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover {
    text-decoration: none;
	color: #003462;
}
p {
	margin: 0 0 1em;
}
strong {
	font-weight: 700;
}
em {
	font-style: italic;
}
hr{
	outline: none;
	margin: 25px 0;
	border: none;
	border-top: 1px dotted #ddd;
}
pre{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 20px 0;
	background: #f9f9f9;
	padding: 20px;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
}
blockquote{
	border-left: 4px solid #ddd;
	padding-left: 20px;
    margin: 30px 0px;
}
.clear {
	clear: both;
}
.clearfix:after,
.row:after {
    content: "";
    display: table;
    clear: both
}
.one-four{
	width: 100%;
}
.responsive-img{
    max-width: 100%;
    height: auto;
    display: block;
}
/*-----------------------------------------------------------------------------------*
/* = Headings
/*-----------------------------------------------------------------------------------*/
h1, h2, h3, h4 {
    color: #292929;
    line-height: 1.2em;
	font-weight: bold;
}
h1 {
    font-size: 30px;
    margin-bottom: 20px;
}
h2 { font-size: 20px }
h3 { font-size: 18px }
h4 { font-size: 16px; }
h1, h2, h3, h4  {
    margin-top: 20px;
    margin-bottom: 20px;
}
h1 a, h2 a, h3 a, h4 a {
	color: #333;
}
h2 a:hover, h3 a:hover, h4 a:hover {
	color: #000;
	text-decoration: none;
}
.single-title{
	margin-top: 0px;
	margin-bottom: 5px;
}
.section-title{
	text-transform: uppercase;
}
.page-title{
    text-transform: uppercase;
    margin-top: 0px;
}
h1 span, h2 span, h3 span, h4 span{
    color: #2e82b1;
}
/*-----------------------------------------------------------------------------------*
/* = Structure & Header
/*-----------------------------------------------------------------------------------*/
#container{
	max-width: 80rem;
	width: 100%;
	margin: 0 auto;
	background: #fff;
}
.fullwidth{
	width: 100%;
	padding: 0;
	margin: 0;
}
#topbar{
	height: 48px;
	background: #d7d7d7;
	font-size:14px;
	font-weight: 700;
}
#topbar ul.topmenu{
	display: none;
}

.mmenu {
	height: 32px;
	width: 32px;
	position: relative;
	margin: auto;
	border: 0px solid transparent;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
	float: right;
	float: left;
    margin-top: 8px;
    margin-left: 18px;
}
.bar {
	height: 3px;
	width: 32px;
	display: block;
	margin: 6px auto;
	position: relative;
	background: #404040;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.mmenu.active .bar:nth-of-type(1) {
	-moz-transform: translateY(9px) rotate(45deg);
	-ms-transform: translateY(9px) rotate(45deg);
	-webkit-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
	background: #e2002f;
}
.mmenu.active .bar:nth-of-type(2) {
	opacity: 0;
}
.mmenu.active .bar:nth-of-type(3) {
	-moz-transform: translateY(-9px) rotate(-45deg);
	-ms-transform: translateY(-9px) rotate(-45deg);
	-webkit-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
	background: #e2002f;
}
.mmenu .bar:nth-of-type(1) {
	-moz-animation: rotateR 1.5s cubic-bezier(0.5, 0.2, 0.2, 1);
	-webkit-animation: rotateR 1.5s cubic-bezier(0.5, 0.2, 0.2, 1);
	animation: rotateR 1.5s cubic-bezier(0.5, 0.2, 0.2, 1);
}
.mmenu .bar:nth-of-type(2) {
	-moz-animation: fade 1.5s cubic-bezier(0.1, 0.8, 0.1, 1);
	-webkit-animation: fade 1.5s cubic-bezier(0.1, 0.8, 0.1, 1);
	animation: fade 1.5s cubic-bezier(0.1, 0.8, 0.1, 1);
}
.mmenu .bar:nth-of-type(3) {
	-moz-animation: rotateL 1.5s cubic-bezier(0.5, 0.2, 0.2, 1);
	-webkit-animation: rotateL 1.5s cubic-bezier(0.5, 0.2, 0.2, 1);
	animation: rotateL 1.5s cubic-bezier(0.5, 0.2, 0.2, 1);
}
#mobile-nav{
	display: none;
    font-size: 14px;
	background: #003462;
	font-weight: 400;
}
#mobile-nav ul{
	list-style: none;
	padding: 8px 0;
	margin: 0;
}
#mobile-nav li{
    margin: 0;
	list-style: none;
	padding: 0;
}
#mobile-nav li a{
	display: block;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 10px;
}
#mobile-nav li li a{
	padding: 8px 10px 8px 30px;
}
#mobile-nav li a:hover,
#mobile-nav li.current-menu-item a{
	color: #2e82b1;
}

#topbar ul.shopmenu{
	list-style: none;
	padding: 0;
	margin: 0;
	float: right;
}
#topbar ul.shopmenu li{
	float: left;
}
#topbar ul.shopmenu li a{
	font-size: 13px;
	text-transform: uppercase;
	padding: 0 10px;
	height: 47px;
	line-height: 47px;
	font-weight: 700;
	color: #404040;
	text-decoration: none;
	display: block;
}
#topbar ul.shopmenu li a span{
	display: none;
}
#topbar ul.shopmenu li a span.cart-count{
    display: inline-block;
    height: 25px;
    width: 25px;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    background: #cc0000;
    border-radius: 50%;
    margin-left: 3px;
    margin-top: -6px;
}
#topbar ul.shopmenu li a:hover{
	color: #0a3750;
	background: #e5e4e4;
}

#header{
	background: #2e82b1;
	padding: 20px;
    position: relative;
}
#header .car{
    display: none;
}
#header .logo{
	margin: 0 auto;
	width: 165px;
	max-width: 100%;
	display: block;
    position: relative;
    z-index: 2;
}
#header .header-right{
	width: 100%;
	color: #C7ECFB;
	font-size: 20px;
	text-shadow: 1px 2px 3px rgba(16,16,16,.28);
	text-align: center;
	margin-top: 12px;
	letter-spacing: .025em;
	font-weight: bold;
}
#header .header-right p{
    margin-bottom: 14px;
}
#header .header-right .sc{
    width: 34px;
    height: 34px;
    display: inline-block;
    /*margin-left: 8px;*/
    -moz-background-size: 34px 34px;
    -webkit-background-size: 34px 34px;
    background-size: 34px 34px;
    background-repeat: no-repeat;
    background-position: center center;
}
#header .header-right .sc-facebook{
    background-image: url(../images/facebook.png);
}
#header .header-right .sc-twitter{
    background-image: url(../images/twitter.png);
}
#header .header-right .sc-instagram{
    background-image: url(../images/instagram.png);
}
#header .header-right .sc-youtube{
    background-image: url(../images/youtube.png);
}
.tp-tabs {
    margin-top: 15px !important;
}

ul.slidetext{
    list-style: none;
    margin: 0 !important;
    padding: 0;
}
ul.slidetext li{
    margin-bottom: 8px;
}
ul.slidetext li .fa{
    color: #cc0000;
    margin-right: 5px;
}
/*-----------------------------------------------------------------------------------*
/* = Posts & Pages
/*-----------------------------------------------------------------------------------*/
#content{
	width: 100%;
	padding: 20px 25px;
}
#single-content{
    width: 100%;
    padding-right: 20px;
}
#content ul,
#single-content ul{
    margin-left: 30px;
    margin-bottom: 1em;
}
#content ul li,
#single-content ul li{
    /*margin-bottom: 10px;*/
}
#page-header .sidebar-header{
	display: none;
}
#page-header .page-search{
	display: block;
	background: #ebebeb;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	height: auto;
}
#pmenu{
	display: none;
}
.dropdown-wrap{
	width: 300px;
	display: block;
	margin: 5px auto 0;
	background: #fff;
	position: relative;
	overflow: hidden;
	border: 2px solid #d2d2d2;
}
.dropdown-wrap select{
	width:110%;
	max-width:110%;
	min-width:110%;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: window;
	text-indent: 0.01px;
	text-overflow: "";
	font-size:14px;
	font-weight: 700;
	background:none;
	border: none;
	color: #444;
	outline: none;
	padding: .4em 19% .4em .8em;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height:1.2;
	margin:.2em;
}
.dropdown-wrap  select::-ms-expand {
	display: none;
}
.dropdown-wrap:after {
	background: none;
	color: #bbb;
	content: "\25BC";
	font-size: .7em;
	padding:0;
	position: absolute;
	right: 1em;
	top: 0.7em;
	bottom: .3em;
	z-index: 1;
	pointer-events:none;
}
.dropdown-wrap select:focus {
	outline: none;
	box-shadow: 0 0 3px 3px rgba(180,222,250, .85);
}
.dropdown-wrap select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

/*---------- news loop ------------*/
.loop-entry{
	padding-bottom: 30px;
}
.loop-entry p:last-child{
	margin: 0;
}
.loop-entry-thumbnail{
	position: relative;
    width: 250px;
    float: left;
    margin-right: 25px;
    display: block;
}
.loop-entry-thumbnail img{
    width: 250px;
    height: auto;
    display: block;
    max-width: 100%;
}
.loop-entry h2{
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 24px;
}
.post-meta{
	font-size: 16px;
	color: #888888;
	margin-bottom: 20px;
}

/*entry*/
.entry {
	margin-bottom: 20px;
}
.entry ul, .entry ol {
    margin-bottom: 30px;
	margin-left: 30px;
	list-style: inherit;
}
.entry ol{
	list-style: decimal !important;
}

/*post tags*/
.post-tags {
    margin-right: 10px;
    margin-top: 30px;
    font-size: 12px;
}

.morebtn{
    background: #2e82b1;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 25px;
    display: table;
    margin: 20px auto 0;
}
.morebtn:hover{
    background: #003462;
    text-decoration: none;
    color: #fff;
}
/*-----------------------------------------------------------------------------------*
/* = Pagination
/*-----------------------------------------------------------------------------------*/
.post-pagination{
	clear: both;
	width: 100%;
	padding-top: 30px;
}
.post-pagination a,
.post-pagination span {
	font-size: 11px;
    line-height: 30px;
    height: 30px;
    width: 30px;
    text-align: center;
    margin-right: 5px;
    display: block;
    float: left;
	color: #666;
	background: #eee;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.post-pagination a:hover,
.post-pagination span.current{
    text-decoration: none;
	color: #fff;
	background: #1f82cb;
}

/*-----------------------------------------------------------------------------------*
/* = Sidebar
/*-----------------------------------------------------------------------------------*/
#sidebar,
#single-sidebar{
	width: 100%;
	background: #dcddde;
    padding-top: 30px;
}
#single-sidebar ul{
    margin: 0;
    padding: 0;
}
.sidebar-box {
	margin-bottom: 30px;
}
.sidebar-box h3 {
	font-size: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
	font-weight: 700;
	padding: 0 18px;
}
.sidebar-box ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.sidebar-box ul li{
	border-bottom: 1px solid #bec0c1;
	border-top: 1px solid #f5f5f5;
}
.sidebar-box ul li:first-child{
	border-top: 1px solid #bec0c1;
}
.sidebar-box ul li a{
	line-height: 1.4em;
	display: block;
	padding: 8px 18px;
	color: #000;
	text-decoration: none;
	font-weight: 700;
}
.sidebar-box ul a:hover,
.sidebar-box ul a:focus{
	background: #eeeeef;
	color: #000;
	text-decoration: none;
}

/*-----------------------------------------------------------------------------------*
/* = Search Bar
/*-----------------------------------------------------------------------------------*/
#searchbar,
.product-search{
    display: block;
    position: relative;
	width: 300x;
	height: 36px;
	margin: 0 auto;
    z-index: 9999;
}
#search,
.product-search-field{
    position: relative;
    width: 300px !important;
	height: 36px;
	border: 2px solid #d2d2d2;
	padding: 0 30px 0 13px;
	line-height: 32px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
    outline: none;
    margin: 0 auto;
    display: block;
}
#searchsubmit {
    position: absolute;
    right: 10px;
    top: 50%;
	margin-top: -7px;
    background: url('../images/search.png') no-repeat;
    text-indent: -9999px;
    border: none;
    outline: none;
    width: 15px;
    height: 15px;
	cursor: pointer;
}
.product-search-results{
    background: #f5f5f5;
    border: 1px solid #eee;
    border-top: none;
}
.product-search-results .entry:hover,
.product-search-results .entry.active {
	font-weight: 400 !important;
}
.product-search-results .entry a{
    display: block;
}
.product-search-results a:hover{
    text-decoration: none !important;
    color: #2e82b1;
}
.product-search-results .entry a span.title:hover{
    text-decoration: none !important;
}
/*-----------------------------------------------------------------------------------*/
/* = Woocommerce
/*-----------------------------------------------------------------------------------*/
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
    margin-bottom: 30px !important;
}
.woocommerce ul.products li.product h3{
    min-height: 45px;
    text-transform: uppercase;
}
.woocommerce ul.products li.product .sku{
    display: block;
    margin-bottom: 5px;
    font-size: .8em;
    font-weight: 700;
    text-transform: uppercase;
    color: #ec1c2d;
}
.woocommerce ul.products li.product .price{
    margin-bottom: 5px;
}
.woocommerce ul.products li.product .button{
    margin-top: 2px !important;
}
.woocommerce .products ul,
.woocommerce ul.products{
    margin-left: 0 !important;
}
.woocommerce ul.products li.product a img{
    border: 1px solid #eee;
}
.woocommerce-pagination ul li{
    margin-bottom: 0px !important;
}
.woocommerce-ordering{
    display: none !important;
}
/*-----------------------------------------------------------------------------------*/
/* = Video Gallery
/*-----------------------------------------------------------------------------------*/
ul#huge_it_videogallery{
    background: #fff !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/*-----------------------------------------------------------------------------------*/
/* = Form
/*-----------------------------------------------------------------------------------*/
.caldera-grid input[type="submit"]{
    background: #2E82B1;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 0px;
    font-size: 18px;
    padding: 8px 50px;
    text-transform: uppercase;
}
.caldera-grid input[type="submit"]:hover{
    background: #1D6395;
    color: #fff;
}
.caldera-grid input[type="text"],
.caldera-grid input[type="email"],
.caldera-grid textarea,
.caldera-grid select,
.caldera-grid .form-control{
    border: 1px solid #2E82B1;
    border-radius: 0px;
}

/*-----------------------------------------------------------------------------------*/
/* = Footer
/*-----------------------------------------------------------------------------------*/
#footer{
	background: #2e82b1;
	padding-top: 40px;
	padding-bottom: 10px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
}
#footer a{
	color: #000;
	text-decoration: none;
}
#footer a:hover{
	color: #BFDCF2;
}

.footer-widget{
	padding: 0 30px;
	margin-bottom: 30px;
}
.footer-widget h4{
	color: #000;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 15px;
}
.footer-widget ul{
	list-style: none;
}
.footer-widget ul li{
	margin-bottom: 5px;
}



#copyright{
	text-transform: uppercase;
	color: #fff;
	background: #111111;
	line-height: 20px;
	padding: 13px 20px;
}
#copyright .copyright{
	width: 100%;
    text-align: center;
}

#copyright .footer-menu{
    display: none;
}

#copyright .footer-social{
	width: 100%;
    text-align: center;
    margin-top: 10px;
}
#copyright .footer-social a{
	font-size: 18px;
	color: #fff;
	margin-right: 18px;
	line-height: 20px;
}
#copyright .footer-social a:hover{
	text-decoration: none;
}
#copyright .footer-social a:last-of-type{
	margin-right: 0px;
}
#copyright .footer-social a.fa-facebook:hover{
	color: #3b5998;
}
#copyright .footer-social a.fa-twitter:hover{
	color: #00aced;
}
#copyright .footer-social a.fa-youtube:hover{
	color: #bb0000;
}
#copyright .footer-social a.fa-instagram:hover{
	color: #517fa4;
}
/*-----------------------------------------------------------------------------------*
/* = WordPress Styles
/*-----------------------------------------------------------------------------------*/
.sticky{}
.gallery-caption{}
.bypostauthor{}

/*aligns*/
.aligncenter{ display:block;  margin:0 auto}
.alignright{ float:right;  margin: 0 0 10px 20px}
.alignleft{ float:left;  margin: 0 20px 10px 0}

/*floats*/
.floatleft{ float:left}
.floatright{ float:right}

/*text style*/
.textcenter{ text-align:center}
.textright{ text-align:right}
.textleft{ text-align:left}

/*captions*/
.wp-caption{
	border:1px solid #ddd;
	text-align:center;
	background-color:#f3f3f3;
	padding-top:4px;
	margin:10px;
	-moz-border-radius:3px;
	-khtml-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}
.wp-caption img{
	margin:0;
	padding:0;
	border:0 none;
}
.wp-caption p.wp-caption-text{
	font-size:11px;
	line-height:17px;
	padding:0 4px 5px;
	margin:0;
}

/*smiley reset*/
.wp-smiley{
	margin:0 !important;
	max-height:1em;
}

/* tag-cloud widget */
.tagcloud a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	float: left;
	display: block;
    margin-right: 5px;
	margin-bottom: 5px;
    padding: 5px 7px;
	line-height: 1.3em;
	color: #fff !important;
    background: #444;
	font-weight: bold;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
}
.tagcloud a:hover{
	text-shadow: none;
	background: #1f82cb;
	text-decoration: none;
}
/* calendar widget */
#wp-calendar { width: 100% }
#wp-calendar caption {
    text-align: right;
    color: #333;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
}
#wp-calendar thead { font-size: 10px }
#wp-calendar thead th { padding-bottom: 10px }
#wp-calendar tbody { color: #aaa }
#wp-calendar tbody td {
    background: #f5f5f5;
    border: 1px solid #fff;
    text-align: center;
    padding: 4px;
	transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
}
#wp-calendar tbody td:hover { background: #fff }
#wp-calendar tbody .pad { background: none }
#wp-calendar tfoot #next {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
}
#wp-calendar tfoot #prev {
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 10px;
}

/* WooCommerce Edits */
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
	padding: 10px;
	text-transform: uppercase;
	border: 1px solid #e1e1e1;
}

/* Eyenovation Style Tweaks 28 December 2015 */
.woocommerce div.product p.price, .woocommerce div.product span.price {color: #2e82b1; font-size: 1.75em;}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {background-color: #ec1c2d; color: #fff; font-size: 16px}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {background-color: #ca1221; color: #fff;}
.woocommerce ul.products li.product .price {color: #2e82b1; font-size: 1.25em;}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {text-transform: uppercase;}
.woocommerce #reviews #comments h2 {text-transform: uppercase;}
div.related.products h2 {text-transform: uppercase;}
input#author, input#email {padding: 10px; font-size: 16px;}
button.single_add_to_cart_button.button.alt {text-transform: uppercase;}
.woocommerce .quantity .qty {padding: 10px; font-size: 16px;}
.woocommerce #review_form #respond textarea {padding: 10px; font-size: 16px;}

/* Eyenovation Style Tweaks 21 April 2016 */
span.sku_wrapper {font-size: 18px; font-weight: bold; text-transform: uppercase;}
h1.product_title.entry-title {text-transform: uppercase;}