.select2-container .select2-selection--single .select2-selection__rendered, 
/*.select2-container .select2-selection--multiple .select2-selection__rendered,*/
.select2-container--default .select2-search--inline .select2-search__field {
	padding-left: 15px !important;
	font-size: .9rem;
    font-weight: 400;
    line-height: 1.4;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	height: 150px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
	height: 35px;
	padding: 0px 10px;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__rendered li {
	padding: 5px 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	font-size: 1.3rem;
    padding-right: 10px;
    color: red;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #e3342f;
    padding-right: calc(1.4em + .75rem);
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: right calc(0.35em + .1875rem) center;
    background-size: calc(.7em + .375rem) calc(.7em + .375rem);
}


select.form-control.is-invalid, .was-validated select.form-control:invalid {
    border-color: #e3342f;
    padding-right: calc(1.4em + .75rem);
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: right calc(1.35em + .1875rem) center;
    background-size: calc(.7em + .375rem) calc(.7em + .375rem);
}

select.form-control.is-valid, .was-validated select.form-control:valid {
	background-position: right calc(1.35em + .1875rem) center;
}

.select2-container--default .select2-selection--single:is-invalid, .was-validated {
	border-color: #e3342f;
}

select.form-control.is-invalid + .select2-container--default .select2-selection--single,
.was-validated select.form-control:invalid + ..select2-container--default .select2-selection--single {
    border-color: #dc3545;   
}



.select2-container .select2-results__option.optInvisible1 {
	display: none;
}

.dataTables_scroll.dtfc-has-left {
   margin-top: 40px;
}

.table-danger, .table-danger>td, .table-danger>th {
    background-color: #f7c6c5 !important;
}

.table-info, .table-info > td, .table-info > th {
    background-color: #d6e9f9 !important;
}

table.dataTable tbody tr.selected, table.dataTable tbody th.selected, table.dataTable tbody td.selected {
    color: #212529;
    font-weight: bold;
}

/* medium - display 2  */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }
  
    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
  }
  
  /* large - display 3 */
  @media (min-width: 992px) {
  
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }
  
    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
  }
  
  @media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }
  
    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
  }
  
  .carousel-inner .carousel-item.active,
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    display: flex;
  }
  
  .carousel-inner .carousel-item-right,
  .carousel-inner .carousel-item-left {
    transform: translateX(0);
  }

.caret:after {
    display: inline-block;
    width: 0;
    height: 0;
    font-size: 1.0rem;
    margin-left: 0.255em;
    vertical-align: 0.1em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.mouseover {
    border: 1px solid transparent;
}

.mouseover:hover {
    border: 1px solid #aaa;
}



/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* 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: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  [type=button],[type=reset],[type=submit],button {
    -webkit-appearance:none;
  }