.loader {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background-color: black;
	z-index: 1;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.loader__wrapper {
	max-width: 795px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	left: 50px;
	bottom: 92px;
	z-index: 2;
}
.loader__background {
	width: 100%;
	height: auto !important;
}
.loader_img {
	/* Make both images fill the container */
	width: 100%;
	height: 100%;
	object-fit: cover; /* This will cover the container with the image without stretching it */
}

.loader__overlay {
	position: absolute;
	top: 0;
	left: 0;
	/* Ensuring the overlay has full dimensions and is on top */
	width: 100%;
	height: 100%;
	z-index: 1; /* Higher z-index means it will be on top of the background image */

}
.loader.inactive {
	display: none;
}


.loader p {
	margin-top: 20px;
	color: white;
	font-size: 22px;
	line-height: 1.3;
}
.loader h2 {
	color: transparent; /* Makes the text color transparent */
	text-transform: uppercase;
	-webkit-text-stroke: 1px white; /* Defines the width and color of the stroke */
	font-size: 69px; /* Example font size */
	font-weight: bold; /* Making the font bold so the outline is more visible */
}
#progress {
	color: white;
	font-size: 20px;
	align-self: flex-start;
	/* background-color: red; */
	padding: 10px;
	width: 100%;
}

#CookiebotWidget {
	bottom: -5px !important;
	left: -5px !important;
}

.side_panel {
	position: absolute;
	left: -180px;
	top: 10%;
	width: 360px;
	height: auto;
	transform: translateX(-260px);
	transition: transform .3s ease;
}

.side_panel.hidden {
	display: none;
}

.side_panel--main {
	width: 80%;


}

.side_panel--arrowR {
	position: absolute;
	right: -98px;
	top: 89px;
	width: 10px;
	transition: transform .3s ease;
}

.side_panel.open {
	transform: translateX(0);
}

