/**
 * Stylesheet for the themex Theme
 *
 * @filename:  style.css
 * @author  :  The Mortal
 * @author  :  Lonestar ( Original Template Coding )
 * @version :  2.5
 * @license :  Copyright (c) 2024 realmdesignz.com
 * @notes   :  n/a
 *
 * --------------------------------------------------------------------------------
 * TABLE OF CONTENTS
 * --------------------------------------------------------------------------------
 *
 * XX. Reset
 * XX. Body
 * XX. Container
 */
 @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;600&family=Lato:wght@100;300;400;700&display=swap');

:root {

	/* -------------------------------------------------------------------------- */
	/*   PLACEHOLDER COLORS - REMOVE WHEN NO LONGER IN USE, AFTER YOUR CREATION   */
	/* -------------------------------------------------------------------------- */

	--placecolor: #000;
	--placecolor1: #FFFFFF;
	--placecolor2: #09526f;
	--placecolor3: #5aa35a;

	/**
	* XX. HoneyPot Colors
	* ----------------------------------------
	*/
	--_hp-charts-tick-color: #ccc;
	--_hp-charts-font-family: var(--typography-font-primary);
	--_hp-charts-font-size: 16;
	--_hp-charts-font-weight: 600;
	--_hp-charts-line-height: 1.2;
	--_hp-charts-bar-background-color: #044f6b;
	--_hp-charts-bar-border-color: #012e40;

	/**
	* XX. Colors
	* ----------------------------------------
	*/
	--color-background: #ffffff;
	--color-background-area:#fafafa;
	--color-font-color-primary: #000000;
	--color-font-color-primary-hover: #084c67;
	--color-navigation-item-text-hover: #d3d3d3;
	--color-navigation-hover-background-transparency: #333;
	--color-navigation-item-caret: #ffffff;
	--color-sub-menu-border: 1px solid #ffffff3f;
	--color-user-navigation-bullet: #084c67;
	--color-highlighted: #084c67;
	/**

	* XX. Typography
	* ----------------------------------------
	*/
	--typography-font-primary: "Lato", sans-serif;
	--typography-font-secundary: "Barlow Condensed", sans-serif;
	--typography-font-size: 16px;
	--typography-font-weight: 600;

	/**
	* XX. Layout
	* ----------------------------------------
	*/

	--site-width: 65%;
	--flex-gap: 10px;

	/**
	* XX. Elements
	* ----------------------------------------
	*/
	--element-background-color: #fffcfc;
	--element-border: 1px solid #888888;
	--element-border-focus: 1px solid #000000;
	--element-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3),
		inset 0 1px 1px rgba(255, 255, 255, 0.2);
	--element-color: #000000;
	--element-min-height: 30px;
	--element-padding: 4px 8px;
	--element-line-height: 1.42857143;

	--element--textarea-min-height: 100px;

	--element--divider-margin: 10px 5px 3px;
	--element--divider-border-top: 1px solid #808080;
	--element--divider-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);

	--element--progress-bar-background-color: #808080;
	--element--progress-bar-border: 1px solid #787878;
	--element--progress-bar-height: 30px;
	--element--progress-bar-inner-background-color: var(--evo--preset--color--light-honey);

	--element--private-message-meta-border: 1px solid #808080;

	--element--pagination-href-color: #ccc;
	--element--pagination-href-color--hover: #fff;

	/**
	* XX. Forum Styling
	* ----------------------------------------
	*/
	--forum--row-background-color: #9e9e9e;
	--forum--row-border: 1px solid #282828;

	--forum--cathead-background-color: #454545;
	--forum--cathead-border: 1px solid #282828;
	--forum--cathead-color: #fff;

	--forum-quick-reply-form-width: 100%;

	/**
	* XX. Navigation Styling
	*
	*/
	--navigation--background-color: #9e9e9e;

	/**
	* XX. Font-Awesome Icons in Article Coloring.
	* -----------------------------------------
	*/
	--fa--icon-colors: #1b1b1b;
}

/**
 * XX. Reset
 * ----------------------------------------
 */
*,
::before,
::after {
	margin: 0;
	padding: 0;
	border: none;
	outline: transparent;
	box-sizing: border-box;
}

