
.popover-header {
    color: blue;
    font-size: 20px;
}
.popover-body {
    color: black;
    font-size: 15px;
}

html {
    font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 14px;
}


div{
 /*   border-style: solid;
	border-width: 1px*/
}
		
.disabled-card {
            background-color: rgba(145, 100, 245) !important;
        }
.button-eye{
                background: url(/img/eye-sm.png) no-repeat;
                cursor:pointer;
                border: none;
				font-size: 18px;
				width: 30px;
				height: 30px;
            }

.button-edit{
                background: url(/img/edit-sm.png) no-repeat;
                cursor:pointer;
                border: none;
				font-size: 18px;
				width: 30px;
				height: 30px;
            }
.table {
    border: none;
}
@media (max-width: 400px) {  
	.table {
/*		border-radius: 5px;*/
		width: 100%;
		margin: 0px auto;
		float: none;
		font-size: 10px
	}

}

.table-condensed{
  font-size: 10px;
}

.table-definition thead th:first-child {
    pointer-events: none;
    background: white;
    border: none;
}

.table td {
    vertical-align: middle;
}

.page-item > * {
    border: none;
}

.custom-checkbox {
  min-height: 1rem;
  padding-left: 0;
  margin-right: 0;
  cursor: pointer; 
}
  .custom-checkbox .custom-control-indicator {
    content: "";
    display: inline-block;
    position: relative;
    width: 30px;
    height: 10px;
    background-color: #818181;
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    vertical-align: middle;
    margin: 0 16px;
    box-shadow: none; 
  }
    .custom-checkbox .custom-control-indicator:after {
      content: "";
      position: absolute;
      display: inline-block;
      width: 18px;
      height: 18px;
      background-color: #f1f1f1;
      border-radius: 21px;
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
      left: -2px;
      top: -4px;
      -webkit-transition: left .3s ease, background .3s ease, box-shadow .1s ease;
      transition: left .3s ease, background .3s ease, box-shadow .1s ease; 
    }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-color: #84c7c1;
    background-image: none;
    box-shadow: none !important; 
  }
    .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator:after {
      background-color: #84c7c1;
      left: 15px; 
    }
  .custom-checkbox .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none !important; 
  }