
/*
TABLE OF CONTENTS:
------------------
- Login/Signup
- Global Formatting
- Common Content Skeletons
- Common Item Formatting
- Header Formatting
- Footer Formatting
*/


@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);

/* Login/Signup
 * --------------------------------------- */

.hidelgsu {
	max-height:999em;
	opacity:1;
	height:auto;
	overflow:hidden;
	transition:opacity .5s linear;
}
.hidelgsu p {
	padding:10px;
	margin:0
}

label[for=item-1]{
	cursor: pointer;
	display: block;
	margin-bottom: 35px;
}

input[type=checkbox]:checked + div {
	opacity:0;
	max-height:0;
	border:none;
	transition:opacity .5s linear, max-height .5s linear;
}


/* Global Formatting
 * --------------------------------------- */

/*CSS reset:*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
table {
    border-spacing: 0;
}
fieldset,img,abbr,acronym {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
}
strong {
	font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;

}
caption,th {
    text-align: left;

}
/*End CSS reset.*/

/*BHD usage:*/
body {
	color: rgba(0,0,0,0.5);
	background-color: #f7f6f2;
	/*                  background-image: url("/theme/images/newUI/fabback.png");*/
	background: url("/theme/images/newUI/curtain-bg-xlg.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-size: 14px; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.4;
	font-weight: 400;
	color: #333;
}

.bhd_spiders_only{
	display: none;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	font-size: 62.5%; }
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 2rem;
	font-family: Lato, sans-serif;
	font-weight: 200; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.03rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
	h1 { font-size: 5.0rem; }
	h2 { font-size: 4.2rem; }
	h3 { font-size: 3.6rem; }
	h4 { font-size: 3.0rem; }
	h5 { font-size: 2.4rem; }
	h6 { font-size: 1.5rem; }
}

p {
	margin-top: 10px; }

a {
	text-decoration: none;
	color: #e2b62d;
}
a:hover {
	color: #026c59;
}

q:before,q:after {
    content:'';
}
#bhd_login_error,
#bhd_signup_error{
	color: red;
}

hr.faded {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
	background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
	background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
	background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}
/*End BHD usage.*/

/* Common Content Skeletons
 * --------------------------------------- */
.container-simp {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.container{
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	box-sizing: border-box;
}

.container {
    background-color: #f7f6f2;
    -webkit-box-shadow: 0px 0px 30px 5px black;
    -moz-box-shadow: 0px 0px 30px 5px black;
	box-shadow: 0px 0px 30px 5px black;
}



.row{
	padding: 15px;
}

.column, .columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
}

.container:after, .container-simp:after, .row:after {
	content: "";
	display: table;
	clear: both;
}

@media (min-width: 400px) {
	.container, .container-simp {
		padding: 0px;
	}
}

