/*

Theme Name: My Theme Name

Theme URI: https://mydomainname/

Description: The theme for LFMTE traffic exchanges.

Version: 1.0

Author: Josh Abbott. 
Design Modifications by Ian Cormier.

*/


@charset "utf-8";

/* ================================
   TIGER CLICKING COLOR KIT
   Added without changing CSS logic/structure
   ================================ */

:root {
  /* Core jungle base */
  --tc-black: #050301;
  --tc-deep-jungle: #071006;
  --tc-jungle-green: #153b14;
  --tc-leaf-green: #2f6b1f;
  --tc-bright-leaf: #6fc02a;

  /* Tiger / gold power */
  --tc-tiger-orange: #f26b12;
  --tc-hot-orange: #ff8a00;
  --tc-gold: #d99a20;
  --tc-bright-gold: #ffd45a;
  --tc-dark-gold: #8a4f08;

  /* Wood / earth */
  --tc-bark-brown: #3b1f0b;
  --tc-dark-brown: #1a0d04;
  --tc-tan-stone: #c58b3a;

  /* Glow / highlight */
  --tc-sunset-yellow: #ffef8a;
  --tc-fire-glow: #ffb000;
  --tc-red-flower: #d92f18;
  --tc-tropical-red: #ff3d1f;

  /* Text */
  --tc-text-light: #fff4c6;
  --tc-text-gold: #ffd45a;
  --tc-text-shadow: #000000;

  /* Borders / shadows */
  --tc-border-gold: #c88413;
  --tc-border-bright: #ffe082;
  --tc-shadow-orange: rgba(255, 122, 0, 0.75);
  --tc-shadow-gold: rgba(255, 210, 80, 0.65);
  --tc-shadow-green: rgba(70, 160, 40, 0.55);
}


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: var(--tc-text-light);
	background-color: var(--tc-deep-jungle);
}


/* Main styles for the top level of the main menu */

.lfm_menu_bar {

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: 55px;
}
@media (min-width: 992px) {
	.lfm_menu_logo {
		margin-right: 20px;
	}
}

/* Desktop View Settings */
@media (min-width: 992px) {
	
		body {
		margin: 0;
		background-color: var(--tc-deep-jungle); /* Sets the main background color */
		background-image: url(/themes/i/images/header_bg.jpg); /* Sets the header background image */
		background-repeat: repeat-x;
	}
	
	#headerwrapper {
		/* Set the header image sizes here and inside #header */
		width: 1500px;
		height: 300px;
		margin-right: auto;
		margin-left: auto;
		clear: both;
        background-color: transparent;
	}
	
	#header {
		background-image: url(/themes/i/header_template.png); /* Sets the header image */
		background-repeat: no-repeat;
        background-color: transparent;
		width: 1500px;
		height: 300px;
	}
}
/* Mobile View Settings */
@media (max-width: 992px) {
	
	body {
		margin: 0;
		background-color: var(--tc-deep-jungle); /* Sets the main background color */
		background-image: url(/themes/i/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:transparent;
	}
	
	#header {
		background-image: url(/themes/i/images/mobile_header.png); /* Sets the mobile header image */
		background-repeat: no-repeat;
		width: 300px;
		height: 75px;
		background-color: transparent;
	}
  }

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Sets the navigation tabs for the top level */
	font-size: 17px;
	color: var(--tc-bright-gold);
font-weight: 700;
text-shadow: 1px 1px 0 var(--tc-text-shadow), 0 0 8px var(--tc-shadow-orange);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	/* Changes the colors when a tab is opened */
background: linear-gradient(90deg, var(--tc-dark-gold), var(--tc-tiger-orange), var(--tc-bright-gold));
color: var(--tc-black);
font-weight: 700;
border: 1px solid var(--tc-border-bright);
box-shadow: 0 0 12px var(--tc-shadow-orange);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened */
	background-color: var(--tc-tiger-orange);
	color:var(--tc-black);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened */
	background-color: var(--tc-hot-orange);
	color:var(--tc-black);
	
}

@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 var(--tc-border-gold);
	}
	
	.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 var(--tc-border-gold);
		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: var(--tc-text-light);
		background-color: var(--tc-jungle-green);
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:hover {
		/* Returns to the original hover effect when closed in mobile  */
		color: var(--tc-black);
		background-color: var(--tc-hot-orange);
	}
	
	/* 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: var(--tc-text-light);
		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: var(--tc-dark-brown);
		transform: rotate(0deg);
	}
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
		color: var(--tc-text-light);
		transform: rotate(-90deg);
	}
}


/* Main styles for the second level of the main menu */

