/*
 * ❤ PROJECT NIRAK ❤ MMXXVI.I
 *
 * Copyright (c) 2026
 * Made with heart ❤ and much coffee ☕ by Project Nirak
 *
 * @version   Nirak 2026.1 - 2.0.1
 * @author    Project Nirak - Nikolaus Flamann <development@nirak.at>
 * @license   Nirak Custom License (NCL) v1.1 - https://nirak.at/license/ncl
 * @copyright Modification Copyright (c) OpenDXP (https://www.opendxp.ch)
 * @license   https://www.gnu.org/licenses/gpl-3.0.html  GNU General Public License version 3 (GPLv3)
 */

:root {
	/** no Dark and Light Mode Support yet
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	color-scheme: light dark;

	/** Global Font Settings
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	--nirak-font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--nirak-brand-font-family: "Playfair Display", Georgia, "Times New Roman", serif;

	/** Global Color Settings Outside Menu, Content Area and Footer
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	--nirak-bg: rgb(0, 0, 0);
	--nirak-text: rgb(255, 255, 255);
	--nirak-link: rgb(150, 150, 150);
	--nirak-link-hover: rgb(85, 85, 85);

	/** All for the Header Menu
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	--nirak-header-bg: rgb(0, 0, 0);
	--nirak-header-text: rgb(151, 150, 150);
	--nirak-header-link: rgb(255, 255, 255);
	--nirak-header-active: rgb(180, 180, 180);
	--nirak-header-hover: rgb(177, 177, 177);
	--nirak-header-hover-bg: rgb(120, 120, 120);

	/** All for the Side Navigation Menu
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	--nirak-nav-aside-bg: rgba(34, 29, 29, 0.8);
	--nirak-nav-aside-text: rgb(230, 230, 230);
	--nirak-nav-aside-link: rgb(210, 210, 210);
	--nirak-nav-aside-active: rgb(200, 200, 200);
	--nirak-nav-aside-active-bg: rgb(67, 67, 67);
	--nirak-nav-aside-hover: rgb(130, 130, 130);
	--nirak-nav-aside-hover-bg: rgba(34, 29, 29, 0.9);

	/** All for the Content Area
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	--nirak-content-bg-transparent: rgba(209, 209, 209, 0.9); /** Content Transparent Background */
	--nirak-content-bg: rgb(255, 255, 255); /** Content Solid Background (only if flag is set) */
	--nirak-content-text: rgb(0, 0, 0);
	--nirak-content-link: rgb(0, 0, 0);
	--nirak-content-link-hover: rgb(255, 0, 0);
	
	--nirak-alert-border: rgb(0, 0, 0);

	--nirak-table-thead-bg: rgb(211, 211, 211);
	--nirak-table-odd: rgb(195, 195, 195);
	--nirak-table-even: rgb(211, 211, 211);
	--nirak-table-text: rgb(0, 0, 0);
	--nirak-table-border: rgb(0, 0, 0);

	--nirak-accordion-header-bg: rgb(211, 211, 211);
	--nirak-accordion-header-text: rgb(0, 0, 0);
	--nirak-accordion-body-bg: rgb(255, 255, 255);
	--nirak-accordion-body-text: rgb(0, 0, 0);
	--nirak-accordion-border: rgb(0, 0, 0);

	/** All for the Footer
	 * -----------------------------------------------------------------------------------------------------------------
	 */
	--nirak-footer-bg: rgba(0, 0, 0, 0.85);
	--nirak-footer-text: rgba(255, 255, 255, 0.80);
	--nirak-footer-link: rgba(255, 255, 255, 0.80);
}


/* Global Styles
 * ---------------------------------------------------------------------------------------------------------------------
 */

html {
	position: relative;
	min-height: 100%;
}

body {
	font-family: var(--nirak-font-family), serif;
	background: var(--nirak-bg);
	color: var(--nirak-text);
}

h1,
.navbar-brand {
	font-family: var(--nirak-brand-font-family), cursive;
	color: rgba(231, 231, 241, 0.99);
}

