/* General Markup Styles
---------------------------------------- */
:root {
	--main-border-color: #ccc;
}

* {
	margin: 0;
	padding: 0;

	box-sizing: border-box;
}

html, body {
	color: #000;
	min-height: 100vh;
}

html,
body {
	font-size: 12px;
}

body {
	font-family: 'Ubuntu', Arial, serif;
	height: auto;
	padding-bottom: 1px;
}

h1,
h2,
h3,
a.forumtitle,
a.topictitle,
.row-title {
	font-weight: bold;
}

h1,
.row-title {
	color: #2E6E9E;
	font-size: 1.8em;
}

h1 {
	margin-bottom: 1em;
}

h2 {
	color: #3f3f3f;
	font-size: 1.4em;
	font-weight: bold;
	margin: 0.8em 0 0.4em 0;
}

h2.solo {
	margin-bottom: 1em;
}

h3 {
	border-bottom: 1px solid var(--main-border-color);
	color: #989898;
	font-size: 13px;
	margin: 0 0 2px 0;
	padding-bottom: 2px;
	text-transform: uppercase;
}

h4 {
	font-size: 1.05em;
	margin: 0 0 2px 0;
}

h5 {
	font-size: 1em;
    margin: 0 0 0.5em 0;
}

p {
	font-size: 1.1em;
	line-height: 1.3em;
	margin-bottom: 1.5em;
}

img {
	border: 0;
	vertical-align: middle;
}

hr {
	border: 0 none #fff;
	border-top: 1px solid var(--main-border-color);
	display: block;
	height: 1px;
	margin: 5px 0;
}

hr.dashed {
	border-top: 1px dashed var(--main-border-color);
	margin: 10px 0;
}

hr.divider	{ display: none; }
p.right		{ text-align: right; }

#wrap { min-width: 320px; }

#simple-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 99.9vh;
}

#page-body {
	margin: 4px 0;
}

#simple-wrap #page-body {
	flex: auto;
}

#page-body, #page-footer { clear: both; }

#page-footer h3 { margin-top: 20px; }


/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none !important; }

.ui-helper-reset {
	border: none;
	font-size: 100%;
	line-height: 1.3;
	list-style: none;
	margin: 0;
	outline: 0;
	padding: 0;
	text-decoration: none;
}

/* Component containers
----------------------------------*/
.ui-widget {
	margin-bottom: 10px;
}

.ui-widget-content {
	background: #fcfdfd;
	color: #222;
}

.ui-widget-header, .ui-widget-title {
	background: #075585;
	background: linear-gradient(to right, #075585, #1e6d9d, #075585);
	color: #fff;
	font-weight: bold;
}

.ui-widget-header a,
.ui-widget-title a {
	color: #fff;
}

.ui-message {
	border-radius: 4px;
	display: block;
	font-weight: bold;
	margin: 10px 0;
	padding: 12px;
	text-align: center;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	background: #D0E5F5;
	border: 1px solid #c5dbec;
	color: #2E6E9E;
	font-weight: bold;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #2E6E9E;
	text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover,
.ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
	background: #d0e5f5;
	border: 1px solid #79b7e7;
	color: #1d5987;
	font-weight: bold;
}

.ui-state-hover a, .ui-state-hover a:hover {
	color: #1d5987;
	text-decoration: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	background: #FCFDFD;
	border: 1px solid #79b7e7;
	color: #e17009;
	font-weight: bold;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
	color: #e17009;
	text-decoration: none;
}

.ui-state-disabled { cursor: default !important; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight {
	background-color: #FFECB4;
}

.ui-state-highlight,
.ui-state-highlight a {
	color: #825d18;
}

.ui-state-error,
.inputbox.ui-state-error {
	background: #FEF1EC;
	border-color: #CD0A0A;
	color: #CD0A0A;
	font-weight: bold;
}

.ui-state-error a,
.ui-state-error-text {
	color: #cd0a0a;
}

.ui-state-disabled {
	background-image: none;
	opacity: .35;
}

.ui-state-ok {
	background: #d9fdbe;
	border-color: #72b42d;
	color: green;
}

.ui-state-ok a {
	color: green;
}

/* Tabs
----------------------------------*/
.ui-tabs {
	position: relative;
	text-align: left;
}

.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .4em .5em 0;
}

.ui-tabs.rtl .ui-tabs-nav {
	text-align: right;
}

.ui-tabs .ui-tabs-nav li {
	display: inline-block;
	list-style: none;
	position: relative;
	margin-bottom: 0;
	border-bottom: 0;
	padding: 2px;
	vertical-align: bottom;
	white-space: nowrap;
}

.ui-tabs .ui-tabs-nav li.tab-title {
	display: block;
	font-size: 1.2em;
	margin: 3px 5px;
}

.ui-tabs .ui-tabs-nav li a {
	float: left;
	padding: .3em .9em;
	text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding: 4px 3px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-state-processing a {
	cursor: text;
}

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; }

.ui-tabs:not(.ui-alternative) .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 10px;
	background: none;
}

.ui-tabs-hide { display: none !important; }

.ui-tabs.ui-alternative,
.ui-tabs.ui-alternative .ui-widget-header {
	background: none;
	border: none;
}

.ui-tabs.ui-alternative .ui-tabs-panel {
	border: 1px solid #79b7e7;
}

.ui-tabs.ui-alternative .ui-tabs-nav {
	padding-left: 0;
}

.ui-tabs.ui-alternative .ui-tabs-nav li.ui-tabs-selected {
	margin-bottom: -1px;
}

.tabs2 {
	background: #fff;
	padding: 5px 10px;
}

.tabs2 ul:first-child {
	border-bottom: 1px solid var(--main-border-color);
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.tabs2 ul:first-child li {
	display: inline-block;
	margin: 0 10px;
}

.tabs2 ul:first-child li:first-child {
	margin-left: 0;
}

.tabs2 ul:first-child li:last-child {
	margin-right: 0;
}

.tabs2 ul:first-child li a {
	display: block;
	color: #105289;
	padding: 8px 10px 12px 8px;
	position: relative;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	text-transform: uppercase;
}

.tabs2 ul:first-child li a:after {
	content: "";
	display: block;
	left: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	width: 50%;
}

.tabs2 ul:first-child li.active a {
	color: #000;
}

.tabs2 ul:first-child li.active a:after {
	width: 100%;
	border-bottom: 4px solid #000;
	transition: width .4s;
}

.tabs2 .ui-tabs-panel {
	padding: 12px;
}

.tab-icon {
	display: none;
}

/* Select
----------------------------------*/
.ui-select {
	display: inline-block;
	position: relative;
}

/* Corner radius
----------------------------------*/
.ui-corner-tl { border-top-left-radius: 2px; }
.ui-corner-tr { border-top-right-radius: 2px; }
.ui-corner-bl { border-bottom-left-radius: 2px; }
.ui-corner-br { border-bottom-right-radius: 2px; }
.ui-corner-top { border-top-left-radius: 2px; border-top-right-radius: 2px; }
.ui-corner-bottom { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; }
.ui-corner-right {  border-top-right-radius: 2px; border-bottom-right-radius: 2px; }
.ui-corner-left { border-top-left-radius: 2px; border-bottom-left-radius: 2px; }
.ui-corner-all { border-radius: 2px; }

/* Icons
--------------------------------------------- */
.icon-forum-read:before,
.icon-forum-read-subforum:before {
	content: "\f086";
}

.icon-forum-unread:before,
.icon-forum-unread-subforum:before {
	content: "\f086";
	color: #1576a8;
	font-weight: 900;
}

.licon[class*="icon-announce-"]:before {
	content: "\f0a1";
	font-weight: 900;
}

.licon[class*="icon-sticky-"]:before {
	content: "\f08d";
	font-weight: 900;
}

.licon[class*="icon-topic-"]:before,
.icon[class*="icon-topic-"]:before {
	content: "\f075";
}

.licon[class*="-hot"]:before {
	color: #c00202;
	content: "\f06d";
	font-weight: 900;
}

.licon[class*="-mine"]:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background: #1576a8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(5px, -12px);
}

.licon[class*="-unread"]:before,
.icon[class*="-unread"]:before {
	color: #1576a8;
}

.licon.icon-topic-solved:before {
	content: "\f00c";
    color: green;
    font-weight: 900;
}

.icon-ucp-main:before 		{ content: "\f06e"; }
.icon-ucp-notify:before 	{ content: "\f0f3"; }
.icon-ucp-prefs:before 		{ content: "\f013"; }
.icon-ucp-profile:before 	{ content: "\f007"; }

/* Search box and Coupon Box
--------------------------------------------- */
#search-box, #coupon-box {
	background: #fcfdfd;
	display: block;
	margin: 15px 0;
	overflow: hidden;
	padding: 4px;
	position: relative;
	text-align: left;
}

#coupon-box {
	border: 1px solid var(--main-border-color);
	margin: 0;
	width: 50%;
}

#search-box input,
#coupon-box input {
	border: none;
}

#search-box #keywords,
#coupon-box #coupon {
	background-color: #fcfdfd;
	cursor: text;
	outline: 0;
	padding: 6px 0 6px 6px;
	width: 85%;
}

#search-box .btn_go,
#coupon-box .btn_go {
	background-color: #a6c9e2;
	bottom: 0;
	font-size: 1.2em;
	line-height: 32px;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 40px;
}

#coupon-box .btn_go {
	font-size: 1.5em;
}

#search-box .btn_go:hover,
#coupon-box .btn_go:hover {
	color: #000;
}

/* Round cornered boxes and backgrounds
---------------------------------------- */
#header {
	background: rgb(7, 85, 133) url('images/header-background.webp') 50% 35% no-repeat;
	background-size: 100% auto;
	height: 350px;
	margin: 0;
	padding-bottom: 70px;
	position: relative;
	text-align: left;
}

#header:before {
	background: rgba(7, 85, 133, 0.85);
	backdrop-filter: blur(2px);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

#header > svg {
	bottom: -2px;
	fill: #fff;
	left: 0;
	position: absolute;
	width: 100%;
}

.header-description {
	font-size: 20px;
	position: absolute;
	text-align: center;
	top: 40%;
	width: 100%;
	z-index: 2;
}

.header-description {
	color: #fff;
	font-family: 'Audiowide';
}

.header-description .site-title {
	font-size: 36px;
	font-weight: normal;
	margin-bottom: 5px;
}

#simple-header {
	margin-bottom: 20px;
	padding: 20px;
}

.social-buttons {
	bottom: 30px;
	font-size: 28px;
	left: 50%;
	position: absolute;
	transform: translate(-50%);
	z-index: 2;
}

.social-buttons a:link,
.social-buttons a:visited,
.footer-social-buttons a:link,
.footer-social-buttons a:visited {
	color: #fff;
	display: inline-block;
	margin: 0 10px;
}

.footer-social-buttons {
	display: none;
	font-size: 28px;
	margin-bottom: 3rem;
	text-align: center;
}

.panel {
	background: #FCFDFD;
	border: 1px solid var(--main-border-color);
	display: block;
	margin: 0 0 10px 0;
	overflow: hidden;
	padding: 10px;
}

.panel-inner {
	padding: 8px;
}

.panel .panel-title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.post {
	display: flex;
	flex-direction: row-reverse;
	gap: 10px;
	margin-bottom: 4px;
	padding: 0 10px;
}

div.logo,
a.logo {
	color: #fff;
	font-family: Audiowide;
	font-size: 25px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
}

a.logo:hover,
a.logo:visited {
	color: #fff;
	text-decoration: none;
}