@media (min-width: 550px) {
	.container-simp {
		width: 100%; }
	.container, .demoq-cont {
		width: 80%;
		z-index: 0;
	}
	.column, .columns {
		margin-left: 4%;
	}
	.column:first-child, .columns:first-child {
		margin-left: 0;
	}
	.one.column, .one.columns	{ width: 4.66666666667%; }
	.two.columns				{ width: 13.3333333333%; }
	.three.columns				{ width: 22%;            }
	.four.columns				{ width: 30.6666666667%; }
	.five.columns				{ width: 39.3333333333%; }
	.six.columns				{ width: 48%;            }
	.seven.columns				{ width: 56.6666666667%; }
	.eight.columns				{ width: 65.3333333333%; }
	.nine.columns				{ width: 74.0%;          }
	.ten.columns				{ width: 82.6666666667%; }
	.eleven.columns				{ width: 91.3333333333%; }
	.twelve.columns				{ width: 100%; margin-left: 0; }
	.one-third.column			{ width: 30.6666666667%; }
	.two-thirds.column			{ width: 65.3333333333%; }
	.one-half.column			{ width: 48%; }
	.offset-by-one.column, .offset-by-one.columns				{ margin-left: 8.66666666667%; }
	.offset-by-two.column, .offset-by-two.columns				{ margin-left: 17.3333333333%; }
	.offset-by-three.column, .offset-by-three.columns			{ margin-left: 26%;            }
	.offset-by-four.column, .offset-by-four.columns				{ margin-left: 34.6666666667%; }
	.offset-by-five.column, .offset-by-five.columns				{ margin-left: 43.3333333333%; }
	.offset-by-six.column, .offset-by-six.columns				{ margin-left: 52%;            }
	.offset-by-seven.column, .offset-by-seven.columns			{ margin-left: 60.6666666667%; }
	.offset-by-eight.column, .offset-by-eight.columns			{ margin-left: 69.3333333333%; }
	.offset-by-nine.column, .offset-by-nine.columns				{ margin-left: 78.0%;          }
	.offset-by-ten.column, .offset-by-ten.columns				{ margin-left: 86.6666666667%; }
	.offset-by-eleven.column, .offset-by-eleven.columns			{ margin-left: 95.3333333333%; }
	.offset-by-one-third.column, .offset-by-one-third.columns	{ margin-left: 34.6666666667%; }
	.offset-by-two-thirds.column, .offset-by-two-thirds.columns	{ margin-left: 69.3333333333%; }
	.offset-by-one-half.column, .offset-by-one-half.columns		{ margin-left: 52%; }
}

/* Common Item Formatting
 * --------------------------------------- */
.hidlabel{
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}

.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align:right;
}

h1.seo_header{
	display: none;
}

.basic-button {
	border:none;
	border-radius: 10px;
	letter-spacing: .2em;
	outline: none;
	cursor: pointer;
}

.leftarrow, .rightarrow, .doubleleft, .doubleright {
	text-shadow: 0px 0px 8px black;
	cursor: pointer;
	font-weight: bolder;
}
*:hover>.leftarrow, *:hover>.rightarrow, *:hover>.doubleleft, *:hover>.doubleright {
	text-shadow: 0px 0px 8px black, 0px 0px 12px black, 0px 0px 16px black;
	opacity: 1;
}
.leftarrow, .doubleleft {
	text-align: left;
}
.rightarrow, .doubleright {
	text-align: right;
}
.leftarrow:before {
	content: "\3008";
}
.rightarrow:after {
	content: "\3009";
}
.doubleleft:before {
	font-family: FontAwesome;
	content: "\f100";
}
.doubleright:after {
	font-family: FontAwesome;
	content: "\f101";
}

.featured_banner_box{
	display: block;
	overflow: hidden;
}

/*Ad spaces:*/
.ad-space {
	display: block;
}

.margin-ad {
	width: 160px;
	height: 600px;
	position: fixed;
    top: 140px;
}
.margin-ad.left {
    left: 50%;
    margin-left: -675px;
}
.margin-ad.right {
	right:50%;
	margin-right: -675px;
}
@media screen and (max-width: 1375px) {
	.margin-ad {
		display: none;
	}
}

.leader-ad {
    height: 90px;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
}
.leader-ad img{
	width: 100%;
	max-width: 970px;
}
@media (max-width: 750px) {
	.leader-ad{
		display: none;
	}
}
/*End ad spaces.*/

/* Header Formatting
 * --------------------------------------- */
.navlogo {
	float:left;
	max-width: 215px;
	width: 20%;
	padding: 20px 0px 20px 20px;
	min-width:150px;
}

#nav ul{
	padding: 0 55px 0 0;
}

.main-nav {
	width: 100%;
	background-color: #232323;
	height: 90px;
	position:   relative;
	z-index: 13000;
}

#nav {
    color: #ffffff;
    float: right;
    padding: 0px;
    height: 100%;
    text-transform: uppercase;
	text-align: center;
    font-weight: 100;
    letter-spacing: 0.1em;
    margin-top: 0px;
}

#nav ul li {
    display:inline-block;
    line-height:90px;
}