h1 small {
	font-family: var(--nirak-font-family), sans-serif;
	font-size: 1rem;
}

p {
	color: var(--nirak-text);
}

a {
	color: var(--nirak-link);
	text-decoration: none;
}

a:visited,
a:active {
	color: var(--nirak-link);
}

a:hover {
	text-decoration: underline;
}

pre {
	margin: 5px 0;
	width: 100%;
	display: flex;
}

pre span {
	color: #ff0080;
}

.watch {
	margin: 10px;
}

.text-center {
	text-align: center !important;
}

.nav-link {
	color: var(--nirak-link);
}

.nav-link:hover {
	color: var(--nirak-link-hover);
}

.nav-link:focus-visible {
	box-shadow: 0 0 0 0.1rem var(--nirak-link-hover);
}


/* Content Area
 * ---------------------------------------------------------------------------------------------------------------------
 */

#container {
	padding-top: 15px;
}

#container.header {
	padding-top: 73px;
}

#container.footer {
	padding-bottom: 135px;
}

.noParagraphSpacing p {
	margin: 0;
	padding: 0;
}

/* Top Menu
 * ---------------------------------------------------------------------------------------------------------------------
 */
header .navbar {
	background-color: var(--nirak-header-bg);
	color: var(--nirak-header-text);
}

header .navbar a,
header .navbar a.nav-item,
header .navbar a.nav-link {
	color: var(--nirak-header-link);
}

header .navbar a:hover,
header .navbar a.nav-item:hover,
header .navbar a.nav-link:hover {
	color: var(--nirak-header-hover);
	text-decoration: none;
}

header .navbar {

}

header .navbar a:active,
header .navbar a.active,
header .navbar a.nav-item:hover,
header .navbar a.nav-link.active {

	color: var(--nirak-header-active);
}

header .navbar .dropdown-menu div[class*="col"] {
	margin-bottom: 1rem;
}

header .navbar .dropdown-menu {
	background-color: var(--nirak-header-bg);
}

header .navbar .dropdown-menu a {
	text-decoration: none;
}

header .dropdown-item {
	/*color: #222;*/
}

header .nav-tabs .nav-link {
	/*color: #222;*/
}

header .navbar-toggler {
	border-color: var(--nirak-header-text);
}

header .navbar-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


header .nav-tabs .nav-link.active,
header .nav-tabs .nav-item.show .nav-link {
	/*color: #000;*/
}


/* Side Menu
 * ---------------------------------------------------------------------------------------------------------------------
 */
aside {
	padding: 5px 0;
	border-radius: 10px;
	background-color: var(--nirak-nav-aside-bg);
	color: var(--nirak-nav-aside-text);
}

aside li {
	list-style: none;
}

aside,
aside .active ul {

}

aside a,
aside a.nav-item,
aside a.nav-link,
aside li a {
	color: var(--nirak-nav-aside-link);
	text-decoration: none;
	font-weight: normal;
}

aside a:hover,
aside a.nav-item:hover,
aside a.nav-link:hover,
aside a.nav-item:focus,
aside a.nav-link:focus {
	background: var(--nirak-nav-aside-hover-bg);
	color: var(--nirak-nav-aside-hover);
	text-decoration: none;
}

aside li > a:hover,
aside li > a.nav-item:hover,
aside li > a.nav-link:hover {
	color: var(--nirak-nav-aside-hover);
}

aside > li:hover {

}

aside > li:hover a {
	background: var(--nirak-nav-aside-hover-bg);
	color: var(--nirak-nav-aside-hover);
}

aside > ul > li.active {
	background: var(--nirak-nav-aside-active-bg);
	color: var(--nirak-nav-aside-active);
}

aside > ul > li.active > a {
	font-weight: bold;
}

aside > ul > li.active > ul li a {
	background: var(--nirak-nav-aside-bg);
	color: var(--nirak-nav-aside-link);
}


.nav-firewall {
	color: #ff0000 !important;
}

.nav-firewall-anonymous {
	color: #00FF00 !important;
}