/* Horizontal lists
----------------------------------------*/
.breadcrumbs {
	margin: 0 0 20px 0;
}

ul.linklist {
	line-height: 16px;
	margin: 0;
	min-height: 1em;
}

ul.linklist li {
	display: block;
	float: left;
	line-height: 1.1em;
	list-style: none;
	margin-bottom: 0;
	margin-right: 5px;
	width: auto;
}

ul.linklist li.rightside, p.rightside {
	float: right;
	margin-right: 0;
	margin-left: 5px;
	text-align: right;
}

p.rightside a {
	margin-top: 4px;
}

ul.linklist a {
	color: #105289;
}

ul.leftside {
	float: left;
	margin-left: 0;
	margin-right: 5px;
	text-align: left;
}

ul.rightside {
	float: right;
	margin-left: 5px;
	margin-right: -5px;
	text-align: right;
}

/* Specific column styles */
ul.topiclist li.header dt.name, .list dt.name {
	padding-right: 0;
	width: 25%;
}

dd.userposts {
	text-align: center;
	width: 10%;
}

dd.joined 		{ width: 15%; }
dd.active 		{ width: 15%; }
dd.mark			{ width: 7%; }
dd.userinfo		{ width: 30%; }

.ucp-notify-container {
	font-size: 1.1em;
	padding: 10px 50px;
}

.ucp-notify-container table {
	margin-bottom: 20px;
	width: 100%;
}

.ucp-notify-container td,
.ucp-notify-container th {
	border-bottom: 1px solid transparent;
	padding: 3px 6px;
	text-align: left;
}

.ucp-notify-container td { border-color: #E2E6EF; }
.ucp-notify-container th { border-color: #C7CFE0; }

.ucp-notify-container .check {
	color: #46535a;
	text-align: center;
	width: 100px;
}

.ucp-notify-container td.check {
	background: #F8F8F8;
}

/* Misc layout styles
---------------------------------------- */
.column1 {
	float: left;
	clear: left;
	width: 49%;
}

.column2 {
	float: right;
	clear: right;
	width: 49%;
}

.left-box {
	float: left;
	text-align: left;
	width: auto;
}

.center-box {
	text-align: center;
}

.right-box {
	float: right;
	text-align: right;
	width: auto;
}

dl.details {
	font-size: 1em;
}

dl.details dt {
	color: #000;
	display: inline-block;
	text-align: right;
	vertical-align: top;
	width: 30%;
}

dl.details dd {
	color: #536482;
	display: inline-block;
	margin-bottom: 5px;
	margin-left: 0;
	padding-left: 5px;
	width: 65%;
}

/* Miscellaneous styles
---------------------------------------- */
body, .footer {
	background: #075585;
	background: linear-gradient(to bottom, #075585, #1e6d9d);
}

.footer {
	padding: 10px;
	position: relative;
	z-index: 5;
}

.footer,
.footer a,
.footer a:link,
.footer a:visited {
	color: #fff;
}

.simple-footer {
	font-weight: bold;
	padding: 15px;
}

.simple-footer,
.simple-footer a {
	color: #fff !important;
}

.footer-cols {
	display: flex;
	gap: 4em 2em;
	justify-content: center;
	margin: 0 15% 3em 15%;
}

.footer-col {
	flex: auto;
	margin: 0;
	text-align: left;
}

.footer-col li {
	padding: 4px 0;
}

.footer-col li.title {
	font-size: 1.15em;
	margin-bottom: 5px;
	text-align: center;
}

.footer-col li.title:after {
    content: "";
    display: block;
    background: linear-gradient(to right, #0b5f8f, #f7f8f9 , #0b5f8f);
    height: 2px;
    margin: 4px 0 0 -10px;
}

.small {
	color: grey;
	font-size: 0.9em !important;
}

.titlespace { margin-bottom: 15px; }

.reported { background-color: #F7ECEF; }

li.reported:hover { background-color: #ECD5D8 !important; }

div.rules {
	background-color: #ECD5D8;
	color: #BC2A4D;
	font-size: 1.1em;
	line-height: 1.2em;
	margin: 10px 0;
	padding: 10px;
}

div.rules ul, div.rules ol {
	margin-left: 20px;
}

p.rules {
	background-color: #ECD5D8;
	background-image: none;
	padding: 5px;
}

p.rules img {
	padding-top: 5px;
}

#top {
	position: absolute;
	top: -20px;
}

.clear {
	background: transparent;
	clear: both;
	display: block;
	font-size: 1px;
	line-height: 1px;
}

/* Link Styles
---------------------------------------- */
a {
	color: blue; 
	text-decoration: none; 
}

a:link, a:visited, a:active	{
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a, a:link, a:active, a:visited, a:hover {
	color: #105289;
}

/* Coloured usernames */
.username-coloured {
	display: inline !important;
	font-weight: bold;
	padding: 0 !important;
}

/* Links on gradient backgrounds */
.forabg .header a:link {
	color: #fff;
	text-decoration: none;
}

.forabg .header a:visited {
	color: #fff;
	text-decoration: none;
}

.forabg .header a:hover {
	color: #A8D8FF;
	text-decoration: underline;
}

.forabg .header a:active {
	color: #C8E6FF;
	text-decoration: none;
}

/* Links for forum/topic lists */
a.forumtitle, a.topictitle {
	color: #105289;
	font-size: 1.2em;
	text-decoration: none;
}

a.forumtitle:hover, a.topictitle:hover {
	color: #BC2A4D;
	text-decoration: underline;
}

a.forumtitle:active, a.topictitle:active {
	color: #105289;
}

/* Post body links */
.postlink {
	border-bottom: 1px solid #d2d2d2;
	color: #368AD2;
	padding-bottom: 0;
	text-decoration: none;
}

.postlink:visited {
	border-bottom-color: #666666;
	border-bottom-style: dotted;
	color: #5D8FBD;
}

.postlink:active {
	color: #368AD2;
}

.postlink:hover {
	background-color: #f6f6f6;
	color: #0D4473;
	text-decoration: none;
}

.signature a, .signature a:visited, .signature a:active, .signature a:hover {
	background-color: transparent;
	border: none;
	text-decoration: underline;
}

/* Profile links */
.postprofile dt.author a {
	color: #105289;
	font-weight: bold;
	text-decoration: none;
}

.postprofile dt.author a:hover {
	color: #D31141;
	text-decoration: underline;
}

a.up, a.up:link, a.up:active, a.up:visited {
	border-bottom-width: 0;
	padding-left: 10px;
	text-decoration: none;
}

a.up:hover {
	background-color: transparent;
	background-position: left top;
}

a.down, a.down:link, a.down:active, a.down:visited {
	padding-right: 10px;
}

a.down:hover {
	background-position: right bottom;
	text-decoration: none;
}

a.left, a.left:active, a.left:visited {
	padding-left: 12px;
}

a.left:hover {
	background-position: 0 60%;
	color: #368AD2;
	text-decoration: none;
}

a.right, a.right:active, a.right:visited {
	padding-right: 12px;
}

a.right:hover {
	background-position: 100% 60%;
	color: #368AD2;
	text-decoration: none;
}

/* Feed icon in forumlist_body.html */
a.feed-icon {
	font-size: 1.2em;
	float: right;
	height: 16px;
	margin: 3px 8px 0 0;
	width: 16px;
}

#demos a {
	border: 3px solid var(--main-border-color);
	box-shadow: 0 0 10px var(--main-border-color);
	display: inline-block;
	font-size: 1.1em;
	height: auto;
	margin: 5px;
	padding: 8px;
	text-align: center;
	vertical-align: top;
	width: 180px;
}

#demos a:hover {
	background-color: #fafafa;
	color: #000;
}

/* Content Styles
---------------------------------------- */
ul.topiclist {
	display: block;
	list-style-type: none;
	margin: 0;
}

ul.topiclist li {
	color: #4C5D77;
	display: block;
	list-style-type: none;
	margin: 0;
}

ul.topiclist li.header dt {
	padding-left: 10px;
}

ul.topiclist li.header dl.icon dt {
	padding-right: 22px;
}

ul.topiclist dl {
	position: relative;
}

ul.topiclist li.row dl {
	padding: 2px 0;
}

ul.topiclist dfn {
	position: absolute;
	left: -999px;
	width: 990px;
}

ul.topiclist li.row dt a.subforum {
	background-image: none;
	background-position: 0 50%;
	background-repeat: no-repeat;
	padding: 0 0 0 12px;
	position: relative;
	white-space: nowrap;
}

.forum-image {
	float: left;
	margin-right: 8px;
	padding-top: 5px;
}

li.header dt, li.header dd {
	border-left-width: 0;
	color: #fff;
	line-height: 1em;
	margin: 2px 0 4px 0;
	padding-top: 8px;
	padding-bottom: 8px;
}

li.header dt { font-weight: bold; }
li.header dd { margin-left: 1px; }
li.header dl.icon { min-height: 0; }

/* Forum list column styles */
dl.icon { min-height: 35px; }

dd.posts, dd.topics, dd.views {
	font-size: 1em;
	text-align: center;
	width: 9%;
}

dd.foruminfo {
	line-height: 1.5em;
	width: 16%;
}

dd.lastpost { width: 25%; }

/* List in forum description */
dl.icon dt ol,
dl.icon dt ul {
	list-style-position: inside;
	margin-left: 1em;
}

dl.icon dt li {
	display: list-item;
	list-style-type: inherit;
}

dd.redirect {
	font-size: 1.1em;
	line-height: 2.5em;
}

dd.moderation {
	font-size: 1.1em;
}

dd.time {
	font-size: 1.1em;
	line-height: 200%;
	width: auto;
}

dd.extra {
	font-size: 1.1em;
	line-height: 200%;
	text-align: center;
	width: 12%;
}

dd.mark {
	float: right;
	padding-right: 5px;
	text-align: right;
	width: 7%;
}

dd.info {
	width: 30%;
}

dd.option {
	font-size: 1.1em;
	line-height: 200%;
	text-align: center;
	width: 15%;
}

/* Container for forum/post/reply buttons and pagination */
.forum-actions {
	margin-bottom: 5px;
	text-align: right;
}

.topic-actions {
	font-size: 1.1em;
	height: 30px;
	margin-bottom: 8px;
	min-height: 30px;
}

.topic-actions ul.topnav {
	padding: 0;
}

.topic-actions .button {
	margin-bottom: 0;
	margin-top: 0;
	vertical-align: top;
}

.topic-bookmarked {
	background-image: url('images/icon-topic-bookmarked.png');
	background-position: right top;
	background-repeat: no-repeat;
}

/* Post body styles
----------------------------------------*/
.postbody {
	color: #333;
	line-height: 1.48em;
	flex: auto;
}

.postbody .ignore { font-size: 1.1em; }
.postbody h3.first { font-size: 1.7em; }

.postbody h3 {
	border: none;
	font-size: 1.5em;
	line-height: 125%;
	margin: 0 0 0.3em 0 !important;
	padding: 2px 0 0 0;
	text-transform: none;
}

.postbody h3 img {
	vertical-align: bottom;
}

.postbody .content {
	font-size: 1.1em;
	margin-top: 15px;
}

.postbody img {
	max-width: min(300px, 100%);
}

.postbody img.smiley {
	height: auto;
	width: 24px;
}

/* Topic review panel
----------------------------------------*/
#review {
	margin-top: 2em;
}

#topicreview {
	height: 300px;
	padding-right: 5px;
	overflow: auto;
}

#topicreview .postbody {
	float: none;
	height: auto;
	margin: 0;
	width: auto;
}

#topicreview .post {
	height: auto;
}

