:root{
	--col-wrapper: #F8F8F8;
	--col-red-1: #9B1E05;
	--col-red-2: #E82D07;
	--col-blue-1: #95CAFF;
	--col-blue-2: #2985DB;
	--col-blue-3: #0F4271;
	--col-blue-4: #062848;
	--col-offline-orange: #fb7300;
	--col-accent: rgba(169, 108, 41, 1);
	--col-accent-light: #ffc88e;
	--col-dark-blue: #1A237E;
	--col-accent-blue: #599bff;
	--col-accent-light-blue: #9ec5ff;
	--col-font-gray: #505050;
	--col-font-dark: #292929;
	--col-font-light-gray: #aaa;
	--header-height: 70px;
	--header-height-mobile: 60px;
}
a {
    text-decoration: none;
}
html, body {
	font-family: alwyn-new-web, Arial;
	padding: 0px;
	margin: 0px;
	width: 100%;
	/* height: 100%; */
	/*scroll-behavior: smooth;*/
	/* background: #eee; */
	z-index: -1;
	/* overflow-y: hidden; */
}
header {
	height: var(--header-height);
	width: 100%;
	background-color: white;
	box-shadow: 0px 0px 9px 0px rgba(33, 26, 21, 0.84);
	z-index: 2000;
	position: fixed;
	top: 0px;
	display: flex;
}


header #logo {
	float: left;
	width: 110px;
	margin-top: 5px;
	margin-left: 20px;
	cursor: pointer;
}

header #logo img {
	width: 100%;
}

header .title {
	flex-grow: 1;
	color: var(--col-font-dark);
	transition: color 0.7s;
}
header .title > div:first-child{
	font-size: 1.6rem;
	display: flex;
	padding: 20px 20px 2px 20px;
	justify-content: center;
	align-items: center;
	/* font-family: monospace; */
	text-transform: uppercase;
}

header .menuicon {
	float: right;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	margin-top: 20px;
	cursor: pointer;
}

header .menuicon img {
	width: 100%;
}
.wrapper{
	margin-top: var(--header-height);
	/* background-color: transparent; */
	min-height: calc(100vh - var(--header-height));
	/* width: 100%; */
	/* background: url(../images/Thunder.jpg); */
}

.content{
	display: flex;
	justify-content: center;
}

.card-wp {
	padding: 15px;
	width: 100%;
	/*max-width: 1400px;*/
	height: min-content;
	box-sizing: border-box;
}
.card{
	background: #FFF;
	/* height: 100%; */
	/* min-height: 200px; */
	/* height: 260px; */
	/* min-width: 200px; */
	width: 100%;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	/* font-family: "Arial"; */
	font-size: 1.18rem;
	color: #222;
	border-radius: 10px;
}


/* ---- SWITCH --- */
.switch {
	display: flex;
	flex-direction: row;
	padding: 0px 35px 0px 30px;
	/* width: 100%; */
	box-sizing: border-box;
}
.switch > div:first-child {
	position: relative;
}
.switch > div:first-child::before {
	position: absolute;
	content: "";
	width: 100%;
	/* left: 0px; */
	top: 0;
	bottom: 0;
	background: var(--col-blue-2);
	margin-right: -100px;
	z-index: -1;
	transition: 0.5s;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}
.switch > div {
	/* width: 100px; */
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	text-transform: uppercase;
	/* font-family: sans-serif; */
	box-sizing: border-box;
	height: 2.3rem;
	/* font-weight: 700; */
	color: var(--col-font-gray);
	font-size: 1.0rem;
	padding: 11px 0px 7px 0px;
	transition: color 0.5s, background 0.5s, border 0.5s;
	z-index: 1;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	cursor: pointer;
}
.switch.bot > div , .switch.bot > div:first-child::before{
	border-radius: 0px;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}

.switch > div:not(.selected):hover {
	background: #d5ebff;
}
.switch > div.selected {
	/* background: #f4f6f9; */
	/* border-bottom: 3px solid var(--col-blue-2); */
	font-weight: bold;
	color: white;
}

