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

You're the boss, so have fun editing!

--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Global Styles
2.0 - Responsive media queries (mobile styles)
	2.1 - MAXIMUM width of 720 pixels (phones landscape)
	2.2 - MAXIMUM width of 380 pixels (phones portrait)
	2.3 - MINIMUM width of 721 pixels (tablets+)
	2.4 - MINIMUM width of 1040 pixels (desktops and laptops)
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 - Global Styles
--------------------------------------------------------------*/

/*AD: Eigenes CSS*/

/*AD: Schriftgröße von 100% bzw. von ursprünglich 13px auf 15px anheben*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 100%;
}
.comment-content h1, .entry-content h1 {font-size: 30px !important;}
/*AD: Registrierungsformular "Sichtbar für Jeder" ausblenden*/
#buddypress .field-visibility-settings, #buddypress .field-visibility-settings-toggle, #buddypress .field-visibility-settings-notoggle {display: none;}

/*AD: Profil "Bearbeiten" ausblenden - damit User Ihren Vornamen Nachnamen nicht ändern - und WEITERE TABS darunter auch ausgeblendet*/
#edit-personal-li {display:none !important;}
#public-personal-li {display:none !important;}
#tag-personal-li {display:none !important;}
#profile-personal-li {display:none !important;}
#menu-item-22 {display:none !important;}

/*AD: Pixabay Bildnachweis unter Bild modifizieren (kleiner und unauffälliger)*/
.entry-caption, .gallery-caption, .wp-caption .wp-caption-text {
    color: #757575 !important;;
    font-size: 8px !important;
    line-height: 0 !important;;
    text-align:left !important;;
}

/*AD: Profil "Bearbeiten" ausblenden - damit User Ihren Vornamen Nachnamen nicht ändern*/
/*#edit-personal-li {display:none !important;}*/


/*AD: Code von BuddyBoss Support. Ändert in Profil-Ansicht den Abstand zwischen "Benachrichtigungen und dem Zähler*/
@media screen and (min-width: 721px) {
   #buddypress div#item-nav,
   #buddypress div#item-nav .item-list-tabs ul li {
     max-width: 176px;
   }
}

/*AD: Code von BuddyBoss Support (Blog unten "Pfeil" korrekt angepasst... siehe Mail von Angie (BuddyBoss) Mar 10, 3:03 AM CST*/
.single-post .meta-nav {
  display: none;
}
.single-post .nav-next > a::after {
  content: "\f178";
  font-family: fontawesome;
  font-size: 14px;
}
.single-post .nav-previous > a::before {
  content: "\f177";
  font-family: fontawesome;
  font-size: 14px;
}

/*AD: Ebenfalls an dieser Stelle Navigation unter den Blogbeiträgen, der Zeilenabstand angepasst...*/
.site-content nav {line-height: 1.5;}


/*--------------------------------------------------------------
2.0 - Responsive media queries (mobile styles)
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.1 - MAXIMUM width of 720 pixels (phones landscape)
--------------------------------------------------------------*/
@media screen and (max-width: 720px) {


	/*
	.just_an_example {
		color: black;
	}
	*/


}/* don't delete this closing bracket */





/*--------------------------------------------------------------
2.2 - MAXIMUM width of 380 pixels (phones portrait)
--------------------------------------------------------------*/
@media screen and (max-width: 380px) {


	/*
	.just_an_example {
		color: black;
	}
	*/


}/* don't delete this closing bracket */





/*--------------------------------------------------------------
2.3 - MINIMUM width of 721 pixels (tablets+)
--------------------------------------------------------------*/
@media screen and (min-width: 721px)  {


	/*
	.just_an_example {
		color: black;
	}
	*/


}/* don't delete this closing bracket */





/*--------------------------------------------------------------
2.4 - MINIMUM width of 1040 pixels (desktops and laptops)
--------------------------------------------------------------*/
@media screen and (min-width: 1040px)  {


	/*
	.just_an_example {
		color: black;
	}
	*/


}/* don't delete this closing bracket */
