/*

Theme Name: Living Free Traffic

Theme URI: http://livingfreetraffic.com/

Description: A patriotic-themed sidebar template for Living Free Traffic.

Version: 3.0

Author: Living Free Traffic

*/


@charset "utf-8";


/* CSS Variables for Living Free Traffic Color Scheme */
:root {
	--primary-blue: #0066cc;
	--dark-blue: #003366;
	--darker-blue: #002244;
	--medium-blue: #1a5fb4;
	--light-blue: #4da3ff;
	--accent-blue: #007bff;
	--header-blue: #1a4a8a;
	--white: #ffffff;
	--light-gray: #f5f8fa;
	--text-dark: #212529;
	--text-light: #cccccc;
}

/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-dark);
	background-color: var(--light-gray);
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
	margin: 0.5rem 1.2rem 0.3rem 1.2rem;
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	color: var(--white);
	margin-bottom: 0;
}


/* 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, var(--dark-blue) 0%, var(--darker-blue) 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: #EEEEEE;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: var(--light-blue);
}

.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,
.lfm_slidebar .lfm_slidebar_mainmenu li > a,
nav.lfm_slidebar .lfm_slidebar_mainmenu li > a,
ul.lfm_slidebar_mainmenu li a,
.lfm_slidebar_mainmenu li a {
	color: #ffffff !important;
	background: #0066cc !important;
	background: linear-gradient(135deg, #0066cc 0%, #1a5fb4 100%) !important;
	border-bottom: 1px solid #003366 !important;
	text-decoration: none !important;
	display: block !important;
	margin: 0px !important;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem !important;
	font-size: 16px !important;
	position: relative;
	font-weight: 400;
	cursor: pointer;
}

/* 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,
.lfm_slidebar .lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar .lfm_slidebar_mainmenu li > a:hover,
ul.lfm_slidebar_mainmenu li a:hover,
ul.lfm_slidebar_mainmenu li a.active,
.lfm_slidebar_mainmenu li a:hover,
.lfm_slidebar_mainmenu li a.active {
	color: #ffcc00 !important;
	background: #4da3ff !important;
	background: linear-gradient(135deg, #4da3ff 0%, #0066cc 100%) !important;
}

/* Ensure sidebar menu list items have no extra styling */
.lfm_slidebar_mainmenu li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}



/* Styles for the footer */

.lfm_footer {
	background-color: var(--darker-blue);
}


/* 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: var(--primary-blue);
	border-radius: 4px;
	border: 1px solid var(--dark-blue);
	display: inline-block;
	cursor: pointer;
	color: var(--white);
	font-family: arial;
	font-size: 18px;
	font-weight: 500;
	padding: 4px 7px;
	margin: 2px 1px 2px 1px;
	text-decoration: none;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color: var(--white);
	background-color: var(--light-blue);
	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:#555555;
}
.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;
}


/* ============================================
   Living Free Traffic Custom Header Banner
   ============================================ */

.lft-header-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.lft-header-banner img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

/* Clickable overlay links on header banner */
.lft-header-links {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	background: transparent;
}

.lft-header-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 4px 8px;
	transition: color 0.3s ease, text-shadow 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.lft-header-links a:hover {
	color: #ffcc00;
	text-decoration: underline;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.lft-header-left-links {
	display: flex;
	align-items: center;
}

.lft-header-left-links a {
	margin-right: 3px;
}

.lft-header-left-links a::after {
	content: "|";
	color: #ffffff;
	margin-left: 8px;
	text-shadow: none;
}

.lft-header-left-links a:last-child::after {
	content: "";
}

/* Responsive header adjustments */
@media (max-width: 768px) {
	.lft-header-links {
		flex-direction: column;
		height: auto;
		padding: 5px 10px;
		background: rgba(0, 51, 102, 0.9);
	}

	.lft-header-links a {
		font-size: 12px;
		padding: 3px 5px;
	}

	.lft-header-left-links {
		margin-bottom: 5px;
	}
}


/* ============================================
   Promo Code Banner
   ============================================ */

.lft-promo-banner {
	background: linear-gradient(135deg, #cc0000 0%, #990000 50%, #cc0000 100%);
	border: 3px solid #ffcc00;
	border-radius: 8px;
	padding: 12px 20px;
	margin: 10px 15px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.lft-promo-banner p {
	margin: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
}

.lft-promo-banner .promo-code {
	display: inline-block;
	background: #ffcc00;
	color: #990000;
	font-weight: 700;
	padding: 4px 15px;
	border-radius: 4px;
	margin: 0 8px;
	font-size: 20px;
}

.lft-promo-banner .promo-rewards {
	display: block;
	margin-top: 8px;
	font-size: 16px;
	font-weight: 500;
	color: #ffcc00;
}


/* ============================================
   Sidebar Banner Ads Section
   ============================================ */

.lft-sidebar-ads {
	padding: 15px;
	text-align: center;
}

.lft-sidebar-ads table {
	margin: 0 auto;
}

.lft-sidebar-ads img {
	border-radius: 4px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lft-sidebar-ads img:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* ============================================
   Additional Button Styling
   ============================================ */

.btn-primary {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
	border-color: var(--dark-blue);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
	border-color: var(--primary-blue);
}

.btn-success {
	background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
	border-color: #1e7e34;
}

.btn-success:hover {
	background: linear-gradient(135deg, #34ce57 0%, #28a745 100%);
	border-color: #28a745;
}


/* ============================================
   Link Styling
   ============================================ */

a {
	color: var(--primary-blue);
}

a:hover {
	color: var(--light-blue);
}