/*

Theme Name: Squirly Traffic

Theme URI: https://squirlytraffic.com/

Description: The theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	background-color: #F94804;
}


/* Main styles for the top level of the main menu */

.lfm_menu_bar {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#281d00+0,493101+32,774602+82 */
background: #281d00; /* Old browsers */
background: -moz-linear-gradient(top,  #281d00 0%, #493101 32%, #774602 82%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #281d00 0%,#493101 32%,#774602 82%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #281d00 0%,#493101 32%,#774602 82%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#281d00', endColorstr='#774602',GradientType=0 ); /* IE6-9 */


	padding: 0 0 45px;
	margin-bottom: 20px; /* If your menu bar is overlapping the page content, increase the margin here */
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the top level navigation */
	.lfm_menu_bar {
		padding-bottom: 0;
		margin-bottom: 20px;
	}
}


/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 20px;
	}
}

/* Desktop View Settings */
@media (min-width: 992px) {
	
		body {
		margin: 0;
		background-color: #fdd591; /* Sets the main background color */
		background-image: url(/themes/LFMTE_default/images/header_bg.jpg); /* Sets the header background image */
		background-repeat: repeat-x;
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 1150px;
		height: 284px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: #f94804;
	}
	
	#header {
		background-image: url(/themes/LFMTE_default/images/header.jpg); /* Sets the header image */
		background-repeat: no-repeat;
        background-color: #f94804;
		width: 1150px;
		height: 284px;
	}
}
/* Mobile View Settings */
@media (max-width: 992px) {
	
	body {
		margin: 0;
		background-color: #593801; /* Sets the main background color */
		background-image: url(/themes/LFMTE_default/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: 74px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: #f94804;
	}
	
	#header {
		background-image: url(/themes/LFMTE_default/images/mobile_header.jpg); /* Sets the mobile header image */
		background-repeat: no-repeat;
		width: 300px;
		height: 74px;
	}
  }

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Sets the navigation tabs for the top level */
	font-size: 15px;
	color: #ffeb3b;
    font-weight: 700;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	/* Changes the colors when a tab is opened */
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1f6608+14,4eba23+90 */
background: #1f6608; /* Old browsers */
background: -moz-linear-gradient(top,  #1f6608 14%, #4eba23 90%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #1f6608 14%,#4eba23 90%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #1f6608 14%,#4eba23 90%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f6608', endColorstr='#4eba23',GradientType=0 ); /* IE6-9 */
color: #FFF;
font-weight: 700;
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened */
	background-color:#e33437;
	color: #FFF;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened */
	background-color: #FFFFFF;
}

@media (min-width: 992px) {
	/* Desktop view settings for the top level navigation tabs */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		margin: 0px 3px;
		padding: 6px 15px;
		border: 1px solid rgba(255,255,255,0);
		border-radius: 5px;
		position: relative;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link,
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
		border: 1px solid #42ff3b;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		/* Fills in the gap between an opened tab and the bottom of the bar */
		content: "";
		background-color: transparent;
		width: calc(100% + 2px);
		height: 14px;
		position: absolute;
		bottom: -10px;
		left: -1px;
		border: 0px solid #DDDDDD;
		border-top: none;
	}
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the top level navigation tabs */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
		padding: 8px 15px;
		text-align: left;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link {
		/* Returns to the original colors when a tab is closed in mobile */
		color: #FFFFFF;
		background-color: #007bff;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		/* Returns to the original hover effect when closed in mobile  */
		color: #FFFFFF;
		background-color: #089cff;
	}
	
	/* Adds an arrow in mobile view */
	.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:after {
		content: "";
		border-top: 0.3em solid;
		border-right: 0.3em solid transparent;
		border-bottom: 0;
		border-left: 0.3em solid transparent;
		color: #FFFFFF;
		transform: rotate(-90deg);
		position: absolute;
		right: 1.25rem;
		transition: all 0.1s ease-out;
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		color: navy;
		transform: rotate(0deg);
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
		color: #FFFFFF;
		transform: rotate(-90deg);
	}
}


/* Main styles for the second level of the main menu */

.lfm_menu_tab {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00630b+18,229e00+76 */
background: #00630b; /* Old browsers */
background: -moz-linear-gradient(top,  #00630b 18%, #229e00 76%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #00630b 18%,#229e00 76%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #00630b 18%,#229e00 76%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00630b', endColorstr='#229e00',GradientType=0 ); /* IE6-9 */

	border: 0px solid #DDDDDD;
	position: absolute;
	display: none;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100%;
}

li.lfm_tab_opened .lfm_menu_tab {
	display: flex;
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the second level navigation */
	.lfm_menu_tab {
		background-color: #EEEEEE;
		position: relative;
		flex-direction: column;
		top: 0;
		padding: 5px 0;
	}
	li.lfm_tab_closed .lfm_menu_tab {
		display: none;
	}
}


.lfm_menu_tab > li > a {
	/* Sets the navigation links for the second level */
	font-size: 16px;
	padding: 0 20px;
	line-height: 45px;
	color: #ffd507;
	text-decoration: none;
	display: block;
	background-image: url(/themes/LFMTE_default/images/navi1.png); 
	width: 210px;
	display: block;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
padding-right: 0px;
padding-bottom: 0px;
background-repeat: no-repeat;
background-position: left bottom;
height: 46px;

text-align: center;
}
.lfm_menu_tab > li > a:hover {
	color: navy;
	background-image: url(/themes/LFMTE_default/images/navi2.png); 
	width: 210px;
		color: #fff;
}

.lfm_menu_tab .dropdown-menu a {
	/* Sets the navigation links for the third level */
	font-size: 15px;
	padding: 0 20px;
	line-height: 32px;
	color: #ff0;
	text-decoration: none;
	white-space: nowrap;
	display: block;
background-color: #4d2d08;
font-weight: bold;

}
.lfm_menu_tab .dropdown-menu a:hover {
	background-color: #cc3d07;
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the second level navigation links */
	.lfm_menu_tab > li > a {
		padding-left: 40px;
		width: 100%;
		text-align: left;
	}
	
	/* Mobile view settings for the third level navigation links */
	.lfm_menu_tab .dropdown-menu a {
		padding-left: 50px;
	}
}


/* Styles for the footer */
/* .lfm_footer {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#281d00+0,493101+56,774602+100 */
/* background: #281d00; /* Old browsers */
/* background: -moz-linear-gradient(top,  #281d00 0%, #4d2d08 56%, #c98702 100%); /* FF3.6-15 */
/* background: -webkit-linear-gradient(top,  #281d00 0%,#4d2d08 56%,#c98702 100%); /* Chrome10-25,Safari5.1-6 */
/* background: linear-gradient(to bottom,  #281d00 0%,#4d2d08 56%,#c98702 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#281d00', endColorstr='#c98702',GradientType=0 ); /* IE6-9 */
/* } */

.lfm_footer {
	background-color: #68C65B;
	
}

.footer-bg { 
    background-image: linear-gradient(#68C65B,#07890b);
   background-color: #68C65B;
    border: 5px solid #68C65B; 
    padding-top: 30px;
    margin-left: -5px;
    margin-right: -5px;
}


/* 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:#1468e5;
	border-radius:2px;
	border:1px solid #002175;
	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:#3385FF;
	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;
}