/*Tabs & Accordion
 * ---------------------------------------------------------------------------------------------------------------------
 */

.nirak_area_tabs .nav,
.nirak_area_accordion .nav {
	background: none;
}

.nirak_area_tabs .nav-link,
.nirak_area_accordion .accordion-item {
	background: var(--nirak-accordion-body-bg);
}

.nirak_area_tabs .nav-link.active,
.nirak_area_accordion .accordion-button:not(.collapsed),
.nirak_area_accordion .accordion-button:not(.collapsed):focus {
	background: var(--nirak-accordion-header-bg);
	color: var(--nirak-accordion-header-text);
	font-weight: bold;
	outline: none;
	box-shadow: none;
	border-color: var(--nirak-accordion-border);
}

.nirak_area_tabs .nav-link:hover,
.nirak_area_accordion .accordion-button:hover {
	background: var(--nirak-accordion-header-bg);
}

.nirak_area_tabs .accordion-body,
.nirak_area_accordion .accordion-body {
	background: var(--nirak-accordion-body-bg);
	color: var(--nirak-accordion-body-text);
	border-color: var(--nirak-accordion-border);
}

/**
 * Content Stuff
 * ---------------------------------------------------------------------------------------------------------------------
 */

@media screen and (min-width: 768px) {
	#container.footer {
		padding-bottom: 85px;
	}
}

#content {
	display: inline-block;
	border-radius: 6px;
	letter-spacing: 0.08em;
}

#content .content {
	width: 100%;
	padding: 0 1rem 1rem;
	border-radius: 0.25rem;
	color: var(--nirak-content-text);
	position: relative;
	z-index: 1;
}

#content .content a,
#content .content a:visited,
#content .content a:focus {
	color: var(--nirak-content-link);
	text-decoration: underline;
}

#content .content a:hover {
	color: var(--nirak-content-link-hover);
}

#content .content::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--nirak-content-bg-transparent);
	backdrop-filter: blur(4px);
	z-index: -1;
	pointer-events: none;
}

.noOpacity #content .content::before {
	background: var(--nirak-content-bg);
}

#content .content h1,
#content .content h2,
#content .content h3,
#content .content h4,
#content .content h5,
#content .content h6 {
	color: var(--nirak-content-text);
}

#content .content p {
	color: var(--nirak-content-text);
	line-height: 1.6;
}

/**
 * General Blocks
 * ---------------------------------------------------------------------------------------------------------------------
 */
#content .nirak_area {
	padding: 0 0 0.75rem 0;
	opacity: 1;
}

#content .nirak_area:first-child {
	padding-top: 0.75rem;
}

#content .nirak_area:last-child {
	padding-bottom: 0;
}

#content > div > section > div > div > p:last-child,
#content .nirak_area:last-child,
#content .nirak_area p:last-child,
#content .nirak_area ul:last-child,
#content .nirak_area ol:last-child {
	margin-bottom: 0;
}

#content .content > p {
	padding: 0.75rem 0;
}

#content .content > .alert:first-child {
	margin-top: 1rem
}
#content .content > .alert {
	border: 1px solid var(--nirak-alert-border);
	display: inline-flex;
}

#content .images img,
#content .images .image img {
	float: left;
	display: block;
	width: 100%;
	height: 100%;
}


#content .grayscale img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all 1s ease;
}

#content .grayscale img:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
}

#content figure.hidecopyright figcaption {
	display: none;
}

/** Area Blocks
 * ---------------------------------------------------------------------------------------------------------------------
 */

#content .content .nirak_area_wysiwyg .floatInline .float-start {
	padding-right: 0.75rem;
	padding-bottom: 0.75rem;
}

#content .content .nirak_area_wysiwyg .floatInline .float-end {
	margin-left: 0.75rem;
	padding-bottom: 0.75rem;
}

#content .content .nirak_area_wysiwyg img {
	padding-bottom: 0.75rem;
}

#content .content .opendxp_area_full_image figure {
	margin: 0;
}

#content .content .nirak_area_directory_link a {
	text-decoration: none;
	font-weight: bolder;
}