.side_panel.open .side_panel--arrowR {
	/*transform: rotateX(180deg);*/
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

@media screen and (max-width: 1400px) {

	.side_panel {
		transform: translateX(-225px);
	}

	.side_panel--main {
		width: 70%;
	}

	.side_panel--arrowR {
		right: -68px;
		top: 85px;
		width: 10px;
	}
}


/* RSS FEED STYLES */
.rss_overlay {
	opacity: 0.93;
	color: white;
	max-width: 60vw !important;
	width: 100%;
	height: 70vh !important;
	/*overflow: auto;*/
	position: fixed !important;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: -1px 1px 18px -6px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: -1px 1px 18px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 18px -6px rgba(0, 0, 0, 0.75);
	border-radius: 5px;
	background: radial-gradient(circle at 100% 100%, rgba(19, 19, 19, 0.9) 0, rgba(19, 19, 19, 0.9) 3px, transparent 3px) 0% 0%/8px 8px no-repeat,
	radial-gradient(circle at 0 100%, rgba(19, 19, 19, 0.9) 0, rgba(19, 19, 19, 0.9) 3px, transparent 3px) 100% 0%/8px 8px no-repeat,
	radial-gradient(circle at 100% 0, rgba(19, 19, 19, 0.9) 0, rgba(19, 19, 19, 0.9) 3px, transparent 3px) 0% 100%/8px 8px no-repeat,
	radial-gradient(circle at 0 0, rgba(19, 19, 19, 0.9) 0, rgba(19, 19, 19, 0.9) 3px, transparent 3px) 100% 100%/8px 8px no-repeat,
	linear-gradient(rgba(19, 19, 19, 0.9), rgba(19, 19, 19, 0.9)) 50% 50%/calc(100% - 10px) calc(100% - 16px) no-repeat,
	linear-gradient(rgba(19, 19, 19, 0.9), rgba(19, 19, 19, 0.9)) 50% 50%/calc(100% - 16px) calc(100% - 10px) no-repeat,
	linear-gradient(90deg, #cc0000 0%, #dd832c 100%);
	-webkit-font-smoothing: antialiased;
	/*box-sizing: content-box;*/
	padding: 40px 10px 10px 10px;
}

.rss_overlay .spinner {
	margin: auto;
	width: 140px;
	height: 140px;
	display: block;
}

.rss_item {
	padding: 15px 25px;
}

.rss_overlay article:nth-child(even) {
	background-color: #282828; /* Replace with your desired color for even */
}

.rss_overlay article:nth-child(odd) {
	background-color: rgba(32, 32, 32, 0.5)
}


.rss_controls {
	/*max-height: 200px;*/
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	padding: 0 0 10px 0;
	background-color: rgba(19, 19, 19, 0.9);
}

.rss_controls img {
	width: 40px;
}


#close_rss {
	position: fixed;
	left: 30px;
	top: 13px;
	display: block;
	cursor: pointer;
}


.rss_item_meta {
	display: flex;
	align-items: center;
}

.rss_item_meta img {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.rss_item_meta span {
	text-transform: uppercase;
	font-size: 11px;
	color: whitesmoke;
}


.rss_item_content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.rss_item_content > div:first-child {
	margin-right: 25px;
}

.rss_item_content > h2 {
	margin: 10px 0;
	line-height: 1.3;
}

.rss_item_content h2 a {
	color: #ff970c;
	font-weight: 800;
	font-size: 18px;
	display: block;

	margin-bottom: 15px;
}

.rss_item_content p {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	margin-block-end: 8px;
	word-spacing: 1px;
}

.rss_item_content img {
	max-width: 200px;
}

.login-modal-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*background-image: url('../assets/img/bg_big-min.png');*/
	background: transparent;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 2147483630;
	pointer-events: none;
}
.login-modal-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
.login-modal-content img {
  width: 200px;
	-webkit-box-reflect: below 25px linear-gradient(transparent, #0001);
}
.login-modal-btn,
.guest-modal-btn {
	margin: 10px;
	padding: 10px 20px;
}

.btn-fixed {
	position: fixed;
	top: 47px;
	right: 262px;
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255,255,255,0.25);
	display: flex;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
	height: 4rem;
	align-items: center;
}
.options-panel {
	position: fixed;
	top: 100px;
	right: 262px;
	padding: 20px 10px;
	/*background-color: orange;*/
	backdrop-filter: blur(10px); /* Adjust the px value to increase/decrease blur */
	-webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
	border: 1px solid rgba(255, 255, 255, 0.25); /* Optional: adds a border that also respects transparency */

	flex-direction: column;
	width: 350px;
	border-radius: 7px;
}

.options-panel-button {

	display: inline-block;
	flex: 0;
	/* align-self: start; */
	background: none;
	border: none;
	color: white;
	text-align: left;
	font-weight: 600;
	border-radius: 5px;
}
.options-panel-button:hover {
	background-color: rgba(255,255,255,.5);


	backdrop-filter: blur(10px); /* Adjust the px value to increase/decrease blur */
	-webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
}

.options-panel-profile {
	padding: 8px 0;
	margin-top: 10px;
	border-top: 1px solid rgba(255,255,255,.2);
}

.options-panel-profile > div {
	display: flex;
	align-items: center;
}

.options-panel-profile .avatar-container {
	background-color: var(--neon-red);

	border-radius: 50%;
	width: 32px;
	margin-right: 5px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.options-panel-profile .username {
	color: white;
}
:root {
	--neon-red: red;
	--text-color: #fff;
}


.metaverse-button {
	pointer-events: auto;
	position: relative;
	display: inline-block;
	padding: 15px 20px;
	color: var(--text-color);
	font-size: 20px;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.5s;
	letter-spacing: 4px;
	overflow: hidden;
	-webkit-box-reflect: below 25px linear-gradient(transparent, #0001);
	border: 1px solid rgba(255,255,255,.2); /* Optionally remove border */
	background: transparent; /* Optionally make background transparent */
	font-family: Neuropol, sans-serif;

}

.metaverse-button:focus {
	text-decoration: none;
	color: var(--text-color);
}
.metaverse-button:not(:last-child) {
	margin-right: 25px;

}
.metaverse-button:hover {
	background-color: rgba(204, 0, 0, 0.9);
	color: var(--text-color);
	box-shadow: 0 0 5px var(--neon-red), 0 0 25px var(--neon-red), 0 0 50px var(--neon-red), 0 0 200px var(--neon-red);
	transition-delay: .4s;
	text-decoration: none;
	border: 1px solid transparent;
}

.metaverse-button:nth-child(1) {
	/*filter: hue-rotate(100deg);*/
}

.metaverse-button:nth-child(3) {
	/*filter: hue-rotate(110deg);*/
}

.metaverse-button span {
	position: absolute;
	display: block;
}

.metaverse-button span:nth-child(1) {
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--neon-red));
}

.metaverse-button:hover span:nth-child(1) {
	left: 100%;
	transition: .5s;
}


.metaverse-button span:nth-child(2) {
	top: -100%;
	right: 0;
	height: 100%;
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--neon-red));
}

