:root {
    --altezza-header: 60px;
    --larghezza-sidebar: 250px;
    --colore-sidebar: white;
    --colore-header: white;
}

body{
  font-family: "DM Sans", sans-serif !important;
}

.login-page {
    background-image: url(../images/login-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100dvh;
}

#app {
    min-height: 100dvh;
}

#app > main {
    display: flex;
    justify-content: start;
    align-items: start;
}

#main-header {
    height: var(--altezza-header);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000 !important;
    background-color: var(--colore-header);
}

#main-sidebar {
    height: calc(100dvh - var(--altezza-header));
    width: var(--larghezza-sidebar);
    position: sticky;
    top: var(--altezza-header);
    left: 0;
    z-index: 1000 !important;
    background-color: var(--colore-sidebar);
}

#app > main > .container-fluid {
    padding-top: 1rem;
}

p{
  font-weight:500;
}

.fw-100{
  font-weight:100;
}
.fw-200{
  font-weight:200;
}
.fw-300{
  font-weight:300;
}
.fw-400{
  font-weight:400;
}
.fw-500{
  font-weight:500;
}


.bg-1{
  background:#343a40cf !important;
}


.order-13 {
	order: 13 !important;
}

.order-14 {
	order: 14 !important;
}

.order-15 {
	order: 15 !important;
}

.order-16 {
	order: 16 !important;
}

.order-17 {
	order: 17 !important;
}

.order-18 {
	order: 18 !important;
}

.order-19 {
	order: 19 !important;
}

.order-20 {
	order: 20 !important;
}

.order-21 {
	order: 21 !important;
}

.order-22 {
	order: 22 !important;
}




/* WIZARD */
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/

#msform {
	height: 100%;
	/*Image only BG fallback*/

	/*background = gradient + image pattern combo*/

}

#msform {
	font-family: montserrat, arial, verdana;
}
/*form styles*/
#msform {
	width: 100%;
	margin: 7px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;

	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 0px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: black;
	text-transform: uppercase;
	font-size: 11px;
	width: 25%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 13px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}

/* END WIZARD */



td{
  padding:5px !important;
}

.ui-autocomplete { z-index:2147483647 !important; }
.ui-timepicker-container{ z-index:2147483647 !important; }
.ui-timepicker-viewport{
  width: unset !important;
}

.ui-datepicker{
   z-index:2147483647 !important;
}


.swal2-container .swal-wide {
	width: 800px;
}

.swal2-container .swal-wide .swal2-html-container {
	height: 450px;
	text-align: left;
}


.dropdown-notifications .dropdown-menu.show {
	display: block;
	width: 20rem;
	left: auto;
	right: 0;
	max-height: 50dvh;
	overflow-y: scroll;
}

.dropdown-notifications .dropdown-menu .dropdown-item {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: stretch;
	padding-bottom: 15px;
}

.dropdown-notifications .dropdown-menu .dropdown-item.not-seen {
	background-color: #feedc6;
}

.dropdown-notifications .dropdown-menu .dropdown-item.not-seen:hover {
	background-color: #ffdd8e;
}

.dropdown-notifications .dropdown-menu .dropdown-item:not(.not-seen) {
	cursor: default;
}

.dropdown-notifications .dropdown-menu .dropdown-item:not(.not-seen):hover {
	background-color: white;
}

.dropdown-notifications .dropdown-menu .dropdown-item.not-seen .notification-datetime > i.fa-circle {
	color: green;
	font-size: 10px;
}

.dropdown-notifications .dropdown-menu .dropdown-item .notification-datetime {
	font-size: 12px;
	display: flex;
	justify-content: start;
	align-items: center;
}

.dropdown-notifications .dropdown-menu .dropdown-item .notification-text {
	white-space: normal;
}

.card.card-sms-points img {
	position: absolute;
	width: 150px;
	right: -40px;
	bottom: -40px;
	opacity: .6;
}

button.btn.btn-white {
	background-color: white;
	transition: all .3s;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .1);
}

button.btn.btn-white:hover {
	background-color: rgba(255, 255, 255, .2);
}

.fs-sm {
	font-size: .8rem;
}