#content .content .nirak_area_wysiwyg .images .lazy-wrapper img {
	padding: 0;
}

#content .content .nirak_area_full_image .full-image,
#content .content .nirak_area_full_image figure {
	margin-bottom: 0;
}

#content .content .nirak_area_full_image .full-image img {
	width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: cover;
}

#content .content .nirak_area_directory_link,
#content .content .nirak_area_directory_list {

}

#content .content .nirak_area_directory_link a,
#content .content .nirak_area_directory_list a {
	text-decoration: none;
	color: var(--nirak-content-link);
}

#content .content .table-striped > thead > tr > * {
	background-color: var(--nirak-table-thead-bg);
	color: var(--nirak-table-text);
	border-color: var(--nirak-table-border);
}

#content .content .table-striped > tbody > tr:nth-of-type(odd) > * {
	background-color: var(--nirak-table-odd);
	color: var(--nirak-table-text);
	border-color: var(--nirak-table-border);
}

#content .content .table-striped > tbody > tr:nth-of-type(even) > * {
	background-color: var(--nirak-table-even);
	color: var(--nirak-table-text);
	border-color: var(--nirak-table-border);
}

/* Video Player
 * ---------------------------------------------------------------------------------------------------------------------
 */

#content .nirakVideo {
	background: #0a53be;
}

#content .nirakVideo > div {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 200px;
	background-color: #1e1e1e;
}

#content .nirak_area_video_player .videoContainer {
	padding-bottom: 0.75rem;
}

#content .nirak_area_video_player .video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

#content .nirak_area_video_player .video iframe,
#content .nirak_area_video_player .video object,
#content .nirak_area_video_player .video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Greetings from Isotope
 * ---------------------------------------------------------------------------------------------------------------------
 */

#content .isotope-grid {
	width: 100%;
	display: inline-block;
}

#content .isotope-grid,
#content .isotope-grid .isotope-item {
	/* change duration value to whatever you like */
	-webkit-transition-duration: .8s;
	-moz-transition-duration: .8s;
	-ms-transition-duration: .8s;
	-o-transition-duration: .8s;
	transition-duration: .8s;
}

#content .isotope-grid {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-ms-transition-property: height, width;
	-o-transition-property: height, width;
	transition-property: height, width;
}

#content .isotope-grid .grid-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	transition-property: transform, opacity;
	padding-bottom: 15px;
}

.grid-item {
	z-index: 2;
}

.isotope-hidden.grid-item {
	pointer-events: none;
	z-index: 1;
}

/* Tippy.js Glossary Theme
 * ---------------------------------------------------------------------------------------------------------------------
 */

.tippy-box[data-theme~='glossary'] {
	background-color: #222;
	color: #fff;
	font-size: 0.8rem;
	line-height: 1.3;
	border-radius: 6px;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
	padding: 5px 8px;
	transition: all 0.25s ease;
}

.tippy-box[data-theme~='glossary'][data-placement^='top'] > .tippy-arrow::before {
	border-top-color: #222;
}

.tippy-box[data-theme~='glossary'][data-placement^='bottom'] > .tippy-arrow::before {
	border-bottom-color: #222;
}

/* Variante für .black → helles Tooltip */
.opendxp_glossary.black + .tippy-box[data-theme~='glossary'] {
	background-color: #f0f0f0;
	color: #111;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.opendxp_glossary.black + .tippy-box[data-theme~='glossary'][data-placement^='top'] > .tippy-arrow::before {
	border-top-color: #f0f0f0;
}

