.ck-editor__editable,
textarea {
    min-height: 150px;
}

.datatable {
    width: 100%;
}

table.dataTable tbody td.select-checkbox::before,
table.dataTable tbody td.select-checkbox::after,
table.dataTable tbody th.select-checkbox::before,
table.dataTable tbody th.select-checkbox::after {
    top: 50%;
}

.dataTables_length,
.dataTables_filter,
.dt-buttons {
    margin-bottom: 0.333em;
    margin-top: .2rem;
    padding-top: 6px;
}

.dataTables_filter {
    margin-right: .2rem;
    display: none;
}

.dt-buttons .btn {
    margin-left: 0.333em;
    border-radius: 0;
}

.table.datatable {
    box-sizing: border-box;
    border-collapse: collapse;
    min-width: 1500px;
}

.table-no-margin{
  width: 100% !important;
}

table.dataTable thead th {
    border-bottom: 2px solid #c8ced3;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #c8ced3;
}

.select2 {
    max-width: 100%;
    width: 100% !important;
}

.select2-selection__rendered {
    padding-bottom: 5px !important;
}

.has-error .invalid-feedback {
    display: block !important;
}

.btn-info,
.badge-info {
    color: white;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: none;
}

.sidebar .nav-item {
    cursor: pointer;
}

.btn-default {
    color: #23282c;
    background-color: #f0f3f5;
    border-color: #f0f3f5;
}

.btn-default.focus,
.btn-default:focus {
    box-shadow: 0 0 0 .2rem rgba(209, 213, 215, .5);
}

.btn-default:hover {
    color: #23282c;
    background-color: #d9e1e6;
    border-color: #d1dbe1;
}

.btn-group-xs > .btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.searchable-title {
    font-weight: bold;
}
.searchable-fields {
    padding-left:5px;
}
.searchable-link {
    padding:0 5px 0 5px;
}
.searchable-link:hover   {
    cursor: pointer;
    background: #eaeaea;
}
/* .select2-results__option {
    padding-left: 0px;
    padding-right: 0px;
} */

.form-group .required::after {
    content: " *";
    color: red;
}

.form-check.is-invalid ~ .invalid-feedback {
    display: block;
}

.c-sidebar-brand .c-sidebar-brand-full:hover {
    color: inherit;
}

.small-bottom {
    margin-bottom: 10px !important;
}
#chartdiv3 {
    width: 70%;
    height: 500px;
  }

.mt-8{
    margin-top: 8rem !important;
}

.bg-yellow{
    background-color: #ddc508;
    color: #fff;
}
.bg-orange{
  background-color: #f8922f;
  color: #fff;
}

.bg-label-yellow {
  background-color: #fdf6c0;
  color: #ddc508 !important;
}

.bg-label-orange {
  background-color: #fde2c7;
  color: #f77e09 !important;
}

.dashboard-canvas-tooltip{
    margin-top: -50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*Simple radio btn input CSS*/
.custom-control-label {
    cursor: pointer;
  }
  
  .cap-opt-1 {
    display: inline-block;
    min-width: 30px;
  }
  
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #59a9f7;
    background-color: #59a9f7;
  }
  /*Card Button CSS*/
  
  .card-radio-btn .content_head {
    color: #333;
    font-size: 1.2rem;
    line-height: 30px;
  }
  
  .card-radio-btn .content_sub {
    color: #9e9e9e;
    font-size: 14px;
  }
  
  .card-input-element + .card {
    width: 300px;
    height: 100px;
    margin: 10px;
    justify-content: center;
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid transparent;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
  }
  
  .card-input-element + .card:hover {
    cursor: pointer;
  }
  
  .card-input-element:checked + .card {
    border: 2px solid #696CFF;
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
  }
  
  .card-input-element:checked + .card::after {
    content: "\f058";
    color: #696CFF;
    position: absolute;
    right: 5px;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-animation-name: fadeInCheckbox;
    animation-name: fadeInCheckbox;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @-webkit-keyframes fadeInCheckbox {
    from {
      opacity: 0;
      -webkit-transform: rotateZ(-20deg);
    }
  
    to {
      opacity: 1;
      -webkit-transform: rotateZ(0deg);
    }
  }
  
  @keyframes fadeInCheckbox {
    from {
      opacity: 0;
      transform: rotateZ(-20deg);
    }
  
    to {
      opacity: 1;
      transform: rotateZ(0deg);
    }
  }
  