#topicreview h2 {
	border-bottom-width: 0;
}

.post-ignore .postbody {
	display: none;
}

/* MCP Post details
----------------------------------------*/
#post_details {
	/* This will only work in IE7+, plus the others */
	overflow: auto;
	max-height: 300px;
}

#expand { clear: both; }

/* Content container styles
----------------------------------------*/
.content {
	color: #333;
	font-size: 1em;
	line-height: 1.4em;
	min-height: 3em;
	overflow: hidden;
	padding-bottom: 1px;
}

.content h2, .panel h2 {
	border-bottom: 1px solid var(--main-border-color);
	color: #115098;
	font-size: 1.6em;
	font-weight: normal;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
	padding-bottom: 0.5em;
}

.panel h3 { margin: 0.5em 0; }

.panel p {
	font-size: 1.2em;
	line-height: 1.4em;
	margin-bottom: 1em;
}

.content p {
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.2em;
	line-height: 1.4em;
	margin-bottom: 1em;
}

.content li { list-style-type: inherit; }

.content ul, .content ol {
	margin-bottom: 1em;
	margin-left: 3em;
}

.announce, .unreadpost {
	/* Highlight the announcements & unread posts box */
	border-left-color: #BCBCBC;
	border-right-color: #BCBCBC;
}

/* Post author */
p.author {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
	margin: 0 15em 0.6em 0;
	padding: 0 0 5px 0;
}

/* Post signature */
.signature {
	border-top: 1px solid #A6C9E2;
	clear: left;
	font-size: 1.1em;
	line-height: 140%;
	margin-top: 25px;
	overflow: hidden;
	padding-top: 0.2em;
	width: 100%;
}

dd .signature {
	border: none;
	clear: none;
	margin: 0;
	padding: 0;
}

.signature li {
	list-style-type: inherit;
}

.signature ul, .signature ol {
	margin-bottom: 1em;
	margin-left: 3em;
}

/* Post noticies */
.notice {
	border-top: 1px dashed #CCCCCC;
	clear: left;
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1em;
	line-height: 130%;
	margin-top: 1.5em;
	padding-top: 0.2em;
	width: auto;
}

/* BB Code styles
----------------------------------------*/
/* Quote block */
blockquote {
	border: 1px solid #C9D2D8;
	font-size: 0.95em;
	margin: 0.5em 1px 0 25px;
	padding: 5px;
	position: relative;
}

blockquote:before {
	content: "\f10d";
	font-family: "Font Awesome 6 Free";
	font-size: 16px;
	font-weight: 900;
	left: 7px;
	position: absolute;
	top: 5px;
}

blockquote blockquote {
	background-color: #EFEED9;
	font-size: 1em;
	margin: 0.5em 1px 0 15px;	
}

blockquote blockquote blockquote {
	background-color: #EBEADD;
}

blockquote cite {
	display: block;
	font-size: 0.9em;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 4px;
	margin-left: 20px;
}

blockquote cite cite {
	font-size: 1em;
}

blockquote.uncited {
	padding-top: 25px;
}

/* Code block */
dl.codebox {
	background-color: #f1f1f1;
	border: 1px solid #dadada;
	font-size: 1em;
	margin: 5px;
	padding: 2px 4px 4px 4px;
}

dl.codebox dt {
	border-bottom: 1px solid #dadada;
	display: block;
	font-size: 0.8em;
	font-weight: bold;
	margin-bottom: 3px;
	padding: 4px;
	text-transform: uppercase;
}

dl.codebox dd {
	margin: 0px;
}

blockquote dl.codebox {
	margin-left: 0;
}

dl.codebox code {
	color: #2E8B57;
	display: block;
	font-family: Monaco, 'Andale Mono', 'Courier New', Courier, mono;
	font-size: 11px;
	height: auto;
	line-height: 1.3em;
	margin: 2px 0px;
	max-height: 200px;
	overflow: auto;
	padding-top: 5px;
	white-space: normal;
}

.syntaxbg		{ color: #FFFFFF; }
.syntaxcomment	{ color: #FF8000; }
.syntaxdefault	{ color: #0000BB; }
.syntaxhtml		{ color: #000000; }
.syntaxkeyword	{ color: #007700; }
.syntaxstring	{ color: #DD0000; }

.infourl {
	background: #F6F7F9;
	border: 1px solid #D3DAE8;
	color: #808080;
	font-family: Arial;
	font-size: 11px;
	line-height: 1.1em;
	margin: 5px;
	padding: 10px;
}

.infourl .postlink {
	border: none;
	color: #3B5998;
	font-weight: bold;
	text-decoration: none;
}

.infourl .postlink:hover {
	text-decoration: underline;
}

/* Attachments
----------------------------------------*/
.attachbox {
	background-color: #FFFFFF;
	border: 1px dashed #C9D2D8;
	display: inline-block;
	margin: 5px 5px 5px 0;
	padding: 6px;
	width: auto;
}

.attachbox dt {
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}

.attachbox dd {
	border-top: 1px solid #C9D2D8;
	clear: left;
	margin-top: 4px;
	padding-top: 4px;
}

.attachbox dd dd {
	border: none;
}

.attachbox p, .attachbox p.stats {
	clear: left;
	color: #666666;
	font-weight: normal;
	line-height: 110%;
}

.attach-image {
	margin: 3px 0;
	width: 100%;
}

.attach-image img {
	border: 1px solid #999999;
	cursor: default;
}

/* Inline image thumbnails */
div.inline-attachment dl.thumbnail, div.inline-attachment dl.file {
	display: block;
	margin-bottom: 4px;
}

div.inline-attachment p {
	font-size: 100%;
}

dl.file {
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

dl.file dt {
	font-weight: bold;
	margin: 0;
	padding: 0;
	text-transform: none;
}

dl.file dd {
	color: #666666;
	margin: 0;
	padding: 0;	
}

dl.thumbnail img {
	border: 1px solid #666666;
	background-color: #FFFFFF;
	padding: 3px;
}

dl.thumbnail dd {
	color: #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
}

.attachbox dl.thumbnail dd {
	font-size: 100%;
}

dl.thumbnail dt a:hover {
	background-color: #EEEEEE;
}

dl.thumbnail dt a:hover img {
	border: 1px solid #368AD2;
}

/* Post poll styles
----------------------------------------*/
fieldset.polls dl {
	margin: 4px 0;
	padding: 5px;
}

fieldset.polls dl.voted {
	font-weight: bold;
	color: #000000;
}

fieldset.polls dt {
	padding: 0;
	text-align: left;
	width: 34%;
}

fieldset.polls dd {
	padding: 0 5px;
	width: 12%;
}

fieldset.polls dt, fieldset.polls dd {
	display: inline-block;
	font-size: 1.05em;
	line-height: 16px;
	margin: 0;
}

fieldset.polls dt input {
	margin: 0 5px 3px 0;
}

fieldset.polls dd.resultbar {
	width: 48%;
}

fieldset.polls .pollbar {
	background-color: #0391D3;
	display: inline-block;
	height: 14px;
	min-width: 1%;
	vertical-align: middle;
}

/* Poster profile block
----------------------------------------*/
.postprofile {
	border: 1px solid #A6C9E2;
	border-width: 0 0 0 1px;
	color: #666;
	flex: none;
	margin: 5px 0px 10px;
	min-height: 80px;
	width: 22%;
}

.rtl .postprofile {
	border-left-color: transparent;
	border-right-color: #fff;
}

.postprofile dd, .postprofile dt {
	line-height: 1.2em;
	margin-bottom: 8px;
	margin-left: 8px;
}

.postprofile strong {
	color: #000;
	font-weight: normal;
}

.avatar {
	border-radius: 50%;
	display: inline-block;
	height: 90px;
	overflow: hidden;
	position: relative;
	width: 90px;
}

.postprofile .rank-title {
    border-radius: 20px;
    background: #71b8eb;
    color: #fff;
    display: inline-block;
    padding: 7px 12px;
}

/* Poster profile icons
----------------------------------------*/
.profile-icons { float: right; }

/* Main CP box
----------------------------------------*/
#cp-menu {
	border-bottom: 1px dotted #CCC;
	font-size: 1.1em;
	font-weight: bold;
	list-style-type: none;
	padding-bottom: 6px;
	margin: 9px 4px 15px 4px;
}

#cp-menu li {
	display: inline-block;
	margin: 2px 0;
	padding: 0 6px;
	text-align: center;
}

#cp-menu li:first-child {
	border-left: none;
}

#cp-menu li a {
	display: block;
	padding: 4px 8px;
}

#cp-main .content {
	padding: 0;
}

#cp-main h3, #cp-main hr {
	border-color: #A4B3BF;
}

#cp-main .panel p {
	font-size: 1.1em;
}

#cp-main .panel ol {
	font-size: 1.1em;
	margin-left: 2em;
}

#cp-main .panel li.row {
	border-bottom: 1px solid #B5C1CB;
	border-top: 1px solid #B5C1CB;
}

ul.cplist {
	border-top: 1px solid #cbcbcb;
	margin-bottom: 5px;
}

#cp-main .panel li.header dd, #cp-main .panel li.header dt {
	color: #000000;
	margin-bottom: 2px;
}

#cp-main .linklist {
	min-height: 20px;
}

#cp-main .pagination {
	padding-top: 1px;
	width: auto;
}

#cp-main .postbody p {
	font-size: 1.1em;
}

#cp-main .postbody h3, #cp-main .box2 h3 {
	margin-top: 0;
}

#cp-main .buttons {
	margin-left: 0;
}

#cp-main ul.linklist {
	margin: 0;
	min-height: 30px;
}

/* MCP Specific tweaks */
.mcp-main .postbody {
	width: 100%;
}

.cp-box {
	display: inline-block;
	min-width: 250px;
	vertical-align: top;
	width:45%;
}

#cp-main .submit-buttons {
	text-align: center;
}

#cp-main h2 {
	border-bottom: none;
	color: #333333;
	margin-left: 10px;
	padding: 0;
}

#cp-main .panel {
	background-color: #F9F9F9;
}

.ucp-provider-row {
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	font-size: 1.1em;
	margin: 0 auto 10px auto;
	max-width: 100%;
	padding: 20px;
	width: 500px;
}

.ucp-provider-row .fab {
	font-size: 1.8em;
	margin-right: 10px;
}

.ucp-provider-row > * {
	vertical-align: middle;
}

.ucp-provider-row .actions {
	margin-top: 4px;
}

.ucp-provider-row .provider-link {
	color: green;
}

.ucp-provider-row .provider-unlink {
	color: red;
}

.ucp-navigation {
	float: left;
	width: 20%;
	margin: 0;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #e1e1e1;
}

.ucp-navigation ul {
	margin: 0;
	padding: 0;
}

.ucp-navigation > li:not(:last-child) {
	border-bottom: 1px solid #e1e1e1;
}

.ucp-navigation li a {
	display: block;
	font-size: 1.1em;
	padding: 12px;
	text-decoration: none;
}

.ucp-navigation > li > a {
	color: #000;
	font-weight: bold;
}

.ucp-navigation > li > a:after {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	float: right;
}

.ucp-navigation > li > a.active:after {
	display: none
}

.ucp-navigation ul > li > a {
	padding-left: 25px;
}

.ucp-navigation ul > li > a.active {
	border: 2px solid #075585;
	border-width: 0 0 0 2px;
	font-weight: bold;
}

