/*

Theme Name: LFMTE Prosperity Theme

Theme URI: http://thetrafficexchangescript.com/

Description: A bright, prosperity-inspired variation of the LFMTE theme that emphasizes spending and growth.

Version: 1.0

Author: Josh Abbott

*/





/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #212529;
	background-color: #f5f8fa;
	
}


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

.navbar {
	align-items: flex-end;
}

.navbar-nav {
	margin-bottom: -0.5em;
}

.lfm_menu_bar {
        background: linear-gradient(135deg, #0f9d58 0%, #1cb5e0 100%);
        padding: 0px 0px 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;
	}
}


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

.lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_opened > .nav-link {
        /* Changes the colors when a tab is opened */
        color: #0a6172;
        background-color: #ffffff;
}

.lfm_menu_bar .navbar-nav > .nav-item > .nav-link:hover {
        /* Hover style when a tab is not opened */
        background-color: rgba(15, 157, 88, 0.2);
}

.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 12px;
		border: none;
		border-radius: 5px 5px 0 0;
		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 #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: #FFFFFF;
		width: calc(100% + 2px);
		height: 14px;
		position: absolute;
		bottom: -10px;
		left: -1px;
		border: 1px 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: #f2fbff;
                background-color: rgba(12, 121, 168, 0.85);
        }

        .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: rgba(15, 157, 88, 0.85);
        }
	
	/* 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: #f2fbff;
                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: #0a6172;
                transform: rotate(0deg);
        }
        .lfm_menu_bar .navbar-nav > .nav-item.lfm_tab_closed > .nav-link:after {
                color: #f2fbff;
                transform: rotate(-90deg);
        }
}


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

.lfm_menu_tab {
        background-color: #ffffff;
        border: none;
        border-bottom: 1px solid #cdece2;
        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: #e9f8fb;
                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: 15px;
        padding: 0 20px;
        line-height: 45px;
        color: #0a3f55;
        text-decoration: none;
        display: block;
}
.lfm_menu_tab > li > a:hover {
        color: #0f9d58;
}

.lfm_menu_tab .dropdown-menu a {
        /* Sets the navigation links for the third level */
        font-size: 15px;
        padding: 0 20px;
        line-height: 32px;
        color: #0a3f55;
        text-decoration: none;
        white-space: nowrap;
        display: block;
}
.lfm_menu_tab .dropdown-menu li:hover {
        background-color: #dff5ff;
}

@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(135deg, #0f9d58 0%, #0a7fba 100%);
}


/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
        color:#0a7fba;
	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: linear-gradient(135deg, #fdd835 0%, #f4b400 100%);
        border-radius: 6px;
        border: 1px solid #f4b400;
        display: inline-block;
        cursor: pointer;
        color: #194f2b;
        font-family: Tahoma;
        font-size: 18px;
        font-weight: 600;
        padding: 6px 14px;
        margin: 4px 2px;
        text-decoration: none;
        box-shadow: 0 6px 15px rgba(15, 157, 88, 0.25);
        transition: all 0.2s ease-in-out;
}
.buttonlink:hover {
        /* This controls the button links when you hover over them */
        color: #ffffff;
        background: linear-gradient(135deg, #0f9d58 0%, #1cb5e0 100%);
        text-decoration: none;
        box-shadow: 0 8px 18px rgba(12, 121, 168, 0.35);
}


.infobar {
        /* This class defines sections that span the entire page width */
        width:100%;
        padding-top: 18px;
        padding-bottom: 18px;
        color:#043127;
        background: linear-gradient(90deg, rgba(236, 253, 245, 0.95) 0%, rgba(219, 242, 255, 0.95) 100%);
        border-bottom: 2px solid rgba(15, 157, 88, 0.25);
}
.infobar h2 {
        color:#0a6172;
}


.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: "Tahoma"; color:#0a3f55; font-size:32px;
}

.lfm_descr {
        font-family: "Tahoma"; color:#164b3a; font-size:16px;
}

.lfm_descr_bold {
        font-family: "Tahoma"; color:#0f9d58; font-size:16px;
        font-weight:700;
}

