﻿/***** Wrapper *****/
.wrapper {
  display: block;
}
/***** Sidebar *****/
.sidebar {
  width: 270px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: -275px;
  z-index: 999;
  background: white;
  color: #000000;
  transition: all 0.3s;
  box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
  text-align: left;
}
.sidebar.active {
  left: 0;
}
/***** Content *****/
.content {
  width: 100%;
  transition: all 0.3s;
}
/***** Dark overlay *****/
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}
.open-menu {
  top: 10px;
  left: 10px;
  z-index: 997;
}
/* Style for all buttons with the class btn-customized */
a.btn-customized {
  margin-left: 5px;
  margin-right: 5px;
  padding: 0.75rem 1.5rem;
  background: transparent !important;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
  color: black;
  box-shadow: none;
}
a.btn-customized:hover,
a.btn-customized:active,
a.btn-customized:focus,
a.btn-customized:active:focus,
a.btn-customized.active:focus,
a.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active,
a.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  outline: 0;
  background: #B0D4F3 !important;
  /*for browsers that don't recognize rgba*/
  background: rgba(243, 91, 63, 0.7);
  border: 0;
  color: #fff;
  box-shadow: none;
}
.dismiss {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 0.3s;
  background: transparent !important;
  border-radius: 4px;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}
.dismiss:hover,
.dismiss:focus {
  background-color: #B0D4F3 !important;
}
.sidebar .logo {
  padding: 36px 20px;
  border-bottom: 1px solid #DBDBDB;
  transition: all 0.3s;
}
.sidebar-item:hover {
  background-color: #B0D4F3 !important;
}
.sidebar .logo a {
  display: inline-block;
  width: 172px;
  height: 34px;
  background: url(img/logo.png) left top no-repeat;
  border: 0;
  text-indent: -999999px;
}
.sidebar ul.menu-elements {
  padding: 10px 0;
  /*border-bottom: 1px solid #444;*/
  transition: all 0.3s;
}
.sidebar ul li a {
  display: block;
  padding: 10px 20px;
  border: 0;
  color: #fff;
}
.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li.active > a:hover,
.sidebar ul li.active > a:focus {
  outline: 0;
}
.sidebar ul li a i {
  margin-right: 5px;
}
.sidebar ul li.active > a,
a[aria-expanded="true"] {
  background: #444;
  color: #fff;
}
.sidebar ul ul a {
  background: white;
  padding-left: 30px;
  font-size: 14px;
}
.sidebar ul ul li.active > a {
  background: #555;
}
.sidebar a[data-toggle="collapse"] {
  position: relative;
}
.sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.sidebar .to-top {
  padding: 20px;
  text-align: center;
}
a.btn-customized-3 {
  display: inline-block;
  width: 100%;
  margin: 0;
  background: #444;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  box-shadow: none;
}
a.btn-customized-3:hover,
a.btn-customized-3:active,
a.btn-customized-3:focus,
a.btn-customized-3:active:focus,
a.btn-customized-3.active:focus,
a.btn-customized-3.btn.btn-primary:not(:disabled):not(.disabled):active,
a.btn-customized-3.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  outline: 0;
  background: #555;
  border: 0;
  color: #fff;
  box-shadow: none;
}
a.btn-customized-3 i {
  margin-right: 5px;
}
.sidebar .dark-light-buttons {
  padding: 10px 20px 30px 20px;
  text-align: center;
}
a.btn-customized-4 {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 0 3px;
  padding: 0;
  background: #444;
  border: 0;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  box-shadow: none;
  text-indent: -999999px;
}
a.btn-customized-4.btn-customized-dark {
  background: #222;
}
a.btn-customized-4.btn-customized-light {
  background: #fff;
}
a.btn-customized-4.btn-customized-dark:hover,
a.btn-customized-4.btn-customized-dark:active,
a.btn-customized-4.btn-customized-dark:focus,
a.btn-customized-4.btn-customized-dark:active:focus,
a.btn-customized-4.btn-customized-dark.active:focus,
a.btn-customized-4.btn-customized-dark.btn.btn-primary:not(:disabled):not(.disabled):active,
a.btn-customized-4.btn-customized-dark.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  outline: 0;
  background: #555;
  border: 0;
  color: #fff;
  box-shadow: none;
}
a.btn-customized-4.btn-customized-light:hover,
a.btn-customized-4.btn-customized-light:active,
a.btn-customized-4.btn-customized-light:focus,
a.btn-customized-4.btn-customized-light:active:focus,
a.btn-customized-4.btn-customized-light.active:focus,
a.btn-customized-4.btn-customized-light.btn.btn-primary:not(:disabled):not(.disabled):active,
a.btn-customized-4.btn-customized-light.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  outline: 0;
  background: #555;
  border: 0;
  color: #fff;
  box-shadow: none;
}
.logofooter {
  position: absolute !important;
  left: 10px !important;
  bottom: 0;
}
.sidebar-operatore {
  width: 140px;
  height: calc(100vh - 60px);
  display: inline-block;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
  color: black;
  transition: all 0.3s;
  /*box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);*/
  text-align: center;
}
/*Color palette*/
body {
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 500;
}
body main {
  height: calc(100vh - 80px);
  overflow: auto;
}
.button-secondary {
  border: 2px solid #337AB7;
  color: #337AB7;
  background-color: white;
  padding-inline: 15px;
}
.button-secondary:hover {
  border: 2px solid #3C8CB6;
  color: #3C8CB6;
  background-color: white;
}
.button-primary {
  border: 2px solid #337AB7 !important;
  color: white;
  background-color: #337AB7 !important;
  padding-inline: 15px;
}
.button-primary:hover {
  background-color: #3C8CB6 !important;
  color: white;
  border: 2px solid #3C8CB6 !important;
}
.my-navbar {
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
  z-index: 50;
  padding: 20px 0;
  height: 80px;
}
.navbar-path {
  background-color: #0076BE38;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.login-form-container {
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 65px 75px;
}
@media (max-width: 1180px) {
  .login-form-container {
    padding: 50px 70px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.cursor-pointer {
  cursor: pointer;
}
.home-tile-container {
  /*padding: 10px 10px;*/
  height: 190px;
}
.home-tile-container .home-tile {
  height: 100%;
  padding: 20px;
  background-color: white;
  opacity: 1;
  /*color: black;*/
  color: #222222;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #9E9E9E;
  box-shadow: 0px 3px 6px #00000029;
  transition: background-color 0.2s, color 0.2s;
}
.home-tile-container .home-tile .tile-icon {
  flex-basis: 100%;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.home-tile-container .home-tile:hover {
  background-color: #EEEEEE;
  color: black;
}
.home-tile-container .home-tile-hidden {
  height: 100%;
  padding: 20px;
  background-color: white;
  opacity: 1;
  color: black;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.home-tile-container .home-tile-hidden .tile-icon {
  flex-basis: 100%;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.home-tile-container .home-tile-hidden:hover {
  background-color: white;
}
.shadow-card {
  box-shadow: 0px 3px 6px #00000029;
}
.select2 {
  width: 100% !important;
  font-weight: 400;
}
.select2-container .select2-selection--single {
  height: calc(1.5em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem !important;
  border: 1px solid #ced4da !important;
}
.sinottico .card-chart {
  border: 1px solid;
  border-radius: 5px;
  padding: 10px 15px;
}
.sinottico .card-chart.rpm {
  background-color: #E3F2FD;
  color: #337AB7;
  border-color: #0A6EBD;
}
.sinottico .card-chart.bool-off {
  background-color: #9E9E9E36;
  color: #707070;
  border-color: #9E9E9E;
}
.sinottico .card-chart.bool-on {
  background-color: #1DC9B73B;
  color: #17A192;
  border-color: #1DC9B7;
}
.sinottico .card-chart .link-btn {
  display: inline-block;
  background-color: #337AB7;
  color: white;
  font-size: 21px;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  border: 1px solid #337AB7;
  transition: background-color 200ms, color 200ms;
}
.timbrature-wrapper .row .left-panel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.timbrature-wrapper .row .left-panel-wrapper .logo-wrapper {
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 18px 2px rgba(0, 0, 0, 0.71);
  box-shadow: 0px 0px 18px 2px rgba(0, 0, 0, 0.71);
}
.timbrature-wrapper .row .left-panel-wrapper .clock-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 8rem;
  font-weight: 900;
  padding: 30px 0px;
}
.timbrature-wrapper .row .left-panel-wrapper .clock-wrapper #dateContainer {
  font-size: 2.5rem;
}
.timbrature-wrapper .row .right-panel-wrapper .default-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100px 0px 0px 0px;
  background-color: #2196F3;
}
.timbrature-wrapper .row .right-panel-wrapper .ingresso-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100px 0px 0px 0px;
  background-color: #1DC9B7;
}
.timbrature-wrapper .row .right-panel-wrapper .uscita-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100px 0px 0px 0px;
  background-color: #6C63FF;
}
.timbrature-wrapper .row .right-panel-wrapper .title {
  color: white;
  font-size: 4rem;
  font-weight: 300;
}
.timbrature-wrapper .row .right-panel-wrapper .icon {
  color: white;
  font-size: 14rem;
}