.opendxp_glossary:hover {
	text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.opendxp_glossary.black:hover {
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

/* Forms
 * ---------------------------------------------------------------------------------------------------------------------
 */
.contact-form {
	margin-top: 30px;
}

.contact-form .input-block {
	position: relative;
	width: 100%;
	height: 60px;
	margin-bottom: 1rem;
	padding: 1rem;

	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #222;

	transition: all 0.3s ease-out;
}

.contact-form .input-block.focus {
	background-color: #fff;
	border-color: #fb2900;
}

/* Textarea Variant */
.contact-form .input-block.textarea {
	height: auto;
}

.contact-form .input-block.textarea .form-control {
	height: auto;
	resize: none;
}

/* -----------------------------------------------------
   Label (Floating / Sliding)
   ----------------------------------------------------- */

.contact-form .input-block label {
	position: absolute;
	top: 25px;
	left: 15px;
	z-index: 1;

	margin: 0;

	font-size: 18px;
	font-weight: 300;
	line-height: 10px;
	color: #333;

	opacity: 0.75;
	transform: translateX(0);
	transform-origin: left center;

	transition: transform 0.25s ease,
	font-size 0.25s ease,
	opacity 0.2s ease,
	top 0.25s ease;

	pointer-events: none;
}

/* Active / Focus State */
.contact-form .input-block.focus label {
	top: 7px;
	font-size: 12px;
	opacity: 1;
	transform: translateX(-6px);
}

/* -----------------------------------------------------
   Form Control
   ----------------------------------------------------- */

.contact-form .input-block .form-control {
	position: relative;
	z-index: 2;

	background-color: transparent;
	border: none;
	padding: 0;
	line-height: 2;
	font-size: 18px;
	color: #333;

	border-radius: 0;
	box-shadow: none;
}

/* -----------------------------------------------------
   Checkbox
   ----------------------------------------------------- */

.contact-form .form-check {
	padding-bottom: 15px;
}

/* -----------------------------------------------------
   Submit Button
   ----------------------------------------------------- */

.contact-form button {
	border: 1px solid #222;
	height: 60px;
}


/* =====================================================
   Login Form (unchanged, just grouped)
   ===================================================== */

.login-form > div {
	display: inline-block;
}

.login-form > div > label {
	display: none;
}

.loginform {
	display: inline-block;
	width: 100%;
	padding-bottom: 0.75rem;
}

.loginform .btn {
	float: right;
	margin-top: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
	.contact-form .input-block,
	.contact-form .input-block label {
		transition: none;
	}
}


/** Locked Page
 * ---------------------------------------------------------------------------------------------------------------------
 */

#locked {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.8;
	background: #f0f0f0;
}

#locked div {
	position: relative;

	margin: 0 auto;
	height: 100%;
	background: url(/bundles/niraksystem/img/locked.svg) top center;
}

@media screen and (max-height: 400px) {
	#locked div {
		margin: 3rem auto;
	}
}

/**
 * Formulare
 */

form.login > div > div {
	padding-bottom: 15px;
}

/**
 * SubSub Menu
 */


@media screen and (min-width: 992px) {

	/* remove the padding from the navbar so the dropdown hover state is not broken */
	.navbar {
		padding-top: 0;
		padding-bottom: 0;
	}

	/* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
	.navbar .nav-item {
		padding: .5rem .5rem;
		margin: 0 .25rem;
	}

	/* makes the dropdown full width  */
	.navbar .dropdown {
		position: static;
	}

	.navbar .dropdown-menu {
		top: 45px;
		display: block;
		visibility: hidden;
		opacity: 0;
		transition: visibility 0s, opacity 0.3s linear;
	}

	/* shows the dropdown menu on hover */
	.navbar .dropdown:hover .dropdown-menu,
	.navbar .dropdown .dropdown-menu:hover {
		display: block;
		visibility: visible;
		opacity: 1;
		transition: visibility 0s, opacity 0.3s linear;
	}

	.navbar .dropdown-menu {
		border: 1px solid rgba(0, 0, 0, .15);
	}


}

/**
 * Weather Box
 */

#weatherDropdown i.main {

	font-size: 25px;
	display: block;
	float: left;
	margin-right: 8px;
}

#weatherDropdown .owf {
	vertical-align: bottom;
}

#weatherDropdown:hover .weather,
#weatherDropdown .weather.show {
	display: block;
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.3s linear;
}

