/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/

/* After they updated their BB Icon pack to 2.0, the default theme.min.css file set display: none for all sub-menu item icons, so none of the icons for dropdown menu items were showing up and it 
was really upsetting. Thankfully, I found and figured out that by setting the display below to inline-block which is how the top-level menu items were showing instead of none, I could over write
the default theme file's stupid display:none setting, and after doing that here and hitting save thankfully my sub-menu icons I worked so hard on that had disappeared showed up again re-appeared!
I didn't set a media query on purpose, which will hopefully apply the icons to all screens. It doesn't appear to be a problem, but if it turns out to be, then I'll come back here and fix it.
I just don't want to mess with media queries if I don't have to for this at least.
Tue 1/24/23 12:24am */
.buddypanel .side-panel-menu .sub-menu a > i:not(.bb-icon-angle-down) {
	display: inline-block !important;
}

@media (min-width: 992px)
	body.login.login-split-page #login {
		position: relative;
		left: 20%;
		top: 50%;
		padding-top: 0%;
		padding-bottom: 0%;
		transform: translateY(-50%);
		padding-left: 2%;
		padding-right: 0%;
	}
	
.login .forgetmenot label, .login .pw-weak label {
  line-height: 1.5;
  vertical-align: baseline;
  margin-bottom: 24% !important;
}

#login form p.submit {
  margin: 0;
    margin-top: 0px;
  padding: 0;
  margin-top: 15% !important;
}

/* AJAX is hard to learn, but knowing it is going to be required along with PHP to fix the multiple theme menu issues, so I'm just removing it's visibility for now instead until I can figure something better out 
   Code below added Thu 1/26/23 to remove notification bell from BB header. You can add it back later if you ever learn how to fix it. */
#header-notifications-dropdown-elem {
	display: none;
}