/*

Theme Name: LFMTE Sidebar Theme

Theme URI: https://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* Main font settings */

body {
    font-family: 'Cookie', cursive;
	font-size: 22px;
	font-weight: 400;
	color: #5f0c1e;
	background-color: #ffffff;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 50px;
	width: 100%;
	margin: 0.0rem 0.7rem 0.0rem 0.10rem;
}
.header {
    background-color: #5f0c1e;
    background-image: url();
    text-align: center;
    max-width: 100%;
}
.responsive {
    max-width: 100%;
    height: auto;
}

/* Styles for the top bar */

.lfm_topbar {
	background: #5f0c1e;
	color: #5f0c1e;
	margin-bottom: 20px;
}


/* Styles for the slidebar navigation */

.lfm_slidebar {
	min-width: 225px;
	max-width: 225px;
	min-height: 100vh;
	transition: all 0.4s ease-in-out;
	background: #5f0c1e;
}

/* 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: #903b03;
}

.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: #FFD484;
	background: #5f0c1e;
	border-bottom: 1px solid #4e6285;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 26px;
	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 {
	color: #5f0c1e;
	background: #FFD484;
}

#footer {
		background-image: url(); /* Sets the footer image */
		background-repeat: no-repeat;
		width: 1175px;
		height: 175px;
        background-color: transparent;
	}
	
	#footerwrapper {
		background-image: url();
		background-repeat: repeat-x;
        background-color: transparent;
			}
	
/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:#700F04;
	font-size:20px;
	margin-right:3px;
}


/* 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:#EDC8B6;
	border-radius:2px;
	border:1px solid #4e6285;
	display:inline-block;
	cursor:pointer;
	color:#FFD484;
	font-family:'Great Vibes', cursive;
	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:#EDC8B6;
	background-color:#700f04;
	text-decoration:none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#FFD484;
	background-color:#5f0c1e;
}
.infobar h2 {
	color:#5f0c1e;
}


.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: 'Cookie', cursive; color:#FFD484; font-size:28px;
}

.lfm_descr {
	font-family: 'Cookie', cursive; color:#FFD484; font-size:16px;
}

.lfm_descr_bold {
	font-family: 'Cookie', cursive; color:#FFD484; font-size:16px;
	font-weight:700;
}