#weatherDropdown .weather {
	background-color: var(--nirak-bg);
	color: var(--nirak-text);
	padding: 0.5rem;
	margin: 0 0;
	border-radius: 0.25rem;
	border-color: var(--nirak-bg);
	opacity: 0;
	visibility: hidden;
}

#weatherDropdown .weather p {
	margin: 0;
	padding: 0 0.5rem;
}

#weatherDropdown .weather p.weatherHeadline {
	font-weight: bold;
	font-size: 1.25rem;
}

/** Rain */
#weatherDropdown .weather p.weather-500 {
	color: rgba(43, 79, 240, 0.86)
}

/** Mäßiger Regen */
#weatherDropdown .weather p.weather-501 {
	color: rgba(29, 53, 156, 0.86)
}


#weatherDropdown .weather .date {
	font-family: Courier, 'Courier New', monospace;
	font-size: 9pt;
	font-weight: lighter;
	font-style: italic;
	text-align: right;
	display: block;
	padding-right: 0.5rem;
	padding-top: 0.5rem;
}

#weatherDropdown .weather ul {
	padding: 0 0 0 20px;
	margin-bottom: 0;
}

/** User Menu
 * ---------------------------------------------------------------------------------------------------------------------
 */
.user-menu .dropdown-menu {
	/*display: block;*/
	/*opacity: 1;*/
	/*visibility: visible;*/

	width: 190px;
	border: 1px solid #cccccc;
	position: absolute;
	right: 0;
	top: 10px;
	padding: 1rem;
}

.user-menu .avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #cccccc;
	color: #000;
	font-weight: 600;
	margin-right: 6px;
}
.user-menu .info {
	color: #fff;
	padding: 0 0 5px 0;
}




	/**
	 * Worker Monitor
	 */
#workerMonitor {
	position: fixed;
	right: 30px;
	bottom: 90px;
	padding: 10px;
	background: #1D1F21;
	color: #ffe8a1;
	font-size: 10px;
	width: 300px;
}


/**
 * Footer
 */

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--nirak-footer-bg);
	color: var(--nirak-footer-text);
}

.linklist {
	margin-bottom: -6px;
	transition: all 1s linear;
	padding-top: 3px;
}

footer .about-footer {
	opacity: 1;
	left: 0;

	-webkit-transition: all 1s linear;
	transition: all 1s linear;
	vertical-align: baseline;
	position: relative;
}

footer a,
footer a:active,
footer a:visited {
	color: var(--nirak-footer-text);
	text-decoration: dashed;
}

footer .about-footer a {
	font-family: var(--nirak-brand-font-family), cursive;
	font-size: 0.9rem;
	line-height: 1rem;
}

footer a:hover,
footer a:active {
	color: var(--nirak-footer-link);
	text-decoration: none;
}

@media (min-width: 768px) {
	.about-footer,
	.social-footer {
		padding-top: 10px;
	}
}

footer .social-footer {
	display: block;
	z-index: 10;
	padding-bottom: 10px;
	opacity: 1;
	-webkit-transition: all 1s linear;
	transition: all 1s linear;
}

footer .social-footer a {
	display: inline-block;
	font-size: 18px;
	color: var(--nirak-footer-text);
	background: var(--nirak-footer-bg);
	border: 1px solid var(--nirak-footer-text);
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin-left: 3px;
	margin-right: 1px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	border-radius: 2px;
}

footer .social-footer a:hover {
	background-color: var(--nirak-footer-link);
	color: var(--nirak-footer-bg);
}

body.light .social-footer a {
	border-color: #444;
	color: #444;
}

footer > .container {
	padding-right: 15px;
	padding-left: 15px;
}

/** Single Login Page
 * ---------------------------------------------------------------------------------------------------------------------
 */
.centerLogin {
	margin: auto;
	position: absolute;
	top: 50%;
	left: 0;
	bottom: 0;
	right: 0;

	height: 25%;
	float: left;
	display: block;

}

.centerLogin .center {
	margin: 0 auto;
	display: table;
	top: -130%;
	position: relative;
	padding: 15px;
	background: #fff;
}


.centerLogin form {
	display: block;
	float: left;
	width: 100%;
}

