/*

Theme Name: LFMTE Sidebar Theme

Theme URI: http://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges - customized for 500 Best Hits.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* Custom Header Banner Styles */
.custom-header-banner {
	background: linear-gradient(135deg, #0066CC 0%, #003d7a 100%);
	width: 100%;
	text-align: center;
	padding: 0;
	border-bottom: 3px solid #FFD700;
}

.header-banner-container {
	max-width: 100%;
	overflow: hidden;
}

.header-banner-img {
	max-width: 100%;
	height: auto;
	max-height: 180px;
	object-fit: contain;
}

/* Responsive header banner */
@media (max-width: 768px) {
	.header-banner-img {
		max-height: 100px;
	}
}


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #212529;
	background-color: #FFFFFF;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles - hidden since we have header banner */

.lfm_menu_logo {
	display: none;
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(180deg, #0066CC 0%, #004d99 100%);
	color: #FFFFFF;
	margin-bottom: 20px;
	border-bottom: 2px solid #003d7a;
}


/* Styles for the slidebar navigation */

.lfm_slidebar {
	min-width: 225px;
	max-width: 225px;
	min-height: 100vh;
	transition: all 0.4s ease-in-out;
	background: linear-gradient(180deg, #1C2B4A 0%, #0F1A2E 100%);
}

/* Desktop View Settings - Expand the slidebar by default */
@media (min-width: 890px) {
	.lfm_slidebar {
		margin-left: 0px;
	}
	.lfm_slidebar.toggled {
		margin-left: -225px;
	}
}

/* Mobile View Settings - Collapse the slidebar by default */
@media (max-width: 889px) {
	.lfm_slidebar {
		margin-left: -225px;
	}
	.lfm_slidebar.toggled {
		margin-left: 0px;
	}
}

.lfm_slidebar_toggleswitch {
	cursor: pointer;
	font-size: 24px;
	color: #FFFFFF;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #FFD700;
}

.lfm_slidebar_mainmenu {
	list-style: none;
	padding-left: 0;
	overflow: auto;
}


/* This sets the style of the slidebar menu items */
.lfm_slidebar_mainmenu li > a {
	color: #FFFFFF;
	background: #0066CC;
	border-bottom: 1px solid #004d99;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s ease;
}

/* This sets the colors of the slidebar menu links when you hover over them */
.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
	color: #FFD700;
	background: #0080FF;
}



/* Styles for the footer */

.lfm_footer {
	background: linear-gradient(180deg, #1C2B4A 0%, #0F1A2E 100%);
	border-top: 3px solid #FFD700;
}

/* Custom Footer Banner Styles */
.custom-footer-banner {
	background: linear-gradient(135deg, #0066CC 0%, #003d7a 100%);
	width: 100%;
	text-align: center;
	padding: 0;
	border-top: 3px solid #FFD700;
}

.footer-banner-container {
	max-width: 100%;
	overflow: hidden;
}

.footer-banner-img {
	max-width: 100%;
	height: auto;
	max-height: 180px;
	object-fit: contain;
}

/* Responsive footer banner */
@media (max-width: 768px) {
	.footer-banner-img {
		max-height: 100px;
	}
}


/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:#3097D1;
	font-size:20px;
	margin-right:5px;
}


/* Profile picture sizes */

.profilepic_small {
	width:40px;
	height:40px;
}

.profilepic_med {
	width:75px;
	height:75px;
}

.profilepic_large {
	width:200px;
	height:200px;
}


/* Various styles */

.buttonlink {
	/* This class defines <a> tag links that look like buttons */
	cursor: pointer;
	background-color:#0066CC;
	border-radius:4px;
	border:1px solid #004d99;
	display:inline-block;
	cursor:pointer;
	color:#FFFFFF;
	font-family:arial;
	font-size:18px;
	font-weight:500;
	padding:4px 7px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
	transition: all 0.2s ease;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background-color:#0080FF;
	text-decoration:none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#FFFFFF;
	background-color:#1C2B4A;
}
.infobar h2 {
	color:#FFFFFF;
}


.vcenter {
	/* This is a class that can be used in Bootstrap rows to vertically center the content */
	display: flex;
	align-items: center;
}


/* The next 3 sections control various text styles used throughout the LFM Members Area */
.lfm_title {
	font-family: "Arial"; color:#333333; font-size:32px;
}

.lfm_descr {
	font-family: "Arial"; color:#111111; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color:#000000; font-size:16px;
	font-weight:700;
}