/*
 * --- ----------------------------------------------
 *     Text Links Styles
 * --- ----------------------------------------------
 */
a {
	color: var(--color-font-color-primary);
	text-decoration: none;
}

a:hover {
	color: var(--color-font-color-primary-hover);
}

/**
 * XX. HTML Elements
 * ----------------------------------------
 */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-family: var(--typography-font-secundary);
	font-weight: 500;
	line-height: 1.2;
}

img {
	/*max-width: 100%;
	height: auto;*/
}

pre {
	color: inherit;
}

p {
	margin: 0;
	color: inherit;
}

hr,
.divider {
	display: block;
	margin: 10px 5px 3px;
	border-top: 1px solid #575757;
	height: 8px;
}

small,
.small {
	font-size: 80%;
}

.highlighted {
	color: var(--color-highlighted);
	font-weight: bold;
}

/**
 * XX. Helpers
 * ----------------------------------------
 */
.font-weight-bold {
	font-weight: 600;
}

/**
 * XX. Body
 * ----------------------------------------
 */

label {
	font-family: var(--typography-font-secundary);
	letter-spacing: 0px;
	line-height: 25px;
	color: var(--element-color);
}

input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input[type="file"],
select,
textarea {
	background-color: var(--element-background-color);
	border: var(--element-border);
	box-shadow: var(--element-box-shadow);
	color: var(--element-color);
	min-height: var(--element-min-height);
	padding: var(--element-padding);
	line-height: var(--element-line-height);
}

input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input[type="file"]:focus,
select:focus,
textarea:focus{
	border: var(--element-border-focus);
	-moz-box-shadow: 0 0 12px lightblue;
	-webkit-box-shadow: 0 0 12px lightblue;
	box-shadow: 0 0 12px lightblue;
}

textarea {
	min-height: var(--element--textarea-min-height);
	resize: vertical;
}

textarea.forum-post-text {
	width: 100%;
	height: 200px;
	padding: 10px 8px 0;
}