.lfm_menu_tab {
background: linear-gradient(90deg, var(--tc-dark-brown), var(--tc-tiger-orange), var(--tc-gold), var(--tc-jungle-green));
position: absolute;
	display: none;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100%;
font-weight: 700;
border: 1px solid var(--tc-border-gold);
box-shadow: 0 0 16px var(--tc-shadow-orange);
}

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: var(--tc-deep-jungle);
		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: 17px;
	padding: 0 20px;
	line-height: 45px;
	color: var(--tc-text-light);
	text-decoration: none;
	display: block;
	text-shadow: 1px 1px 0 var(--tc-text-shadow);
}
.lfm_menu_tab > li > a:hover {
background: var(--tc-hot-orange);
color: var(--tc-black);
}

.lfm_menu_tab .dropdown-menu a {
	/* Sets the navigation links for the third level */
	font-size: 15px;
	padding: 0 20px;
	line-height: 32px;
	color: var(--tc-text-light);
	text-decoration: none;
	white-space: nowrap;
	display: block;
	background-color: var(--tc-dark-brown);
}
.lfm_menu_tab .dropdown-menu a:hover {
	background-color: var(--tc-tiger-orange);
color: var(--tc-black);
	text-decoration: none;
}

@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 {
background: linear-gradient(90deg, var(--tc-dark-brown), var(--tc-jungle-green), var(--tc-tiger-orange), var(--tc-dark-gold));
color: var(--tc-text-light);
box-shadow: 0 0 18px var(--tc-shadow-orange);
}


/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:var(--tc-bright-gold);
	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: var(--tc-tiger-orange);
	border-radius: 6px;
	border: 1px solid var(--tc-border-bright);
	display: inline-block;
	color: var(--tc-black);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 700;
	padding: 5px 10px;
	margin: 2px 1px 2px 1px;
	text-decoration: none;
	box-shadow: 0 0 10px var(--tc-shadow-orange);
}

.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color: var(--tc-black);
	background-color: var(--tc-bright-gold);
	text-decoration: none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color: var(--tc-text-light);
	background-color: var(--tc-dark-brown);
	box-shadow: inset 0 0 18px var(--tc-shadow-green);
}

.infobar h2 {
	color: var(--tc-bright-gold);
	text-shadow: 2px 2px 0 var(--tc-text-shadow), 0 0 10px var(--tc-shadow-orange);
}


.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 */
/* Safer readable colors for white/gray LFM admin-style panels */

.lfm_title {
	font-family: Arial, Helvetica, sans-serif;
	color: #1a0d04;
	font-size: 32px;
	font-weight: 800;
	text-shadow: none;
}

.lfm_descr {
	font-family: Arial, Helvetica, sans-serif;
	color: #111111;
	font-size: 16px;
}

.lfm_descr_bold {
	font-family: Arial, Helvetica, sans-serif;
	color: #1a0d04;
	font-size: 16px;
	font-weight: 700;
}

/* Keep links readable on white panels */
.lfm_descr a,
.lfm_descr_bold a,
.lfm_title a {
	color: #8a4f08;
	font-weight: 800;
	text-decoration: underline;
}

.lfm_descr a:hover,
.lfm_descr_bold a:hover,
.lfm_title a:hover {
	color: #f26b12;
}

/* Tiger version for sections that are already dark themed */
.tc-member-area .lfm_title,
.tc-sales-wrap .lfm_title,
.tc-wordsearch-panel .lfm_title,
.tc-piggy-balance .lfm_title,
.tc-wise-panel .lfm_title {
	color: var(--tc-bright-gold);
	text-shadow: 2px 2px 0 var(--tc-text-shadow), 0 0 10px var(--tc-shadow-orange);
}

.tc-member-area .lfm_descr,
.tc-sales-wrap .lfm_descr,
.tc-wordsearch-panel .lfm_descr,
.tc-piggy-balance .lfm_descr,
.tc-wise-panel .lfm_descr {
	color: var(--tc-text-light);
}

.tc-member-area .lfm_descr_bold,
.tc-sales-wrap .lfm_descr_bold,
.tc-wordsearch-panel .lfm_descr_bold,
.tc-piggy-balance .lfm_descr_bold,
.tc-wise-panel .lfm_descr_bold {
	color: var(--tc-bright-gold);
	text-shadow: 1px 1px 0 var(--tc-text-shadow), 0 0 8px var(--tc-shadow-orange);
}