
/* Add your own CSS classes to this file and reference them using the $cssclassname property */
body {
	background-color: rgb(250, 250, 250);
}

.card-shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.om-error-text {
	z-index: 999;
}

/* Bordo inferiore nelle textbox */
.bordered {
	border-bottom: 2px dotted rgba(52, 113, 175, 0.57) !important;
}

#omnis_overlay {
	background-color: rgba(44, 44, 44, 0.39);
	height: 100% !important;
	width: 100% !important;
}

/* OVERRIDE OMNIS LOADER */
/******* CUBO INIZIO *****/
/*
.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  filter: saturate(3);
  width: 0.1px;
  height: 0.1px;
  border: 40px solid transparent;
  border-radius: 5px;
  animation: loader 3s ease-in infinite, spin 1s linear infinite;
  margin: 0px;
}

.loader::before {
  filter: saturate(0.3);
  display: block;
  position: absolute;
  z-index: -1;
  margin-left: -40px;
  margin-top: -40px;
  content: '';
  height: 0.1;
  width: 0.1;
  border: 40px solid transparent;
  border-radius: 5px;
  animation: loader 2s ease-in infinite reverse, spin 0.8s linear infinite reverse;
}

.loader::after {
  display: block;
  position: absolute;
  z-index: 2;
  margin-left: -10px;
  margin-top: -10px;
  content: '';
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background-color: white;
}

@keyframes loader {
  0% {
    border-bottom-color: transparent;
    border-top-color: #114357;
  }
  25% {
    border-left-color: transparent;
    border-right-color: #826C75;
  }
  50% {
    border-top-color: transparent;
    border-bottom-color: #F29492;
  }
  75% {
    border-right-color: transparent;
    border-left-color: #826C75;
  }
  100% {
    border-bottom-color: transparent;
    border-top-color: #114357;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
*/
/******* CUBO FINE *******/



/******* SPINNER INIZIO *******/

.loader {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  margin: 0px;
}

.loader, .loader:before, .loader:after {
  position: absolute;
  border: 3px solid transparent;
  border-top: 3px solid hsl(83, 82%, 53%);
  border-radius: 50%;
  animation: rotate linear infinite;
  content: '';
}

.loader {
  height: 100px;
  width: 100px;
  animation-duration: 1.05s;
}

.loader:before {
  height: 75px;
  width: 75px;
  top: 10px;
  left: 10px;
  animation-duration: 10s;
}

.loader:after {
  height: 50px;
  width: 50px;
  top: 22px;
  left: 22px;
  animation-duration: 4s;
}

@keyframes rotate {
  from {
    transform: rotateZ(360deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}

/****** SPINNER FINE ******/



/******* 3 LINEE INIZIO *******/
/*
.loader {
  margin: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 10px;
  background: #3498DB;
  border-radius: 5px;
  animation: load 1.8s ease-in-out infinite;
}
.loader:before, .loader:after {
  position: absolute;
  display: block;
  content: "";
  animation: load 1.8s ease-in-out infinite;
  height: 10px;
  border-radius: 5px;
}
.loader:before {
  top: -20px;
  left: 10px;
  width: 40px;
  background: #EF4836;
}
.loader:after {
  bottom: -20px;
  width: 35px;
  background: #F5AB35;
}

@keyframes load {
  0% {
    transform: translateX(40px);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(40px);
  }
}
*/
/***** 3 LINEE FINE ******/




