/*

Theme Name: CRTE NEW 2026

Theme URI: http://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* ==========================================================================
   Click Roads Traffic Exchange - Custom Theme
   Fiery automotive / speed brand: dark metal backdrop, chrome + flame accents
   Brand palette:
     --cr-flame   #ff6a00  primary orange (flames / accents)
     --cr-ember   #cc2b00  deep red-orange (gradient bottom)
     --cr-gold    #ffcc00  headline yellow
     --cr-steel   #3a3f47  gunmetal (navigation)
     --cr-ink     #0d0d0d  near-black backdrop
   ========================================================================== */

:root {
	--cr-flame: #ff6a00;
	--cr-ember: #cc2b00;
	--cr-gold:  #ffcc00;
	--cr-steel: #3a3f47;
	--cr-steel-dk: #23262b;
	--cr-ink:   #0d0d0d;
}


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #212529;
	background-color: #fcfcfc;
	background: linear-gradient(135deg, #1e1f22 0%, #fcfcfc 60%, #000000 100%);
	background-attachment: fixed;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
	min-width: 0;
}

/* Light, readable content panel sitting on the dark brand backdrop */
.content {
	background: #fcfcfc;
	margin: 0 18px 24px 18px;
	padding: 22px 24px;
	border-radius: 8px;
	border-top: 4px solid var(--cr-flame);
	box-shadow: 0 6px 22px rgba(0,0,0,0.55);
}


/* Full-width custom banners (header at top, footer at bottom) */

.cr-banner {
	width: 100%;
	text-align: center;
	background: #000000;
	background: linear-gradient(180deg, #000000 0%, #141414 100%);
	line-height: 0;
	overflow: hidden;
}
.cr-banner img {
	width: 100%;
	max-width: 1000px;
	height: auto;
	display: inline-block;
}
.cr-header-banner {
	border-bottom: 3px solid var(--cr-flame);
}
.cr-footer-banner {
	border-top: 3px solid var(--cr-flame);
}
.cr-copyright {
	background: #000000;
	color: #9a9a9a;
	text-align: center;
	font-size: 13px;
	padding: 12px 10px 16px 10px;
}
.cr-copyright a { color: var(--cr-flame); text-decoration: none; }
.cr-copyright a:hover { color: var(--cr-gold); }



/* Site logo styles */

.lfm_menu_logo {
	max-height: 42px;
	margin: 0.6rem 1.2rem 0.5rem 1.2rem;
	filter: drop-shadow(0 2px 3px rgba(0,0,0,0.6));
}

/* Click Roads text logo (replaces default LFMTE logo in the sidebar top).
   Colors match the header banner wordmark: yellow-gold into flame orange. */
.cr-logo {
	display: block;
	text-align: center;
	padding: 0.7rem 0.5rem 0.6rem 0.5rem;
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	font-size: 26px;
	line-height: 1;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	/* Fiery gradient wordmark, same palette as the header banner */
	background: linear-gradient(180deg, #ffe14d 0%, #ffcc00 45%, #ff8a00 80%, var(--cr-ember) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--cr-gold); /* fallback for browsers without background-clip:text */
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.75));
}
.cr-logo:hover {
	text-decoration: none;
	filter: drop-shadow(0 1px 3px rgba(0,0,0,0.85)) brightness(1.08);
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(180deg, #2b2f36 0%, #16181c 100%);
	color: #EEEEEE;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--cr-flame);
	box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Fiery "Start Surfing" / "Join Free" call-to-action button in the top bar */
.lfm_topbar .btn-success {
	background: linear-gradient(180deg, var(--cr-flame) 0%, var(--cr-ember) 100%);
	border: 1px solid #8f1e00;
	color: #ffffff;
	font-weight: 700;
	text-shadow: 0 1px 1px rgba(0,0,0,0.35);
	box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.lfm_topbar .btn-success:hover {
	background: linear-gradient(180deg, #ff8524 0%, #e33300 100%);
	border-color: #8f1e00;
	color: #ffffff;
}

/* Re-brand default Bootstrap primary buttons (e.g. "Join Free Today")
   from stock blue to the Click Roads flame gradient for consistency */
.btn-primary {
	background: linear-gradient(180deg, var(--cr-flame) 0%, var(--cr-ember) 100%);
	border-color: #8f1e00;
	color: #ffffff;
	font-weight: 600;
	text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
	background: linear-gradient(180deg, #ff8524 0%, #e33300 100%);
	border-color: #8f1e00;
	color: #ffffff;
	box-shadow: 0 0 0 0.2rem rgba(255,106,0,0.35);
}


/* 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, #33373d 0%, #1c1e22 100%);
	border-right: 2px solid var(--cr-flame);
	box-shadow: inset -1px 0 0 rgba(255,255,255,0.04);
}

/* 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(--cr-flame);
}

.lfm_slidebar_mainmenu {
	list-style: none;
	padding-left: 0;
	overflow: auto;
}


/* This sets the style of the slidebar menu items - brushed gunmetal tabs */
.lfm_slidebar_mainmenu li > a {
	color: #eaeaea;
	background: linear-gradient(180deg, #3d424a 0%, #2a2e34 100%);
	border-bottom: 1px solid #14161a;
	border-top: 1px solid rgba(255,255,255,0.05);
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.55rem 1.1rem 0.55rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 500;
	cursor: pointer;
	text-shadow: 0 1px 1px rgba(0,0,0,0.5);
	transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

/* This sets the colors of the slidebar menu links when you hover over them
   Fiery orange highlight with a bright edge; text stays high-contrast */
.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
	color: #ffffff;
	background: linear-gradient(180deg, var(--cr-flame) 0%, var(--cr-ember) 100%);
	border-left: 4px solid var(--cr-gold);
	padding-left: calc(1.1rem - 4px);
	text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}



/* Styles for the footer */

.lfm_footer {
	background: linear-gradient(180deg, #16181c 0%, #000000 100%);
	border-top: 2px solid var(--cr-flame);
}


/* 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: linear-gradient(180deg, var(--cr-flame) 0%, var(--cr-ember) 100%);
	border-radius:3px;
	border:1px solid #8f1e00;
	display:inline-block;
	cursor:pointer;
	color:#FFFFFF;
	font-family:arial;
	font-size:18px;
	font-weight:600;
	padding:4px 9px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
	text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background: linear-gradient(180deg, #ff8524 0%, #e33300 100%);
	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: linear-gradient(180deg, var(--cr-steel) 0%, var(--cr-steel-dk) 100%);
}
.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;
}