button,
input,
select,
textarea {
	background-color: var(--element-background-color);
	border: var(--element-border);
	box-shadow: var(--element-box-shadow);
	color: var(--element-color);
	border: 1px solid var(--element-border);
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

select {
	font-weight: 600;
}

/**
 * XX. Body
 * ----------------------------------------
 */
body {
	position: relative;
	background: url("../images/subtle_grunge.png");
	color: var(--color-font-color-primary);
	font-family: var(--typography-font-primary);
	font-size: var(--typography-font-size);
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
}

/**
 * XX. Container
 * ----------------------------------------
 */
.container {
	margin: 0 auto;
	max-width: 100%;
}

/**
 * XX. Header
 * ----------------------------------------
 */

/* ------------------------------- HEADER LOGO ------------------------------ */

.header-logo {
	position: relative;
	content: "";
	height: 100%;
	width: 100%;
	background: url(../images/logo/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* ------------------------------- /HEADER LOGO ------------------------------ */

.headbar {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	width: 100%;
	padding: 0 10px;
	background-color: var(--placecolor1);
	margin-bottom: 10px;
}

.cornercap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 26px;
	width: 60px;
	font-size: 12px;
	background-color: var(--placecolor2);
}

.cornercap a {
	height: 100%;
	width: 100%;
	display: inline-block;
	border-radius: 2px;
	padding-top: 3px;
	text-align: center;
	transition: 0.5s;
}

.cornercap a:focus,
.cornercap a:hover {
	background-color: var(--placecolor3);
}

/* HEADER ROW 1 START */

.head {
	width: 100%;
    position: relative;
    height: 130px;
    background: #FFFFFF;
    background: -moz-linear-gradient(top, #ffffff 0%, #dddddd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
    background: -webkit-linear-gradient(top, #ffffff 0%, #dddddd 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #dddddd 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #dddddd 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #dddddd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd', GradientType=0);
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #cccccc;
}
.head .cntheader {
	max-width: 800px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;/* or inline-flex */
    justify-content: space-between;
    margin: auto;
    text-align: center;
    align-items: center;
}
.cntlh {
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.cnttextos {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.chtxt1 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 16px;
    color: #004566;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.chtxt2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 16px;
    color: #9A0000;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.chtxt3 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 16px;
    color: #004566;
    text-shadow: black 0.1em 0.1em 0.2em;
}

/* -------------------------------------------------------------------------- */
/*                                MOBILE HEADER                               */
/* -------------------------------------------------------------------------- */

.mobile-header {
	position: relative;
}

.mobile-logo-holder {
	height: 250px;
	background-color: var(--placecolor1);
	margin-bottom: 10px;
}

/* ---------------------------- MOBILE HEADER END --------------------------- */

/**
 * XX. Content Container
 * ----------------------------------------
 */
.content-container {
	margin: auto;
	position: relative;
	background-color: var(--color-background-area);
	max-width: 1400px;
    width: 100%;
}

/**
 * XX. Content | Middle
 * ----------------------------------------
 */
.content-area {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	gap: var(--flex-gap);
	padding: 0 0 10px;
}

/**
 * XX. Footer
 * ----------------------------------------
 */

footer {
	height: 150px;
    background: #579e57;
    background: -moz-linear-gradient(top, #71c16c 0%, #579e57 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #71c16c), color-stop(100%, #579e57));
    background: -webkit-linear-gradient(top, #71c16c 0%, #579e57 100%);
    background: -o-linear-gradient(top, #71c16c 0%, #579e57 100%);
    background: -ms-linear-gradient(top, #71c16c 0%, #579e57 100%);
    background: linear-gradient(to bottom, #71c16c 0%, #579e57 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#71c16c', endColorstr='#579e57', GradientType=0);
    border-bottom: 1px solid #71c16c;
    border-top: 1px solid #579e57;
    margin: 0 auto;
    padding: 0 auto;
    width: 100%
}

footer .cntfooter {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    text-align: center;
}

.cftxt {
    width: 100%;
    text-align: center;
    margin: 10px 0px;
    font-size: 12px;
    color: #FFFFFF;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.footer-bottom {
    background: #FFFFFF;
    color: #808080;
    text-align: center;
}

.social_icon ul li a {
    border: 2px solid #afafaf;
    border-radius: 50%;
    color: #afafaf;
    display: block;
    font-size: 15px;
    height: 36px;
    padding: 5px 5px;
    width: 36px;
}

.social_icon li {
    display: inline-block;
    height: 36px;
    width: 36px;
    color: #afafaf;
    text-align: center;
    padding: 4px;
}

.social_icon ul li i.fas {
    background-color: transparent;
    font-size: 14px;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
}

.social_icon ul li a:hover {
    color: #004566;
}

.copyright-part {
    font-size: 12px;
    margin: 6px 0;
}

ion-icon {
    font-size: 24px;
}

/* -------------------------------------------------------------------------- */
/*                                MOBILE HEADER                               */
/* -------------------------------------------------------------------------- */

.mobile-footer {
	height: 200px;
	position: relative;
	background-color: var(--placecolor1);
	margin-top: 10px;
	padding: 20px;
}

/* ---------------------------- MOBILE HEADER END --------------------------- */

/**
 * XX. Navigation
 * ----------------------------------------
 */

.nav-holder {
	display: flex;
	justify-content: center;
	text-align: center;
    padding: 3px 10px;
    color: #FFF;
    background: #0a6183;
    /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: -moz-linear-gradient(top, #0a6183 0%, #084c67 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0a6183), color-stop(100%, #084c67));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #0a6183 0%, #084c67 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #0a6183 0%, #084c67 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #0a6183 0%, #084c67 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #0a6183 0%, #084c67 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0a6183', endColorstr='#084c67', GradientType=0);
    /* IE6-8 */
    border-bottom: 1px solid #0a6183;
    border-top: 1px solid #0a6183;
    z-index: 100;
}

.navca {
    height: 100%;
    width: 100%;
    position: relative;
}

.navca>.navca-header {
    display: none;
}

.navca>.navca-header>.navca-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px 10px 10px 10px;
    float: left;
}

.navca>.navca-btn {
    display: none;
}

.navca>.navca-links {
    display: inline;
    font-size: 18px;
}

.navca>.navca-links>a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #efefef;
}

.navca>.navca-links>a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
.navca>.navca-links>a.active {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}

.navca>#navca-check {
    display: none;
}

.navigation {
	position: relative;
	height: 40px;
	width: 100%;
	max-width: 732px;
}

.main-navigation-links-wrap {
	position: absolute;
	top: -1px;
	left: 50%;
	padding-top: 5px;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}

.main-navigation-links-wrap .main-navigation-link {
	position: relative;
}

.main-navigation-links-wrap .main-navigation-link .main-navigation-link-item {
	display: block;
	white-space: nowrap;
	padding: 4px 12px 9px;
	text-transform: uppercase;
	font-weight: 600;
}

.main-navigation-links-wrap .main-navigation-link .main-navigation-link-item .caret {
	height: 10px;
	vertical-align: baseline;
	color: var(--color-navigation-item-caret);
}

.main-navigation-links-wrap .main-navigation-link.active .main-navigation-link-item,
.main-navigation-links-wrap .main-navigation-link .main-navigation-link-item:hover,
.main-navigation-links-wrap .main-navigation-link:hover .main-navigation-link-item,
.sub-menu>.sub-menu-link>.sub-menu-link-item:hover {
	background-color: var(--color-navigation-item-background-hover);
	color: var(--color-navigation-item-text-hover);
}

.main-navigation-links-wrap .main-navigation-link .sub-menu {
	position: absolute;
	top: 120%;
	left: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
}

.main-navigation-links-wrap .main-navigation-link:hover .sub-menu {
	top: 100%;
	opacity: 1;
	visibility: visible;
}

.sub-menu {
	background-color: var(--placecolor2);
	border: var(--color-sub-menu-border);
}

.sub-menu>.sub-menu-link {
	list-style: none;
}

.sub-menu>.sub-menu-link>.sub-menu-link-item {
	display: block;
	padding: 10px;
	white-space: nowrap;
	font-weight: 600;
}

/*
 * XX. Mobile Nav
 *-----------------------------------------
 */

#mobile-navigation {
	background-color: var(--placecolor1);
	padding: 10px 0;
	margin-bottom: 10px;
}

.nav-head {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 53px;
	margin: 0 auto;
}

.m-menu.show {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 10px auto;
	background-color: #1a1a1a;
	border-top: 1px solid #222222;
	border-bottom: 1px solid #222222;
	border-left: 4px solid #222222;
	border-right: 4px solid #222222;
	flex-direction: column;
	overflow: hidden;
}

.m-menu {
	display: none;
}

.burgerbutton {
	display: flex;
	align-items: center;
	height: 50px;
	width: 75px;
	font-size: 45px;
	justify-content: center;
	margin: 0;
	color: var(--color-font-color-primary);
	background-color: var(--placecolor2);
}

.m-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m-menu li {
	border-top: 1px solid #222222;
	line-height: 50px;
}

.m-menu li a {
	position: relative;
	color: var(--links);
	text-decoration: none;
	font-size: 18px;
	padding-left: 10px;
	font-weight: 500;
	display: block;
	width: 100%;
	border-left: 3px solid transparent;
}

.sub-line {
	padding-left: 10px;
	border-left: 40px solid #222222;
}

/*=====  End of Mobile Navigation  ======*/

/*
 * XX. Mini Nav
 *-----------------------------------------
 */
.header-link-navigation {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.header-link-navigation .header-link-navigation-item {
	padding: 0 15px;
}

.minicap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 26px;
	font-size: 16px;
	background-color: var(--placecolor2);
}

.minicap a {
	height: 100%;
	display: inline-block;
	border-radius: 2px;
	text-align: center;
	transition: 0.5s;
}

.minicap a:focus,
.minicap a:hover {
	display: inline-block;
	background-color: var(--placecolor3);
}

/**
 * XX. Flex Column
 * ----------------------------------------
 */
.flex-column {
	display: flex;
	flex-direction: column;
	gap: var(--flex-gap);
}

.flex-column.sidebar-left,
.flex-column.sidebar-right {
	flex: 1 0 100%;
}

.flex-column.column-main {
	order: 1;
	flex: 1 0 100%;
}

.flex-column.sidebar-left {
	order: 2;
}

.flex-column.sidebar-right {
	order: 3;
}

/**
 * XX. Sidebar
 * ----------------------------------------
 */
.sidebar,
.sidebar-center {
	position: relative;
}

.sidebar .sidebar-title {
	font-size: var(--typography-font-size);
	color: #000000;
	font-weight: 600;
	position: absolute;
	top: 8px;
	margin-left: 8px;
}

.sidebar .sidebar-top {
	display: flex;
	align-items: center;
	position: relative;
	background: #ffffff;
	width: 100%;
	height: 40px;
	border: 1px solid #f0f0f0;
}

.sidebar .sidebar-content {
	position: relative;
	background-color: var(--placecolor1);
	z-index: 1;
	padding: 7px 10px 20px;
	font-size: var(--typography-font-size);
	border-bottom: 1px double #bbb;
}

/**
 * XX. Sidebar | Center Top
 * ----------------------------------------
 */

.sidebar-center .sidebar-top {
	position: relative;
	height: 40px;
	background-color: var(--placecolor1);
	margin-bottom: 4px;
}

.sidebar-center .sidebar-top .sidebar-title {
	position: absolute;
	top: 8px;
	left: 50%;
	color: #f1f1f1;
	font-size: var(--typography-font-size);
	font-weight: 600;
	text-transform: uppercase;
	transform: translateX(-50%);
}

/**
 * XX. Sidebar | Center Middle
 * ----------------------------------------
 */
.sidebar-center .sidebar-content {
	position: relative;
	padding: 20px 18px;
	background-color: var(--placecolor1);
	z-index: 1;
}

/**
 * XX. Article | Top
 * ----------------------------------------
 */
.article .article-top {
	position: relative;
	background-color: var(--placecolor1);
	margin-bottom: 4px;
	height: 40px;
}

.article .article-top .article-title {
	position: absolute;
	top: 8px;
	left: 10px;
	color: #f1f1f1;
	text-transform: uppercase;
}

/**
 * XX. Article | Content
 * ----------------------------------------
 */
.article .article-content {
	position: relative;
	background-color: var(--placecolor1);
	margin-bottom: 4px;
	padding: 10px;
	z-index: 1;
}

.article-meta {
	display: flex;
	justify-content: center;
	padding: 0;
}

.article .article-content .article-meta>span {
	margin-right: 12px;
	padding-right: 5px;
	font-weight: 600;
}

.article .article-bottom .article-meta .article-posted-on::before,
.article .article-bottom .article-meta .article-author::before,
.article .article-bottom .article-meta .article-comments::before,
.article .article-bottom .article-meta .article-score::before {
	content: "";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	margin: 0 5px;
	padding: 0 2px;
}

.article .article-bottom .article-meta .article-posted-on::before {
	content: "\f133";
	color: var(--fa--icon-colors);
}

.article .article-bottom .article-meta .article-author::before {
	content: "\f007";
	color: var(--fa--icon-colors);
}

.article .article-bottom .article-meta .article-comments::before {
	content: "\f075";
	color: var(--fa--icon-colors);
}

.article .article-bottom .article-meta .article-score::before {
	content: "\f005";
	color: var(--fa--icon-colors);
}

.article .article-content .article-read-more {
	display: flex;
	justify-content: flex-end;
	color: var(--placecolor3);
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 50px;
}

/**
 * XX. Article | Bottom
 * ----------------------------------------
 */

.article-bottom {
	position: relative;
	background-color: var(--placecolor1);
	padding: 10px 0;
}

/**
 * XX. Content
 * ----------------------------------------
 */

.table-wrap {
	position: relative;
	background-color: white;
	padding: 8px 10px 20px 10px;
}

.table-wrap1 {
	position: relative;
	background-image: linear-gradient(0deg, #ffffff 80%, #e9e9e9);
	border-radius: 10px;
	padding: 8px 10px 20px 10px;
	border: 1px solid rgb(189, 189, 189);
}

/**
 * XX. Copyright Popup
 * ----------------------------------------
 */
.themex-popup-modal-header {
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
}

.themex-popup-modal-description {
	color: var(--color-font-color-primary);
	font-size: var(--typography-font-size);
	font-weight: 600;
	padding-block: 20px;
	text-align: center;
}

.themex-popup-modal-item {
	list-style: square inside;
}

.themex-popup-modal-item::marker {
	color: rgb(116, 116, 116);
}

.themex-popup-modal-item .themex-popup-modal-title {
	color: var(--placecolor3);
	font-weight: 600;
	text-transform: uppercase;
}

.themex-popup-modal-item .themex-popup-modal-title::after {
	content: ":";
}

#themex-popup-btn {
	position: absolute;
	height: 26px;
	width: 112px;
	bottom: 2px;
	right: 10px;
}

#themex-popup-modal {
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
	width: 760px;
	padding: 50px;
	background-color: var(--placecolor1);
	border: 4px solid #8b8b8b;
	visibility: hidden;
	opacity: 0;
	font-family: var(--typography-font-primary);
	user-select: none;
}

#themex-popup-modal.active {
	top: 50%;
	visibility: visible;
	opacity: 1;
	transition: 0.5s;
}

.container.active {
	filter: blur(6px) opacity(63%) brightness(50%);
	pointer-events: none;
	user-select: none;
}

#themex-popup-modal a#popup-close {
	position: relative;
	padding: 5px 20px;
	display: inline-block;
	text-decoration: none;
	border-radius: 6px;
	border: 1px solid #ffffff3a;
	color: #fff;
	background-color: var(--placecolor3);
}

#themex-popup-modal a#popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
}

.profile-header .profile-header-cover {
	background: url(../images/themex-default-cover.jpg) center center / cover no-repeat !important;
}

.profile-header .profile-header-cover::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/stripe.png);
	/* background: url(../images/dot-small.png);
    box-shadow: var(--background-gradient-box-shadow); */
}
progress[value] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	width: 300px;
	margin: 0 10px;
	border-radius: 0.3em;
	background: lightgrey;
}
progress[value]::-webkit-progress-bar {
	border-radius: 0.3em;
	background: lightgrey;
}
progress[value]::-webkit-progress-value {
	border-radius: 0.3em;
	background: #0064b4;;
}
progress[value]::-moz-progress-bar {
	border-radius: 0.3em;
	background: #0064b4;;
}

