/*

Theme Name: Beagle Hits

Theme URI: https://beaglehits.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott. Designed by MariusGraphics.com

*/


@charset "utf-8";


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #212529;
	background-color: #f5f8fa;
}


/* 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: #E5B402; /* Set the background color to black */
  background: -moz-linear-gradient(180deg, #E00B00 6%, #E5B402 92%);
  background: -webkit-linear-gradient(180deg, #E00B00 6%, #E5B402 92%);
  background: linear-gradient(180deg, #E00B00 6%, #E5B402 92%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E00B00", endColorstr="#E5B402", GradientType=1);
		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: #E5B402; /* Set the background color to black */
  background: -moz-linear-gradient(90deg, #661300 0%, #E00B00 50%, #E5B402 100%);
  background: -webkit-linear-gradient(90deg, #661300 0%, #E00B00 50%, #E5B402 100%);
  background: linear-gradient(90deg, #661300 0%, #E00B00 50%, #E5B402 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#661300", endColorstr="#E5B402", GradientType=1);
}

/* Desktop View Settings - Expand the slidebar by default */
@media (min-width: 890px) {
	.lfm_slidebar {
		margin-left: 0px;
	}
	.lfm_slidebar.toggled {
		margin-left: -225px;
	}
}

body {
		margin: 0;
		background-color: #fefefe; /* Sets the main background color */
		background-image: url(/themes/LFMTE_sidebar/images/header_bg.jpg); /* Sets the header background image */
		background-repeat: repeat-x;
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 1190px;
		height: 299px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: #E23F01;
	}
	
	#header {
		background-image: url(/themes/LFMTE_sidebar/images/header.jpg); /* Sets the header image */
		background-repeat: no-repeat;
        background-color: #E23F01;
		width: 1190px;
		height: 299px;
	}
/* Mobile View Settings - Collapse the slidebar by default */
@media (max-width: 889px) {
	.lfm_slidebar {
		margin-left: -225px;
	}
	.lfm_slidebar.toggled {
		margin-left: 0px;
}

body {
		margin: 0;
		background-color: #fefefe; /* Sets the main background color */
		background-image: url(/themes/LFMTE_sidebar/images/mobile_header_bg.jpg); /* Sets the mobile header background image */
		background-repeat: repeat-x;
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 300px;
		height: 75px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: #E23F01;
	}
	
	#header {
		background-image: url(/themes/LFMTE_sidebar/images/mobile_header.jpg); /* Sets the mobile header image */
		background-repeat: no-repeat;
        background-color: #E23F01;
		width: 300px;
		height: 75px;
	}
}

.lfm_slidebar_toggleswitch {
	cursor: pointer;
	font-size: 24px;
	color: #ffe599;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #661300;
}

.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 {
  background: #E5B402; /* Set the background color to black */
  background: -moz-linear-gradient(180deg, #E5B402 0%, #E00B00 100%);
  background: -webkit-linear-gradient(180deg, #E5B402 0%, #E00B00 100%);
  background: linear-gradient(180deg, #E5B402 0%, #E00B00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E5B402", endColorstr="#E00B00", GradientType=1);
  border-bottom: 1px solid #FFBE6E;
  text-decoration: none;
  display: block;
  margin: 3px;
  padding: 0.5rem 1.1rem 0.5rem 1.1rem;
  font-size: 16px;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  color: #FFFFFF;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* 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 {
  background: #661300; /* Set the background color to black */
  background: -moz-linear-gradient(180deg, #661300 0%, #E5B402 100%);
  background: -webkit-linear-gradient(180deg, #661300 0%, #E5B402 100%);
  background: linear-gradient(180deg, #661300 0%, #E5B402 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#661300", endColorstr="#E5B402", GradientType=1);
  border-bottom: 1px solid #fff;
  text-decoration: none;
  display: block;
  margin: 3px;
  padding: 0.5rem 1.1rem 0.5rem 1.1rem;
  font-size: 16px;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  color: #FFFFFF;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}


/* Styles for the footer */

.lfm_footer {
  background: #E00B00; /* Set the background color to black */
  background: -moz-linear-gradient(180deg, #E00B00 6%, #661300 92%);
  background: -webkit-linear-gradient(180deg, #E00B00 6%, #661300 92%);
  background: linear-gradient(180deg, #E00B00 6%, #661300 92%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E00B00", endColorstr="#661300", GradientType=1);
}

/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:#661300;
	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:#E00B00;
	border-radius:2px;
	border:1px solid #E5B402;
	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;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background-color:#661300;
	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;
}