#nav ul li a {
    margin:10px;
    color:#FFF;
    padding:4px;
    font-size:14px;
}
#nav ul li a:hover {
    color: #cecdcd;
}
#nav ul li a:active, #nav ul li a.active {
    color: #e2b62d;
}

.demoq-cont{
	max-width: 960px;
    background-color: #026c59;
    height: 100%;
    margin: auto;
    padding: 40px 0px 75px 0px;
	color: #ffffff;
	-webkit-box-shadow: 0px 0px 30px 5px black;
    -moz-box-shadow: 0px 0px 30px 5px black;
    box-shadow: 0px 0px 30px 5px black;
}

.demoq{
	margin: 0 auto;
	max-width: 750px;
	padding: 0 20px;
}

.demoradio{
	margin-left: 30px;
}

.demoradio label{
	display: block;
}

.demoradio span{
	margin-right: 10px;
}
.header-notification-wrapper{
	max-width:960px;
	margin: 0 auto;
}
.header_notification_container{
	padding: 40px 0px;
	width: 100%;
	position: relative;
    background: #e2b62d;
    color: white;
    font-size: 18px;
    text-shadow: 1px 1px 2px #616161;
	-webkit-box-shadow: 0px 0px 30px 5px black;
    -moz-box-shadow: 0px 0px 30px 5px black;
	box-shadow: 0px 0px 30px 5px black;

}
.header_notification_container .fa-exclamation-triangle{
    color: white;
    font-size: 30px;
	padding: 10px;
	vertical-align: middle;
}
.header_notification_container .fa-times{
	color: white;
    font-size: 30px;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 5px;
	cursor: pointer;
}


/*---------------header searchbar formatting--------------*/


.searchTriggerContanier {
	top: 35px;
    position: absolute;
    right: 20px;

	.clickHere{
		display: block;
		position: absolute;
		margin-top: 15px;
		left: 83%;
		font-size: 22px;
		font-weight: bold;
		font-family: sans-serif;
	}
	.search-trigger{
		display: block;
		width: 53px;
		height: 47px;
		font-size: 28px;
		line-height: 47px;
		text-align: center;
		background: #0a0a0a;
		border: 4px solid #000;
		border-radius: 30px;
		font-weight: normal;
		text-decoration: none;
		color: #FFC203;
	}

    &:hover,&:focus,&:active{
		color: rgba(232,126,0,0.7);
    }
}

.searchTriggerContanier a {
	text-decoration: none;
	color: #f7f6f2;
}
.searchTriggerContanier a:hover {
	text-decoration: none;
	color: #cecdcd;
}


.body-overlay{
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 15000;
	display: none;
}

#search-overlay-form{
	width: 80%;
	margin: 0 auto;
	padding: 5% 10%;
	color: #FFF;
}

#search-overlay-form input{
    background: transparent;
    border: none;
    letter-spacing: -3px;
    font-size: 80px;
    font-weight: bold;
    width: 80%;
    text-align: center;
    margin-top: 20px;
    color: #fff;
    padding: 0 0 0 0;
	/*    border-bottom: thick solid #ffffff;*/
}
#search-overlay-form input:hover,
#search-overlay-form input:focus{
	outline: none;
}

/* #search-overlay-form ::-webkit-input-placeholder {
    text-align: center;
}
 #search-overlay-form :-moz-placeholder {
     Firefox 18-
    text-align: center;
}
 #search-overlay-form ::-moz-placeholder {
     Firefox 19+
    text-align: center;
}
 #search-overlay-form :-ms-input-placeholder {
    text-align: center;
}*/

#search-overlay-form p{
    letter-spacing: 2px;
    text-align: center;
    font-size: 16px;
    margin-top: 75px;
}

#search-overlay-form .fa-times{
    position: absolute;
    top: 5%;
    right: 10%;
    font-size: 42px;
    cursor: pointer;
}


#search-form{
	display: none;
}

#search-form input{
    height: 40px;
}

#search-form .input-group-addon{
    background: #be6d58;
    padding-left: 18px;
    padding-right: 18px;
}