/**
 *	memberlist_body.tpl
 */
/**
 * Members List
 */
#members-filter {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	padding: 10px;
	border-radius: 6px;
	background: linear-gradient(0deg, #202020 90%, #313131 100%);
	box-shadow: 0 0 2px 0px #000;
}

#members-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
	padding: 0;
}

#members-list .site-member {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 5fr;
	grid-template-areas: "user-avatar user-info";
	grid-gap: 2px;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(0deg, #202020 90%, #313131 100%);
	border: 1px solid #0d0c0c;
}

#members-list .site-member .site-member-avatar {
	grid-area: user-avatar;
	min-width: 90px;
	padding: 5px;
	display: grid;
	place-items: center;
}

#members-list .site-member .site-member-info {
	grid-area: user-info;
	display: flex;
	flex-direction: column;
	padding: 10px;
	overflow: hidden;
}

#members-list .site-member .site-member-info .users-name,
#members-list .site-member .site-member-info .users-activity {
	font-size: 1rem;
	z-index: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#members-list .site-member .site-member-info .users-name {
	font-weight: 600;
}

#members-list .site-member .site-member-info .users-name a {
	color: var(--auc-group-color);
}

#members-list .site-member .site-member-info .is-admin {
	z-index: 1;
}

#members-list .site-member .site-member-info .is-admin::after {
	content: "\f005";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: hsl(60, 77%, 58%);
	font-family: "Font Awesome 5 Free";
	font-weight: normal;
	font-size: 50px;
	text-shadow: -1px 4px 1px #000000;
	opacity: 0.1;
	z-index: -1;
}