#cp-main {
	margin-left: 22%;
}

.panel .info-content {
	font-size: 1em;
}

/* General form styles
----------------------------------------*/
fieldset {
	border-width: 0;
	font-family: Arial;
	font-size: 1em;
}

input,
select,
.button {
	cursor: pointer;
	font-family: 'Ubuntu', Arial, serif;
	font-size: 1em;
	font-weight: normal;
}

input 	{ padding: 0 3px; }
select 	{ color: #000; }
option	{ padding-right: 1em; }

option.disabled-option {
	color: graytext;
}

textarea {
	font-size: 1em;
	line-height: 1.4em;
	padding: 2px;
	width: 60%;
}

label {
	color: #425067;
	cursor: default;
	padding-right: 5px;
}

/* Definition list layout for forms
---------------------------------------- */
fieldset dl {
	clear: both;
	display: block;
	margin: 5px;
	padding: 0;
}

fieldset dt {
	display: block;
	float: left;
	text-align: right;
	width: 38%;
}

fieldset dt label {
	font-weight: bold;
	line-height: 18px;
	padding-right: 5px;
	text-align: left;
}

fieldset dd {
	margin-bottom: 0px;
	margin-left: 39%;
	text-align: left;
	vertical-align: top;
}

/* Specific layout 1 */
fieldset.fields1 dt {
	border-right-width: 0;
	width: 15em;
}

fieldset.fields1 dd {
	border-left-width: 0;
	margin-left: 17em;
}

fieldset.fields1 { background-color: transparent; }
fieldset.fields1 div { margin-bottom: 5px; }

.simple-fields legend {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 12px;
}

.simple-fields dl { margin: 0 0 12px 10px; }
.simple-fields dt { width: 25px; }

.simple-fields dd {
	font-size: 1.1em;
	margin-left: 32px;
	padding-bottom: 2px;
}

.simple-fields.simplespace dl { margin-bottom: 2px; }

/* Specific layout 2
---------------------------------------- */
fieldset.fields2 dt {
	border-right-width: 0;
	width: 15em;
}

fieldset.fields2 dd {
	border-left-width: 0;
	margin-left: 16em;
	margin-bottom: 4px;
}

/* Specific layout 3
---------------------------------------- */
fieldset.fields3 {
	white-space: nowrap;
}

fieldset.fields3 dt {
	display: inline-block;
	/*text-align: left;*/
	width: 62%;
}

fieldset.fields3 dd {
	display: inline-block;
	margin-left: 0;
}

/* Form elements
---------------------------------------- */
dt label {
	font-weight: bold;
	text-align: left;
}

dd label {
	color: #333;
}

dd input, dd textarea {
	margin-right: 3px;
}

dd select 	{ width: auto; }
dd textarea	{ width: 85%; }

/* Hover effects
---------------------------------------- */
fieldset dl:hover dt label {
	color: #000000;
}

fieldset.fields2 dl:hover dt label {
	color: inherit;
}

/* Display options on viewtopic/viewforum pages
---------------------------------------- */
fieldset.display-options {
	margin: 3px 0 5px 0;
	text-align: center;
}

fieldset.display-options label {
	padding-right: 2px;
	white-space: nowrap;
}

fieldset.display-options a {
	margin-top: 3px;
}

/* Display actions for ucp and mcp pages
---------------------------------------- */
fieldset.display-actions {
	line-height: 2em;
	padding-right: 1em;
	text-align: right;
	white-space: nowrap;
}

fieldset.display-actions label {
	padding-right: 2px;
	white-space: nowrap;
}

fieldset.sort-options {
	line-height: 2em;
}

/* MCP forum selection
---------------------------------------- */
fieldset.forum-selection {
	float: right;
	margin: 0 0 3px 0;
}

fieldset.forum-selection2 {
	float: right;
}

fieldset.quickmod {
	display: block;
	text-align: right;
}

/* Submit button fieldset */
fieldset.submit-buttons {
	margin: 5px 0;
	text-align: center;
}

fieldset.submit-buttons input {
	padding-bottom: 3px;
	padding-top: 3px;
}

/* Posting page styles
----------------------------------------*/
#format-buttons {
	margin: 15px 0 2px 0;
}

.posting-submit-buttons {
	padding: 10px 0;
	text-align: center;
}

/* Main message box
---------------------------------------- */
#message-box { width: 80%; }

#message-box textarea {
	color: #333333;
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.1em;
	width: 98%;
}

.maintenance-message {
	text-align: center;
    padding: 20px;
    font-size: 1.3em;
    background-color: #ffbc7c;
    color: #6f3600;
    font-weight: bold;
}

/* Emoticons and Colours panels
---------------------------------------- */
#smiley-box {
	float: right;
	width: 18%;
}

#smiley-box img {
	margin: 3px;
}

.colour-box {
	max-height: 150px;
	overflow-y: auto !important;
	padding: 5px !important;
	width: 180px !important;
}

.colour-box a {
	display: inline-block;
	height: 12px;
	margin: 2px;
	width: 12px;
}

/* Input field styles
---------------------------------------- */
.inputbox,
select,
textarea {
	background-color: #fff; 
	border: 1px solid #B4BAC0;
	color: #333;
	max-width: 100%;
	padding: 6px 8px;
}

.inputbox {
	cursor: text;
	padding: 8px;
}

.inputbox[type="number"] {
	padding-right: 3px;
}

.inputbox:hover {
	border-color: #11A3EA;
}

.inputbox:focus {
	border-color: #11A3EA;
	color: #0F4987;
	
}

.inputbox:focus,
button:focus {
	outline: none;
}

input.inputbox	{ width: 85%; }
textarea.inputbox 	{ width: 85%; }

.full 	{ width: 95%; }
.medium 	{ width: 50%;}
.narrow, input.narrow	{ width: 25%;}
.tiny 	{ width: 10%;}
input.tiny 		{ width: 125px; }

.autowidth,
.inputbox.autowidth {
	width: auto;
}

.ui-widget-title, .menu_item,
#search-box #keywords,
.list_form td,
#coupon-box #coupon  {
	font-family: Tahoma, Arial;
}

fieldset dd input,
fieldset dd select,
fieldset dd textarea {
	font-family: Tahoma, Arial;
	font-size: 12px;
}

option.sep {
	color: blue;
	font-weight: bold;
}

#content {
	position: relative;
}

.custom-layout #content {
	background-color: #fff;
}

.global-layout #header > svg path {
	fill: #e7ecef;
}

.global-layout #content {
	background-color: #e7ecef;
}

.global-layout #page-content {
	padding-bottom: 20px;
}

.menu-rss {
	display: inline-block;
	margin: 0 5px 10px 0;
	padding: 0.2em;
	vertical-align: top;
	width: 250px;
}

.menu-rss-title {
	width: auto;
	padding: 4px 10px 4px 10px;
	height: auto;
}

.ui-widget-title {
	width: auto;
	padding: 10px;
}

.ui-widget-content .inner, #message-body .inner, .popup-body .inner {
	padding: 5px;
}

#container {
	min-height: 400px;
	min-height: 47vh;
	position: relative;
}

#container > .page-inner {
	display: flex;
	gap: 20px;
}

#toplinks {
	align-items: center;
	display: flex;
	gap: 20px;
	height: 80px;
	justify-content: space-between;
	padding: 0 40px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

#toplinks.animated {
	transition: ease height 300ms, ease background-color 100ms;
}

.sticky-header-active #toplinks {
	background-color: rgb(7, 85, 133);
	height: 60px;
}

#toplinks .logo {
	flex: auto;
}

/* Columns
---------------------------------------- */
.column-center  {
	flex: auto;
	max-width: 100%;
	position: relative;
}

.column-right {
	flex: none;
	width: 336px;
}

/* Index Page
---------------------------------------- */
.job-grid {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	gap: 40px;
	margin: 0;
}

.job-grid li {
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgb(94 94 94 / 15%);
	display: block;
	flex: auto;
	padding: 20px;
	text-align: center;
	width: 30%;
}

.job-grid a:hover {
	text-decoration: none;
}

.job-grid img {
	height: 170px;
	max-width: 100%;
	width: auto;
}

.job-grid h2 {
    font-size: 1.4em;
	margin-bottom: 15px;
}

.last-applications h1:after,
.job-grid h2:after {
	background: linear-gradient(to right, transparent, #005BE4, transparent);
	content: "";
	display: block;
	height: 2px;
	margin: 6px auto;
	width: 120px;
}

.job-grid .job-text {
	color: #8b8b8b;
	display: block;
    font-size: 1.15em;
	text-align: center;
}

.last-applications {
	background-color: #f5f5f5;
	margin-top: 30px;
    padding: 20px 0;
}

.last-applications h1 {
	color: #000;
    font-size: 1.9em;
	text-align: center;
}

.product-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 3%;
	margin: 30px 10px;
}

.product-layout .product {
	background-color: #fff;
	border-radius: 4px;
	flex: auto;
	padding: 12px;
	width: 20%;
}

.product-layout .product .thumbnail {
	background-color: #f9f9f9;
	overflow: hidden;
	height: 150px;
	position: relative;
}

