/*
 *  custom.css
 *
 * This file contains css values and hints for style elements that are frequently customised.
 * Note that this CSS file is loaded last so values defined here will override all others
 * including responsive.css
 */

/* Changing the header image
 * With this version of we_universal it is not possible to change the header image using CSS
 * It is recommended that the header image is changed by renaming your file to dashboard.jpg in
 * the styles/we_universal/theme/images/ directory.
 * Alternatively the link may be changed in styles/we_universal/template/overall_header.html
 * around line 211.


/* link decoration
 * Uncomment the following lines to have all links underlined
 * and visited links re-coloured
 */
/*
a:link,a:visited {
	text-decoration: underline;
	color: #3f3f3f; }

a:focus,
a:hover, a:active {
	text-decoration: underline; }
*/

/* expandable quotes */
div.content > blockquote:nth-child(1) > div > blockquote > div > cite > label {
	visibility: visible;
	padding: 0px;
}

div.content > blockquote:nth-child(1) > div > blockquote > div {
    height: 19px;
}

.quote_showmore {
		visibility: collapse;
}

.dropdown li.separator {
    border-top: 4px;
    border: solid;
    border-color: #DCDCDC;
}

.inventea-content {
	margin-top: 30px;
}

 .inventea-wrapper {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 0px;
	padding-bottom: 14px;
 }

 #wrap > div.inventea-headerbar {
	position: fixed;
    z-index: 99;
    width: 100%;
    top: 0px;
    border-bottom-width: 1px;
    border-bottom-color:#777777;
    border-bottom-style: solid;
    padding-bottom: 0px;
 }

 .inventea-userbar {
	padding-top: 8px;
 }

 #wrap > div.inventea-headerbar > nav > div {
	bottom: 8px;
 }

 /** reactions extension customization **/
 div.reactions > div.badge.icon-tpr.tpr-font {
	display: none;
 }

strong.reaction_count {
	background-color: #777777;
	font-size: 12px;
	margin-left: 0px;
}

a.user_alert {
    background-color: #00000010;
    border-width: 2px;
    border-color: #BBBBBB;
    border-style: solid;
    border-radius: 8px;
    padding: 2px;
}

a.user_alert_new {
    padding: 4px;
    float: right;
}

img.reaction_image {
/*    max-width: 30px; */
    max-height: 30px;
}

/** profile column and avatar size in posts view **/
dl.postprofile {
	width: 160px;
}

dd.profile-joined {
	display: none;
}
dd.profile-posts {
	display: none;
}

 a.avatar img.avatar {
	max-width: 80px;
	mix-blend-mode: multiply;
 }

.inventea-forum-menu {
	display: none;
}

 a.header-avatar img {
	margin-bottom: 0px;
	max-height: 30px;
	vertical-align: bottom;
	width: auto;
}

.oldheader-avatar span {
	content: '\f0dd';
	display: inline-block;
	padding-left: 6px;
	padding-top: 10px;
	vertical-align: top;
	font-size: 16px;
}

.oldheader-avatar span:after {
	content: '\f0dd';
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	padding-left: 6px;
	padding-top: 2px;
	vertical-align: top;
}


.topmenu-username-arrow:after {
	content: '\f0dd';
	display: inline-block;
	font: normal normal normal 18px/1 FontAwesome;
	padding-left: 3px;
	padding-top: 2px;
	vertical-align: top;
	margin-right: 00px;
}

 .topmenu-mainmenu {
	position:absolute; 
	left: 20px;
 }

.topmenu-menu-icon {
	font-size: 30px
}

.topmenu-username {
	font-size: 16px
}


.topmenu-header {
	font-size: 16px
}

.topmenu-badge {
	float: right;
	margin: -3px 2px 0 6px;
	padding: 2px 4px 3px;
	border-radius: 2px;
	background: #bc2a4d;
	color: #ffffff;
	line-height: 1;
	font-size: 18px;
	font-weight: normal;
}

.topmenu-badge.hidden {
	display: none;
}


.inventea-time {
    display: none;
}

.inventea-header {
	background: #ffffff;
	/*background-clip: border-box;*/
}

/*
 * set header background colour (appears as a border around the image, comment out this code for a white border)
 */

/*** begin header colour ***/
/*
.inventea-header {
	background: #a4a4a4;
}
*/
/*** end header colour ***/


/*
.inventea-sitename, .inventea-sitename h1{
	color: #005599;
}
*/

/* Set the maximum forum width on wide screens
 * To set a maximum width that the forum will not grow beyond, uncomment the following lines
 * and set a value (1200px or 1899px are typical values)
 */
 /** max-width messes up the floating header menu at the moment, fixing at some point... */
.inventea-wrapper,
.inventea-header,
.inventea-footer {
	max-width: unset;
}


/* Allow post text to fill the available width on wide screens */
/*
.section-viewtopic .postbody .content {
	max-width: none;
}
*/

/*
 * Hide some non-essential menu items if desired
 */
/*
#menu_faq, #button_faq{
	display: none;
}
*/

/*
#menu_team, #button_team{
	display: none;
}
*/

