
/* BASIC */
*:not(i) {
  font-family: 'Montserrat', sans-serif;
}
#navbarSupportedContent {
  display: none !important;
}
.tablesorter-filter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

table.tablesorter tbody td {
  color: #3D3D3D !important;
  padding: .2rem .5rem !important;
  background-color: #FFF !important;
  vertical-align: top !important;
  max-width:400px !important;
  word-wrap:break-word !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  text-align: left !important;
  word-wrap: break-word !important;         /* All browsers since IE 5.5+ */
  overflow-wrap: break-word !important;     /* Renamed property in CSS3 draft spec */
}
table.tablesorter thead th {
  font-family: 'Titillium Web', sans-serif !important;
  font-weight: 600;
  text-align: left !important;
  font-size: 16px;
}

.tablesorter-header-inner {
  padding: .2rem .5rem;
}
table.tablesorter thead th div{
  text-align: left !important;
}

.open_datamod {
  color: blue !important;
}
.open_datamod:hover {
  cursor: pointer;
}

/* html {
background-color: #56baed;
} */
.content_wrapper {
  overflow: scroll;
}
body.welcome {
  font-family: 'Arial', sans-serif;
  height: 100vh;
}
.inserisci_attivita:hover {
  cursor: pointer;
}
a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}
#txtKmIns,
#ckbTerminataIns,
#ckbEsternaIns,
#txtKm,
#ckbTerminata,
#ckbEsterna,
#Label11,
#Label12 {
  display: none;
}

h2 {
  font-family: 'Titillium Web', sans-serif !important;
  font-weight: 700 !important;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}
.navbar {
  padding: 0 4vw 0 2.5vw!important;
}
.navbar img {
  width: 12rem;
}
.content_wrapper {
  padding: 0 3vw;
}

/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #99BD3F;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  /* -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4); */
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text]:not(#txtTitoloUpdate):not(#txtTitolo),
input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}
/* OTHERS */

*:focus {
  outline: none;
}

#icon {
  width:60%;
}


body {
  font-family: 'lato', sans-serif;
}
.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

h2 {
  font-size: 26px;
  margin: 20px 0;
  text-align: center;
}
h2 small {
  font-size: 0.5em;
}
.responsive-table {
  padding-left: 0;
}