@media (min-width: 576px) {
	#members-filter {
		flex-direction: row;
		justify-content: space-between;
	}

	#members-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	#members-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pagination-wrap.members-list {
	display: flex;
	justify-content: end;
}

.input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	gap: 10px;
}


/**
 * ---------------------------------------------
 * XX. Forums | Forumline
 * ---------------------------------------------
 */
 .forumline {
	border-spacing: 0;
	border-collapse: inherit;
	border: #000000 1px solid;
}

/**
 * ---------------------------------------------
 * XX. Forums | Row
 * ---------------------------------------------
 */

.row1,
.row2,
.row3 {
	background-color: var(--placecolor1);
	border:1px solid #252525;
	padding: 5px 10px;
	/* Top/Btm | Right/Left */
}


.cat,
.catHead {
	background-color: var(--placecolor1);
	border:1px solid #252525;
	white-space: nowrap;
	padding: 11px 10px 6px 10px;
	font-weight: 600;
}

.catHead a {
	color: var(--forum--cathead-color);
}

.catBottom {
	border: #252525 1px solid;
	color: #3d3d3d;
	white-space: nowrap;
	font-weight: 600;
	/*  padding: 3px 10px;*/
	padding: 0 6px;
	/* Top/Bottom | Left/Right */
	padding-top: 4px;
	padding-bottom: 4px;
}

