/*

Theme Name: LFMTE Default Theme

Theme URI: http://thetrafficexchangescript.com/

Description: The default 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: #212529;
	background-color: #f5f8fa;
	min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.header {
    background-image: url("/themes/LFMTE_default/images/header_bg.png");
    background-color: #1E90FF;
        background-repeat:repeat-x;
        background-position: center top;
	border-bottom: 2px solid grey;
}


/* Main styles for the top level of the main menu */

.lfm_menu_bar {
	background-color: #141466; /* For browsers that do not support gradients */
	background: -moz-linear-gradient(left, #050519 0%, #3333ff 40%, #3333ff 58%, #050519 100%);
background: -webkit-linear-gradient(left, #050519 0%, #3333ff 40%, #3333ff 58%, #050519 100%);
background: linear-gradient(to right, #050519 1%, #3333ff 40%, #3333ff 58%, #050519 99%);
	margin-bottom: 56px; /* 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;
	}
}


.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Sets the navigation tabs for the top level */
	font-size: 16px;
	color: #FFFFFF;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	/* Changes the colors when a tab is opened */
	color: orange;
	background-color: #141466;
	box-shadow: 2px 4px 7px 2px rgba(0,0,0,.8);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened */
	background-color: #19197f;
	box-shadow: 2px 4px 4px 2px rgba(0,0,0,.8);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened */
	background-color: #1e1e99;
}

@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: 0px solid #DDDDDD;
	}
	
	.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: #141466;
		width: calc(100% + 2px);
		height: 14px;
		position: absolute;
		bottom: -10px;
		left: -1px;
		border: 0px solid #DDDDDD;
		border-top: none;
		box-shadow: 2px 4px 7px 2px rgba(0,0,0,.8);
	}
}

@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: #FF9900;
	}
	
	.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 {
	background-color: #141466; /* For browsers that do not support gradients */
  background-image: linear-gradient(#141466,#19197f,#141466);
	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: #cfe2f3;
	font-weight: 600;
	text-decoration: none;
	display: block;
}
.lfm_menu_tab > li > a:hover {
	color: orange;
}

.lfm_menu_tab .dropdown-menu  {
	background-color: #141466;
}
.lfm_menu_tab .dropdown-menu a {
	/* Sets the navigation links for the third level */
	font-size: 16px;
	padding: 0 20px;
	line-height: 32px;
	color: #cfe2f3;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	display: block;
}
.lfm_menu_tab .dropdown-menu li:hover {
	background-color: #1e1e99;
}
.lfm_menu_tab .dropdown-menu > li > a:hover {
	color: orange;
}

@media (max-width: 991.98px) {
	/* Mobile view settings for the second level navigation links */
	.lfm_menu_tab > li > a {
		padding-left: 40px;
		line-height: 36px;
		width: 100%;
	}
	
	/* Mobile view settings for the third level navigation links */
	.lfm_menu_tab .dropdown-menu a {
		padding-left: 50px;
	}
}


/* Styles for the footer */

.lfm_footer {
    margin-top: auto;
    border-top: 2px solid grey;
    background-image: url("/themes/LFMTE_default/assets/images/home-page/blue-gardient2.png") , url("/themes/LFMTE_default/assets/images/home-page/blue-gardient1.png"), url("/themes/LFMTE_default/assets/images/home-page/round-gradient2.png");
    background-color: #050519;
   background-repeat: no-repeat;
  background-position:
    bottom right,
    left,
    right; 
}


/* 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 */

.mybutton {
background-color: #a9a9a9;
border: none;
color: white;
padding: 5px 25px;
text-align: center;
text-decoration: none;
box-shadow: inset 0 -15px 28px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);
display: inline-block;
font-size: 20px;
font-weight: 600;
margin: 4px 4px;
cursor: pointer;
}
.my_button1 {
background-color: #ff0000;
border-radius: 4px;
}
.my_button1:hover {
background-color: #3333ff;
color: white;
}

.my_button2 {
background-color: #008000;
border-radius: 4px;
}
.my_button2:hover {
background-color: #ffa500;
color: white;
}

.my_button3 {
background-color: #3333ff;
border-radius: 4px;
}
.my_button3:hover {
background-color: #a9a9a9;
color: white;
}

.my_button4 {
background-color: #ffffff;
border-radius: 4px;
}
.my_button4:hover {
background-color: #eeeeee;
color: white;
}

.my_button5 {
background-color: #1e90ff;
border-radius: 4px;
}
.my_button5:hover {
background-color: #3333ff;
color: white;
}

.buttonlink {
	/* This class defines <a> tag links that look like buttons */
	
	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;
}



.membertd {

	font-family: Arial, Helvetica, sans-serif;

	font-size: 12pt;

	background-color:#1F66E5;

}


.membertdbold {
    
font-family: Arial, Helvetica, sans-serif;	
background-color: #a9a9a9;
border: none;
border-radius: 6px 6px 1px 1px;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
box-shadow: inset 0 -15px 28px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);
font-size: 16px;
font-weight: 600;
margin: 4px 4px;

}



.formlabel {

	font-family: Arial, Helvetica, sans-serif; font-size: 12pt;

}



.formlabelbold {

	font-family: Arial, Helvetica, sans-serif; font-size: 12pt;

	font-weight: bold;

}