footer {
	text-align: center;
	/* width: 100vw; */
	color: #aeaeae;
	margin-top: 10px;
	padding-bottom: 5px;
	position: relative;
}
footer a{
	color: var(--col-blue-2);
	text-decoration: none;
}
/*------------  FULLSCREEN  ---------------------*/
body.pop-up > *:not(.full-screen) {
	transition: filter 1s;
}
body.pop-up > *:not(.full-screen) {
	filter: blur(10px);
}

.full-screen{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2500;
	background: #0f4271bf;
	display: none;
	justify-content: center;
	align-items: center;
	overflow-y: scroll;
}
body.pop-up .full-screen {
	display: flex;
}
.full-screen .exit{
	position: absolute;
	right: 5vw;
	top: calc(5vw - 1.5rem);
	font-size: 4rem;
	color: white;
	cursor: pointer;
	z-index: 200;
}
.full-screen .card.profile {
	/* min-width: 500px; */
	width: auto;
	display: flex;
	padding-left: 30px;
	overflow: hidden;
	min-height: 200px;
}
.full-screen .profile .info {
	display: flex;
	position: relative;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
	z-index: 2;
	color: #fff;
}
.full-screen .profile .info::before {
	content: '';
	background: var(--col-blue-3);
	position: absolute;
	width: 800px;
	height: 800px;
	right: -35px;
	z-index: -1;
	border-radius: 100%;
}

.full-screen .profile .info .disp-name {
	flex-direction: row;
	display: flex;
	align-items: baseline;
	border-bottom: 1px var(--col-font-light-gray) solid;
}
.full-screen .profile .info .disp-name > *{
	margin-bottom: -5px;
}
.full-screen .profile .info .disp-name .first-name{
	font-size: 3rem;
	font-weight: bold;
}
.full-screen .profile .info .disp-name .last-name{padding-left: 0.5rem;}

.full-screen .profile .info .email{
	color: var(--col-font-light-gray);
	padding-top: 3px;
}

.full-screen .profile .action {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: flex-end;
	/* border-left: 1px #ccc solid; */
	padding: 20px 20px 20px 50px;
}
.hidden {
	transition: opacity 0.2s, height 0.2s, margin 0.2s, padding 0.2s;
	opacity: 0;
	height: 0px !important;
	margin: 0px !important;
	padding: 0px !important;
	/*display: none !important;*/
}
.full-screen .profile .action button{background: var(--col-blue-2);}

button {
	border-radius: 70px;
	font-family: inherit;
	font-size: 1.0rem;
	background: var(--col-blue-2);
	text-transform: uppercase;
	padding: 7px;
	font-weight: bold;
	color: white;
	border: 0;
	transition: 0.3s;
	cursor: pointer;
}
button:hover {
	background: #5eb1ff !important;
}
input[type="text"], input[type="password"]{
    margin-bottom: 20px;
    margin-top: 2px;
    padding: 3px;
    padding-top: 7px;
    font-size: 1rem;
    border: 0;
    border-bottom: 2px solid var(--col-blue-2);
}
@media (max-width: 610px){
	header {
		height: var(--header-height-mobile);
	}
	header #logo {
		width: 80px;
		margin-left: 10px;
		margin-top: 8px;
	}
	header .title > div:first-child{
		padding: 17px 10px 2px 10px;
		font-size: 1.3rem;
	}
	.wrapper {
		margin-top: var(--header-height-mobile) !important;
	}
	header .menuicon{
		margin-right: 10px;
		margin-top: 15px;
		width: 26px;
		height: 26px;
	}
	.card-wp {
		padding: 20px 30px;
	}
	.full-screen .card {
		flex-direction: column;
		padding: 10px;
		min-height: auto;
		min-width: 250px;
	}
	.full-screen .profile .info::before {
		right: unset;
		/* width: calc(100% + 22px); */
		/* width: calc(100% + 30px + 50px); */
		height: 400px;
		/* left: -20px; */
		bottom: -15px;
		/* border-radius: 0px; */
		/* border-bottom-left-radius: 0px; */
	}
	.full-screen .profile .info .disp-name .first-name{
		font-size: 2rem;
	}
	.full-screen .profile .action{
		padding: 30px 10px 5px 10px;
		justify-content: space-between;
		flex-direction: row;
	}
}
@media (max-width: 400px){
	.card-wp {
		padding: 10px 15px;
	}
}
