@charset "UTF-8";
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Source Sans 3", sans-serif;
  min-height: 100%;
  background: #FAFAFA;
}
body.login {
  background: #fff;
}
body.fixed {
  overflow: hidden;
}

h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30.17px;
  margin-bottom: 0;
}

h5 {
  font-family: "Source Code Pro", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #ed1b24;
  margin-bottom: 4px;
}

table.hover tr:hover {
  background-color: #f6f9fc !important;
}
table.data {
  margin-bottom: 16px;
}
table.data tr:nth-child(even) {
  background-color: #FAFAFA;
}
table.data th {
  font-weight: 700;
  font-size: 12px;
  line-height: 15.6px;
  color: #ed1b24;
  border-bottom: 1px solid #E2E2E2;
  padding: 10px 12px;
}
table.data td {
  font-family: "Source Code Pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15.6px;
  padding: 6px 12px;
}
table.data td a {
  font-weight: 700;
  text-decoration: underline;
  color: #333;
}
table.data td a:visited {
  color: #333;
}
table.data td a:hover {
  color: #333;
}
table.data td a:active {
  color: #333;
}
table.data td a.use {
  color: #fff;
}
table.data td a.use:visited {
  color: #fff;
}
table.data td a.use:hover {
  color: #fff;
}
table.data td a.use:active {
  color: #fff;
}
table.data td .use {
  background-color: #ed1b24;
  border-radius: 20px;
  font-weight: 400;
  text-decoration: none;
  padding: 2px 8px;
}
table.data td .use--usato {
  background-color: #DAD8D6;
  font-weight: 600;
  color: #333;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}

.m-form__field.date-picker {
  position: relative;
}
.m-form__field.date-picker::after {
  font-family: "Font Awesome 6 Pro";
  content: " ";
  position: absolute;
  right: 15px;
  bottom: 12px;
  font-size: 18px;
  font-weight: 300;
  color: #898989;
}
.m-form__label {
  font-weight: 600;
  font-size: 13px;
  line-height: 16.34px;
  color: #333;
}
.m-form input[type=text],
.m-form textarea {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.6px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  width: 100%;
  padding: 14px;
}
.m-form input[type=text]:focus,
.m-form textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.m-form textarea.no-resize {
  resize: none;
}
.m-form select {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.6px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  width: 100%;
  padding: 14px;
  background-color: transparent;
}
.m-form select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.m-form--login {
  padding-top: 20vh;
}
.m-form--login label {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  line-height: 16.34px;
  margin-bottom: 10px;
}
.m-form--login input[type=text],
.m-form--login input[type=password] {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20.11px;
  width: 100%;
  border: 1px solid #E2E2E2;
  border-radius: 36px;
  margin-bottom: 16px;
  padding: 14px;
}
.m-form--login input[type=text]:focus,
.m-form--login input[type=password]:focus {
  outline: none;
  border-color: transparent;
  -webkit-box-shadow: 0 0 0 3px #E61E1E40;
  box-shadow: 0 0 0 3px #E61E1E40;
}
.m-form--login input[type=text]:last-of-type,
.m-form--login input[type=password]:last-of-type {
  margin-bottom: 24px;
}
.m-form--login a {
  font-weight: 600;
  font-size: 13px;
  line-height: 16.34px;
  text-decoration: underline;
  color: #333;
}
.m-form--login a:visited {
  color: #333;
}
.m-form--login a:hover {
  color: #333;
}
.m-form--login a:active {
  color: #333;
}
.m-form--login button {
  padding: 15px 0;
}
.m-form--login .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.m-select {
  background-color: transparent;
  border: 1px solid #DAD8D6;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../icons/angle_down.svg") no-repeat right 16px center;
  background-size: 8px;
  margin-bottom: 40px;
  padding: 8px 80px 8px 16px;
}
@media screen and (max-width: 767px) {
  .m-select {
    max-width: 100%;
  }
}

.m-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-transform: uppercase;
  color: #4D4D4D;
  margin-bottom: 8px;
}