.font{
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: 'Orbitron', sans-serif;
	font-size: 70px;
	font-weight: bold;

	#spanHover{
		backface-visibility: hidden;
		transition-property: transform;
		vertical-align: middle;
		transform: translateZ(0);
		transition-duration: 0.3s;
		-webkit-backface-visibility: hidden;
		-webkit-transition-property: transform;
		-webkit-transform: translateZ(0);
		-webkit-transition-duration: 0.3s;
		display: inline-block;

		&:hover{
			transform: scale(1.3);
			-webkit-transform: scale(1.3);
			color: #FFC203;
			// text-decoration: line-through;
			cursor: pointer;
		}
	}
}

@media screen and (max-width: 1150px) {
	#search-overlay-form input {
		font-size: 50px;
	}
	#search-overlay-form .fa-times {
		font-size: 35px;
	}
	#nav ul li a {
		font-size: 13px;
	}
}

@media screen and (max-width: 940px) {
	.navlogo{
		float: none;
		padding: 0px 0px 15px 0px;
		position: absolute;
		left:0;
		right:0;
		margin-left:auto;
		margin-right:auto;
		display: block;
		width: 150px;
	}

	#nav ul{
		padding: 0;
	}

	.searchTriggerContanier {
		top: 18px;
		position: absolute;
		right: 20px;
	}

	.mobile-header-nav {
		background-color: #222222;
		display: none;
		list-style: none;
		margin: 0;
		padding: 0;
		top: 45px;
		position: absolute;
		width: 100%;
	}
	.mobile-header-nav li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.mobile-header-nav li a {
		color: white;
		display: block;
		padding: 15px 0;
		text-align: center;
		text-decoration: none;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.mobile-header-nav li a:hover {
		background-color: #2f2f2f;
	}

	.hamburger-menu {
		display: inline-block;
		margin: 8px 0 0 20px;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.hamburger-menu:hover {
		cursor: pointer;
	}
	.hamburger-menu .menu-item {
		background: #f7f6f2;
		display: block;
		height: 2px;
		margin: 0 0 4px;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		width: 25px;
	}
	.hamburger-menu.open .menu-item {
		margin: 0 0 3px;
	}
	.hamburger-menu.open .menu-item:first-child {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transform-origin: 6px;
		transform-origin: 6px;
	}
	.hamburger-menu.open .menu-item:nth-child(2) {
		opacity: 0;
	}
	.hamburger-menu.open .menu-item:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transform-origin: 5px;
		transform-origin: 5px;
	}

	#nav ul li {
		display:inherit;
		line-height:44px;
	}

	#nav-small ul li {
		line-height:25px;
    }
    .main-nav {
		padding: 10px 0px 15px 0px;
		height: auto;
    }
    #nav {
        float: none;
		margin: 0;
	}

	#nav ul li a {
		font-size:12px;
	}
}

@media screen and (max-width: 700px) {
	#search-overlay-form input {
		font-size: 35px;
		letter-spacing: normal;
		margin-top: 75px;
	}
	#search-overlay-form .fa-times {
		font-size: 35px;
	}
	#search-overlay-form {
		width: 95%;
		padding: 5% 2.5%;
	}
}

@media screen and (max-width: 550px) {
	#search-overlay-form input {
		font-size: 25px;
		letter-spacing: normal;
		margin-top: 75px;
		border-bottom: thin solid #ffffff;
	}
	#search-overlay-form .fa-times {
		font-size: 28px;
	}
	#search-overlay-form p {
		font-size: 13px;
	}
	#search-overlay-form {
		width: 95%;
		padding: 5% 2.5%;
	}
}


@media screen and (max-width: 400px) {
	#search-overlay-form input {
		background: transparent;
		letter-spacing: normal;
		font-size: 20px;
		width: 80%;
		margin-top: 75px;
		border-bottom: thin solid #ffffff;
	}

	#search-overlay-form p {
		font-size: 11px;
	}

	#search-overlay-form .fa-times {
		font-size: 25px;
	}
	#search-overlay-form {
		width: 95%;
		padding: 5% 2.5%;
	}
}

