/* ===================================================================
   Rimnow Light ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Joomla 5 Template Stylesheet (v1.1)
   --------------------------------------------------------------------
   Lightweight, no Bootstrap, no jQuery, no external libraries.
   IMPORTANT: This file does NOT target any com_rssaggregator class:
   .rss-aggregator | .rss-grid | .rss-card | .rss-list | .rss-latest-page
   The component keeps its own design intact.
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

     body {
      font-family: "Alexandria", sans-serif !important;
      background: #408E8E;
background: linear-gradient(180deg, rgba(64, 142, 142, 1) 0%, rgba(111, 179, 179, 1) 40%, rgba(212, 237, 236, 1) 100%);
}
.container-header {
    background: #4c9594 !important;
}
/* ============================ Variables ============================ */
:root {
	/* Brand colors */
	--c-bg:           #ffffff;
	--c-text:         #1a1a1a;
	--c-muted:        #6b7280;
	--c-link:         #0d9488;
	--c-link-hover:   #115e59;
	--c-border:       #e5e7eb;

	/* Topbar */
	--topbar-bg:      #1f2937;
	--topbar-text:    #ffffff;
	--topbar-active:  #dc2626;
	--topbar-first:   #facc15;
	--topbar-hover:   rgba(255, 255, 255, 0.08);

	/* Hero gradient (kept as variables in case user wants to re-enable) */
	--hero-grad-1:    #0d9488;
	--hero-grad-2:    #15803d;

	/* Footer */
	--footer-bg:      #111827;
	--footer-text:    #d1d5db;
	--footer-muted:   #9ca3af;

	/* Layout */
	--container-max:  1320px;
	--gap:            1rem;
	--radius:         8px;

	/* Typography */
	--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "Tahoma",
		"Cairo", "Noto Sans Arabic", system-ui, Arial, sans-serif;

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
	--shadow:    0 2px 8px rgba(0, 0, 0, .08);

	/* Mobile breakpoint */
	--bp-mobile:      767px;
}

/* ============================ Dark theme overrides ============================ */
:root[data-theme="dark"] {
	--c-bg:           #0f172a;
	--c-text:         #e5e7eb;
	--c-muted:        #94a3b8;
	--c-link:         #5eead4;
	--c-link-hover:   #99f6e4;
	--c-border:       #1f2937;

	--topbar-bg:      #0b1220;
	--topbar-text:    #e5e7eb;
	--topbar-hover:   rgba(255, 255, 255, 0.06);

	--footer-bg:      #050a14;
	--footer-text:    #cbd5e1;
	--footer-muted:   #64748b;

	--shadow-sm: 0 1px 2px rgba(0, 0, 0, .35);
	--shadow:    0 2px 8px rgba(0, 0, 0, .45);
}

/* Smooth color transitions when switching theme */
body,
.site-footer,
.topbar,
.moduletable,
.moduletable.card,
.moduletable-card {
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* Dark-mode tweak for component-neutral module cards */
:root[data-theme="dark"] .moduletable.card,
:root[data-theme="dark"] .moduletable-card,
:root[data-theme="dark"] .layout-sidebar .moduletable {
	background: #111827;
	border-color: #1f2937;
}

/* ============================ Reset (minimal) ============================ */
*,
*::before,
*::after {box-sizing: border-box;padding: 0;margin: 0;}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-text);
 	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--c-link);
	text-decoration: none;
	transition: color .15s ease;
}
a:hover,
a:focus-visible { color: var(--c-link-hover); text-decoration: underline; }

button { font: inherit; cursor: pointer; }

/* ============================ Accessibility ============================ */
:focus-visible {
	outline: 2px solid var(--c-link);
	outline-offset: 2px;
	border-radius: 2px;
}

.skip-link {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	background: #fff;
	color: var(--c-text);
	padding: .5rem 1rem;
	z-index: 1000;
}
.skip-link:focus,
.skip-link:focus-visible {
	inset-inline-start: 0;
}

/* ============================ Container ============================ */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gap);
}