.m-btn {
  border: 0;
  background-color: transparent;
  white-space: nowrap;
  padding: 0;
  text-decoration: none;
}
.m-btn--primary {
  background-color: #ed1b24;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: #fff;
  padding: 12px 40px;
}
.m-btn--primary:visited {
  color: #fff;
}
.m-btn--primary:hover {
  color: #fff;
}
.m-btn--primary:active {
  color: #fff;
}
.m-btn--primary.white {
  background-color: #fff;
  color: #ed1b24;
  text-transform: uppercase;
}
.m-btn--primary.black {
  background-color: #333;
  text-transform: uppercase;
}
.m-btn--primary.quad {
  font-size: 14px;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
}
.m-btn--primary.quad:visited {
  color: #fff;
}
.m-btn--primary.quad:hover {
  color: #fff;
}
.m-btn--primary.quad:active {
  color: #fff;
}
.m-btn--primary.apply {
  font-weight: 700;
  font-size: 14px;
  line-height: 17.6px;
  padding: 9px 60px;
}
.m-btn--primary[disabled] {
  background-color: #DAD8D6;
}
.m-btn--cancel {
  font-weight: 700;
  font-size: 14px;
  line-height: 17.6px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #898989;
  padding: 9px 16px;
}
.m-btn--cancel:visited {
  color: #898989;
}
.m-btn--cancel:hover {
  color: #898989;
}
.m-btn--cancel:active {
  color: #898989;
}
.m-btn:disabled {
  background-color: #DAD8D6;
}

.m-header {
  background-color: #fff;
}
.m-header .logo {
  width: 180px;
}

.m-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.m-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-nav ul li {
  padding: 28px 46px;
}
.m-nav ul li.signin {
  border-left: 1px solid #E2E2E2;
  padding-right: 0;
}
.m-nav ul li.signout {
  border-left: 1px solid #E2E2E2;
  padding-right: 0;
}
.m-nav ul li .logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  padding-right: 0;
}
.m-nav ul li .logout p {
  font-weight: 400;
  font-size: 12px;
  line-height: 15.08px;
  margin: 0;
}
.m-nav ul li .logout span {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 15.08px;
  color: #000000;
}
.m-nav ul li.active a {
  pointer-events: none;
  /* Disabilita il click */
  cursor: default;
  /* Cambia il cursore in uno standard (non cliccabile) */
  color: #ed1b24;
}
.m-nav ul li.active a:visited {
  color: #ed1b24;
}
.m-nav ul li.active a:hover {
  color: #ed1b24;
}
.m-nav ul li.active a:active {
  color: #ed1b24;
}
.m-nav ul li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 17.6px;
  text-decoration: none;
  color: #000000;
}
.m-nav ul li a:visited {
  color: #000000;
}
.m-nav ul li a:hover {
  color: #000000;
}
.m-nav ul li a:active {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .m-nav ul li {
    padding: 12px 20px;
  }
}

.m-section {
  -webkit-box-shadow: 0 20px 20px -20px #0000001F;
  box-shadow: 0 20px 20px -20px #0000001F;
  padding: 24px;
  margin-bottom: 24px;
}
.m-section--header {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 48px 0 32px;
  margin-bottom: 0;
}
.m-section--filters {
  background-color: #fff;
  padding: 20px 42px;
}
.m-section--data {
  background-color: #fff;
}
.m-section__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30.17px;
  margin-bottom: 32px;
}
.m-section h2 {
  font-size: 24px;
  font-weight: 750;
  line-height: 30px;
  color: #000000;
  margin-bottom: 8px;
}
.m-section h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22.63px;
  margin-bottom: 24px;
}
.m-section h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 22.5px;
  color: #000000;
  margin-bottom: 32px;
}
.m-section--blue {
  background-color: #ed1b24;
}
.m-section--blue .m-section__title {
  font-size: 64px;
  line-height: 64px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  padding: 150px 0 80px;
}
@media screen and (max-width: 767px) {
  .m-section--blue .m-section__title {
    font-size: 40px;
    line-height: 1;
    padding: 0;
  }
}

