﻿@charset "utf-8";

:root {
  --paletta-1: #1A46AC;
  --paletta-2: #797aae;
  --paletta-3: #aaa9bc;
  --paletta-4: #00c6de;
  --paletta-5: #f9f8ff;
  --paletta-6: #de4a57;
  --paletta-7: #464555;
  --paletta-8: #1ec198;
  --paletta-9: #e9e9e9;
  --paletta-10: #d1eae9;
  --nero-paletta: #0e0e0f;
  --bianco-paletta: #ffffff;
  --font-size-xs: clamp(0.65rem, 0.08vi + 0.63rem, 0.7rem);
  --font-size-sm: clamp(0.8rem, -0.01vi + 0.8rem, 0.8rem);
  --font-size-base: clamp(1rem, 0.11vi + 0.97rem, 1.06rem);
  --font-size-md: clamp(1.25rem, 0.3vi + 1.17rem, 1.42rem);
  --font-size-lg: clamp(1.56rem, 0.59vi + 1.41rem, 1.89rem);
  --font-size-xl: clamp(1.95rem, 1.02vi + 1.7rem, 2.52rem);
  --font-size-xxl: clamp(2.44rem, 1.66vi + 2.03rem, 3.35rem);
  --font-size-xxxl: clamp(3.05rem, 2.58vi + 2.41rem, 4.47rem);
  --line-height-xxs: 1;
  --line-height-xs: 1.15;
	--line-height-sm: 1.2;
  --line-height-md: 1.4;
	--line-height-base: 1.6;
	--line-height-lg: 1.8;
	--line-height-xl: 2;
  --line-height-xxl: 2.2;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-x: hidden !important;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  overflow-x: hidden !important;
  color: var(--nero-paletta);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  width: 100%;
  min-height: 100%;
  margin: 0px;
  padding: 0px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #ffffff;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  margin: 0;
  margin-bottom: 20px;
}
br {
  margin: 0;
}
textarea {
  resize: none;
  min-height: 100px !important;
}
label {
  display: inline-block;
  color: var(--nero-paletta);
  font-size: var(--font-size-sm);
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}
label[for=privacy]{
  font-size: 12px;
  margin-bottom: 0px;
  line-height: 20px;
}
.button-theme {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 30px 15px 30px;
  z-index: 2;
  white-space: normal;
  background-color: var(--paletta-4);
  color: #ffffff;
  overflow: hidden;
  border: none;
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0s;
  border-radius: 0px;
}
.button-theme:hover,
.button-theme:focus,
.button-theme.focus,
.button-theme:active,
.button-theme.active {
 color: #ffffff;
 background-color: var(--paletta-1);
 transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0s;
}
.button-theme > i {
  border-radius: 0px;
  border: 0px solid transparent;
  border-width: 0px 0px 0px 0px;
  padding: 0px 0px 0px 5px;
  margin: 0px 0px 0px 0px;
  position: static;
}
.button-theme-border {
  background: none;
  border: 2px solid var(--paletta-1);
  color: var(--paletta-1);
}
.button-theme-border:hover,
.button-theme-border:focus,
.button-theme-border.focus,
.button-theme-border:active,
.button-theme-border.active {

}
.button-theme-border.white{
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-lg {
  padding: 10px 30px 10px 30px;
  font-size: 23px;
  line-height: 45px;
}
.btn-md {
  padding: 10px 24px 10px 24px;
  font-size: 19px;
  line-height: 35px;
}
.btn-sm {
  padding: 5px 10px 5px 10px;
  font-size: 13px;
  line-height: 25px;
}
.btn-xs {
  padding: 5px 10px 5px 10px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.5px;
}
.btn-block {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .btn-lg {
    padding: 7px 20px;
    font-size: 22px;
  }
  .button-theme{
    padding: 15px 30px;
  }
  .btn-sm {
    padding: 5px 10px 5px 10px;
  }
  .btn-xs {
    padding: 5px 10px 5px 10px;
  }
}
@media only screen and (max-width: 479px) {
  .btn-lg {
    padding: 15px 20px;
    font-size: 20px;
    display: inline-block;
    line-height: normal;
  }
}
.spinner-loading, .loadingsend{
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 999999999999999;
}
.form-control {
  display: block;
  width: 100%;
  padding: 15px 20px;
  color: #191919;
  background-color: #F3F4F5;
  background-image: none;
  border: 3px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:focus {
  background-color: #ffffff;
  border: 3px solid var(--paletta-1);
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  background-color: transparent;
  color: #626c84;
  opacity: 1;
  font-size: 15px;
  font-weight: normal;
}
.form-control:-ms-input-placeholder {
  background-color: transparent;
  color: #626c84;
  font-size: 15px;
  font-weight: normal;
}
.form-control::-webkit-input-placeholder {
  background-color: transparent;
  color: #626c84;
  font-size: 15px;
  font-weight: normal;
}
.has-success .form-control, .has-success .form-select {
    border-color: #198754 !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.has-danger .form-control, .has-danger .form-select {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.has-danger input[type=checkbox],
.has-danger input[type=radio]{
  border-color: #dc3545;
}
.has-success input[type=checkbox],
.has-success input[type=radio]{
  border-color: #198754;
}
.has-success .form-select {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
    background-position: right .75rem center,center right 2.25rem !important;
    background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem) !important;
}
.has-danger .form-select {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-position: right .75rem center,center right 2.25rem !important;
    background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem) !important;
}
.sun-editor + .pristine-error {
    display: block;
    margin-top: 0.5rem;
    color: #dc3545; /* rosso Bootstrap */
    font-size: 0.9em;
    font-weight: 500;
}
form div[class*='col-']{
  position: relative;
}
div:not(.display-text-help) > .text-help{
  display: none !important;
}
a {
  color: #0c1418;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
a:link {
  text-decoration: none;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
a:visited {
  text-decoration: none;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
a:hover {
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  color: #1e1e1e;
}
a:active {
  text-decoration: none;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
label[for=privacy]{
  font-size: 12px;
  margin-bottom: 0px;
  line-height: 20px;
}
h1 {
  color: var(--nero-paletta);
  font-size: var(--font-size-xxxl);
}
h2 {
  color: var(--nero-paletta);
  font-size: var(--font-size-xxl);
}
h3 {
  color: var(--nero-paletta);
  font-size: var(--font-size-xl);
}
h4 {
  color: var(--nero-paletta);
  font-size: var(--font-size-lg);
}
h5 {
  color: var(--nero-paletta);
  font-size: calc(var(--font-size-md) + 2px);
}
h6 {
  color: var(--nero-paletta);
  font-size: calc(var(--font-size-base) + 2px);
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  /* zoom: 1; */
  transform:scale(1);
}
ul {
  list-style: disc;
}
header {
  width: 100%;
  float: left;
  position: relative;
}
section {
  width: 100%;
  /* float: left; */
  position: relative;
  z-index: 0;
  display: block;
}
footer {
  width: 100%;
  /* float: left; */
  position: relative;
  display: block;
}
hr {
  margin: 10px 0;
}
figure {
  margin: 0rem !important;
}
.container {
  max-width: 1440px !important;
  margin: 0 auto;
  max-width: 100%;
}
.container-fluid {
  /*max-width: 1560px;*/
  padding-left: 2vw !important;
  padding-right: 2vw !important;
  margin: 0 auto;
  max-width: 100%;
}
.container-full {
  position: relative;
  margin-top: 90px;
  min-width: 250px;
}
@media (max-width: 992px) {
  .container-full {
    margin-top: 70px;
  }
}
.sec-title {
  position: relative;
  width: 100%;
}
.sec-title.center {
  text-align: center;
}
.sec-title.left {
  text-align: left;
}
.sec-title.right {
  text-align: right;
}
.sec-title h1,
.sec-title h2,
.sec-title h3,
.sec-title h4,
.sec-title h5,
.sec-title h6 {
  line-height: 1.2;
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--nero-paletta);
}
.sec-title h1::before,
.sec-title h2::before,
.sec-title h3::before,
.sec-title h4::before,
.sec-title h5::before,
.sec-title h6::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -22px;
  left: 0px;
  width: 80px;
  height: 4px;
  border-bottom: 4px solid var(--paletta-3);
}
.sec-title.right h2::before {
  right: 5%;
}
.sec-title.left h2::before {
  left: 5%;
}
.sec-title.center h1::before,
.sec-title.center h2::before,
.sec-title.center h3::before,
.sec-title.center h4::before,
.sec-title.center h5::before,
.sec-title.center h6::before {
  left: 50% !important;
  margin-left: -40px !important;
}
@media (max-width: 992px) {
  .sec-title.right,
  .sec-title.left {
    text-align: center;
  }
}
.sec-title p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  margin-top: 0px;
  margin-bottom: 2px;
}
.sec-title.white,
.sec-title.white h1,
.sec-title.white h2,
.sec-title.white h3,
.sec-title.white h4,
.sec-title.white h5,
.sec-title.white h6,
.sec-title.white p {
  color: #ffffff;
}
.sec-title.white h1::before,
.sec-title.white h2::before,
.sec-title.white h3::before,
.sec-title.white h4::before,
.sec-title.white h5::before,
.sec-title.white h6::before {
  border-bottom: 2px solid #ffffff;
}

.page-title {
  padding-top: 20px;
  padding-bottom: 30px;
  background: #ecf2f6;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(101, 109, 119, .20);
}
@media (max-width: 991px) {
  .page-title {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.breadcrumb{
  padding: 0px !important;
}
.page-title h1 {
  line-height: 40px;
  margin-bottom: 0px;
  text-align: left;
  font-size: 35px;
  font-weight: 700;
  color: var(--nero-paletta);
  margin-bottom: 20px;
  font-weight: 900;
}
.page-title .middle {
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px;
}
.page-title .middle li:last-child:after {
  display: none;
  padding-left: 10px;
}
.page-title .breadcrumb {
  background-color: transparent !important;
  margin: 0px;
}
.page-title .breadcrumb .breadcrumb-item.active {
  color: var(--paletta-2);
}
.page-title .breadcrumb .breadcrumb-item,
.page-title .breadcrumb .breadcrumb-item a {
  color: var(--nero-paletta);
  font-size: 14px;
  text-transform: uppercase;
}
.page-title .breadcrumb-item + .breadcrumb-item::before {
  color: var(--nero-paletta);
  content: "\F56A";
  font-family: 'bootstrap-icons';
  font-size: 10px;
  line-height: 23px;
}
@media (max-width: 991px) {
  .breadcrumb,
  .middle div {
    line-height: 12px;
    font-size: 12px;
  }
  .page-title h1 {
    font-size: 25px;
    line-height: 30px;
  }
  .page-title .breadcrumb-item + .breadcrumb-item::before{
    line-height: 20px;
  }
  .page-title .breadcrumb .breadcrumb-item, .page-title .breadcrumb .breadcrumb-item a{
    font-size: 13px;
    line-height: 20px;
  }
}
.bg-cover {
  width: 100%;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
}
.bg-overlay{
  position: relative;
}
.bg-overlay::before {
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    background-color: #000;
    z-index: -1;
}
.bg-cover-mobile{
  display: none;
}
@media(max-width:990px){
  .bg-cover-mobile{
  display: block;
}
  .bg-cover-mobile img{
  display: block;
  width: 100%;
  height: auto;
}
}

.bg-paletta-1{
  background-color: var(--paletta-1);
}
.bg-paletta-2{
  background-color: var(--paletta-2);
}
.bg-paletta-3{
  background-color: var(--paletta-3);
}
.bg-paletta-4{
  background-color: var(--paletta-4);
}
.bg-paletta-5{
  background-color: var(--paletta-5);
}
.bg-paletta-6{
  background-color: var(--paletta-6);
}
.bg-paletta-7{
  background-color: var(--paletta-7);
}
.bg-paletta-8{
  background-color: var(--paletta-8);
}
.bg-paletta-9{
  background-color: var(--paletta-9);
}
.bg-paletta-10{
  background-color: var(--paletta-10);
}
.color-paletta-1{
  color: var(--paletta-1);
}
.color-paletta-2{
  color: var(--paletta-2);
}
.color-paletta-3{
  color: var(--paletta-3);
}
.color-paletta-4{
  color: var(--paletta-4);
}
.color-paletta-5{
  color: var(--paletta-5);
}
.color-paletta-6{
  color: var(--paletta-6);
}
.color-paletta-7{
  color: var(--paletta-7);
}
.color-paletta-8{
  color: var(--paletta-8);
}
.color-paletta-9{
  color: var(--paletta-9);
}
.color-paletta-10{
  color: var(--paletta-10);
}
.pagination .page-item.active > .page-link{
  background-color: var(--paletta-1);
  border-color: var(--paletta-1);
  color: #ffffff;
}
.pagination .page-item .page-link{
  color: var(--paletta-1);
}
/*
./ DEFAULT CSS
-------------------------------------------------------------------------
*/
input + label{
    display: inline !important;
    margin-left: 5px;
  }
.form-check-input{
    margin-top: 8px;
}
.form-control {
display: block;
width: 100%;
padding: 5px 15px;
font-size: 1rem;
line-height: 1.5;
color: #495057 !important;
background-color: #fff !important;
background-clip: padding-box;
border: 1px solid #b6bbc0 !important;
border-radius: 0.25rem;
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
min-height: 40px !important;
}
.form-control:focus {
color: #495057;
background-color: #fff;
border-color: #80bdff !important;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}
.form-control.is-invalid,
.form-check-input.is-invalid,
.form-select.is-invalid{
border-color:#dc3545 !important;
}
.form-control.is-valid,
.form-check-input.is-valid,
.form-select.is-valid{
border-color: #198754 !important;
}
input[type="file"].is-invalid {
    border: 1px solid #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}
@media (min-width: 1400px){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1440px;
}
}
form div[class*='col-']{
position: relative;
}

.form-select{
padding: 5px 25px 5px 15px;
border: 1px solid #b6bbc0 !important;
line-height: 1.9;
}
.btn > * {
pointer-events: none;
}
a{
text-decoration: none;
}
.card{
background-color: #ffffff;
box-shadow: 0 4px 5px 0 rgba(58,59,69,.15) !important;
border: 1px solid #e3e6f0;
border-radius: 10px;
}
.card-header {
padding: 20px;
margin-bottom: 0;
background-color: #ffffff;
border-bottom: 1px solid #e3e6f0;
}
.card-header:first-child {
border-radius: 10px 10px 0 0;
}
.card-body {
    padding-top: 30px;
}
.card-footer {
padding: 20px;
margin-bottom: 0;
background-color: #f8f9fc;
border-top: 1px solid #e3e6f0;
}
.btn{
box-shadow: 0px 2px 3px 0px rgba(19, 19, 36, 0.3);
--bs-btn-padding-y: 0.5rem;
}
.btn-primary{
background-color: #0332b2;
}
.btn-success{
background-color: #00AA5B;
}
.btn-danger{
background-color: #E74A3B;
}
.btn-secondary{
background-color: #495057;
}
.btn-other{
background-color: #3e7cba;
}
/*
*
SEZIONE HYBRID
*
*
*/
.section-hybrid{
background-color: var(--paletta-9);
}
.section-hybrid .contenuti{
height: 100%;
padding-top: 40px;
padding-bottom: 100px;
}
.section-hybrid .footer-hybrid{
padding:20px 10px;
text-align: center;
}
.section-hybrid .sec-title.center{
text-align: center;
}
.section-hybrid .sec-title p{
margin-bottom: 0;
}
.section-hybrid .card-hybrid{
border-radius: 7px;
box-shadow: 0 0.1rem 2rem rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.09);
padding: 25px;
}
@media (max-width:1024px){
.section-hybrid .card-hybrid{
padding: 20px;
}
}
.section-hybrid .form-check-input {
margin-top: 2px;
margin-right: 5px;
}
.section-hybrid .card-header-hybrid{
background: none;
margin-bottom: 0px;
border-bottom: none;
text-align: center;
line-height: 1.3;
}
.section-hybrid .intestazione{
padding-top: 50px;
padding-bottom: 20px;
}
.section-hybrid .button-theme{
border-radius: 0px;
padding: 10px 20px;
font-size: 16px;
text-transform: uppercase;
font-weight: bold;
background-color: var(--paletta-1);
border-color: var(--paletta-1);;
color: var(--bianco-paletta);
}
.section-hybrid a{
color: var(--paletta-1);
text-decoration: none;
}
/*
*
*
*
FINE SEZIONE HYBRID
*
*
*/
.footer{
    padding: 20px 10px;
    text-align: center;
    background-color: #f0f1f1;
}
#sidebar {
    background:var(--paletta-1);
    color: #fff;
    border-right: 8px solid #d1dfe9;
}
#body{
    background-color: #F5F6F8;
}
.sidebarCollapse {
    border-radius: 12px;
    border-color: #ccdbe9;
    box-shadow: none;
}
#sidebar ul li a.activeSub,
#sidebar ul li a:hover, #sidebar ul li a.active {
    background: #2377B9;
    color: #ffffff;
}
#sidebar ul.components li ul li > a:hover{
    color: #ffffff;
}
#sidebar ul li a.active {
    background: var(--paletta-4);
}
.swal2-checkbox{
  display: none !important;
}
.swal2-actions .btn{
  margin: 0 10px
}
.colored-toast.swal2-icon-success {
  background-color: #00AA5B !important;
}
.colored-toast.swal2-icon-error {
  background-color: #E74A3B !important;
}
.colored-toast.swal2-icon-warning {
  background-color: #d6df28 !important;
}
.colored-toast.swal2-icon-info {
  background-color: #17addf !important;
}
.colored-toast.swal2-icon-question {
  background-color: #578395 !important;
}
.colored-toast .swal2-title {
  color: white;
}
.colored-toast .swal2-close {
  color: white;
}
.colored-toast .swal2-html-container {
  color: white;
}
div:where(.swal2-container) h2:where(.swal2-title){
  font-size: 20px !important;
}
.vis-password{
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis-password i{font-size: 17px;}
progress{
  height:5px;
  width: 100%;
}
progress[value="5"]::-moz-progress-bar, progress[value="5"]::-webkit-progress-value {
    background:#70b62c;
}
progress[value="3"]::-moz-progress-bar, progress[value="3"]::-webkit-progress-value,
progress[value="4"]::-moz-progress-bar, progress[value="4"]::-webkit-progress-value {
    background:#e6ae20;
}
progress[value="0"]::-moz-progress-bar, progress[value="0"]::-webkit-progress-value,
progress[value="1"]::-moz-progress-bar, progress[value="1"]::-webkit-progress-value,
progress[value="2"]::-moz-progress-bar, progress[value="2"]::-webkit-progress-value {
    background:#8f8a7b;
}
[data-tooltip] {
position: relative;
cursor: pointer;
}
[data-tooltip]:before,
[data-tooltip]:after {
line-height: 1;
font-size: 15px !important;
pointer-events: none;
position: absolute;
box-sizing: border-box;
display: none;
opacity: 0;
}
[data-tooltip]:before {
content: "";
border: 5px solid transparent;
z-index: 100;
}
[data-tooltip]:after {
content: attr(data-tooltip);
text-align: center;
min-width: 3em;
max-width: 21em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 8px 11px;
border-radius: 3px;
background: #000000;
color: #FFFFFF;
z-index: 99;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
display: block;
opacity: 1;
}
[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow="top"]::before {
bottom: 100%;
border-bottom-width: 0;
border-top-color: #000000;
}
[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::after {
bottom: calc(100% + 5px);
}
[data-tooltip]:not([data-flow])::before, [tooltip]:not([data-flow])::after,
[data-tooltip][data-flow="top"]::before,
[data-tooltip][data-flow="top"]::after {
left: 50%;
-webkit-transform: translate(-50%, -4px);
        transform: translate(-50%, -4px);
}
[data-tooltip][data-flow="bottom"]::before {
top: 100%;
border-top-width: 0;
border-bottom-color: #000000;
}
[data-tooltip][data-flow="bottom"]::after {
top: calc(100% + 5px);
}
[data-tooltip][data-flow="bottom"]::before, [data-tooltip][data-flow="bottom"]::after {
left: 50%;
-webkit-transform: translate(-50%, 8px);
        transform: translate(-50%, 8px);
}
[data-tooltip][data-flow="left"]::before {
top: 50%;
border-right-width: 0;
border-left-color: #000000;
left: calc(0em - 5px);
-webkit-transform: translate(-8px, -50%);
        transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="left"]::after {
top: 50%;
right: calc(100% + 5px);
-webkit-transform: translate(-8px, -50%);
        transform: translate(-8px, -50%);
}
[data-tooltip][data-flow="right"]::before {
top: 50%;
border-left-width: 0;
border-right-color: #000000;
right: calc(0em - 5px);
-webkit-transform: translate(8px, -50%);
        transform: translate(8px, -50%);
}
[data-tooltip][data-flow="right"]::after {
top: 50%;
left: calc(100% + 5px);
-webkit-transform: translate(8px, -50%);
        transform: translate(8px, -50%);
}
[data-tooltip=""]::after, [data-tooltip=""]::before {
display: none !important;
}
#sidebar .sottoMenu{
    display: none;
    list-style: none;
    width: 100%;
    padding: 0;
}
#sidebar .sottoMenu.show{
    display: block;
}
.navbar .dropdown-menu.hide{
    display: none;
}
.navbar .dropdown-menu.show{
    display: block;
}
.modale .modal-backdrop{
    display: none;
    background: rgba(0,0,0,.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    --bs-backdrop-opacity: 0.8;
    --bs-backdrop-bg: rgba(0,0,0,.5);
}
.modale .modal-backdrop.show,
.modale .modal.show{
    display: block;
}

/*------ DATATABLES -----*/
.tabellaLista{
    width: 100%;
}
.dataTables_wrapper .testa-datatables{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: end;
  margin-bottom: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 5px 0 10px rgba(8, 12, 20, 0.08);
}
.dataTables_wrapper .testa-datatables .dataTables_length{
  flex-basis:10%;
  margin-right: 0px;
}
.dataTables_wrapper .testa-datatables .dataTables_filter{
    flex-basis:40%;
    text-align: left;
    margin-right: 0px;
}
.dataTables_wrapper .testa-datatables.senza-filtri .dataTables_filter{
    flex-basis:80%;
}
.dataTables_wrapper .testa-datatables.senza-filtri .toolbardate{
    display: none;
}
.dataTables_wrapper .testa-datatables .dataTables_filter label{
    display: block;
    white-space: normal;
    font-weight: 700;
    margin-bottom: 0;
}
.dataTables_wrapper .testa-datatables .dataTables_filter input{
    width: 100%;
    margin: 0;
    margin-top: 2px;
}
.dataTables_wrapper .testa-datatables .toolbardate{
    flex-basis:40%;
}
.dataTables_wrapper .testa-datatables .divFiltri{
    width: 100%;
}
table.dataTable thead > tr > th.sorting::before,
table.dataTable thead > tr > th.sorting_asc::before{
    line-height: 15px !important;
}
table.dataTable thead > tr > th{
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
}
.table > thead th{
    background: var(--paletta-1);
}
table.dataTable thead > tr > th.sorting::before,
table.dataTable thead > tr > th.sorting::after{
    opacity: .4 !important;
}
table.dataTable thead > tr > th.sorting_asc::before, table.dataTable thead > tr > th.sorting_desc::after, table.dataTable thead > tr > td.sorting_asc::before, table.dataTable thead > tr > td.sorting_desc::after {
    opacity: .9 !important;
}
.dataTables_wrapper{
    margin-bottom: 30px;
}
@media(max-width:991px){
    .dataTables_wrapper .testa-datatables{
        flex-direction: column;
        align-items: start;
    }
    .dataTables_wrapper .testa-datatables .dataTables_filter,
    .dataTables_wrapper .testa-datatables .toolbardate,
    .dataTables_wrapper .testa-datatables .dataTables_length{
        flex-basis: 100%;
    }
}
.tooltips {
	position: relative;
}
.tooltips::after {
	background-color: #000;
	border-radius: 10px;
	color: #ffffff;
	display: none;
	padding: 10px 15px;
	position: absolute;
	text-align: center;
	z-index: 999;
}
.tooltips::before {
	background-color: #000;
	content: ' ';
	display: none;
	position: absolute;
	width: 15px;
	height: 15px;
	z-index: 999;
}
.tooltips:hover::after {
	display: block;
}
.tooltips:hover::before {
	display: block;
}
.tooltips.top::after {
    content: attr(data-tooltips-text);
	top: 0;
	left: 50%;
	transform: translate(-50%, calc(-100% - 10px));
}
.tooltips.top::before {
	top: 0;
	left: 50%;
	transform: translate(-50%, calc(-100% - 5px)) rotate(45deg);
}
.tooltips.bottom::after {
	content: attr(data-tooltips-text);
	bottom: 0;
	left: 50%;
	transform: translate(-50%, calc(100% + 10px));
}
.tooltips.bottom::before {
	bottom: 0;
	left: 50%;
	transform: translate(-50%, calc(100% + 5px)) rotate(45deg);
}
.tooltips.right::after {
	content: attr(data-tooltips-text);
	top: 0;
	right: 0;
	transform: translateX(calc(100% + 10px));
}
.tooltips.right::before {
	top: 50%;
	right: 0;
	transform: translate(calc(100% + 5px), -50%) rotate(45deg);
}
.tooltips.left::after {
	content: attr(data-tooltips-text);
	top: 0;
	left: 0;
	transform: translateX(calc(-100% - 10px));
}
.tooltips.left::before {
	top: 50%;
	left: 0;
	transform: translate(calc(-100% - 5px), -50%) rotate(45deg);
}