.metaverse-button:hover span:nth-child(2) {
	top: 100%;
	transition: .5s;
	transition-delay: .1s;
}


.metaverse-button span:nth-child(3) {
	bottom: 0;
	right: -100%;
	height: 2px;
	width: 100%;
	background: linear-gradient(270deg, transparent, var(--neon-red));
}

.metaverse-button:hover span:nth-child(3) {
	right: 100%;
	transition: .5s;
	transition-delay: .2s;
}

.metaverse-button span:nth-child(4) {
	bottom: -100%;
	left: 0;
	height: 100%;
	width: 2px;
	background: linear-gradient(360deg, transparent, var(--neon-red));
}

.metaverse-button:hover span:nth-child(4) {
	bottom: 100%;
	transition: .5s;
	transition-delay: .3s;
}

#mouseeffect {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

}
#kme {
	width: 100%;
	height: 100%;
}

.swal2-container {
	z-index: 9999999999999999;
	font-family: Neuropol;
}
.swal2-html-container {
	color: white;
	text-align: center;
}
.swal2-popup {
	display: flex !important;
	padding: 20px 50px;
}
.swal2-styled.swal2-confirm {
	background-color: var(--neon-red);
	font-size: 14px;
}

.swal2-icon.swal2-success {
	margin: 10px auto 20px auto !important;
}
.swal2-title {
	font-size: 16px !important;
}


#chatIframeModal, #rpmIframeModal {
	position: fixed;
	z-index: 99999999999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(0,0,0,0.4);
	-webkit-backdrop-filter: blur(8px); /* For Safari and some older browsers */
	backdrop-filter: blur(8px);
	overflow: hidden;
}

#chatIframeModal.inactive,
#rpmIframeModal.inactive
{
	display: none;
}

#chatIframeModalContent
 {
	background-color: #181d2c;
	margin: 5% auto;
	padding: 4px;
	width: 60%;
	height: 80%;
	border-radius: 5px;
	position: relative;
}

#rpmIframeModalContent {
	background-color: #000000;
	margin: 4% auto;
	width: 60%;
	height: 86%;
	border-radius: 5px;
	position: relative;
	padding: 32px 4px 4px;
	border: 1px solid #f6f6f6;
}

#chatiframe {
	width: 100%;
	height: 95%;
	border: none;
}

#rpmIframeModalContent .close {
	position: absolute;
	right: 12px;
	top: 5px;
}
.close {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #fffff9;
	text-decoration: none;
	cursor: pointer;
}

#rpmIframe {
	width: 100%;
	height: 100%;
	display: block;
	margin: 0 auto;
	border: none;

}

.milc_context_lost {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	z-index: 9999;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
}

.milc_context_lost .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Neuropol', sans-serif, Lato;
	background: unset !important;
}

.context-lost-popup {
	font-family: 'Lato', sans-serif;

}

.context-lost-popup.success-popup #tryRestore,
.context-lost-popup.success-popup #sendReport {
	display: none;
}

.context-lost-popup h2 {
	font-family: 'Neuropol', sans-serif;

}

.context-lost-popup .swal2-button {
	background: transparent;
}
.context-lost-popup .context-lost-popup-container {
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 90%;
	font-size: 16px;
	margin: 20px auto 0 auto;
}


.context-lost-popup .context-lost-popup-container p
{
	font-weight: 500;
	text-align: center;
}

.context-lost-popup .context-lost-popup-buttons {
	font-family: 'Neuropol', sans-serif;
	display: flex;
	flex-direction: row;
;
}

.context-lost-popup .context-lost-popup-buttons > button {
	font-size: 12px;
	background-color: #272727;
}

.half-circle-spinner, .half-circle-spinner * {
	box-sizing: border-box;
}

.half-circle-spinner {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	position: relative;
	margin-bottom: 16px;
}

.half-circle-spinner .circle {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
	border-top-color: var(--neon-red);
	animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
	border-bottom-color: var(--neon-red);
	animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
	0% {
		transform: rotate(0deg);

	}
	100%{
		transform: rotate(360deg);
	}
}

.testing-button-for-post {
	position: fixed;
	right: 20px;
	top: 50%;
	z-index: 999999999999;
	display: none;
}
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 9999999999999; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(255,255,255,0.7); /* Black w/ opacity */
}

.modal-content {
	background-color: rgb(0,0,0);
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
}

.close-btn {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

#post-content {
	width: 100%;
	height: 100px;
}

.spinner {
	/* Add spinner styling */
}