.checkboxes label{
    margin: 0px 0 20px;
    display: block;
}

.checkboxes span{
	margin-right: 10px;
}

#login-signup-switch{
	margin-top: 20px;
}

/* Footer Formatting
* --------------------------------------- */

/*Footer layout:*/
.goldbar{
	height: 8px; width: 100%;background-color: #e2b62d;
}

.footer-top, .footer-bottom {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.footer-top {
	margin-top: 75px;
	min-height: 150px;
	height: 100%;
	padding: 0px 0px 50px 0px;
}

.footer-top.green-bg, .footer-bottom.green-bg {
	background-color: #026c59;
}

.footer-top.white-bg, .footer-bottom.white-bg {
	background-color: #f7f6f2;
}

.footer-top>h3 {
	padding: 30px 0px;
}

.footer-top.green-bg h3 {
	color: #ffffff;
}

.footer-top.white-bg h3 {
	color: #026c59;
}

.footer-mail {
	max-width: 400px;
	font-size: 15px;
	margin: auto;
}

.footer-bottom.green-bg .footer-mail,
.footer-bottom.green-bg #newsletter-notifications{
	color: #ffffff;
	padding: 0 15px;
}

.footer-bottom.green-bg #successfulsignupnewl{
	color: #ffffff;
}

.footer-bottom.white-bg .footer-mail a{
    color: rgba(0, 0, 0, 0.67);
}

.footer-bottom.green-bg .footer-mail a{
	color: #ffffff;
}

.footer-icon {
	display: inline-block;
}

.footer-top .footer-icon {
	padding: 0px 6px;
	transition: all .2s ease-in-out;
	margin: 0px 9px;
}

.footer-bottom .footer-icon {
    margin: 30px 10px;
	height: 40px;
	width: 41px;
}

.footer-top .footer-icon:hover {
	transform: scale(1.05);
}

#newsletter-notifications{
    max-width: 300px;
}

#successfulsignupnewl{
    padding: 50px 15px 84px;
}

@media (max-width: 399px) {

	.footer-top{
		width: 100%;
		margin: 50px 0 0 0;
	}
	.footer-bottom{
		height: 100%;
		width: 100%;
	}
	.footer-mail{
		font-size: 13px;
	}
	/*.container {
	  margin-bottom: 0px;
	 }*/


}
/*End footer layout.*/

/*Footer icon images:*/
.footer-top.white-bg #footer-wsj {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gfooter-wsj.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.green-bg #footer-wsj {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wfooter-wsj.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.white-bg #footer-nbc {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gfooter-nbc.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.green-bg #footer-nbc {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wfooter-nbc.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.white-bg #footer-tnl {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gfooter-tnl.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.green-bg #footer-tnl{
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wfooter-tnl.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.white-bg #footer-mash {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gfooter-mash.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.green-bg #footer-mash {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wfooter-mash.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.white-bg #footer-lat {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gfooter-lat.png") no-repeat 0 0;
	background-size: contain;
}
.footer-top.green-bg #footer-lat {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wfooter-lat.png") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.white-bg #footer-fb {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gicon-fb.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.green-bg #footer-fb {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wicon-fb.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.white-bg #footer-twit {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gicon-twit.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.green-bg #footer-twit {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wicon-twit.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.white-bg #footer-gplus {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gicon-gplus.svg") no-repeat 0 0;
	background-size: contain;

}
.footer-bottom.green-bg #footer-gplus {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wicon-gplus.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.white-bg #footer-yout {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gicon-yout.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.green-bg #footer-yout {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wicon-yout.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.white-bg #footer-instagram {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/gicon-instagram.svg") no-repeat 0 0;
	background-size: contain;
}
.footer-bottom.green-bg #footer-instagram {
	display: inline-block;
	content: "";
	background: url("/theme/images/footer/wicon-instagram.svg") no-repeat 0 0;
	background-size: contain;
}
/*End footer icons.*/