/*
#menu_memberlist, #button_memberlist{
	display: none;
}*/


/*#topic_watch_button, #forum_watch_button,*/ #topic_bookmark_button, #topic_bump_button{
	display: none;
}

/*
 * Button hide threshold
 * The max-width here adjusts the screen widths for which the header buttons are replaced by a dropdown menu
 * set this value higher if the screen buttons start to wrap, or the text becomes ugly in your language.
 * The valid range of this value is 319px to 699px.
 * I prefer a value of 319px, but if you have added buttons, or use a language with long button labels,
 * a higher value may work better for you.
 */
@media only screen and (max-width:359px) {
	.inventea-menu li > a {
		   display: none;
	}

	.inventea-mobile-dropdown-menu {
		display: block;
	}
}

/*
 * To move the header buttons so that they sit outside the header image,
 * (as was the default for a few version of this style),
 * comment out the following blocks of code:
 */
/*** begin buttons inside ***/
.inventea-posts-menu {
	position: absolute;
	right: 10px;
	z-index: 3;
}

.inventea-forum-menu {
	position: absolute;
	bottom: 4px;
	z-index: 3;
}

@media only screen and (max-width: 700px) {
	.topmenu-header {
		display: none;
	}
	.topmenu-badge {
		margin-left: 0px;
	}
	.topmenu-mainmenu {
		left: 0px;
	}
	.inventea-wrapper {
        padding: 0;
    }

	.inventea-content {
		margin-top: 50px;
	}
	#wrap > div.inventea-headerbar > nav > div {
		bottom: 1px;
	}
	.inventea-userbar {
		height: 40px;
		padding-top: 2px;
	}
	#wrap > div.inventea-headerbar > nav > ul {
		padding-top: 4px;
	}
}
@media only screen and (max-width: 459px){
	.inventea-dashboard img {
		padding-top: 22px;
		padding-bottom: 22px;
	}
}
/*** end buttons inside ***/


/* --- Editor's pick badge in topic title (RecentTopics extension) --- */
h2.topic-title .rt-editors-pick-badge {
    display: inline-flex;
    align-items: center;        /* center star + text within badge */
    margin-left: 8px;

    font-size: 0.6em !important;
    font-weight: bold !important;
    vertical-align: middle;     /* center badge in the line box */
    line-height: 1;             /* avoids weird extra height */
}

h2.topic-title .rt-editors-pick-star-title {
    color: #09174f !important;           /* yellow/orange star */
    margin-right: 4px;
}

h2.topic-title .rt-editors-pick-text-title {
    /* just inherits the smaller font from the badge */
}

/* --- Recommend topic button (RecentTopics extension) --- */

/* Pressed / already-recommended state */
.action-bar a.button.rt-recommend.rt-recommend--on {
	/* reset inherited button styles */
	all: unset;

	/* base button look */
	display: inline-block;
	float: left;
	margin-right: 5px;

	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid #777;

	background: #a0a0a0;
	color: #c5003b;

	font: 600 13px "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
	line-height: 1.4;
	white-space: nowrap;
	text-align: center;
	cursor: pointer;

	/* smooth hover */
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* Hover / focus / active for pressed state */
.action-bar a.button.rt-recommend.rt-recommend--on:hover,
.action-bar a.button.rt-recommend.rt-recommend--on:focus,
.action-bar a.button.rt-recommend.rt-recommend--on:active {
	background-color: #b3b3b3;
	box-shadow: 0 0 0 1px #666 inset;
}

/* --- Star icons --- */

/* Default (NOT recommended yet) → outlined grey star */
a.button.rt-recommend:not(.rt-recommend--on)::before {
	content: "\f006";                  /* outlined star */
	font-family: "FontAwesome";
	margin-right: .3em;
	color: #777;
}

/* Hover before recommending → filled gold star */
a.button.rt-recommend:not(.rt-recommend--on):hover::before {
	content: "\f005";                  /* filled star */
	color: #f0c419;                    /* gold */
}

/* Recommended (pressed) → filled gold star */
a.button.rt-recommend.rt-recommend--on::before {
	content: "\f005";                  /* filled star */
	font-family: "FontAwesome";
	margin-right: .3em;
	color: #f0c419;                    /* gold */
	text-shadow: 0 0 1px rgba(0, 0, 0, .4);
}

/* Hover over Unrecommend → outlined grey star */
a.button.rt-recommend.rt-recommend--on:hover::before {
	content: "\f006";                  /* outlined star */
	color: #777;
}

.rt-editors-pick-star {
    color: #09174f;       /* dark blue */
    margin-right: 4px;    /* little gap before the title */
}

/* Viewers' recommend star: outlined, golden, distinct from Editor's pick */
.rt-viewers-recommend-star {
    color: #ffa24d; /* gold */
    text-shadow: 0 0 1px rgba(0, 0, 0, .4);
    margin-right: .25em;
}

/* Outlined gold star for viewer recommendations */
.rt-user-recommend-star {
    color: #ffa24d;
    text-shadow: 0 0 1px rgba(0, 0, 0, .4);
    margin-right: .25em;
}