/*

Theme Name: LFMTE Sidebar Theme

Theme URI: http://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
background: url('/themes/LFMTE_sidebar/salty-life/odin bckgrd3.png') no-repeat center center;
  background-size: cover;
background-position: center;
background-repeat: no-repeat;

}


/* 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: url('/themes/LFMTE_sidebar/salty-life/odin bckgrd3.png') no-repeat center center;
  background-size: cover;
background-position: cover;
background-repeat: no-repeat;
	color: #EEEEEE;
	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: url('/themes/LFMTE_sidebar/salty-life/saltside.png') no-repeat center center;
  background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

/* 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: #024eca;
}

.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:#000000;
background: url('/themes/LFMTE_sidebar/salty-life/shrimp5.png ') no-repeat center center;
  background-size: cover;
background-position: center;
background-repeat: no-repeat;
	border-bottom: 1px solid #003e80;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 20px;
	position: relative;
	font-weight: 800;
	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:#000000;
	background: linear-gradient(90deg, rgba(3,1,1,1) 0%, rgba(142,80,53,1) 1.9022443890274316%, rgba(216,134,100,1) 2.371820448877806%, rgba(213,133,96,1) 3.492768079800499%, rgba(152,89,62,1) 4.102244389027439%, rgba(224,140,106,1) 4.268578553615965%, rgba(198,109,70,1) 4.753366583541148%, rgba(237,154,112,1) 48.045137157107234%, rgba(114,62,40,1) 100%);
}



/* Styles for the footer */

.lfm_footer {
background: url('/themes/LFMTE_sidebar/salty-life/odin bckgrd3.png') no-repeat center center;
  background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


/* 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(90deg, rgba(186,117,43,1) 0%, rgba(151,103,86,1) 11.159600997506233%, rgba(145,90,19,1) 11.408977556109726%, rgba(163,112,63,1) 11.597007481296764%, rgba(151,103,86,1) 24.127182044887775%, rgba(151,103,86,1) 98.56608478802993%, rgba(151,103,86,1) 99.18952618453865%, rgba(151,103,86,1) 99.25187032418953%, rgba(140,84,6,1) 100%);
	border-radius:2px;
	border:1px solid #002175;
	display:inline-block;
	cursor:pointer;
	color:#000000;
	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:#FFFFFF;
	background-color:#3385FF;
	text-decoration:none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#000000;
background: linear-gradient(90deg, rgba(186,117,43,1) 0%, rgba(151,103,86,1) 11.159600997506233%, rgba(145,90,19,1) 11.408977556109726%, rgba(163,112,63,1) 11.597007481296764%, rgba(151,103,86,1) 24.127182044887775%, rgba(151,103,86,1) 98.56608478802993%, rgba(151,103,86,1) 99.18952618453865%, rgba(151,103,86,1) 99.25187032418953%, rgba(140,84,6,1) 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:#000000; font-size:32px;
}

.lfm_descr {
	font-family: "Arial"; color:#000000; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color:#000000; font-size:16px;
	font-weight:700;
}