/* ============================ Topbar ============================ */
.topbar {
	background: var(--topbar-bg);
	color: var(--topbar-text);
	position: relative;
	z-index: 10;
	background: linear-gradient(90deg, #00555a 0%, #004d49 19%, #022430 78%, #011f2a 100%);
}

/* Horizontal scroll wrapper for many items on desktop */
.topbar > .container {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	display: flex;
	align-items: center;
	gap: .25rem;
}
.topbar > .container::-webkit-scrollbar { display: none; }

/* Menu wrapper takes available space; theme button stays at the end */
.topbar > .container > nav,
.topbar > .container > ul {
	flex: 1 1 auto;
	min-width: 0;
}

/* ============================ Theme toggle ============================ */
.theme-toggle {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	background: transparent;
	color: var(--topbar-text);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	cursor: pointer;
	margin-inline-start: auto;
	transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
	background: var(--topbar-hover);
	transform: scale(1.05);
}
.theme-toggle svg { width: 18px; height: 18px; }

/* Show the moon in light mode (click to go dark), sun in dark mode */
.theme-toggle .theme-icon-sun { display: none; }
.theme-toggle .theme-icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .theme-icon-sun { display: block; color: #facc15; }
:root[data-theme="dark"] .theme-toggle .theme-icon-moon { display: none; }

/* Hero-located theme toggle: visible on mobile only (default hidden) */
.theme-toggle-hero {
	display: none;
	background: #013e3e;
	border-color: #2f9797;
	color: #ffffff;
	margin-inline-start: 0;
}
.theme-toggle-hero:hover,
.theme-toggle-hero:focus-visible {
	background: #004d4a;
}

/* ----------------------------------------------------------------
   Neutralize Bootstrap-style menu wrapper that some mod_menu layouts
   output (e.g. <nav class="navbar navbar-expand-md"> + navbar-toggler
   + collapsible content). We have our OWN .menu-toggle so we hide the
   module's toggler and force the menu list to always be visible.
   ---------------------------------------------------------------- */
.topbar .navbar-toggler,
.topbar [class*="navbar-toggler"],
.topbar button[data-bs-toggle="collapse"] {
	display: none !important;
}
.topbar .navbar-collapse,
.topbar .collapse:not(.show) {
	display: block !important;
	width: 100%;
	height: auto !important;
	visibility: visible !important;
}
.topbar .navbar {
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	background: transparent;
}
	.lastnews {
    display: none;
}
.topbar ul {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.topbar li { flex: 0 0 auto; }

.topbar a {
	display: block;
	padding: 5px 17px;
	color: var(--topbar-text);
	text-decoration: none;
	font-size: 14px;
	line-height: 25px;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
li.nav-item.item-668 {
    background: #105edc;
}
.topbar a:hover,
.topbar a:focus-visible {
	background: var(--topbar-hover);
	color: var(--topbar-text);
	text-decoration: none;
}

/* Active item ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â red */
.topbar li.current > a,
.topbar li.active > a,
.topbar li[class*="current"] > a,
.topbar .nav-item.active > a,
.topbar a.nav-link.active,
.topbar a.active {
	/* color: var(--topbar-active); */
	/* font-weight: 600; */
	/* border-bottom-color: var(--topbar-active); */
}

/* First item ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â yellow (works with both flat and Bootstrap-wrapped menus) */
.topbar > .container > ul > li:first-child > a,
.topbar .navbar-nav > li:first-child > a,
.topbar .mod-menu > li:first-child > a,
.topbar .nav > li:first-child > a {
	/* color: var(--topbar-first); */
	/* font-weight: 600; */
}

/* ============================ Hamburger toggle ============================
   Hidden by default (desktop). Visible only on mobile inside the hero.
   ============================================================ */
.menu-toggle {
	display: none;
	background: #004d4a;
	border: 0;
	width: 41px;
	height: 41px;
	padding: 0;
	cursor: pointer;
	border-radius: 6px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
}
.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #ffe44d;
	margin: 3px 0;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================ Hero (logo + banner) ============================ */
.hero {
	/* background: linear-gradient(135deg, var(--hero-grad-1), var(--hero-grad-2)); */
	padding: 10px 0px 0px 0px;
	color: #fff;
}

.hero-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: var(--gap);
	flex-wrap: nowrap;
	width: 100%;
}

.logo {
	flex: 0 0 220px;
	width: 223px;
	max-width: 220px;
	display: inline-block;
	order: 1;
}
.logo img {
	width: 100%;
	max-width: 100%;
	max-height: 60px;
	object-fit: contain;
	display: block;
}

.hero-banner {
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	max-width: none;
	order: 1;
	text-align: start;
}


.hero-banner > *,
.hero-banner .moduletable,
.hero-banner .custom,
.hero-banner .banneritem,
.hero-banner img,
.hero-banner iframe,
.hero-banner ins {
	width: 95% !important;
	max-width: 100% !important;
	float: left;
}

.hero-banner img {
	/* height: auto !important; */
	/* object-fit: cover; */
}


/* ============================ Main layout ============================ */
.site-main {
	padding: 1.5rem 0;
	min-height: 50vh;
}

.main-top,
.main-bottom { margin-block: 1rem; }

.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
}

@media (min-width: 992px) {
	.layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
	[dir="rtl"] .layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

.layout-content,
.layout-sidebar { min-width: 0; }

/* ============================ Module cards (generic, no component conflict) ============================ */
.moduletable.card,
.moduletable-card,
.layout-sidebar .moduletable {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
	box-shadow: var(--shadow-sm);
}

.moduletable.card > h3,
.moduletable-card > h3,
.layout-sidebar .moduletable > h3 {
	margin: 0 0 .75rem;
	font-size: 1.1rem;
	color: var(--c-text);
	border-bottom: 2px solid var(--c-link);
	padding-bottom: .5rem;
	display: inline-block;
}

/* ============================ Footer ============================ */
.site-footer {
	background: var(--footer-bg);
	color: var(--footer-text);
	/* padding: 2rem 0 1rem; */
	/* margin-top: 3rem; */
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--topbar-first); }

.footer-modules {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
.bottom  {
    background: var(--topbar-bg);
    color: var(--topbar-text);
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #00555a 0%, #004d49 19%, #022430 78%, #011f2a 100%);
    padding: 9px;
    border-bottom-right-radius: 13px;
    border-bottom-left-radius: 15px;
}

.bottom li {
    float: right;
    list-style: none;
    /* margin-left: 28px; */
    /* margin-bottom: 19px; */
}
.bottom li a{
	display: block;
	overflow: hidden;
	padding: 1px 11px;
}
 
.copyright {
	text-align: center;
	margin: 1rem 0 0;
	font-size: .85rem;
	color: var(--footer-muted);
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ============================ Mobile ( <= 767px ) ============================ */
@media (max-width: 767px) {

	/* 1) Show hamburger button inside the hero */
	.menu-toggle {
		display: inline-flex;
	}

	/* Show the hero theme toggle on mobile, hide its absolute-positioned sibling */
	.theme-toggle-hero {
		display: inline-flex;
		order: 2;
	}
	.topbar.is-open .theme-toggle:not(.theme-toggle-hero) {
		display: none;
	}

.lastnews {
    display: inline-flex;
    order: 1;
    /* flex-wrap: wrap; */
    display: block !important;
}

.lastnews a {
    color: #f3f3f3;
    background: #c81414;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 4px;
    animation: blink 0.9s infinite;
    display: block;
    overflow: hidden;
}
	/* 2) Hide the dark menu bar by default; reveal when toggled */
	.topbar {
		display: none;
	}
	.topbar.is-open {
		display: block;
		position: fixed;
		width: 100%;
		top: 67px;
		/* background: #213535; */
		padding: 30px 19px;
	}

	/* When open, drop down vertically with full-width items (no overflow / no hidden items) */
	.topbar.is-open > .container {
		overflow: visible;
		padding-inline: 0;
		max-width: 100%;
		display: block;
	}
	.topbar.is-open .theme-toggle {
		position: absolute;
		top: 8px;
		inset-inline-end: 12px;
		z-index: 11;
	}
	.topbar.is-open .navbar,
	.topbar.is-open .navbar-collapse {
		display: block !important;
		width: 100%;
	}
	.topbar.is-open ul {
		flex-direction: row;
		flex-wrap: wrap;
		width: unset;
		float: right;
	}
	.topbar.is-open li {
		flex: 0 0 29%;
		/* width: 35%; */
		/* float: right; */
		background: unset;
	}
	li.nav-item.item-668 a {
    background: #105edc;
    color: #fff;
}
	.topbar.is-open a {
		padding: 6px;
		border: 1px solid rgba(255, 255, 255, .06);
		border-bottom-width: 1px;
		margin: 5px;
		border-radius: 13px;
		/* padding-right: 15px; */
		text-align: center;
	}
	 
  .topbar.is-open {
 background: linear-gradient(180deg, #438f8f 0%, #296367 100%);
 border-bottom-left-radius: 35px;
 border-bottom-right-radius: 35px;
 padding-bottom: 49px;
 }

  .topbar.is-open a {
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    /* min-height: 66px; */
    padding: 5px 3px;
    color: #066069;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.09), rgb(0 0 0 / 3%));
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%), 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: 0.22s ease;
    background: #f2ffff;
    border: 1px solid #e9ffff63;
  }
 
  
  .bottom  {
 
}

.bottom li {
    float: right;
    list-style: none;
    margin-left: 28px;
    /* margin-bottom: 19px; */
    margin: 5px;
    border: 1px solid #235452;
    display: block;
    /* padding: 1px 11px; */
    border-radius: 10px;
}
.bottom li a{
	font-size:13px;
	/* padding: 0; */
}
 .nav-item.item-274 a:before{
	 display:none;
  }
.bottom .nav-item.item-274 a{
	padding-right: 0px !important;
}
	.nav-item.item-274 a {
		/* padding-right: 20px !important; */
		color: #ffea9d !important;
		position: relative;
	}
	.topbar.is-open li.current > a,
	.topbar.is-open li.active > a,
	.topbar.is-open li[class*="current"] > a,
	.topbar.is-open .nav-item.active > a,
	.topbar.is-open a.nav-link.active {
		border-bottom-color: rgba(255, 255, 255, .06);
		/* background: rgba(220, 38, 38, .18); */
	}

	/* 3) Hero: hide banner, keep logo + hamburger on the same line */
	.hero-banner { display: none; }
	.hero-inner {
		justify-content: space-between;
		flex-wrap: nowrap;
		text-align: start;
	}
	.logo {
		flex: 0 0 160px;
		width: 160px;
		max-width: 160px;
		order: 1;
	}
	.menu-toggle {
		order: 3;
	}

	/* In RTL, DOM order [logo, toggle] places toggle visually on the LEFT
	   of logo (Arabic convention). In LTR, toggle ends up on the right. */
}

/* ============================ Desktop ( >= 768px ) ============================ */
@media (min-width: 768px) {
	/* Force-hide the hamburger on every desktop case */
	.menu-toggle {
		display: none !important;
	}
	/* Hide the mobile-only hero theme toggle on desktop */
	.theme-toggle-hero {
		display: none !important;
	}
	/* Make sure topbar is always visible on desktop, even after JS toggling */
	.topbar {
		display: block;
	}
}

/* ============================ Smaller phones ============================ */
@media (max-width: 480px) {
	.topbar.is-open a {/* padding: .8rem 1rem; */font-size: .9rem;}
	.logo img {
	width: 100%;
	max-width: 100%;
	max-height: 60px;
	object-fit: contain;
	display: block;
}
	.site-main { padding: 1rem 0; }
}

/* ============================ Print ============================ */
@media print {
	.topbar,
	.hero-banner,
	.site-footer,
	.menu-toggle,
	.skip-link { display: none; }
	body { color: #000; background: #fff; }
	a { color: #000; text-decoration: underline; }
}

/* ============================ Reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}



div#mod-custom110 img {
    width: 100%;
}

.nav-item.item-274 a {
    position: relative;
    color: #c4fffe;
    /* border-bottom: 1px solid #00e8ff; */
    background: #013439;
    background: #024E56;
    background: linear-gradient(
306deg, rgb(12 58 63) 4%, rgb(2 47 51) 35%);
}

.nav-item.item-274 a:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ff6a00;
    z-index: 1;
    top: 10px;
    right: -5px;
    border-radius: 50%;
    animation: blink 1s infinite;
    /* border-bottom: 2px solid #ddd; */
}
.bottom .nav-item a:hover {background: #1da19f;/* display: block; *//* margin-left: 28px; */text-decoration: none;}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}
 .bottom .nav-item.item-274 a:before{
	 display:none;
 }
.com-users-login.login,
.com-users-login {
	width: min(100%, 470px);
	max-width: 470px;
	margin: 3rem auto;
	padding: 34px;
	direction: rtl;
	background: rgba(255, 255, 255, .93);
	border: 1px solid rgba(13, 148, 136, .16);
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(15, 118, 110, .20);
	backdrop-filter: blur(14px);
	position: relative;
	overflow: hidden;
}

 

.com-users-login.login::after,
 

.com-users-login__form,
.com-users-login__form.well,
.com-users-login .well,
.com-users-login .form-horizontal {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.com-users-login__form fieldset,
.com-users-login fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

.com-users-login .control-group {
	display: block;
	margin: 0 0 18px;
}

.com-users-login .control-label {
	display: block;
	width: auto;
	float: none;
	text-align: start;
	margin: 0 0 8px;
	padding: 0;
}

.com-users-login .control-label label,
.com-users-login label {
	display: block;
	color: var(--c-text);
	font-size: 14px;
	font-weight: 700;
	margin: 0;
}

.com-users-login .control-label .star,
.com-users-login .star {
	color: #dc2626;
	margin-inline-start: 4px;
	font-weight: 800;
}

.com-users-login .form-control-feedback {
	display: block;
	color: #dc2626;
	font-size: 12px;
	font-weight: 600;
	margin-top: 6px;
}

.com-users-login .controls {
	width: 100%;
}

.com-users-login input[type="text"],
.com-users-login input[type="password"],
.com-users-login .form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 16px;
	font-family: inherit;
	font-size: 15px;
	color: var(--c-text);
	background: #fff;
	border: 1px solid rgba(13, 148, 136, .18);
	border-radius: 16px;
	outline: none;
	box-shadow: 0 8px 22px rgba(15, 118, 110, .06);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
	box-sizing: border-box;
}

.com-users-login input:hover,
.com-users-login .form-control:hover {
	border-color: rgba(13, 148, 136, .38);
}

.com-users-login input:focus,
.com-users-login .form-control:focus,
.com-users-login .form-control:focus-visible {
	border-color: var(--c-link);
	box-shadow: 0 0 0 4px rgba(13, 148, 136, .14);
	transform: translateY(-1px);
}

.com-users-login .has-danger input,
.com-users-login .has-danger .form-control,
.com-users-login .invalid,
.com-users-login .form-control.invalid,
.com-users-login .form-control-danger {
	border-color: rgba(220, 38, 38, .58) !important;
	background: #fffafa;
}

.com-users-login .has-danger input:focus,
.com-users-login .has-danger .form-control:focus,
.com-users-login .form-control-danger:focus {
	box-shadow: 0 0 0 4px rgba(220, 38, 38, .13);
}

/* ÃƒËœÃ‚Â¥ÃƒËœÃ‚ÂµÃƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â§ÃƒËœÃ‚Â­ ÃƒËœÃ‚Â²ÃƒËœÃ‚Â± ÃƒËœÃ‚Â¥ÃƒËœÃ‚Â¸Ãƒâ„¢Ã¢â‚¬Â¡ÃƒËœÃ‚Â§ÃƒËœÃ‚Â± Ãƒâ„¢Ã†â€™Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â© ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â±Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â± */
.com-users-login .password-group .input-group {
	display: flex;
	align-items: stretch;
	gap: 8px;
	width: 100%;
	position: static;
}

.com-users-login .password-group .form-control {
	flex: 1 1 auto;
	padding-inline-end: 16px;
}

.com-users-login .input-password-toggle {
	position: static;
	width: 54px;
	min-width: 54px;
	height: 50px;
	margin: 0;
	padding: 0;
	background: #f7fbfb;
	border: 1px solid rgba(13, 148, 136, .18);
	border-radius: 16px;
	color: var(--c-link);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	transition: background-color .2s ease, transform .2s ease, color .2s ease;
}

.com-users-login .input-password-toggle:hover,
.com-users-login .input-password-toggle:focus-visible {
	background: #ecf8f6;
	color: var(--c-link-hover);
	transform: translateY(-1px);
}

.com-users-login .input-password-toggle [class*="icon-"] {
	font-size: 18px;
	line-height: 1;
}

.com-users-login__remember {
	margin: 2px 0 20px;
}

.com-users-login__remember .form-check,
.com-users-login .form-check {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
}

.com-users-login__remember .form-check-input,
.com-users-login .form-check-input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--c-link);
	cursor: pointer;
	flex-shrink: 0;
}

.com-users-login__remember .form-check-label,
.com-users-login .form-check-label {
	color: var(--c-muted);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
	margin: 0;
}

.com-users-login__submit {
	margin: 0 0 12px;
}

.com-users-login__submit .controls {
	width: 100%;
}

.com-users-login .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 50px;
	height: auto;
	padding: 13px 18px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	border: 1px solid transparent;
	border-radius: 16px;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.com-users-login .btn:hover,
.com-users-login .btn:focus-visible {
	transform: translateY(-2px);
	text-decoration: none;
}

.com-users-login .btn-primary {
	background: linear-gradient(135deg, var(--c-link), var(--c-link-hover));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 14px 30px rgba(13, 148, 136, .28);
}

.com-users-login .btn-primary:hover,
.com-users-login .btn-primary:focus-visible {
	background: linear-gradient(135deg, var(--c-link-hover), #0f4f4a);
	box-shadow: 0 18px 36px rgba(13, 148, 136, .34);
}

.com-users-login .btn-secondary,
.com-users-login .plg_system_webauthn_login_button {
	background: #eef8f7;
	color: var(--c-link-hover);
	border-color: rgba(13, 148, 136, .16);
	box-shadow: none;
}

.com-users-login .btn-secondary:hover,
.com-users-login .btn-secondary:focus-visible,
.com-users-login .plg_system_webauthn_login_button:hover,
.com-users-login .plg_system_webauthn_login_button:focus-visible {
	background: #e3f4f2;
	border-color: rgba(13, 148, 136, .28);
}

.com-users-login .plg_system_webauthn_login_button svg,
.com-users-login .btn svg {
	width: 23px !important;
	height: 23px !important;
	flex-shrink: 0;
	display: inline-block;
	fill: currentColor;
	vertical-align: middle;
}

/* ÃƒËœÃ‚Â±Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â§ÃƒËœÃ‚Â¨ÃƒËœÃ‚Â· ÃƒËœÃ‚Â§ÃƒËœÃ‚Â³ÃƒËœÃ‚ÂªÃƒËœÃ‚Â±ÃƒËœÃ‚Â¬ÃƒËœÃ‚Â§ÃƒËœÃ‚Â¹ Ãƒâ„¢Ã†â€™Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â© ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â±Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â± Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â§ÃƒËœÃ‚Â³Ãƒâ„¢Ã¢â‚¬Â¦ ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â³ÃƒËœÃ‚ÂªÃƒËœÃ‚Â®ÃƒËœÃ‚Â¯Ãƒâ„¢Ã¢â‚¬Â¦ */
.com-users-login__options {
	list-style: none;
	margin: 22px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid rgba(13, 148, 136, .16);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.com-users-login__options .list-group-item {
	display: block;
	padding: 12px 14px;
	color: var(--c-link-hover);
	background: #f7fbfb;
	border: 1px solid rgba(13, 148, 136, .16);
	border-radius: 14px;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.com-users-login__options .list-group-item:hover,
.com-users-login__options .list-group-item:focus-visible {
	background: #e8f7f5;
	color: var(--c-link);
	border-color: rgba(13, 148, 136, .30);
	transform: translateY(-1px);
	text-decoration: none;
}

.com-users-login .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ÃƒËœÃ‚Â®Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã‚ÂÃƒâ„¢Ã…Â ÃƒËœÃ‚Â© ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚ÂµÃƒâ„¢Ã‚ÂÃƒËœÃ‚Â­ÃƒËœÃ‚Â© ÃƒËœÃ‚Â¹Ãƒâ„¢Ã¢â‚¬Â ÃƒËœÃ‚Â¯ Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â¬Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â¯ ÃƒËœÃ‚ÂµÃƒâ„¢Ã‚ÂÃƒËœÃ‚Â­ÃƒËœÃ‚Â© ÃƒËœÃ‚ÂªÃƒËœÃ‚Â³ÃƒËœÃ‚Â¬Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Å¾ ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â¯ÃƒËœÃ‚Â®Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã¢â‚¬Å¾ */
body:has(.com-users-login) .site-main {
	padding-block: 2rem;
}

body:has(.com-users-login) .layout {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 65vh;
}

/* ============ Dark mode ============ */
:root[data-theme="dark"] .com-users-login.login,
:root[data-theme="dark"] .com-users-login {
	background: rgba(17, 24, 39, .94);
	border-color: #1f2937;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .40);
}

:root[data-theme="dark"] .com-users-login input[type="text"],
:root[data-theme="dark"] .com-users-login input[type="password"],
:root[data-theme="dark"] .com-users-login .form-control {
	background: #0f172a;
	color: #e5e7eb;
	border-color: #1f2937;
	box-shadow: none;
}

:root[data-theme="dark"] .com-users-login input:hover,
:root[data-theme="dark"] .com-users-login .form-control:hover {
	border-color: #374151;
}

:root[data-theme="dark"] .com-users-login input:focus,
:root[data-theme="dark"] .com-users-login .form-control:focus {
	border-color: #5eead4;
	box-shadow: 0 0 0 4px rgba(94, 234, 212, .16);
}

:root[data-theme="dark"] .com-users-login .has-danger input,
:root[data-theme="dark"] .com-users-login .has-danger .form-control,
:root[data-theme="dark"] .com-users-login .form-control.invalid {
	background: rgba(220, 38, 38, .08);
	border-color: #ef4444 !important;
}

:root[data-theme="dark"] .com-users-login .input-password-toggle,
:root[data-theme="dark"] .com-users-login .btn-secondary,
:root[data-theme="dark"] .com-users-login .plg_system_webauthn_login_button {
	background: #1f2937;
	color: #e5e7eb;
	border-color: #374151;
}

:root[data-theme="dark"] .com-users-login .input-password-toggle:hover,
:root[data-theme="dark"] .com-users-login .btn-secondary:hover,
:root[data-theme="dark"] .com-users-login .plg_system_webauthn_login_button:hover {
	background: #374151;
	border-color: #4b5563;
}

:root[data-theme="dark"] .com-users-login__options {
	border-top-color: #1f2937;
}

:root[data-theme="dark"] .com-users-login__options .list-group-item {
	background: transparent;
	border-color: #1f2937;
	color: #5eead4;
}

:root[data-theme="dark"] .com-users-login__options .list-group-item:hover {
	background: #5eead4;
	color: #0f172a;
	border-color: #5eead4;
}

/* ============ Responsive ============ */
@media (max-width: 600px) {
	body:has(.com-users-login) .layout {
		align-items: flex-start;
		min-height: auto;
	}

	.com-users-login.login,
	.com-users-login {
		margin: 1.5rem auto;
		padding: 26px 18px;
		border-radius: 22px;
	}

	.com-users-login.login::before,
	.com-users-login::before {
		font-size: 24px;
	}
 
	.com-users-login__options {
		grid-template-columns: 1fr;
	}

	.com-users-login .password-group .input-group {
		gap: 6px;
	}
}
body.site.option-com_rssaggregator.view-favorites.itemid-566.dir-rtl .site-main {
	padding: 1.5rem 0;
	min-height: 50vh;
	background: #f1f5f5;
}
.fr .rss-card-title {
    float: left;
}
div#mod-custom113 {
    background: #c60303;
    text-align: center;
    /* padding: 7px; */
    color: #fff;
    /* animation: blink 1s infinite; */
    border-radius: 15px;
    width: 50%;
    margin: 0 auto;
}

div#mod-custom113 a {
    color: #fff;
    display: block;
    padding: 5px;
    animation: blink 1s infinite;
   
}
button.menu-toggle {
    animation: blink 3s infinite;
}
div#mod-custom113 a:hover {
    background: #ff4747;
}


.itemid-732 .com-content-article__body h1{
    clear: both;
    width: 100%;
    background: #eee;
    padding: 5px 15px;
    font-size: 19px;
    margin: 25px 0px;
}

.itemid-732 .com-content-article__body p a {
    color: #333333;
    display: block;
    padding: 3px 12px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    /* margin: 9px; */
    text-decoration: none;
    line-height: 29px;
    font-size: 14px;
}

.itemid-732 .com-content-article__body p {
    float: right;
    display: block;
    margin: 6px;
}
 .com-content-article.item-page {
    background: #fff;
    border-radius: 26px;
  padding: 20px;
}
.itemid-732 .com-content-article.item-page {
   
  padding: 4px 0px 50px 0px;
}

.itemid-732 .com-content-article__body p a:hover {
    background: #fff3ec;
    color: red;
}