.thHead {
	background-color: #121212;
	border-top: #000000 0px solid;
	border-bottom: #000000 0px solid;
	border-left: #000000 1px solid;
	border-right: #000000 1px solid;
	color: #f1f1f1;
	font-size: 16px;
	white-space: nowrap;
	height: 45px;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"],
.mainoption {
	background-color: var(--placecolor2);
	border: var(--element-border);
	box-shadow: var(--element-box-shadow);
	color: #ffffff;
	cursor: pointer;
	padding: 5px 10px;
}

.opacity-one {
	opacity: 1;
	transition: all 0.2s;
}

.toggle-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 15px 20px 15px 15px;
	cursor: pointer;
	background-color: rgba(17,17,17,0.6);
	z-index: 1000;
	font-size: 1.5em;
}
.toggle-menu a{
	color: #ffffff;
}
.toggle-menu a:hover{
	color: #ff0000;
}
.iconotm {
	transition: color 0.3s, transform 0.3s;
}
.iconotm:hover {
	transform: scale(1.2); /* Aumenta tamaño al hacer hover */
}
/**
 * ---------------------------------------------
 * XX. Members List
 * ---------------------------------------------
 */
.pagination-wrap {
	display: flex;
	justify-content: end;
	margin-top: 10px;
}

.pagination-wrap .pagination {
	display: flex;
	list-style: none;
}