.product-layout .product img {
	left: 50%;
	max-width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.product-layout .product .title {
	font-size: 1.2em;
	font-weight: bold;
	margin: 15px 0 10px 0;
}

.product-layout .product .resume {
	color: #9c9c9c;
	line-height: 1.3em;
}

/* Menus
---------------------------------------- */
ul { list-style: none; }

ul.navmenu {
	width: auto;
	margin: 2px 0 0 0;
	z-index: 100;
}

ul.navmenu li a,
.ui-select .subnav li > a {
	color: #000;
	overflow: hidden;
	display: block;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
}

.ui-select .subnav li > strong {
	border-bottom: 1px solid #e4e4e4;
	display: block;
    margin: 4px;
    padding: 8px 4px;
}

ul.navmenu .subnav,
.ui-select .subnav {
	position: absolute;
	margin: 0;
	display: none;
	z-index: 101;
	overflow: hidden;
	text-align: left;
	width: 190px;
}

.ui-select .subnav {
	max-height: 300px;
	min-width: 150px;
    overflow: auto;
}

ul.navmenu .subnav li,
.ui-select .subnav li {
	display: block;
	float: none;
}

ul.navmenu .subnav li a,
.ui-select .subnav li > a {
	padding: 8px 10px;
	width: auto;
}

ul.navmenu .subnav li a:hover {
	background: none;
}

ul.navmenu ui-icon.right {
	float: right;
	margin-right: 0;
}

ul.topnav {
	align-items: center;
	display: flex;
	gap: 10px;
	padding: 15px 0;
	margin: 0;
	text-align: center;
}

ul.topnav li {
	position: relative;
}

ul.topnav > li > a {
    color: #fff;
    font-size: 1.2em;
	font-weight: normal;
    min-width: 45px;
    padding: 5px 8px;
}

ul.topnav .responsive-menu-close {
	display: none;
	text-align: right;
}

a.responsive-menu-launcher {
	color: #fff;
	display: none;
    font-size: 24px;
}

.responsive-user-loginbox {
	display: none;
	font-weight: bold;
    font-size: 12px;
    margin-top: 19px;
}

.responsive-user-loginbox li {
	display: inline-block;
	margin: 0 10px;
}

ul.topnav li.icon-button {
	margin-top: 0;
}

ul.topnav li.icon-button .btn {
	background: #EAEDF1;
	background: linear-gradient(to bottom, #FFFFFF, #EAEDF1);
	background: -moz-linear-gradient(top, #FFFFFF, #EAEDF1);
	background: -webkit-linear-gradient(to bottom, #FFFFFF, #EAEDF1);
	border-color: #CCC;
	min-width: 30px;
	padding: 4px 6px;
}

ul.topnav li.icon-button .ui-icon {
	float: none;
	margin: 0;
}

ul.topnav .subnav li, .ui-select .subnav li {
	margin: 2px 0;
}

ul.topnav .subnav li a,
.ui-select .subnav li a {
	border: none;
	font-weight: normal;
	text-shadow: none;
}

ul.topnav .subnav li a:hover,
.ui-select .subnav li a:hover {
	background: #EFEFEF;
	background-color: #EFEFEF;
	color: #000000;
}

ul.topnav li ul.subnav,
.ui-select .subnav {
	background-color: #fafafa;
	border: 1px solid #e7ecef;
	border-radius: 2px;
	left: 0;
	padding: 0;
	top: 2.2em;
}

.ui-select .ui-arrow { margin-left: 5px; }
.ui-select .subnav { top: 28px; }

ul.rtl li .subnav, .ui-select.rtl .subnav {
	left: auto;
	right: 0;
}

ul.topnav li ul.subnav li a {
	text-align: left;
}

.language-selector {
	display: flex;
	gap: 10px;
}

.topnav .language-selector a {
	background-position: 0 0;
	background-repeat: no-repeat;
	height: 12px;
	min-width: 0;
	padding: 0;
	width: 16px;
}

ul.nav li {
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	border-bottom: 1px solid #D8E7F3;
	background-repeat: repeat-x;
	background-position: 50% 50%;
}

ul.nav li a {
	color: #4C5D77;
	overflow: hidden;
	padding: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

ul.nav li:last-child { border-bottom: none; }

ul.nav li a:hover {
	background-color: #e4f1fd;
	color: #1d5987;
}

ul.nav li ul.subnav {
	left: 180px;
	top: -5px;
	background: #FCFDFD;
	padding: 2px;
	border: 1px solid #A6C9E2;

	-webkit-box-shadow: 0 0 8px #C5DBEC;
	-moz-box-shadow: 0 0 8px #C5DBEC;
	box-shadow: 0 0 8px #C5DBEC;
}

.ui-widget-header .small {
	color:#CCC;
}

.stars {
	display: inline-block;
	font-size: 20px;
	height: 16px;
	line-height: 16px;
	width: auto;
}

.stars .inner {
	display: inline-block;
}

.stars a, .stars .star {
	color: #a5a5a5;
	display: inline-block;
	
	opacity: .4;
	margin: 0 1px;
}

.stars[data-result] a {
	cursor: default;
}

.stars .over {
	color: #1f8bbf;
	opacity: 1;
}

#page-content {
	padding-top: 30px;
}

.page-inner {
	margin: 0 auto;
	max-width: 1300px;
    width: 85%;
}

.post ul,
ol {
	margin-bottom: 1em;
	margin-left: 3em;
}

ul li {
	margin-bottom: 0.4em;
}

button,
.button,
a.button,
.pagination span a {
	background: #EAEDF1;
	background: linear-gradient(to bottom, #fff, #EAEDF1);
	border: 1px solid var(--main-border-color) !important;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-weight: normal !important;
	line-height: normal;
	margin: 0 2px;
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	text-shadow: #fff 0.1em 0.1em 0.2em;
	width: auto;
}

button.mini,
.button.mini,
a.button.mini {
	margin: 3px 1px;
	min-width: 30px;
	padding: 5px 8px;
}

a.button.icon-only {
	min-width: 24px;
    padding: 6px 8px 5px 8px;
}

#format-buttons a.button {
	min-width: 16px;
	margin-bottom: 8px;
	margin-top: 0;
	padding: 5px 8px;
	font-size: 14px;
}

.button.large {
	margin: 0 0 5px 0;
	width: 100%;
}

.button.size-2x {
	padding: 8px;
}

.button.primary,
a.button.primary {
	background: #259acf;
	color: #fff;
	text-shadow: none;
	border-color: #259acf !important;
}

.button.dangerous,
a.button.dangerous {
	background: #DA4A38;
	background: linear-gradient(to bottom, #DC4B39, #D14836);
	border-color: #D14836 !important;
	color: #fff;
	text-shadow: #A31300 0.1em 0.1em 0.2em;
	text-transform: uppercase;
}

.button:hover,
.ui-widget button:hover,
a.button:hover,
.pagination span a:hover,
.ui-select .button.active {
	background: #fafafa;
	border-color: var(--main-border-color);
	color: #000;
	text-shadow: none;
	box-shadow: 0 0 5px #CCC;
}

.button.primary:hover,
a.button.primary:hover {
	background: #208ec3;
    border-color: #208ec3 !important;
	color: #fff;
}

.button.dangerous:hover,
a.button.dangerous:hover {
	background: #D14836;
	border-color: black !important;
	color: #fff;
	box-shadow: 0 0 6px #555;
}

.button.provider .fab,
.button.provider span {
	vertical-align: middle;
}

.button.provider .fab {
    float: left;
    font-size: 1.8em;
}

.button.provider {
	border: none !important;
	color: #fff;
	line-height: 20px;
	opacity: .85;
	margin-bottom: 10px;
	padding: 8px;
	text-shadow: none;
}

.button.provider:hover {
	color: #fff;
	opacity: 1;
}

.button.social-google,
.button.social-google:hover {
	background: #4a83d3;
}

.button.social-twitter,
.button.social-twitter:hover {
	background: #00ACED;
}

.button.social-github,
.button.social-github:hover {
	background: #000;
}

/* Loading
------------------------- */
.loading {
	position: relative;
	height: 30px;
}

.loading > span {
	animation: loading .6s linear infinite;
	border-radius: 50%;
	border-right: 2px solid transparent;
	border-top: 2px solid #07d;
	box-sizing: border-box;
	display: block;
	height: 30px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 30px;
}

/* Loading Animation
------------------------- */
@keyframes loading {
	0%		{ transform: translate(-50%, -50%) rotate(0deg); }
	100% 	{ transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pagination
---------------------------------------- */
.pagination { width: auto; }
.pagination span.page-sep { display: none; }
li.pagination { margin-top: 0; }

.pagination span strong {
	background: #FFF9CE;
	border: 1px solid #fad42e;
	color: #fad42e;
	display: inline-block;
	margin: 0 2px;
}

.pagination span a,
.pagination span strong {
	font-weight: bold;
	padding: 7px 10px;
}

dt .pagination {
	margin-top: 5px;
}

dt .pagination span a,
dt .pagination span strong {
	padding: 5px 8px;
}

.preview {
	display: inline-block;
	margin: 0 10px 10px 0;
	width: auto;
}

.preview-main {
	float: left;
	margin-left: 50px;
	margin-top: 10px;
	display: block;
    width: 300px;
    height: 240px;
    overflow: hidden;
}

.preview-main img {
	width: 100%;
}

.video-preview {
	display: inline-block;
	margin: 0 10px 10px 0;
	overflow: hidden;
	padding: 5px;
	text-align: center;
	width: 130px;
}

.app-complement-list {
	list-style-type: none;
	margin: 0;
}

.app-complement-list li {
	align-items: center;
	display: inline-flex;
	gap: 10px;
	margin: 4px 8px 4px 0;
	padding: 5px;
	vertical-align: top;
	width: 190px;
}

.app-complement-list .icon {
	flex: none;
}

.app-complement-list .default-icon {
	background: transparent url('images/app-no-image.png') 50% 50% no-repeat;
	background-size: 100%;
	display: inline-block;
	height: 50px;
	width: 50px;
}

.app-complement-list .icon > img {
	width: 100%;
}

.langpack-list .icon {
	width: 50px;
}

.langpack-list li {
	height: 48px;
}

.langpack-list li a {
	font-size: 1.1em;
	font-weight: bold;
}

.style-list li,
.video-list li {
	flex-direction: column;
	font-weight: bold;
	text-align: center;
	width: 150px;
}

.style-list .icon,
.video-list .icon {
	border-radius: 2px;
	background-color: #f2f2f2;
	height: 100px;
	width: 100%;
}

.style-list .default-icon,
.video-list .default-icon {
	margin-top: 25px;
}

.doc-content,
.info-content {
	margin-bottom: 10px;
	padding: 15px;
}

.doc-content {
	overflow: hidden;
}

.doc-content,
.doc-content dl.codebox {
	font-size: 1.1em;
}

.doc-content ol li {
	padding: 2px 0;
}

.doc-content h1 {
	margin-bottom: 10px;
}

.doc-content h2:first-child {
	margin-top: 0;
}

.doc-table1 {
    border-collapse: collapse;
	font-size: 0.8em;
    margin: 15px 0;
	width: 100%;
}

.doc-table1 td, .doc-table1 th {
    border: 1px solid #a6c9e2;
    padding: 10px;
    vertical-align: top;
}

.doc-table1 .columnA		{ width: 44%; }
.doc-table1 .resalted	{ color: red; }

.documentation-menu {
	background: #fff;
	border: 1px solid #a7ccec;
    display: block;
    float: left;
	padding: 0;
    width: 250px;
	margin: 0;
}

.documentation-menu.fixed {
	max-height: 90vh;
	overflow-y: auto;
	position: fixed;
	top: 75px;
}

.documentation-menu .section {
	background-color: #a7ccec;
	display: block;
	font-size: 1.1em;
	font-weight: bold;
	padding: 10px;
	margin-top: 10px;
}

.documentation-menu .section:first-child {
	margin-top: 0;
}

.documentation-menu li a {
	display: block;
	font-size: 1.1em;
	padding: 10px 5px 10px 25px;
}

.documentation-menu li a:hover {
	background-color: #edf4ff;
	text-decoration: none;
}

.documentation-content {
	margin-left: 260px;
}

.scroll-btn {
	height: 32px;
	width: 32px;
	border-radius: 50%;
	background-color: #000;
	position: fixed;
	bottom: 45px;
	right: 15px;
	opacity: 0.5;
	z-index: 20;
	cursor: pointer;
	display: none;
	text-align: center;
}

.scroll-btn:hover {
	opacity: 0.8;
}

.scroll-btn .fa {
	color: #fff;
    font-size: 18px;
    line-height: 32px;
    display: inline-block;
}

.info-text {
	align-items: flex-start;
	display: flex;
	font-size: 1.05em;
	gap: 20px;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.info-text img {
	flex: none;
	width: 100px; 
}

.contact-section {
	margin-bottom: 30px;
}

.contact-section p {
	margin-bottom: 0;
}

div.contentWrap {
	height: 441px;
	overflow-y: auto;
}

#message-body,
.popup-body {
	background-color: #FAFAFA;
	border-radius: 8px;
	box-shadow: 0 0 10px #4e4e4e;
	display: block;
	font-size: 1.1em;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 95%;
	min-width: 300px;
	padding: 10px;
	text-align: center;
	width: 480px;
}

.popup-body.register-popup {
	width: 800px;
}

#message-body .message-title,
.popup-body .popup-title {
	padding: 8px;
}

#message-body .button {
	margin: 5px auto;
	width: 70%;
}

.exception-container h1 {
	text-align: center;
}

.exception-container h4 {
	margin-bottom: 2em;
}

.exception-explain {
	align-items: center;
	display: flex;
	gap: 20px;
	font-size: 1.3em;
	margin-top: 2em;
}

.exception-icon {
	color: #b8c7d2;
	flex: none;
	font-size: 131px;
	text-align: center; 
	width: 30%;
}

.title-h1 {
	margin: 20px 0 10px 0;
	font-weight: bold;
	font-size: 14px;
	color: #075585;
	padding: 0 10px;
}

.title-h1:after {
	content: "";
	display: block;
	background: linear-gradient(to right, transparent, #0b5f8f, transparent);
	height: 2px;
	margin: 4px 0 0 -10px;
}

.cart {
	margin: 20px auto;
	max-width: 1024px;
	width: 80%;
}

.cart table {
	border-collapse: collapse;
	margin: 10px auto;
	width: 95%;
}

.cart table td {
	padding: 10px;
	border: 1px solid var(--main-border-color);
}

.cart table td.noborder { border: none; }
.cart table td.price-row { text-align: right; }

.cart img {
	max-width: 50px;
	height: auto;
}

.cart .item-title {
	font-size: 1.1em;
	font-weight: bold;
	margin-left: 10px;
}

/* Lists
------------------------------- */
ul.list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.list li,
.list dl {
	border-bottom: 1px solid #A6C9E2;
	min-height: 30px;
	padding: 10px;
	position: relative;
}

.list li,
.list dl,
.topiclist dl {
	align-items: center;
	display: flex;
	gap: 5px;
}

.list li:last-child, .list dl:last-child  {
	border-bottom: none;
}

ul.list li .icon {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 40px;
}

ul.list li .content {
	display: inline-block;
	margin-left: 5px;
	max-width: 90%;
	vertical-align: middle;
}

.topiclist dt,
.topiclist dd,
.list dt,
.list dd {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.list dl.image .lpreview,
.list dl.icon .licon {
	text-align: center;
	width: 12%;
}

.list dl.icon .licon {
	width: 5%;
}

.list dl.icon .licon,
.list dd {
	flex: none;
}

.list dl.icon .licon,
ul.list li .icon {
	color: #797979;
	font-family: 'Font Awesome 5 Free';
	font-size: 26px;
	min-width: 45px;
	position: relative;
}

.list .topright {
	position: absolute;
	right: 4px;
	top: 4px;
}

.list h1, .row-title {
	font-size: 14px;
	margin-bottom: 4px;
}

.list dl.image {
	min-height: 60px;
}

.topiclist dt, .list dt {
	flex: auto;
}

.list dd.rate {
	text-align: center;
	width: 15%;
}

.list dd.info {
	text-align: right;
	width: 20%;
}

.list.topics dl { border-bottom: none; }

.list.topics dl:nth-child(even) {
	background-color: #F8F8F8;
}

.list.topics .topic-poster {
	margin-top: 0.4em;
}

/* Photo Gallery
------------------------- */
.photo-slider,
.photo-slider * {
	box-sizing: border-box;
}

.photo-slider {
	position: relative;
}

.photo-slider .photo-main {
	cursor: zoom-in;
	margin-bottom: 10px;
	overflow: hidden;
}

.photo-slider .photo-main img {
	width: 100%;
	height: auto;
}

.photo-gallery,
.photo-gallery .inner,
.photo-slider .photo-main {
	position: relative;
}

.photo-gallery .inner {
	height: 50px;
	margin: 0 40px;
	overflow: hidden;
}

.photo-gallery ul {
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	white-space: nowrap;
}

.photo-gallery li {
	display: inline-block;
	margin: 0 2px;
	position: relative;
	width: 70px;
    padding: 4px;
    border: 1px solid var(--main-border-color);
}

.photo-gallery li.active {
	border-color: #000;
}

.photo-gallery li a {
	display: block;
}

.photo-slider .photo-main,
.photo-gallery li a.image-link {
	overflow: hidden;
    position: relative;
    padding-top: 63%;
}

.photo-slider .photo-main img,
.photo-gallery li a img {
	height: auto;
	max-height: 100%;
	max-width: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-navigation {
	cursor: default;
	font-size: 22px;
	opacity: .2;
	position: absolute;
	top: 15px;
}

.slider-navigation.active {
	cursor: pointer;
	opacity: 1;
}

.slider-navigation.prev { left: 5px; }
.slider-navigation.next { right: 5px; }

.photo-slider .zoom-lens {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #fafafa;
	position: absolute;
	z-index: 2;
}

.photo-slider .zoom-result {
	position: absolute;
}

/*****/
/* The Modal (background) */
.zoom-modal {
	background-color: rgba(0, 0, 0, .8);
	height: 100%;
	left: 0;
	padding-top: 100px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.zoom-modal .inner {
	border-radius: 5px;
	height: 90%;
	margin: 0 auto;
	overflow: hidden;
	width: 85%;
}

/* Modal Content (image) */
.zoom-modal img {
	animation-name: zoom;
	animation-duration: 0.6s;
	display: block;
	margin: 0 auto;
	transition: 0.1s;
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.zoom-modal img.out {
	animation-name: zoom-out;
	animation-duration: 0.6s;
}

@keyframes zoom {
    from {
		transform:scale(0.4)
	}
    to {
		transform:scale(1)
	}
}

@keyframes zoom-out {
    from {
		transform:scale(1)
	}
    to {
		transform:scale(0)
	}
}

/* The Close Button */
a.zoom-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

a.zoom-close:hover,
a.zoom-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/*****/

/* Store
------------------------- */
.store-item-infobox {
	display: flex;
	gap: 15px;
	margin-bottom: 3em;
	margin-top: 1em;
}

.store-item-infobox .photo-slider {
	flex: 0 0 auto;
	width: 35%;
}

fieldset.app-info {
	margin-bottom: 10px;
}

fieldset.app-info dl {
	display: flex;
	margin: 8px;
}

fieldset.app-info dt,
fieldset.app-info dd {
	padding: 2px 0;
	margin: 0;
}

fieldset.app-info dt {
	flex: 0 0 auto;
	font-weight: bold;
	text-align: left;
    width: 150px;
}

fieldset.app-info dd {
	text-align: left;
}

fieldset.app-info ul {
	list-style-type: none;
	margin: 0;
}

fieldset.app-info li { margin-bottom: 4px; }

.app-button-bar {
	margin-top: 25px;
}

.app-button-bar a.button {
	font-size: 13px;
    padding: 8px 12px;
}

.app-models-bar input {
	display: none;
}

.app-models-bar label {
	border: 2px solid #fff;
	border-radius: 4px;
	cursor: pointer;
    display: inline-block;
    margin: 0 2px;
    padding: 2px;
}

.app-models-bar label span {
	display: block;
    width: 25px;
    height: 25px;
    border-radius: 2px;
}

.app-models-bar input:checked + label {
	border-color: #000;
}

.app-description { font-size: 1.1em; }

.store-item-related {
	margin-top: 3em;
}

.app-list {
	list-style-type: none;
	margin: 0;
	display: flex;
    flex-wrap: wrap;
    gap: 25px 1.85%;
}

.app-list li {
    width: 32%;
    background-color: #FCFDFD;
    border: 1px solid #d6e6f1;
	padding: 8px;
    vertical-align: top;
	box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.app-list li:after {
	content: "";
	clear: both;
	display: block;
}

.app-list li:hover {
	border-color: #a6c9e2;
    box-shadow: 0px 5px 20px 0px rgba(84,110,122,0.15);
    transform: translateY(-1px);
}

.app-list .thumbnail img {
    width: 100%;
    height: auto;
}

.app-list .thumbnail {
    height: 160px;
	margin-bottom: 15px;
    overflow: hidden;
}

.app-list .desc {
	clear: both;
	height: 4.2em;
	padding: 8px;
    margin-bottom: 5px;
    font-size: 1.05em;
    overflow: hidden;
    position: relative;
}

.app-list .desc:after {
	background: linear-gradient(to bottom, transparent, #fff);
	bottom: 0;
	content: "";
	height: 10px;
    left: 0;
	position: absolute;
    width: 100%;
}

.app-list .title {
	font-size: 1.2em;
    font-weight: bold;
    float: left;
    padding: 8px;
}

.app-list .rate {
    float: right;
    margin: 5px 4px 0 0;
}

.app-list .rate .stars {
	font-size: 16px;
}

.filterbar {
	margin-bottom: 10px;
	text-align: right;
}

.filterbar select {
	outline: none;
    padding: 6px;
}

.desc-blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 10px 0;
}

.desc-blocks > div {
	align-items: center;
	display: flex;
	flex: auto;
	gap: 10px;
	max-width: 100%;
	padding: 10px;
	position: relative;
	width: 350px;
}

.desc-blocks > div .icon {
	color: #012942;
	flex: none;
	font-size: 50px;
	text-align: center;
    width: 85px;
}

.app-news-box {
	background: #ebf3fb;
    padding: 2px 10px;
    margin: 10px;
    color: #007490;
    border-radius: 10px;
    line-height: 1.4em;
}

.app-news-box h2 {
	color: #8bb0bf;
	margin-top: 8px;
    margin-bottom: 10px;
}

.price-tag,
.version-tag {
	padding: 4px 10px;
    background: #1f8bbf;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
}

.block-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style-type: none;
	margin-top: 10px;
}

.block-list li {
	align-items: center;
	display: flex;
	gap: 10px;
	padding: 8px 0;
	text-align: left;
	width: 23.5%;
}

.block-list .fa,
.block-list .fab,
.block-list .far {
	color: #1e90ff;
	font-size: 1.8em;
	width: 28px;
}

.app-tags {
	margin-top: 10px;
	text-align: right;
}

.app-tag {
	background-position: 0 0;
	background-repeat: no-repeat;
	display: inline-block;
	margin-left: 5px;
}

.app-tag.tag-html5 {
	background-image: url('/static/valid-html5.gif');
	height: 24px;
	width: 103px;
}

/** Changelist
------------------------------- */
.blob-code-table {
	--diff-bg-code: #fff;
	--diff-bg-num: #fff;

	background-color: #fff;
	border: 1px solid #d1d9e0;
	border-collapse: collapse;
	border-radius: 6px;
	line-height: 1.3em;
	margin-bottom: 15px;
	overflow: hidden;
	width: 100%;
}

.blob-code-table > div {
	display: flex;
}

.blob-code-table > div > div {
	padding: 4px 7px;
}

.blob-code-table .file-header {
	background-color: #f6f8fa;
	border-bottom: 1px solid #d1d9e0;
	flex: auto;
	padding: 14px;
	user-select: none;
}

.blob-code-table .blob-row-hunk > div {
	color: #59636e;
	padding: 8px;
}

.blob-code-table .blob-num {
	background-color: var(--diff-bg-num);
	flex: none;
	text-align: center;
	user-select: none;
	width: 50px;
}

.blob-code-table .blob-code {
	background-color: var(--diff-bg-code);
	flex: auto;
	padding-left: 20px;
	position: relative;
}

.blob-code-inner {
	tab-size: 8;
	white-space: pre-wrap;
}

.blob-code-inner::before {
	content: "";
	left: 4px;
	position: absolute;
	top: 4px;
}

.blob-row-hunk {
	--diff-bg-code: #ddf4ff;
	--diff-bg-num: #caeeff;
}

.blob-row-addition {
	--diff-bg-code: #dafbe1;
	--diff-bg-num: #d1f8d9;
}

.blob-row-addition .blob-code-inner::before {
	content: "+";
}

.blob-row-deletion {
	--diff-bg-code: #ffebe9;
	--diff-bg-num: #ffcecb;
}

.blob-row-deletion .blob-code-inner::before {
	content: "-";
}

/** Comments
------------------------------- */
#comments > .ui-message {
	margin-bottom: 15px;
}

.comment-list {
	color: #000000;
}

.comment-list dl,
.comment-editor {
	align-items: flex-start;
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.comment-list dt,
.comment-editor dt {
	flex: 0 0 auto;
	text-align: center;
	width: 70px;
}

.comment-editor dt {
	text-align: right;
}

.comment-list .avatar {
	height: 50px;
	width: 50px;
}

.comment-editor .avatar {
	height: 32px;
	width: 32px;
}

.comment .ui-message {
	background-color: #e2e2e3;
    padding: 8px;
}

.comment-bubble {
	background-color: #f5f6f7;
	border-radius: 6px;
	padding: 10px;
	text-align: left;
}

.comment-container {
	flex: auto;
	position: relative;
}

.comment-container .comment:first-of-type {
	margin-top: 15px;
}

.comment-container .comment-editor {
	margin-top: 10px;
}

.comment-container .comment-editor dt {
	width: 40px;
}

.comment-container .ui-select {
	position: absolute;
	right: 12px;
	top: 10px;
}

.comment-container .ui-select > a {
	display: inline-block;
	font-size: 1.4em;
	text-align: center;
	width: 16px;
}

.comment-list .comment-text {
	min-height: 2em;
	overflow: hidden;
	padding-right: 30px;
}

.comment-list .comment-actions {
	float: right;
}

.comment-list .comment-footer {
	margin-top: 14px;
}

.comment-list .comment-footer .version-tag {
	margin-right: 5px;
	padding: 3px 6px;
}

.comment-list .pointer, .comment-list .pointer-inner {
	border-bottom: 8px dashed rgba(0, 0, 0, 0);
	border-left-width: 0;
	border-right: 8px solid;
	border-top: 8px dashed rgba(0, 0, 0, 0);
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}

.comment-list .pointer {
	border-right-color: #f5f6f7;
	left: -9px;
	top: 20px;
}

.comment-list .pointer-inner {
	border-right-color: #f5f6f7;
	bottom: -8px;
	left: 1px;
}

.comment-editor {
	position: relative;
}

.comment-editor textarea {
	background-color: #f5f6f7;
	border: none;
	border-radius: 6px;
	height: 30px;
	overflow: hidden;
	padding-right: 35px;
	resize: none;
	width: 100%;
}

.comment-editor textarea:focus {
	outline: none;
}

.comment-editor.active textarea {
	height: 70px;
	overflow: auto;
	resize: vertical;
}

.editor-counter {
	position: absolute;
	right: 15px;
	top: 5px;
}

.editor-buttons {
	margin-top: 5px;
	text-align: right;
}

.editor-buttons > * {
	display: inline-block;
	margin-left: 8px;
}

.editor-counter,
.editor-buttons {
	display: none;
}

.comment-editor.active .editor-counter,
.comment-editor.active .editor-buttons {
	display: block;
}

.editor-counter > svg {
	margin-bottom: -4px;
	overflow: visible;
	transform: rotate(-90deg);
}

.editor-counter > span {
	color: #e0245e;
	margin: 4px 2px 0 0;
	display: inline-block;
    vertical-align: top;
}

.editor-counter .safe {
	stroke: #1da1f2;
}

.editor-counter .warn {
	stroke: #ffad1f;
}

.editor-counter .danger {
	stroke: #e0245e;
}

.editor-counter .mask {
	stroke: #ccd6dd;
}

/* App Development
-------------------------------- */
.app-dev-list {
	padding-top: 20px;
}

.app-dev-item {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	box-sizing: border-box;
	display: table;
	margin-bottom: 12px;
	padding: 20px;
	width: 100%;
}

.app-dev-item .left-panel, .app-dev-item .right-panel {
	display: table-cell;
	vertical-align: top;
}

.app-dev-item .left-panel	{ width: 45%; }
.app-dev-item .right-panel	{ width: 55%; }

.app-dev-item .app-title {
	color: #208DC1;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 6px;
}

.app-dev-item .stat {
	display: inline-block;
	margin-top: 5px;
}

.app-dev-item .app-date {
	padding: 2px 0;
}

.progressbar {
	background: #e8e8e8;
	height: 15px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.progressbar-inner {
	background: #2BA4DB;
	position: absolute;
	left: 0;
	height: 100%;
	top: 0;
}

.progressbar,
.progressbar-inner {
	border-radius: 3px;
}


/* Footer
-------------------------------- */
.footer-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-list li {
	display: inline-block;
	margin: 0 6px;
}

.footer-list a:hover { text-decoration: underline; }

.vertical-list {
	margin: 0;
	padding: 0;
}

.vertical-list li {
	display: block;
	margin: 8px 0;
}

.vertical-list li.toleft {
	padding-left: 4%;
	text-align: left;
}

/* Forms
------------------------------- */
.simplyform dl {
	display: block;
	margin: 10px 0;
}

.simplyform dt {
	display: block;
	font-weight: bold;
	margin-bottom: 2px;
	text-align: left;
	width: auto;
}

.simplyform dt > div {
	font-size: 0.9em;
	font-weight: normal;
}

.simplyform dd {
	display: block;
	margin: 0;
	text-align: left;
}

#login-form {
	margin: 0 auto 0 auto;
	width: 85%;
}

.register-form {
	float: left;
	padding: 0 15px;
	width: 50%;
}

.simplyform .group {
	white-space: nowrap;
}

.simplyform select,
.simplyform .inputbox {
	margin: 0;
	overflow-x: hidden;
	width: 100%;
}

.simplyform .group select,
.simplyform .group .inputbox {
	width: auto;
}

#login-form .profile-avatar {
	margin: 5px;
}

.or-label {
	padding: 10px 0;
	position: relative;
}

.or-label:before,
.or-label:after {
	background-color: #000;
	content: "";
	height: 1px;
	position: absolute;
	top: 50%;
	width: calc(50% - 30px);
}

.or-label:before 	{ left: 0; }
.or-label:after 	{ right: 0; }

/* Ads Banners
------------------------------- */
.ads {
	text-align: center;
}

.job-grid .ads,
.app-list .ads {
	align-items: center;
	display: flex;
	justify-content: center;
}

.job-grid .ads ins,
.app-list .ads ins {
	width: 100%;
}

.store-item-infobox .ads {
	flex: auto;
	min-width: 250px;
}

.inner_ads {
	margin-bottom: 10px;
	padding: 5px;
}

.bottom-ads {
	margin-top: 20px;
}

.right-ads {
	height: 280px;
}

.top-ads {
	margin-bottom: 20px;
}

/*
------------------------------------------------ */
.ui-button.small .ui-button-text {
	font-size: 10px;
	line-height: 12px;
	padding: 3px 6px;
}

.navmenu .fa {
	font-size: 1.3em;
	margin-right: 6px;
	vertical-align: middle;
}

.button .fa-caret-down { margin-left: 5px; }

.document ol, .document p { font-size: 1.03em; }
.document ol { margin-left: 20px; }
.document ol li { margin-bottom: 5px; }

a.share-button {
	align-items: center;
	color: #fff;
	display: inline-flex;
	gap: 4px;
    margin: 5px 5px;
    padding: 6px 10px;
    text-decoration: none;
    text-transform: capitalize;
    vertical-align: middle;
}

.column-right a.share-button {
	display: block;
    margin: 8px auto;
}

.share-button .fab {
    font-size: 18px;
}

ol.number { list-style-type: decimal; }
ol.letter { list-style-type: lower-alpha; }

ol.number,
ol.letter {
	text-align: left;
}
ol.number li,
ol.letter li {
	margin: 5px 0;
}

.new-tag {
	color: red;
	font-size: smaller;
	font-style: italic;
	vertical-align: super;
}

.paypal-image {
	background: none;
	border: none;
	vertical-align: middle;
}

/* Memberlist */
.profile_card {
	float: left;
	line-height: 18px;
	margin-right: 12px;
	position: relative;
	width: 280px;
}

.section_title {
	display: block;
	line-height: 1.2em;
	padding: 8px 0px 8px 10px;
	position: relative;
	width: auto;
}

.profile_card .section_title {
	padding-left: 80px;
}

.profile_card .avatar {
	left: 10px;
	height: 60px;
	position: absolute;
	top: -20px;
	width: 60px;
}

.section_content {
	margin-top: 2px;
	padding: 5px 5px 5px 10px;
}

.profile_content {
	float: left;
	margin-right: 10px;
	position: relative;
	width: 450px;
}

.profile_card, .profile_content {
	margin-top: 10px;
}

.section_title h2, .section_content h2 {
	font-size: 13px;
	margin: 0;
}

.section_title h2 {
	color: white;
}

.comment-inputs dt {
	width: 20%;
}

.comment-inputs dd {
	margin-left: 21%;
}

.comment-inputs .inputbox {
	width: 98%;
}

/* Blog
---------------------------------------- */
.blog-container {
	font-size: 1.05em;
}

.blog-menu {
	text-align: left;
}

.no-entries {
	display: block;
	font-weight: bold;
	padding: 5px;
	text-align: center;
}

.post-header {
	border: 1px solid #CCC;
	border-width: 1px 0;
	font-size: 11px;
	line-height: 24px;
	margin: 12px 0 15px 0;
	padding: 8px;
}

.post-author, .post-date { display: inline; }

.post-author img {
	margin-right: 5px;
	width: 24px;
}

.post-footer {
	clear: left;
	padding-top: 5px;
}

.post-tags {
	border: 1px solid #CCC;
	font-style: italic;
	font-size: 11px;
	padding: 5px;
}

img.align-left {
	float: left;
	margin-right: 5px;
}

img.align-right {
	float: right;
	margin-left: 5px;
}

img.align-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Borders and Global
---------------------------------------- */
.inputbox, select, fieldset.polls .pollbar,
button, .ui-widget button, a.button, .pagination span a, .pagination span strong,
.share-button {
	border-radius: 2px;
}

.avatar img {
	height: auto;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 100%;

	transform: translate(-50%, -50%);
}

input, select, label input, button, .ui-widget button, a.button,
fieldset.quick-login input.inputbox, fieldset.submit-buttons, fieldset.submit-buttons input,
p.rules a, .stars span,
.list dl.image .lpreview, .list dl.icon .licon, .list dl.icon dt, .list dl.icon dd  {
	vertical-align: middle;
}

/* Cookie Law
---------------------------------------- */
.css-1ecp1on.css-1ecp1on,
.css-1hmrp2g.css-1hmrp2g {
	background-color: rgb(33 41 52 / 30%) !important;
}

a.qc-cmp2-persistent-link {
	color: #fff;
}

/* BBcodes
------------------------------- */
.bbcode-private {
	border: 1px solid #dadada;
    padding: 32px 5px 5px 5px;
    margin: 10px 5px;
	position: relative;
}

.bbcode-private:before {
	border-bottom: 1px solid #dadada;
	content: attr(data-title);
	color: #000;
	display: block;
	padding: 4px;
	position: absolute;
	left: 3px;
	top: 0;
	right: 3px;
	font-size: 0.9em;
    font-weight: bold;
	text-align: left;
}

/* Responsive
------------------------------- */
@media only screen and (max-width: 1024px) {
	.app-list li { width: 31%; }

	.column-right {
		display: none;
	}

	.column-center {
		margin: 0 !important;
	}

	.store-item-infobox .photo-slider {
		width: 45%;
	}

	.store-item-infobox .ads {
		display: none;
	}

	.ucp-navigation {
		width: 30%;
	}

	#cp-main {
		margin-left: 32%;
	}

	.cp-box {
		float: none;
		width: 100%;
	}
}

@media only screen and (max-width: 1004px) {
	.job-grid li {
		width: 40%;
	}

	.profile_card, .profile_content {
		display: block;
		float: none;
		margin-right: 0;
		width: auto;
	}
}

@media only screen and (max-width: 950px) {
	#toplinks {
		background-color: rgb(7, 85, 133);
		height: 60px;
		padding: 0 30px;
	}

	#header {
		display: none;
	}

	#page-content {
		padding-top: 90px;
	}

	.footer-social-buttons {
		display: block;
	}

	.product-layout .product {
		width: 33%;
	}
}

@media only screen and (max-width: 930px) {
	.column-right { display: none; }
	.column-center.rvisible { margin-right: 0; }
}

@media only screen and (max-width: 875px) {
	.list dl.image .lpreview {
		display: none;
	}
	
	.list dl.image dt {
		width: 60%;
	}

	ul.topiclist li.header dt {
		padding-right: 0;
	}
	
	.documentation-menu {
		float: none;
		margin-bottom: 10px;
		width: auto;
	}
	
	.documentation-menu.fixed {
		position: static;
	}
	
	.documentation-content { margin-left: 0; }

	.info-content {
		position: relative;
	}

	.post {
		flex-direction: column;
	}

	.postprofile {
		border-width: 0 0 1px 0;
		display: block;
		min-height: unset;
		width: auto;
	}

	.postprofile:after {
		content: "";
		clear: both;
		display: block;
	}

	.postprofile .rank-title {
		border-radius: 4px;
		font-size: 0.9em;
		padding: 3px 10px;
	}

	.postprofile dt.profile-avatar {
		float: left;
		margin-bottom: 12px;
	}

	.postprofile dd {
		display: none;
	}

	.postprofile dd.author-row,
	.postprofile dd.rank-row {
		display: block;
		margin: 0 0 0 60px;
		padding-top: 4px;
		text-align: left;
	}

	.postprofile .profile-avatar .avatar {
		height: 40px;
		width: 40px;
	}

	.postbody {
		margin-right: 0;
		margin-top: 10px;
	}

	.profile-icons {
		position: absolute;
		right: 17px;
		top: 17px;
	}

	.ucp-navigation {
		float: none;
		width: auto;
		margin-bottom: 10px;
		padding-bottom: 50px;
		position: relative;
	}

	.ucp-navigation,
	.ucp-navigation ul {
		list-style-type: none;
	}

	.ucp-navigation li {
		border: none !important;
		display: inline-block;
		margin-right: 8px;
	}

	.ucp-navigation > li > a::after {
		display: none;
	}

	.ucp-navigation ul {
		bottom: 0;
		left: 0;
		overflow-x: auto;
		position: absolute;
		text-align: center;
		width: 100%;
		white-space: nowrap;
	}

	.ucp-navigation:before,
	.ucp-navigation:after {
		bottom: 0;
		content: "";
		position: absolute;
		top: 50%;
		width: 25px;
		z-index: 2;
	}

	.ucp-navigation:before {
		background: linear-gradient(to right, #fff, transparent);
		left: 0;
	}

	.ucp-navigation:after {
		background: linear-gradient(to left, #fff, transparent);
		right: 0;
	}

	.ucp-navigation > li > a.active {
		color: #075585;
	}

	.ucp-navigation ul > li > a {
		padding-left: 12px;
	}

	.ucp-navigation ul > li > a.active {
		border-width: 0 0 2px 0;
	}

	#cp-main {
		margin-left: 0;
	}

	.block-list li {
		width: 32%;
	}
}

@media only screen and (max-width: 780px) {
	ul.topnav {
		background: #fff;
		bottom: 0;
		box-shadow: 5px 5px 10px #575757;
		font-size: 1.1em;
		left: -280px;
		overflow: auto;
		padding: 10px 5px;
		position: fixed;
		text-align: left;
		top: 0;
		transition: all 0.5s;
		width: 250px;
	}

	ul.topnav.active {
		left: 0;
	}

	ul.topnav,
	ul.topnav li {
		display: block;
		margin: 0;
	}

	ul.topnav li.language-selector {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	ul.topnav > li > a {
		font-size: 1em;
	}

	ul.topnav > li.responsive-menu-close,
	a.responsive-menu-launcher,
	.responsive-user-loginbox {
		display: block;
	}

	ul.topnav > li.responsive-menu-close > a {
		display: inline-block;
	}

	ul.topnav > li a {
		color: #4180a7;
		text-shadow: none;
	}

	ul.topnav li .subnav a {
		color: #000;
	}

	ul.topnav li a:hover,
	ul.topnav .subnav li a:hover {
		background: none;
		border-color: transparent;
		color: unset;
	}

	ul.topnav li ul.subnav {
		background: none;
		border: none;
		box-shadow: none;
		display: block;
		margin-left: 20px;
		position: relative;
		top: unset;
		width: auto;
	}

	#toplinks .topnav .fa {
		display: inline-block;
		font-size: 1.5em;
		margin-right: 8px;
	}

	.breadcrumbs {
		position: relative;
	}

	.breadcrumbs:after {
		background: linear-gradient(to right, transparent, #fff);
		content: "";
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
	}

	.breadcrumbs ul {
		font-size: 1.1em;
		padding: 4px;
		overflow: hidden;
		overflow-x: auto;
    	white-space: nowrap;
	}

	.breadcrumbs ul li {
		display: inline-block;
		float: none;
	}

	.app-list li {
		width: 48%;
	}

	.store-item-infobox,
	.store-item-infobox > div {
		display: block;
	}

	.store-item-infobox .photo-slider {
		margin: 0 auto 20px auto;
		padding: 0;
		width: 80%;
	}

	fieldset.app-info {
		padding: 10px;
	}

	.app-button-bar,
	#cp-menu {
		text-align: center;
	}

	.cp-box {
		display: block;
		width: auto;
	}

	.footer-cols {
		margin-left: 5%;
		margin-right: 5%;
	}

	.footer-col li {
		font-size: 1.1em;
		padding: 4px 0;
	}

	.info-text > div {
		margin-left: 0;
	}
}

@media only screen and (max-width: 660px) {
	.job-grid li,
	.app-list li {
		width: 100%;
	}

	.app-list li {
		display: block;
		float: none;
	}

	.filterbar {
		text-align: center;
	}
	
	.forum-image { display: none; }
	
	.list dd.rate  { display: none; }
	.list dd.info { width: 35%; }

	.register-form {
		float: none;
		width: 100%;
	}

	.block-list li {
		width: 47%;
	}

	.desc-blocks > div {
		width: auto;
	}

	.desc-blocks > div .icon {
		font-size: 40px;
		width: 60px;
	}
}

@media only screen and (max-width: 590px) {
	.page-inner {
		width: 90%;
	}

	.product-layout .product {
		width: 100%;
	}

	.tabs #last .icon,
	.tabs #download .icon,
	.tabs #rate .icon,
	.tabs #last-topics .icon,
	.tabs #last-interventions .icon {
		display: none;
	}

	.tab-icon,
	.active .tab-icon + span {
		display: block;
	}

	.tab-icon + span,
	.active .tab-icon {
		display: none;
	}

	.store-item-infobox .photo-slider,
	fieldset.app-info dd {
		width: auto;
	}

	.footer {
		background: #075585;
		padding: 10px 20px;
	}

	.footer-cols {
		flex-direction: column;
	}

	.footer-col li.title {
		text-align: center;
	}

	fieldset:not(.simple-fields) dl {
		margin: 0 0 10px 0;
		overflow: hidden;
	}

	fieldset:not(.simple-fields) dt,
	fieldset:not(.simple-fields) dd {
		display: block;
		float: none;
		margin: 2px;
		text-align: left;
		width: auto;
	}

	.list dl.icon .licon {
		width: 7%;
	}

	dd.lastpost {
		display: none;
	}

	.topiclist dt,
	.list dt {
		width: 70%;
	}

	dd.mark {
		width: 15%;
	}

	.topic-actions {
		height: auto;
	}

	.viewtopic-share-box,
	.topic-actions > * {
		float: none;
		margin-bottom: 10px;
		text-align: center;
	}

	#message-box {
		width: auto;
	}

	#smiley-box {
		float: none;
		max-height: 100px;
		text-align: center;
		width: auto;
	}

	.ucp-notify-container {
		padding: 10px;
	}

	.ucp-notify-container .check {
		width: 70px;
	}

	.exception-explain {
		flex-direction: column;
	}

	.exception-icon {
		flex: auto;
		width: auto;
	}
}

@media only screen and (max-width: 500px) {
	.simple-footer .footer-list {
		height: 3.8em;
		position: relative;
		text-align: center;
	}

	.simple-footer .responsive-copyright {
		bottom: 0;
		left: 50%;
		position: absolute;
		transform: translate(-50%);
	}
}

@media only screen and (max-width: 450px) {
	.list dl.icon .licon {
		width: 9%;
	}

	.topiclist dt,
	.list dt {
		width: 90%;
	}

	.ucp-main .topiclist dt,
	.ucp-main .list dt {
		width: 80%;
	}

	.ucp-main .list dl.icon .licon {
		display: none;
	}

	dd.foruminfo {
		display: none;
	}

	input.inputbox,
	input.inputbox.autowidth,
	textarea {
		width: 100%;
	}
}

@media only screen and (max-width: 425px) {
	#header {
		height: 140px;
	}

	#message-body, .popup-body {
		display: block;
		margin: 0 8px;
		width: auto;
	}

	.app-button-bar .primary {
		display: block;
		margin: 8px;
	}

	/*.desc-blocks > div {
		display: block;
		margin: 10px 0;
		min-height: 60px;
		text-align: left;
		width: auto;
	}
	
	.desc-blocks > div .icon {
		font-size: 40px;
	    position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}
	
	.desc-blocks > div .text {
		font-size: 1.1em;
		margin-left: 60px;
	}*/

	.tabs2 ul:first-child li {
		margin: 0 5px;
	}

	.tabs2 ul:first-child li:last-child {
		margin-right: 0;
	}
	
	.comment-list dl {
		flex-direction: column;
		gap: 10px;
	}

	.comment-list dt {
		width: auto;
	}

	.comment-list dt > * {
		display: inline-block;
		margin-right: 5px;
		vertical-align: middle;
	}

	.comment-list .pointer {
		display: none;
	}

	.comment-list .avatar {
		height: 32px;
		width: 32px;
	}

	.comment-container {
		width: 100%;
	}

	.comment-editor dt {
		display: none;
	}

	.comment-list .version-tag {
		position: absolute;
		right: 8px;
		top: -35px;
	}

	.doc-content ul,
	.doc-content ol {
		margin-left: 2em;
	}
}

@media only screen and (max-width: 375px) {
	fieldset.app-info dt {
		width: 38%;
	}

	fieldset.app-info dd {
		width: 60%;
	}

	.tabs2 ul:first-child li {
		margin: 0 5px 0 0;
	}

	.list dl.icon .licon {
		width: 12%;
	}

	.topiclist dt,
	.list dt {
		width: 85%;
	}

	.pagination,
	.pagination.rightside {
		float: none !important;
		text-align: center !important;
	}

	.pagination > span {
		display: block;
		margin-top: 5px;
	}
}

@media only screen and (max-width: 320px) {
	.tab-icon + span,
	.active .tab-icon + span {
		display: none;
	}

	.active .tab-icon {
		display: block;
	}
}