.responsive-table  li {
  border-radius: 3px;
  padding: 5px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.responsive-table  .table-header {
  background-color: #99BD3F;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}
.responsive-table  .table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
}
.responsive-table  .table-row div{
  font-size: 1.2rem;
}
.responsive-table  .table-row:nth-child(odd) {background: #f8f9fa}
.ajax-loader {
  text-align: center;
}
.ajax-loader img{
  width: 30%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}
.float_attività {
  display: none;
}
.filtri {
  width: 50%;
}
@media all and (max-width: 767px) {
  .filtri {
    width: 100%;
  }
  .float_attività {
    display: block;
    display: block;
    position: fixed;
    bottom: 6vw;
    right: 5vw;
    font-size: 15vw;
  }
  .inserisci_attivita {
    display: none;
  }
  .responsive-table  .table-header {
    display: none;
  }
  .responsive-table  li {
    display: block;
  }
  .responsive-table  .col {
    display: block;
    flex-basis: 100%;

  }
  .responsive-table  .col {
    padding: 10px 0;
  }
  .responsive-table  .col:before {
    color: #6C7A89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 50%;
    text-align: right;
  }
}




/* CUSTOM ALERT */
.customAlert{

  display: none;
  position: fixed;
  max-width: 25%;
  min-width: 250px !important;
  left: 54%;
  top: 50%;
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #99BD3F;
}
@media all and (max-width: 1300px){
  .message{
    font-size: 14px !important;
  }
  input[type='button']{
    height: 15% !important;
  }
  .customAlert{
    left: 30%;
  }
}

.message{
  padding: 5px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

#confirmButton{
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  color: black;
}
#confirmButton:hover{
  cursor:pointer;
}

.rab{
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: darken(#04B486, 5%);
}
/* RISPONDI CUSTOM ALERT */
.rispondi_customAlert{

  display: none;
  position: fixed;
  max-width: 25%;
  min-width: 250px !important;
  left: 54%;
  top: 50%;
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #99BD3F;
}
@media all and (max-width: 1300px){
  .rispondi_message{
    font-size: 14px !important;
  }
  input[type='button']{
    height: 15% !important;
  }
  .rispondi_customAlert{
    left: 30%;
  }
}

.rispondi_message{
  padding: 5px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

#rispondi_confirmButton,
#rispondi_denyButton{
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  color: black;
}
#rispondi_confirmButton:hover,
#rispondi_denyButton:hover
{
  cursor:pointer;
}

.rispondi_rab{
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: darken(#04B486, 5%);
}

@keyframes fadeOut{
  from{
    opacity: 1;
  }
  to{
    opacity: 0;
  }
}

@keyframes fadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

/* ELIMINA CUSTOM ALERT */
.elimina_customAlert{

  display: none;
  position: fixed;
  max-width: 25%;
  min-width: 250px !important;
  left: 54%;
  top: 50%;
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #99BD3F;
}
@media all and (max-width: 1300px){
  .elimina_message{
    font-size: 14px !important;
  }
  input[type='button']{
    height: 15% !important;
  }
  .elimina_customAlert{
    left: 30%;
  }
}

.elimina_message{
  padding: 5px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

#elimina_confirmButton,
#elimina_denyButton{
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  color: black;
}
#elimina_confirmButton:hover,
#elimina_denyButton:hover
{
  cursor:pointer;
}

.elimina_rab{
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: darken(#04B486, 5%);
}

@keyframes fadeOut{
  from{
    opacity: 1;
  }
  to{
    opacity: 0;
  }
}

@keyframes fadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
/* idpresente CUSTOM ALERT */
.idpresente_customAlert{

  display: none;
  position: fixed;
  max-width: 25%;
  min-width: 250px !important;
  left: 54%;
  top: 50%;
  padding: 10px;
  box-sizing: border-box;
  margin-left: -12.5%;
  margin-top: -5.2%;
  background: #99BD3F;
}
@media all and (max-width: 1300px){
  .idpresente_message{
    font-size: 14px !important;
  }
  input[type='button']{
    height: 15% !important;
  }
  .idpresente_customAlert{
    left: 30%;
  }
}

.idpresente_message{
  padding: 5px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

#idpresente_confirmButton,
#idpresente_denyButton{
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  color: black;
}
#idpresente_confirmButton:hover,
#idpresente_denyButton:hover
{
  cursor:pointer;
}

.idpresente_rab{
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: darken(#04B486, 5%);
}

@keyframes fadeOut{
  from{
    opacity: 1;
  }
  to{
    opacity: 0;
  }
}

@keyframes fadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

/* Table Styles */

.table-wrapper{
  margin: 10px 70px 70px;
  box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );
}

.fl-table {
  border-radius: 5px;
  font-size: 16px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  background-color: white;
}

.fl-table td, .fl-table th {
  text-align: center;
  padding: 8px;
}

.fl-table td {
  border-right: 1px solid #f8f8f8;
  font-size: 15px;
}

.fl-table thead th {
  color: #ffffff;
  background: #99BD3F;
}


.fl-table thead th:nth-child(odd) {
  color: #ffffff;
  background: #324960;
}

.fl-table tr:nth-child(even) {
  background: #F8F8F8;
}
.tablesorter-blue .tablesorter-headerAsc {
  background-color: #9fbfdf;
  background-image: url(black-asc.gif);
}
/* Responsive */

@media (max-width: 767px) {
  /* .fl-table {
  display: block;
  width: 100%;
}
.table-wrapper:before{
content: "Scroll horizontally >";
display: block;
text-align: right;
font-size: 11px;
color: white;
padding: 0 0 10px;
}
.fl-table thead, .fl-table tbody, .fl-table thead th {
display: block;
}
.fl-table thead th:last-child{
border-bottom: none;
}
.fl-table thead {
float: left;
}
.fl-table tbody {
width: auto;
position: relative;
overflow-x: auto;
}
.fl-table td, .fl-table th {
padding: 20px .625em .625em .625em;
height: 60px;
vertical-align: middle;
box-sizing: border-box;
overflow-x: hidden;
overflow-y: auto;
width: 120px;
font-size: 13px;
text-overflow: ellipsis;
}
.fl-table thead th {
text-align: left;
border-bottom: 1px solid #f7f7f9;
}
.fl-table tbody tr {
display: table-cell;
}
.fl-table tbody tr:nth-child(odd) {
background: none;
}
.fl-table tr:nth-child(even) {
background: transparent;
}
.fl-table tr td:nth-child(odd) {
background: #F8F8F8;
border-right: 1px solid #E6E4E4;
}
.fl-table tr td:nth-child(even) {
border-right: 1px solid #E6E4E4;
}
.fl-table tbody td {
display: block;
text-align: center;
} */
}
