.fade.in {
    opacity: 1;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

/*Fix outside div start*/
/*
min-width:550px;word-wrap: break-word; word-break: break-all; white-space: normal;
*/



/*
.mainList{
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #aaa;
}

/*
table {
  table-layout: fixed;
  width: 100% !important;
}

td,
th{
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
*/
*/
/*Fix outside div end*/ 

/* Fix per  overflow: hidden; nelle tabelle */
td.dropdown-menu-table{
	overflow: visible !important;
}
/* Fix end */

/* Fix menu in tabella*/
.dataTables_scrollBody{
	overflow:inherit!important;
}
/* Fix menu in tabella*/

 /* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 40px;
	/*height: 34px;*/
	 height: 18px;
	 
	top: 50%;
	-ms-transform: translateY(+50%);
	transform: translateY(+50%);
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(158,158,158);
  -webkit-transition: .4s;
  transition: .4s;
  
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  /*
  left: 4px;
  */
  /*bottom: 4px;*/
  bottom: -2px;
  /*background-color: white;*/
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.3),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
  background-color:rgb(250, 250, 250);
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 
 /* The switch - the box around the slider */
