/*Impostazioni generali*/
*{
    box-sizing: border-box;
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    margin:0;
    padding:0;
}
html, body {
    min-height: 100%;
    height: auto;
}
#container{
    position: relative;
    margin:0 auto;
    width:100%;
    max-width: 1000px;
    padding: 1rem;
    
}
header, footer{
    position: absolute;
    left: 0;
    width: 100%;
}
header{
    top: 0;
    padding:0.5rem;
}
footer{
    bottom: 0;
    height: 8rem;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
h3{
  font-weight: 700;
  border-bottom: 2px solid #f2d71b;
}
/*di default disabilito input ricerca in header che andrò ad abilitare via javascript solo nelle pagine dove necessario*/
.main-wrapper{
    height: auto;
}
.inner{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
/*Fine impostazioni generali*/
.header {
    background: #f2d71b;
}
.header .header-left .logo img{
    display: block;
    height: 36px;
    margin-top: 10px;
}
.header.transparent{
    background-color: transparent;
}
.header .user-id{
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    padding: 0;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background-color:#fff;
    line-height: 2.6rem;
    text-align: center;
    margin: 0.4rem 0 0 0;
}
.user-menu.nav>li>a>i {
    color: #FFF;
}
/*toggle - mobile-btn menu*/
@media only screen and (max-width: 991.98px){
    .mobile_btn {
        color: #000!important;
    }
}
@media only screen and (min-width: 992px){
    #toggle_btn {
        color: #000;
    }
}
/*SIDEBAR*/
a.subdrop{
    border:1px solid #000;
}
.sidebar-menu li.active a {
    background-color: #f2d71b;
}
#logout{
    position: relative;
}
#logoutMsg{
    position: absolute;
    top: 0;
    right: 5px;
    width: 70%;
    text-align: right;
    height: 100%;
    color: #000;
    transition: 0.5s all linear;
    opacity:0;
}
#logoutMsg.active{
    opacity: 1;
}
/*phantom*/
#phantom{
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.7);
  transform: scaleY(0);
  transition: 0.4s all ease-in-out;
  display: none;
}
#phantom.active{
  display: block;
  transform: scaleY(1);
}
#phantomInner{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 70vh;
  overflow: scroll;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
}
#closePhantom{
  position: absolute;
  top: 10px;
  right: 10px;
}
/*fine phantom*/
/*pagina*/
#bgwms {
  min-height: calc(100vh - 80px);
  background: #fff;
  margin-top:5rem;
}
.module_title_wrapper{
  margin-bottom:3rem;
}
.menu_search_modulo{
  position:relative;
  margin-bottom: 2rem;
}

#bgwms_inner {
  position: relative;
}
span.campo {
  float: left;
  /* width: 100%; */
  min-height: 50px;
  font-size: 1.2em;
  font-weight: 500;
  margin: 0.6rem 1rem 0.6rem 0 ;
}
span.campo.fl_r {
  float: right;
}
span.campo.a_fourth{
  width: 25%;
}
span.campo.a_third{
  width: 30%;
}
span.campo.two_third{
  width: 60%;
}
span.campo.half{
  width: 45%;
}
.campo.full{
  width:100%;
}
span.dato {
  padding: 10px;
  background-color: #fff;
  display: inline-block;
  width: 100%;
  border-radius: 5px;
  min-height: 50px;
  font-size: 1.3em;
  line-height: 1.3em;
}
span.dato.c{
  text-align:center;
}
.clear_div {
  position: relative;
  clear: both;
  width: 100%;
  text-align: center;
}

.errore{
 font-size:16px;
 color:red;
}
.green, .msg{
 color:green;
}
.bgwms-msg-container.active{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px;
  background-color:rgba(0,0,0,0.8);
}
.bgwms-msg-container.active .msg-wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  padding: 10px;
  background-color: #fff;
}
/*fine pagina*/
/*tabella*/
.bgwms-table {
  width:100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color:#FFFFFF;
}
.bgwms-table thead tr {
  background: #f2d71b;
  color: #000;
  text-align: left;
}
.bgwms-table th,
.bgwms-table td {
  font-size: 1.5em;
  padding: 12px 15px;
}
.bgwms-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.bgwms-table tbody tr:hover {
  background-color:rgba(255,255,0,0.4);
}

.bgwms-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.bgwms-table tbody tr:last-of-type {
  border-bottom: 2px solid #f2d71b;;
}
.bgwms-table tbody tr.active-row {
  font-weight: bold;
  color: #f2d71b;;
}
/*fine tabella*/
/*TABELLA CHE SI RIDUCE
.table{
    table-layout: fixed;
}
.card-table .table td, .card-table .table th {
    white-space: unset;
}
table tr.th_tr{
    background-color: #e5ebfd;
}
table tr.odd th,table tr.odd td{
    background-color: #D6E3EA;
    border:none;
    color: #000;
}
table tr.even th,table tr.even td{
    background-color: #8ecdef;
    border:none;
    color: #000;
}
*/
/*documento in evidenza su elenco dopo un ritorna*/
table tr.docSel{
    background-color: #a9ee14;
}
/*RISULTATI AUTOCOMPLETE*/
.table-search {
    width: 100%;
    max-width: 245px;
    overflow-x: hidden;
}
.lista-risultati{
    background-color:#fff;
}
.lista-risultati li{
    overflow:hidden;
}
/*checkbox in form*/
/* Customize the label (the container) */
.label-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .label-container input.specialCheckbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .label-container:hover input.specialCheckbox ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .label-container input.specialCheckbox:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .label-container input.specialCheckbox:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .label-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/*spinner*/
.loader {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 5px solid #007ccb;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index:-1;
    }
.loader.active{
    top:30%;
    z-index:1;
}
    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 
/*end spinner*/

  /* TABS */
  
  h2.inactive {
    color: #cccccc;
  }
  
  h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #f2d71b;
  } 
  /* FORM TYPOGRAPHY*/
  /*elenco autocomplete*/
div.bgwms-suggesstion-box{
  position: relative;
}
ul.lista-risultati{
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 5px;
  width: 100%;
  font-size: 1.5em;
  margin: 0;
  z-index :5;
}
ul.lista-risultati .ris{
  padding:0.5em;
}
/*fine elenco autocomplete*/
/*varie form*/
.btn_azione{
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 1px;
  padding: 1px 5px;
  background-color: #0088d1;
  height: 20px;
  line-height: 20px;
  border: none;
  color: #fff;
}
label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-align:left;
  COLOR: #000000;
  font-size: 1.2em;
  font-weight:700;
}
/*fine varie form*/
  input[type=button], input[type=submit], input[type=reset],button  {
    background-color: #f2d71b;
    border: none;
    color: #000;
    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].bgwms_sm, input[type=submit].bgwms_sm, input[type=reset].bgwms_sm,button.bgwms_sm  {
    width: 3.5em;
    padding: 0;
    height: 3.5em;
    font-size: 1em;
    margin: 0;
  }
  input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover  {
    background-color: #f2d71b;
  }
  
  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], input[type=password], input[type=email], select, textarea {
    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;
  }

  select {
    min-height: 58px;
  }
  input[type=text]:focus,input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #f2d71b;
  }
  
  input[type=text]:placeholder, input[type=password]: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: #f2d71b;
    content: "";
    transition: width 0.2s;
  }
  
  .underlineHover:hover {
    color: #0d0d0d;
  }
  
  .underlineHover:hover:after{
    width: 100%;
  }
  
  
  
  /* OTHERS */
  
  *:focus {
      outline: none;
  } 
  
  #icon {
    width: 60px;
    height: auto;
  }
  
/*fine da login.css*/