.m-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.m-filters input[type=text] {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.6px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  padding: 14px;
}
.m-filters .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.m-filters .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.m-filters .options label {
  font-weight: 600;
  font-size: 13px;
  line-height: 16.34px;
  color: #333;
}
.m-filters .options select {
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 17.6px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  min-width: 200px;
  padding: 14px;
}
.m-filters .options select[disabled] {
  background-color: #f6f9fc;
}
.m-filters .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.m-filters .date label {
  font-weight: 600;
  font-size: 13px;
  line-height: 16.34px;
  color: #333;
}
.m-filters .date.date--range .range-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  padding: 15px 24px;
}
.m-filters .date.date--range .range-selector a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17.6px;
  text-decoration: none;
  color: #333;
}
.m-filters .date.date--range .range-selector a:visited {
  color: #333;
}
.m-filters .date.date--range .range-selector a:hover {
  color: #333;
}
.m-filters .date.date--range .range-selector a:active {
  color: #333;
}
.m-filters .date.date--range .range-selector a.active {
  font-weight: 700;
  color: #ed1b24;
}
.m-filters .date.date--range .range-selector a.active:visited {
  color: #ed1b24;
}
.m-filters .date.date--range .range-selector a.active:hover {
  color: #ed1b24;
}
.m-filters .date.date--range .range-selector a.active:active {
  color: #ed1b24;
}
.m-filters .date.date-picker {
  position: relative;
}
.m-filters .date.date-picker::after {
  content: " ";
  position: absolute;
  right: 15px;
  bottom: 12px;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: #898989;
}
.m-summary__header {
  margin-bottom: 32px;
}
.m-summary__body h2 {
  font-weight: 700;
  font-size: 21px;
  line-height: 24.63px;
  color: #333;
  margin-bottom: 8px;
}
.m-summary__body h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22.63px;
  color: #333;
  margin-bottom: 8px;
}
.m-summary__body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20.11px;
  color: #333;
  margin-bottom: 24px;
}
.m-summary__body ul {
  margin-bottom: 16px;
}
.m-summary__body ul li {
  margin-bottom: 8px;
}

.m-footer {
  background-color: #f6f9fc;
  margin-top: auto;
  padding: 20px 0;
}
.m-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
.m-footer__inner p {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
  margin: 0;
}
.m-footer__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-footer__inner ul li {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  padding: 8px;
}
.m-footer__inner ul li a {
  color: #fff;
}
.m-footer__inner ul li a:visited {
  color: #fff;
}
.m-footer__inner ul li a:hover {
  color: #fff;
}
.m-footer__inner ul li a:active {
  color: #fff;
}
.m-footer .logo {
  width: 180px;
}
@media screen and (max-width: 991px) {
  .m-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
}

.dataTables_wrapper .dataTables_filter {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-bottom: 16px;
}
.dataTables_wrapper .dataTables_filter label {
  width: 100%;
  font-size: 0;
  /* Nasconde solo il testo */
}
.dataTables_wrapper .dataTables_filter label input {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 20.11px;
  border: 0;
  border-bottom: 1px solid #DAD8D6;
  padding-left: 46px;
}
.dataTables_wrapper .dataTables_filter label input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_filter::before {
  content: " ";
  position: absolute;
  left: 15px;
  bottom: 4px;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: #DAD8D6;
}
.dataTables_wrapper .dataTables_info {
  font-weight: 400;
  font-size: 12px;
  line-height: 15.08px;
  color: #333;
}
.dataTables_wrapper .dataTables_paginate {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.6px;
  color: #898989;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #ed1b24;
  color: #fff !important;
  border-color: #ed1b24;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #ed1b24;
  color: #fff !important;
  border-color: #ed1b24;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #ed1b24;
  color: #fff !important;
  border-color: #ed1b24;
}

div .dt-buttons .dt-button {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 17.6px;
  background: #333333;
  color: #fff;
  padding: 9px 16px;
}
div .dt-buttons .dt-button:hover {
  background: rgba(51, 51, 51, 0.9) !important;
  color: #fff !important;
}
div .dt-buttons #zip {
  padding: 9px 16px 9px 46px;
}
div .dt-buttons #zip::before {
  font-family: "Font Awesome 6 Pro";
  content: " ";
  position: absolute;
  left: 15px;
  bottom: 8px;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
div .dt-buttons .buttons-excel {
  padding: 9px 16px 9px 46px;
}
div .dt-buttons .buttons-excel:hover {
  background: rgba(51, 51, 51, 0.9) !important;
  color: #fff !important;
}
div .dt-buttons .buttons-excel::before {
  content: " ";
  position: absolute;
  left: 15px;
  bottom: 8px;
  font-size: 18px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: #fff;
}

.flatpickr-day {
  line-height: 36px !important;
}

.flatpickr-day.selected {
  background: transparent !important;
  border: 2px solid #ed1b24 !important;
  color: #ed1b24 !important;
}

.m-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}
.m-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #aaa;
  z-index: 2;
}
.m-modal__close:hover, .m-modal__close:focus {
  color: black;
  cursor: pointer;
}
.m-modal__content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.m-modal__inner {
  padding: 0 0 40px;
}
.m-modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.m-modal--selection .m-modal__content {
  border-top: 6px solid #4D4D4D;
  height: 70vh;
  top: unset;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: ease-out all 0.3s;
  transition: ease-out all 0.3s;
}
.m-modal--selection .m-modal__content.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: ease-out all 0.3s;
  transition: ease-out all 0.3s;
}
.m-modal .form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}