.pagination-wrap .pagination .page-item {
	/* background: var(--forum--row-background-color); */
	background: url(../images/forums/bar.png) repeat-x;
	border: var(--forum--row-border);
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination-wrap .pagination .page-item:where(:hover, .active) {
	/* background-color: var(--color-accent); */
	background: url(../images/forums/bar2.png) repeat-x;
	height: 35px;
}

.pagination-wrap .pagination .page-item:where(:hover, .active) a,
.pagination-wrap .pagination .page-item.active a {
	color: var(--evo--preset--color--white);
	text-shadow: var(--themex--sidebar-title-text-shadow);
}

.pagination-wrap .pagination .page-item.active,
.pagination-wrap .pagination .page-item.disabled {
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
}

.pagination-wrap .pagination .page-item a {
	padding: 5px 10px;
}

/**
 * ---------------------------------------------
 * XX. Viewtopic
 * ---------------------------------------------
 */
.viewtopic .viewtopic-author-pane,
.viewtopic-post-area {
	padding: 20px;
	vertical-align: top;
}

.viewtopic .viewtopic-author-pane {
	width: 210px;
}

.viewtopic-post-area .viewtopic-meta-date {
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.viewtopic-top-margin {
	margin: 0;
}

.viewtopic-bottom-margin {
	margin-bottom: 5px;
}

.viewtopic-user-meta-more-options {
	display: flex;
	gap: 5px;
	padding-top: 7px;
	padding-right: 2px;
}

.viewtopic-user-meta-more-options .viewtopic-user-meta-more-options-popover {
	position: relative;
	cursor: pointer;
}

.viewtopic-user-meta-more-options-popover-buttons {
	display: none;
	flex-direction: column-reverse;
	position: absolute;
	bottom: -102px;
	left: 0;
}

.viewtopic-user-meta-more-options-popover.viewtopic-popover-active .viewtopic-user-meta-more-options-popover-buttons {
	display: flex;
	padding: 2px 2px 0 2px;
	background-color: var(--grid-row1);
	box-shadow: 0 2px 4px 0 #000;
}
/**
 * ---------------------------------------------
 * XX. Viewtopic Pagination Links
 * ---------------------------------------------
 */
.viewtopic-post-quick-reply-reveal.viewtopic-post-quick-reply-reveal--inactive {
	display: none;
}

/**
 * ---------------------------------------------
 * XX. Profile Navigation
 * ---------------------------------------------
 */
.profile-edit-navigation-items {
	position: sticky;
	top: 10px;
}

.profile-edit-navigation-items .profile-edit-navigation-item {
	padding: 0;
}

.profile-edit-navigation-items .profile-edit-navigation-item a {
	display: block;
	padding: 5px 10px;
	transition: all 0.5s ease-in-out;
}

.profile-edit-navigation-items .profile-edit-navigation-item:hover a,
.profile-edit-navigation-items .profile-edit-navigation-item.active a {
	/* color: #fff; */
	color: var(--color-font-color-primary-hover);
	text-shadow: var(--themex--sidebar-title-text-shadow);
	padding-left: 20px;
}

/**
 * ---------------------------------------------
 * XX. Profile Edit Inputs
 * ---------------------------------------------
 */
.profile-modification-area input[type="text"],
.profile-modification-area input[type="email"],
.profile-modification-area input[type="file"],
.profile-modification-area input[type="date"],
.profile-modification-area select {
	width: 100%;
}

.profile-modification-area .user-content-tab {
	display: none;
}

.profile-modification-area .user-content-tab.active {
	display: table;
}


/**
 * ---------------------------------------------
 * XX. Profile Grid
 * ---------------------------------------------
 */
.grid {
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 16px;
	align-items: start;
}



code {
	display: block;
	padding: 2px 10px 4px;
	background: #666666;
	border-top: 2px solid;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	overflow-x: auto;
	color: #1a1a1a;
	text-shadow: none;
}

.imgsoporte {
    max-width: 968px;
    width: 100%;
}
.center, .text-center {
	text-align: center;
}



/* ------------------------------------ - ----------------------------------- */
/* ------------------------------------ - ----------------------------------- */
/* -------------------------------------------------------------------------- */
/*                            MOBILE RESPONSIVE CSS                           */
/* -------------------------------------------------------------------------- */
/* ------------------------------------ - ----------------------------------- */
/* ------------------------------------ - ----------------------------------- */
/* ------------------------------------ - ----------------------------------- */

@media (max-width: 468px) {
    .head {
        position: relative;
        height: auto;
    }

    .head .cntheader {
        height: auto;
        flex-direction: column;
    }
}
@media (min-width: 540px) {
	.container {
		margin: auto;
		width: 100%;
	}

	.flex-column.sidebar-left,
	.flex-column.sidebar-right {
		flex: 1 0 275px;
	}

	.header-logo {
		background-size: unset;
	}
}

@media (min-width: 1024px) {

	#mobile-navigation {
		display: none;
	}

	.mobile-header {
		display: none;
	}

	.mobile-footer {
		display: none;
	}

	.header-link-navigation {
		display: flex;
		gap: 10px;
	}

	.headbar {
		height: 40px;
		padding: 0 10px;
		background-image: none;
	}
}

@media (min-width: 1280px) {
	.container {
		margin: 0 auto;
		min-width: 100%;
		max-width: var(--site-width);
	}

	.content-area {
		flex-wrap: nowrap;
		align-items: flex-start;
	}

	.flex-column.column-main {
		order: 2;
		flex: 1 1 100%;
	}

	.flex-column.sidebar-left {
		order: 1;
	}
}

@media (max-width:600px) {
    .navca>.navca-header {
        display: block;
    }

    .navca>.navca-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .navca>.navca-btn>label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
        cursor: pointer;
    }

    .navca>.navca-btn>label:hover,
    .navca #navca-check:checked~.navca-btn>label {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .navca>.navca-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
    }

    .navca>.navca-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #333;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 50px;
        left: 0px;
        z-index: 100;
    }

    .navca>.navca-links>a {
        display: block;
        width: 100%;
    }

    .navca>#navca-check:not(:checked)~.navca-links {
        height: 0px;
    }

    .navca>#navca-check:checked~.navca-links {
        height: auto;
        overflow-y: auto;
    }
	.imgsoporte {
        display: none;
    }
}