/* 2025.12.29 - lila design */

:root {
	--main1: #131a26;
	--lila2_tr: #5e25fd20; /*transparent lila*/
	--white: #ffffff;
	--red: #e44e44;
	--black: #131a26;
	--green: #65CA6F;
	--grey1: #dddddd;
	--grey2: #f5f5f5;
	--grey3: #eeeeee;
	--grey4: #131a26;
	--lila1: #3b1491;
	--lila2: #5e25fd;
}

::-moz-selection {
	/* Code for Firefox */
	color: white;
	background: var(--main1);
}

::selection {
	color: white;
	background: var(--main1);
}

html,
body {
	background: var(--white);
	padding-left: 50px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	padding: 0px;
	margin: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 16px;
	color: var(--grey4);
	outline: none !important;
	font-weight: 300;
}



/* ANIMATIONS */
/* FADE IN RIGHT */
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-15px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX (0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(-15px);
	}

	100% {
		opacity: 1;
		transform: translateX (0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

/* FADE IN RIGHT */

.fir05 {
	animation: fadeInRight 0.5s;
}
/* ANIMATIONS */

p {
	line-height: 1.3;
	/* before 28px */
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.col_white, .col_white a {
	color: var(--white) !important;
}

.bg_col_main1{
	background-color: var(--main1);
}


/* PAGE STRUCTURE */
/* Main container for new GUI */
.container_main {
	display: table;
	margin-top: 0;
	width: 100%;
	height: auto;
	z-index: 500;
}

/* topmenu background */
.container_tmbg {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 70px;
	padding: 0;
	z-index: 501;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.container_tmbg_scrolled {
	background: rgba(255, 255, 255, 0.1); /*almost transparent*/
}

.container_content {
	height: auto;
	text-align: center;
}

.container_page {
	margin: 0px auto;
	height: auto;
	text-align: left;
}

/* Main container for new GUI */
/* PAGE STRUCTURE */

/* FIELDS */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea,
select {
	border: 0px;
	background: var(--grey2);
	color: var(--grey4);
	margin: 3px;
	padding: 12px;
	font-size: 100%;
	-webkit-appearance: none;
	letter-spacing: 2px;
}

input:hover,
textarea:hover,
select:hover,
input:focus,
textarea:focus,
select:focus {
	border: 0px;
	-webkit-box-shadow: 0 2px 0 0 var(--grey4);
	-moz-box-shadow: 0 2px 0 0 var(--grey4);
	box-shadow: 0 2px 0 0 var(--grey4);
	outline: none;
}

/* FIELDS */



/* MESSAGE CLASSES */
.message {
	text-align: left;
	padding: 16px;
	width: auto;
	height: auto;
	line-height: 150%;
	user-select: none;
	border-radius: 5px;
	background-size: 26px;
	background-position: center left 12px !important;
	padding-left: 50px;
	background-repeat: no-repeat;
}

/* div for error messages */
.error {
	background-image: url('../app/graphics/error.svg');
	background-color: #ff5448;
	color: var(--white);
}

/* div for ok messages */
.ok {
	background-image: url('../app/graphics/ok.svg');
	background-color: #54db69;
	color: var(--white);
}

/* not found div */
.notfound {
	background-image: url('../app/graphics/sad-smiley.svg');
	background-color: #fef09e;
}

/* success message */
.thumbsup {
	background-image: url('../app/graphics/thumbsup.svg');
	background-color: var(--grey2);
}
/* MESSAGE CLASSES */



/* ALIGNMENTS */
.h-acnt {
	text-align: center;
}

.h-argt {
	text-align: right;
}

.h-alft {
	text-align: left;
}

.h-just {
	text-align: justify;
}

.v-top {
	vertical-align: top;
}

.v-bottom {
	vertical-align: bottom;
}

.v-middle {
	vertical-align: middle;
}

/* ALIGNMENTS */



/* PADDINGS */
.pad12 {
	padding: 12px;
}

.pad36 {
	padding: 36px;
}
/* PADDINGS */



/* BUTTONS */
.button_p1 {
	background-color: var(--main1);
	color: white;
	min-width: 180px;
	font-size: 14px;
	border: 0;
	text-decoration: none;
	margin: 2px;
	border-radius: 40px;
	cursor: hand;
	cursor: pointer;
	transition: all 0.3s;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.button_p1:hover {
	background-color: var(--black);
}

.button_mini {
	border: 0;
	font-size: 12px;
	padding: 6px;
	color: var(--grey4);
	background: transparent;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.button_mini:hover,
.button_mini:focus {
	background-color: var(--grey1);
	cursor: hand;
	cursor: pointer;
}
/* BUTTONS */



/* SLIDE IN MENU */
.pop {
	background: linear-gradient(to right, #f3f3f3, #ffffff);
	border: 0;
	width: auto;
	max-width: 1000px;
	position: fixed;
	float: right;
	z-index: 999;
	overflow-x: hidden;
	transition: all 0.3s;
	text-align: left;
	max-height: 90vh;
}

.pop_carpet {
	background: rgba(200, 200, 200, 0.8);
	width: 100%;
	height: 0%;
	position: fixed;
	z-index: 998;
	right: 0px;
	bottom: -20px;
	overflow-x: hidden;
}

.pop .close {
	position: absolute;
	top: 10px;
	right: 20px;
	transition: all 200ms;
	font-size: 50px;
	font-weight: bold;
	text-decoration: none;
	color: #b0b0b0;
	padding: 0;
}

.pop .close:hover,
.pop .close:focus {
	color: #dc3231;
}

/* SLIDE IN MENU */
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.container_tmbg_scrolled {
		/*background-color: rgba(255, 255, 255, 0.9);*/
		-webkit-backdrop-filter: blur(26px);
		backdrop-filter: blur(26px);
		box-shadow: 0px 0px 6px 0px #b5b5b5;
		-webkit-box-shadow: 0px 0px 6px 0px #b5b5b5;
		-moz-box-shadow: 0px 0px 6px 0px #b5b5b5;
		-webkit-border-radius: 46px;
		-moz-border-radius: 46px;
		border-radius: 46px;
		margin-top: 10px;
	}

	.pop_carpet {
		-webkit-backdrop-filter: blur(26px);
		backdrop-filter: blur(26px);
		background-color: rgba(255, 255, 255, 0.4);
	}

}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {

	.pop_carpet {
		background-color: rgba(255, 255, 255, 0.8);
	}

}

.p2_bg {
	background: #ffffff;
	background-image: url('../graphics/ab_lo_trans.png?v3');
	background-repeat: no-repeat;
	background-size: 160vw;
	background-position: center 50px;
}

.p3_bg {
	background: var(--lila1);
	padding-bottom: 80px;
	color: var(--white);
	transition: background-color .5s;
	background-image: radial-gradient(#5a20d9, transparent 50%);
    background-attachment: fixed;
    background-position: left -280px top -265px;

}

.p3_bg_bubbles {
	background: var(--lila2_tr);
	background-image: url('../graphics/ab_lo_trans.png?v3');
	background-repeat: no-repeat;
	background-size: 160vw;
	background-position: center 50px;
}

.feature_title {
	text-align: center;
	font-size: 44px;
	font-weight: 500;
	color: darkslateblue;
	margin-bottom: 36px;
	margin-top: 36px;
	letter-spacing: -1px;
	line-height: 1.2;
}

.fb_title {
	font-size: 144%;
	color: darkslateblue;
	font-weight: 500;
}

.hugeletter {
	font-size: 18px !important;
}

.ul_features {
	font-size: 120%;
	text-align: left;
	list-style-type: none;
	padding: 8px;
	color: darkslateblue;
}

.ul_features li {
	display: grid;
	margin-bottom: 16px;
	line-height: 1.2;
	font-weight: 300;
}

ul.checkmark_list {
	list-style: none;
	padding-left: 0;
}

ul.checkmark_list li {
	padding: 5px;
	font-size: 110%;
	text-align: left;
	font-weight: 300;
}

ul.checkmark_list li::before {
	content: "✓";
	padding-right: 8px;
	color: var(--green);
	font-weight: 800;
}
 
.tl-content {
	background-color: var(--lila2_tr) !important;
	line-height: 1.5;
}

.boldletter {
	font-weight: 800;
}

.faq_question {
	padding: 8px;
    margin: 3px;
    cursor: hand;
    cursor: pointer;
	font-size: 120%;
	border-bottom: 1px solid var(--grey1);
}

.faq_question::before {
	content: "+ ";
}

.faq_answer {
	line-height: 1.4;
	margin: 10px;
}

.block{
	display: block;
}

.shadow{
	box-shadow: 0px 0px 40px 0px var(--grey3);
	background-color: var(--white); /*if shaodw, then white*/
}

.margin20{
	margin: 20px;
}

.pwa_window{
	width: auto; 
	max-width: calc(100% - 44px); 
	background: var(--main1);
	padding: 12px; 
	position: fixed; 
	right: 10px; 
	bottom: 10px;
	z-index: 999;
	border: 1px solid var(--grey2);
    border-radius: 26px;
	cursor: hand;
	cursor: pointer;
	color: var(--white);
}


/* DESKTOP VERSION */
@media screen and (min-width: 1025px) {
	.dhid {
		display: none !important;
	}

	h1 {
		font-size: 60px;
		color: var(--main1);
		/*background-image: url('/graphics/font_bg.png?v=4');*/
		letter-spacing: -3px;
		text-transform: uppercase;
		/*color: var(--black);*/
		font-weight: 500;
	}

	h1 strong {
		font-weight: bold;
	}

	h2 {
		font-size: 28px;
		color: var(--grey4);
		font-weight: 300;
		animation: fadeInRight 0.8s;
	}

	.pad24 {
		padding: 18px;
	}

	h3 {
		font-size: clamp(40px, 44px, 60px);
		color: var(--grey4);
		font-weight: 800;
	}

	h4 {
		font-size: 26px;
	}

	.container_content {
		display: block;
		width: auto;
	}

	.container_page {
		max-width: 1360px;
		width: 100%;
		position: relative;
	}

	.container_tmbg_scrolled {
		margin-left: 30px;
		margin-right: 30px;
		width: calc(100% - 60px);
		height: 88px;
		padding-top: 8px;
	}

	.pop {
		top: -9999px;
		-webkit-box-shadow: 0px 60px 60px -26px #a2adb8;
		-moz-box-shadow: 0px 60px 60px -26px #a2adb8;
		box-shadow: 0px 60px 60px -26px #a2adb8;
		padding-top: 40px;
		border-radius: 9px;
		height: auto;
		right: calc(50% - 350px);
	}

	.popinside {
		margin: 14px;
		padding: 8px;
		height: auto;
		width: 90%;
		overflow-x: hidden;
		transition: all 200ms;
	}
	/* SLIDE IN POPUP */

	a.menu {
		display: inline-block;
		padding: 16px;
		margin: 2px;
		text-decoration: none;
		background: transparent;	
		-webkit-border-radius: 26px;
		-moz-border-radius: 26px;
		border-radius: 26px;
		cursor: hand;
		cursor: pointer;
	}

	a.menu_normal{
		color: var(--main1);
	}

	a.menu_white{
		color: var(--white);
	}

	a.menu.login {
		border: 1px solid var(--red);
		background: transparent;
		font-size: 14px;
		transition: all 0.3s;
		color: var(--red);
		font-weight: 800;
	}

	a.menu.login:hover {
		border: 1px solid transparent;
		background: var(--main1);
		color: var(--white);
	}

	a.menu.signup {
		color: var(--white);
		font-size: 14px;
		transition: all 0.3s;
		font-weight: 800;
		background: var(--red);
	}

	a.menu.signup:hover {
		color: var(--white);
		background: var(--main1)
	}

	a.menu:hover {
		color: var(--white);
		background: var(--lila2);
	}

	.clogos {
		/*filter: grayscale(100%);*/
		max-width: 190px;
		transition: all 0.3s;
	}

	.func_pic {
		max-width: 420px;
		max-height: 220px;
		-webkit-border-radius: 21px;
		-moz-border-radius: 21px;
		border-radius: 21px;
		border: 7px solid var(--lila2_tr);
	}

	.margin200 {
		margin-top: 10vw;
		/* used in login.php */
	}

	/* images */
	.img_heading {
		height: 180px;
		max-width: 80%;
		animation: fadeInRight 0.6s;
	}
	/* images */


	.fiftyprc {
		width: 50%;
	}

	.bottomborder{
		border-bottom-left-radius: 80px;
		border-bottom-right-radius: 80px;
	}

	.flexblock{
		display: flex;
		gap: 20px;
	}

	.flexblock_toppad{ /* only on index features */
		margin-top: 150px;
	}

	.flexblock-gallery{
		overflow-x: hidden;
		scroll-behavior: smooth;
	}

	.place-middle{
		place-items: center;
	}

	.roller_3 {
		width: calc(100% / 3);
		border-radius: 26px;
	}

	.roller_5 {
		width: calc(100% / 5);
		border-radius: 12px;
	}
}

/* DESKTOP VERSION */

/* MOBILE VERSION */
@media only screen and (min-width: 600px) and (max-width: 1025px) { 
	.container_page {
		max-width: 90vw;
	}
}

@media (max-width : 1025px) {
	.mhid {
		display: none !important;
	}

	h1 {
		font-size: 50px;
		color: var(--main1);
		/*background-image: url(/graphics/font_bg.png);*/
		letter-spacing: -3px;
		text-transform: uppercase;
		word-break: break-word;
		font-weight: 500;
	}

	h1 strong {
		font-weight: bold;
	}

	h2 {
		font-size: 24px;
		color: var(--grey4);
		font-weight: 300;
		word-break: break-word;
	}

	h3 {
		font-size: clamp(40px, 44px, 60px);
		color: var(--grey4);
		font-weight: 800;
		word-break: break-word;
	}

	h4 {
		font-size: 26px;
	}

	.container_main {
		/*margin-top: 40px;*/
	}

	.container_menu {
		display: none;
	}

	.container_content {
		display: block;
		width: 100%;
		margin: 0px auto;
	}

	.container_page {
		padding: 0;
		margin: 0 auto;
	}

	.container_tmbg_scrolled {
		margin-left: 10px;
		margin-right: 10px;
		width: calc(100% - 20px);
	}

	.m_pad {
		padding: 14px;
		/* only on mobile*/
	}

	/* SLIDE IN POPUP */
	.pop {
		bottom: -9999px;
		padding-top: 20px;
		height: auto;
		right: 2vw;
		border-radius: 8px;
		border: 1px solid lightgray;
	}

	.popinside {
		margin: 4vw;
		height: auto;
		width: 84vw !important;
		max-width: 84vw !important;
		overflow-x: hidden;
		transition: all 200ms;
		padding: 2vw;
	}

	/* SLIDE IN POPUP */
	.clogos {
		/*filter: grayscale(100%);*/
		max-width: 170px;
		transition: all 0.3s;
	}

	.func_pic {
		max-width: 80%;
		-webkit-border-radius: 21px;
		-moz-border-radius: 21px;
		border-radius: 21px;
		border: 7px solid var(--lila2_tr);
	}

	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="file"],
	textarea,
	select {
		width: calc(100% - 48px);
		padding: 20px;
		border: 1px solid #dddddd;
		font-size: 120%;
	}

	/* menu closer burger icon */
	.left_menu_opener_div {
		position: fixed;
		right: 8px;
		top: 14px;
		z-index: 999;
	}

	label.left_menu_opener {
		display: block;
		background: transparent;
		width: 55px;
		height: 40px;
		position: relative;
		margin-left: auto;
		margin-right: auto;
		border-radius: 3px;
	}

	input#left_mnu_show {
		display: none
	}

	.line { /* burger menu*/
		position: absolute;
		left: 10px;
		height: 1px;
		width: 30px;
		background: var(--grey4);
		border-radius: 2px;
		display: block;
		transition: 0.5s;
		transform-origin: center;
	}

	.line:nth-child(1) {
		top: 10px;
	}

	.line:nth-child(2) {
		width: 20px;
		top: 18px;
	}

	.line:nth-child(3) {
		top: 26px;
	}

	#left_mnu_show:checked+.left_menu_opener .line:nth-child(1) {
		transform: translateX(-8px) translateY(8px) rotate(-225deg);
		height: 2px;
		width: 47px;
		background: var(--white);
	}

	#left_mnu_show:checked+.left_menu_opener .line:nth-child(2) {
		opacity: 0;
	}

	#left_mnu_show:checked+.left_menu_opener .line:nth-child(3) {
		transform: translateX(-8px) translateY(-8px) rotate(225deg);
		height: 2px;
		width: 47px;
		background: rgba(255, 255, 255, 0.4);
	}

	/* menu closer burger icon */

	.mobile_menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		/*background: var(--black);*/
		background: var(--main1);
		z-index: 500;
	}

	.mobile_menu_inner {
		text-align: center;
		padding: 30px;
		padding-top: 180px;
		font-size: 44px;
		font-weight: lighter;
		color: var(--white);
	}

	.mobile_menu_inner a {
		text-decoration: none;
		color: var(--white);
	}

	.mobile_menu_inner a:hover {
		text-decoration: none;
		color: var(--lila2);
	}

	.mobile_menu_btn1 {
		position: fixed;
		bottom: 30px;
		width: calc(100% - 60px);
		height: auto;
	}

	.mobile_menu_btn2 {
		position: fixed;
		top: 70px;
		width: calc(100% - 60px);
		height: auto;
	}

	a.menu {
		display: inline-block;
		padding: 8px;
		margin: 2px;
		text-decoration: none;
		background: transparent;
		color: var(--grey4);
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
		cursor: hand;
		cursor: pointer;
	}

	a.menu.login {
		border: 1px solid var(--red);
		background: transparent;
		font-size: 16px;
		transition: all 0.3s;
		color: var(--red);
		font-weight: 800;
		padding: 16px;
	}

	a.menu.login:hover {
		border: 1px solid transparent;
		background: var(--main1);
		color: var(--white);
	}

	a.menu.signup {
		font-size: 16px;
		font-weight: 800;
		color: var(--white);
		transition: all 0.3s;
		background: var(--red);
		padding: 16px;
	}

	a.menu.signup:hover {
		color: var(--white);
		background: var(--main1);
	}

	table,
	thead,
	tbody,
	th,
	tr,
	td {
		display: block;
		font-weight: normal;
	}

	/* images */
	.img_heading {
		height: 160px;
		max-width: 80%;
		animation: fadeInRight 0.6s;
	}

	/* images */


	.bottomborder{
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}

	.flexblock{
		display: block;
		gap: 12px;
	}

	.roller-container{
		margin: 0px auto;
		display: flex;
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
		max-width: calc(100vw - 28px);
	}
	
	.roller{
		flex-shrink: 0;
	}

	.roller_3, .roller_4, .roller_5{
		width: 77vw;
		border-radius: 26px;
	}

}

/* MOBILE VRSION */