/* MAIN TOOLS */

.device-height {
	min-height: calc(100vh - 74px)!important;
}

@media only screen and (max-width: 992px) {
	.device-height {
		min-height: auto!important;
	}
}

.invisible{
  display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.full-width {
	display: block;
	width: 100%;
}

.text-centered {
	text-align: center;
}

.no-margin {
	margin: 0px!important;
}

.margin-right {
	margin-right: 10px;
}

.margin-left {
	margin-left: 10px;
}

.no-padding {
	padding: 0px!important;
}

.no-borders {
	border: 0px!important;
}

.opacity-40 {
	opacity: 0.4!important;
}

.centered-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.cursor-pointer {
	cursor: pointer;
}

.cursor-na {
	cursor: not-allowed!important;
}

.hidden {
	display: none!important;
}

.displayed {
	display: block!important;
}

.readonly {
	cursor: not-allowed;
	opacity: 0.5;
}

.equal-height {
	display: flex;
}

@media only screen and (max-width: 992px) {
	.equal-height {
		display: block;
	}
}
