html *
{
   font-size: 13px;
}

.dt-buttons .btn{
  border-color: lightgray
}

.hidden-component {
  display:none !important;
}

.chart-container {
  position: relative;
  margin: auto;
  height: 25vh;
  width: 100%;
}

.spinner input {
  text-align: right;
}

.input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 2%;
  vertical-align: middle;
  display: table-cell;
}

.input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin-left: -1px;
  position: relative;
  border-radius: 0;
}

.input-group-btn-vertical > .btn:first-child {
  border-top-right-radius: 4px;
}

.input-group-btn-vertical > .btn:last-child {
  margin-top: -2px;
  border-bottom-right-radius: 4px;
}

.input-group-btn-vertical i {
  position: absolute;
  top: 0;
  left: 3px;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
}
.bootstrap-select .dropdown-menu{
    min-width: 100% !important;
    max-height: 300px !important;
}

.bootstrap-select .inner.show{
    max-height: 244px !important;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{
    color:  black;
    border-color: lightgray;
    border-width:  0.5px;
}

.progress{
  background-color: darkgray !important;
}

table.dataTable th{
  font-size: 13px;
}

table.dataTable tbody th, table.dataTable tbody td{
  padding: 5px 7px !important;
}

table.dataTable td{
  font-size: 13px;
}

table.dataTable tr{
  max-height: 10px;
}

td.details-control {
  background: url('https://datatables.net/examples/resources/details_open.png') no-repeat center center;
  cursor: pointer;
  }
tr.shown td.details-control {
background: url('https://datatables.net/examples/resources/details_close.png') no-repeat center center;
}

.dataTables_scroll{
    overflow:auto;
}


table tbody td {
  word-break: break-word;
}

.custom-loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-control-pers-valid{
	border-color: green	!important;
}
.form-control-pers-valid:focus{
	box-shadow: 0 0 0 0.2rem rgba(113, 255, 0, 0.25) !important;
}

.form-control-pers-not-valid{
	border-color: crimson !important;	
}
.form-control-pers-not-valid:focus{
	box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25) !important;
}

.form-control-pers-validating{
	border-color: orange !important;	
}
.form-control-pers-validating:focus{
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.25) !important;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider-ck {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-ck:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider-ck {
  background-color: #2196F3;
}

input:focus + .slider-ck {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider-ck:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider-ck.round {
  border-radius: 17px;
}

.slider-ck.round:before {
  border-radius: 50%;
}
