* {
	font-family: dosis;
}

a {
	text-decoration: none;
}

.row {
	max-width: 60rem;
	height: auto;
}

.border {
	border: 1px solid;
}

.line-separator {
	height: 3em;
}

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

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

.align-center {
	text-align: center;
}

.no-padding {
	padding: 0;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.flex-bottom {
	display: flex;
    align-items: flex-end;
}

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

.middle-flex {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 100%;
}

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

.center {
	justify-content: center;
}

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

.pointer {
	cursor: pointer;
}

.material-icons {
	user-select: none;
}

.ciao {
	height: 100%;
    width: 240px;
    background: green;
}

.transition-height {
	transition: all 2s;
    -webkit-transition: all 2s;
}

#loading{
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	margin-top: 0px;
	top: 0px;
}

.input-group {
	margin: 0;
}








