/*
Theme Name: LFMTE Modern Gradient Theme
Theme URI: http://thetrafficexchangescript.com/
Description: Modern gradient theme for LFMTE.
Version: 3.1
Author: Josh Abbott (Modified by IngaOz)
*/

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Main font settings */
body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	background-color: #040720;
}

/* Main styles for the top level of the main menu */
.lfm_menu_bar {
	background: linear-gradient(to bottom, #040720 0%, #B666D2 100%);
	padding: 0 0 45px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@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;
	}
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link {
	/* Sets the navigation tabs for the top level */
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
	/* Changes the colors when a tab is opened */
	color: #5F387B;
	background: #0E0C28;
	text-shadow: 0 1px 2px rgba(95, 56, 123, 0.3);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(95, 56, 123, 0.2);
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
	/* Hover style when a tab is not opened */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	color: #FFFFFF;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:hover {
	/* Hover style when a tab is opened */
	background: #0E0C28;
	color: #5F387B;
}

@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-radius: 8px;
		position: relative;
	}
	
	.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link:after {
		/* Removes the connector/underline when tab is active */
		display: 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;
		margin: 2px 0;
		border-radius: 6px;
	}
	
	.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: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	}
	
	.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: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	}
	
	/* 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: #5F387B;
		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: #0E0C28;
	border: 1px solid rgba(95, 56, 123, 0.3);
	position: absolute;
	display: none;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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: #0E0C28;
		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-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 0 20px;
	line-height: 45px;
	color: #B666D2;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
}
.lfm_menu_tab > li > a:hover {
	color: #E0E0E0;
	background: #593575;
}

.lfm_menu_tab .dropdown-menu a {
	/* Sets the navigation links for the third level */
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	padding: 0 20px;
	line-height: 32px;
	color: #C0A8D0;
	text-decoration: none;
	white-space: nowrap;
	display: block;
	transition: all 0.3s ease;
	background: #1A0F2E;
}
.lfm_menu_tab .dropdown-menu li:hover {
	background: #E8E8E8;
}
.lfm_menu_tab .dropdown-menu a:hover {
	color: #2A1A3F;
	background: #E8E8E8;
}

@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(to bottom, #040720 0%, #B666D2 100%);
	color: #FFFFFF;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

/* Icon settings */
.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:#B666D2;
	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 */
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	cursor: pointer;
	background: linear-gradient(to bottom, #B666D2 0%, #9454C4 50%, #6B3A8B 100%);
	border-radius: 8px;
	border: 1px solid #B666D2;
	display: inline-block;
	color: #FFFFFF;
	font-size: 16px;
	padding: 8px 16px;
	margin: 2px 1px 2px 1px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color: #FFFFFF;
	background: linear-gradient(to bottom, #C777E3 0%, #A565D5 50%, #7C4B9C 100%);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.infobar {
	/* This class defines sections that span the entire page width */
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFFFFF;
	background: linear-gradient(to bottom, #040720 0%, #B666D2 100%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.infobar h2 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	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: 'Poppins', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	font-size: 32px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lfm_descr {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #E0E0E0;
	font-size: 16px;
}

.lfm_descr_bold {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	font-size: 16px;
}

/* Link styles */
a {
	color: #B666D2;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #C0C0C0;
	text-decoration: underline;
	text-decoration-style: dotted;
}

/* Additional button styles for Join Now, Signup Today, Login etc. */
.btn, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger, 
input[type="submit"], input[type="button"], button {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600 !important;
	background: linear-gradient(to bottom, #B666D2 0%, #9454C4 50%, #6B3A8B 100%) !important;
	border-radius: 8px !important;
	border: 1px solid #B666D2 !important;
	color: #FFFFFF !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
	position: relative !important;
	overflow: hidden !important;
}

.btn:hover, .btn-primary:hover, .btn-success:hover, .btn-info:hover, 
.btn-warning:hover, .btn-danger:hover, 
input[type="submit"]:hover, input[type="button"]:hover, button:hover {
	background: linear-gradient(to bottom, #C777E3 0%, #A565D5 50%, #7C4B9C 100%) !important;
	color: #FFFFFF !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Button shine effect */
.btn:before, .btn-primary:before, .btn-success:before, .btn-info:before, 
.btn-warning:before, .btn-danger:before, 
input[type="submit"]:before, input[type="button"]:before, button:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn:hover:before, .btn-primary:hover:before, .btn-success:hover:before, .btn-info:hover:before, 
.btn-warning:hover:before, .btn-danger:hover:before, 
input[type="submit"]:hover:before, input[type="button"]:hover:before, button:hover:before {
	left: 100%;
}