﻿.loader-background {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000000;
  /*** Logo Loader One - Comet Spinner ***/
}
.loader-background .logo-loader {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 1px solid #ccc;
  box-sizing: border-box;
  z-index: 500;
}
.loader-background .logo-loader--comet-spin .logo-loader__spinner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: 1s spin linear infinite;
  border-top: calc(200px * .0235) solid #EA5B0C;
  border-right: calc(200px * .0235) solid transparent;
}
.loader-background .logo-loader--comet-spin .logo-loader__logo img {
  width: calc(200px * .7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.primary-btn {
  background-color: #0026ff;
  padding: 5px 20px;
  color: #ffffff;
  border: 2px solid #0026ff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s, background-color 0.2s;
}
.primary-btn:hover {
  background-color: #ffffff;
  padding: 5px 20px;
  color: #0026ff;
  border: 2px solid #0026ff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
}
.secondary-btn {
  background-color: #ffffff;
  padding: 5px 20px;
  color: #0026ff;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s, background-color 0.2s;
}
.secondary-btn:hover {
  background-color: #0026ff;
  padding: 5px 20px;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
}
.bordered-container {
  border: 1px solid darkgrey;
  border-radius: 5px;
  padding: 2rem;
  background-color: white;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 20px;
  margin: 0;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.invalid {
  color: red !important;
}
.access-denied-wrapper {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.access-denied-wrapper .access-denied {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.access-denied-wrapper .access-denied p {
  margin: 0;
  font-size: 32px;
}
.access-denied-wrapper .access-denied a {
  font-size: 24px;
}
.configurazione-permessi-wrapper {
  display: flex;
}
.configurazione-permessi-wrapper .left {
  border: 1px solid darkgrey;
  border-radius: 5px;
  padding: 2rem;
  background-color: white;
  width: 20%;
  margin-right: 20px;
}
.configurazione-permessi-wrapper .left .header {
  font-size: 24px;
  color: black;
  margin: 0;
}
.configurazione-permessi-wrapper .left .hint {
  font-size: 18px;
  margin: 0;
}
.configurazione-permessi-wrapper .left .ruolo-card {
  border-radius: 5px;
  padding: 15px;
  color: black;
  font-size: 18px;
  margin: 10px 0;
}
.configurazione-permessi-wrapper .left .ruolo-card:hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.configurazione-permessi-wrapper .left .ruolo-card p {
  margin: 0;
}
.configurazione-permessi-wrapper .left .selected {
  background-color: #b3d1ff;
}
.configurazione-permessi-wrapper .right {
  border: 1px solid darkgrey;
  border-radius: 5px;
  padding: 2rem;
  background-color: white;
  width: 80%;
}
.configurazione-permessi-wrapper .right .header {
  font-size: 24px;
  color: black;
  margin: 0;
}
.not-allowed-buttons {
  opacity: 0.7;
  cursor: not-allowed !important;
}