.ie{
    margin: auto;
    border-style: solid;
    border-color:#0f9d58;
    background-color: #f4fffa;
    padding: 16px;
}
.irow {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.iblock {
  display: inline-block;
  margin: auto; 
 }
 .iblockf {
     background-color: #0f9d58;
  display: inline-block;
  margin: auto;
 }
.ihorizontalBlocks {
  display: inline-block;
}
.ispecblock{
    height: 130px;
    width: 130px;
    text-align: center;
    margin: auto;
    border: 6px solid #1cb5e0;
    border-radius: 25px;
    background: radial-gradient(circle at top, rgba(28, 181, 224, 0.25), rgba(15, 157, 88, 0.1));
    white-space: nowrap;
    overflow: hidden;
        text-overflow: clip;
}

/* Prosperity mode enhancements */

a {
  color: #0a7fba;
}

a:hover,
a:focus {
  color: #0f9d58;
}

.card,
.modal-content,
.infobar,
.lfm_footer,
.updatesContainer,
.content-area {
  border-radius: 12px;
  border: 1px solid rgba(12, 121, 168, 0.12);
  box-shadow: 0 10px 30px rgba(15, 157, 88, 0.12);
}

.card-header,
.card-footer {
  background-color: rgba(236, 253, 245, 0.85);
  border-color: rgba(12, 121, 168, 0.15);
  color: #0a3f55;
}

.btn,
button {
  background: linear-gradient(135deg, #0f9d58 0%, #1cb5e0 100%);
  border: none;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 157, 88, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
button:hover,
.btn:focus,
button:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(12, 121, 168, 0.35);
}

.btn-secondary,
.btn-outline-secondary {
  background: linear-gradient(135deg, #1cb5e0 0%, #6dd5fa 100%);
  color: #0a3f55;
}

.btn-outline-secondary {
  border: 1px solid rgba(12, 121, 168, 0.35);
}

.table thead {
  background: linear-gradient(90deg, rgba(15, 157, 88, 0.25), rgba(28, 181, 224, 0.25));
  color: #0a3f55;
}

.table-hover tbody tr:hover {
  background-color: rgba(28, 181, 224, 0.12);
}

.alert-success {
  background-color: rgba(15, 157, 88, 0.12);
  color: #0a4f32;
  border-color: rgba(15, 157, 88, 0.25);
}

.alert-info {
  background-color: rgba(28, 181, 224, 0.12);
  color: #0a3f55;
  border-color: rgba(28, 181, 224, 0.25);
}

.alert-warning {
  background-color: rgba(244, 180, 0, 0.12);
  color: #7a5300;
  border-color: rgba(244, 180, 0, 0.25);
}

.alert-danger {
  background-color: rgba(244, 67, 54, 0.12);
  color: #7a1b15;
  border-color: rgba(244, 67, 54, 0.25);
}

.form-control,
input,
select,
textarea {
  background-color: #ffffff;
  border: 1px solid rgba(12, 121, 168, 0.25);
  border-radius: 8px;
  color: #0a3f55;
  box-shadow: inset 0 1px 3px rgba(12, 121, 168, 0.08);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 157, 88, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(15, 157, 88, 0.2);
}

::placeholder {
  color: rgba(10, 63, 85, 0.55);
}

.navbar-toggler {
  background-color: rgba(236, 253, 245, 0.85);
  border: 1px solid rgba(12, 121, 168, 0.35);
}

.navbar-toggler-icon {
  background-image: none;
  width: 1.5em;
  height: 2px;
  background-color: #0a3f55;
  border-radius: 999px;
  box-shadow: 0 0.45em 0 0 #0a3f55, 0 -0.45em 0 0 #0a3f55;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: linear-gradient(135deg, #0f9d58 0%, #1cb5e0 100%);
  color: #ffffff;
}

.badge {
  background: linear-gradient(135deg, #0f9d58 0%, #1cb5e0 100%);
}

.page-link {
  color: #0a3f55;
  border: 1px solid rgba(12, 121, 168, 0.25);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #0f9d58 0%, #1cb5e0 100%);
  border-color: transparent;
  color: #ffffff;
}

.breadcrumb {
  background-color: rgba(236, 253, 245, 0.8);
  border-radius: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(12, 121, 168, 0.45);
}
