/*'Quicksand'*/
.body {
	background-color: #fff;
	font-family: rubik, sans-serif;
	color: #160F53;
}

/* Contenitori */

.login-header-container {
	min-width: 100%;
}

.subcontainer {
	width: 100%;
	padding: 0 10%;
	margin: 0 auto;
}

/* Flex */

.flex {
	display: flex;
}

.flexcenter {
	align-items: center;
	justify-content: center;
}

.row {
	flex-direction: row;
}

.column {
	flex-direction: column;
}

.wrap {
	flex-wrap: wrap;
}

.space-between {
	justify-content: space-between;
}

.alignstart {
	align-items: flex-start;
}

.aligncenter {
	align-items: center;
}

.alignend {
	align-items: flex-end;
}

.justifystart {
	justify-content: flex-start;
}

.justifycenter {
	justify-content: center;
}

.justifyend {
	justify-content: flex-end;
}

/* Margin e Padding */

.m0a {
	margin: 0 auto;
}

.mla {
	margin-left: auto;
}

.mra {
	margin-right: auto;
}

.mta {
	margin-top: auto;
}

.mba {
	margin-bottom: auto;
}

.padding-1 {
	padding: 1%;
}

.padding-2 {
	padding: 2%;
}

.padding-3 {
	padding: 3%;
}

.padding-4 {
	padding: 4%;
}

/* Larghezze */

.wh50 {
	width: 50%;
}

.wh70 {
	width: 70%;
}

.wh100 {
	width: 100%;
}

/* Altezze */

.vh50 {
	height: 50vh;
}

.vh100 {
	height: 100vh;
}

.h50 {
	height: 50%;
}

.h100 {
	height: 100%;
}

/* Text */

.regular {
	font-weight: 400;
}

.bold {
	font-weight: 700;
}

.uppercase {
	text-transform: uppercase;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

/* Divisori */

.space-extra-sm {
	padding: 5px;
}

.space-sm {
	padding: 10px;
}

.space {
	padding: 20px;
}

.space-big {
	padding: 40px;
}

/* Varie */

li {
	list-style: none;
}

a {
	text-decoration: none;
	display: flex;
	cursor: pointer;
}

.none-desktop {
	display: none;
}

.none-sm {
	display: flex;
}

/* Titoli e Paragrafi */
/*Outfit*/
.heading1 {
	font-family: rubik, sans-serif;
	font-size: 55px;
	line-height: 55px;
	font-weight: 700;
	width: max-content;
	background: linear-gradient(180deg,transparent 60%, var(--tertiary) 40%);
}

	.heading1 span {
		background: linear-gradient(180deg,transparent 60%, var(--tertiary) 40%);
	}

.heading2 {
	font-family: Arial Rounded MT Bold, rubik, sans-serif;
	font-size: 37px;
	line-height: 45px;
}

.paragraph {
	font-size: 18px;
	font-weight: 600;
}

.link {
	font-size: 16px;
	letter-spacing: 0.05em;
}

p, .link {
	line-height: 32px;
	font-weight: 400;
}

.small {
	color: #8A86A8;
	font-size: 15px;
}

/* Colors */

:root {
	--primary: #3A6F9B;
	--background: #F5F7FA;
	--text: #3a6f9b;
	--secondary: #CCFF3E;
	--tertiary: #4ba1da;
	--white: #FFF;
	--lime: #afff00;
	--quicksand: 'Quicksand', sans-serif;
	--outfit: 'Outfit', sans-serif;
}

.primary {
	color: var(--primary);
}

.background-primary {
	background-color: var(--primary);
}

.secondary {
	color: var(--secondary);
}

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

.bg-white {
	background-color: var(--white);
}

/* Buttons */

.login-button, .login-form input[type=submit] {
	background-color: var(--lime);
	color: var(--text);
	font-size: 16px;
	border-radius: 5px;
}

	.login-button:hover {
		font-size: 16px;
		background-color: var(--text);
		color: var(--lime);
		cursor:pointer;
	}


/* Elements */

.login-header {
	height: 10vh;
}

.mainLog {
	height: 90vh;
}

.login-form label {
	color: #8A86A8;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding-top: 20px;
	padding-bottom: 5px;
}

.login-form input[type=text], .login-form input[type=password] {
	background-color: transparent;
	border: unset;
	border-radius: unset;
	border-bottom: 1px solid #8A86A8;
	font-size: 16px;
	color: #160F53;
	padding: 5px 0;
	font-family: var(--quicksand);
}

	.login-form input[type=text]:focus, .login-form input[type=password]:focus {
		outline: none;
		border-bottom: 1px solid var(--tertiary);
		transition: all 0.2s linear;
	}

.login-form input[type=checkbox] {
	margin-right: 5px;
}

.login-checkbox {
	padding: 20px 0;
}

.login-form input[type=submit], .login-form button {
	border: unset;
	margin: 0 auto;
	cursor: pointer;
	font-family: var(--quicksand);
	width: max-content;
}

.padding-reset label {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.scrollable-solution {
	height: 400px;
	overflow-y: hidden;
	width:32rem;
}

	.scrollable-solution:hover {
		overflow-y: scroll;
	}

	/*Logon styles*/
	.main-logon {
		min-height: 90vh;
	}
.type-card {
	border-radius: 10px;
	position: relative;
	transition: all 0.2s linear;
	min-height: 150px;
}

	.type-card:hover::after {
		content: '';
		transition: all 0.2s linear;
		position: absolute;
		border-radius: 10px;
		top: -10px;
		left: -10px;
		right: -10px;
		bottom: -10px;
		border: var(--text) 2px solid;
	}

.solution-card {
	border-radius: 10px;
	position: relative;
	transition: all 0.2s linear;
	min-height: 130px;
	background-color: white;
	border: 2px solid transparent;
}
	.solution-card:hover{
		border: var(--text) 2px solid;
	}

	.text-card {
		color: var(--text);
	}

.back-button {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--primary);
	box-shadow: 0 5px var(--tertiary);
}

.login-form select {
	background-color: transparent;
	border: unset;
	border-bottom: 1px solid #8A86A8;
	font-size: 16px;
	color: #8A86A8;
	padding: 5px 0;
}

.upload-btn-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}

.upload-btn {
	width: 100%;
	border: unset;
	background-color: white;
	padding: 5px 10px;
	border-radius: 20px;
	text-align: left;
	font-size: 16px;
	color: #8A86A8;
}

.upload-btn-wrapper input[type=file] {
	font-size: 100px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.line-height-0 {
	line-height: 0;
}

.background-logon-form {
	background-color:rgba(255,255,255,0.9);
	border-radius:15px;
}
.wh80{
	width: 80%;
}
.wh90 {
	width: 90%;
}

body {
	background-color: var(--background);
}

.input-icons {
	outline: 0;
	border-radius: 5px;
	border: 1px solid #d3d3d3;
	padding: 0;
	padding-left: 45px;
	background-size: 15px 15px;
	background-position-x: 15px;
	background-position-y: 6px;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-origin: padding-box;
	background-clip: border-box;
	height:30px;
}

.input-settings {
	outline: 0;
	border-radius: 5px;
	border: 1px solid #d3d3d3;
	padding: 0;
	height: 30px;
}

.font-settings {
	color: var(--text);
}

.combobox-settings {
	height: 30px !important;
}

/*Uses only on combobox*/
.border-radius-login{
	border-radius:10px !important;
}