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

.datatable {
    width: 100% !important;
}

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

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

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

.table.datatable {
    box-sizing: border-box;
    border-collapse: collapse;
}

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;
}

.dropdown-menu {
    top: 110%;
}

.card-cruds {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #b31c1c00;
    background-clip: border-box;
    border: 1px solid rgba(231, 230, 230, 0.425);
    box-shadow: .3em .2em .6em #e7e6e6, 2px 2px #e7e6e6;
    border-radius: 0.45rem; 
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, 
.pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #006400;
    border-color: #006400;
}

.pagination > li > a {
  background-color: #ffffff;
}

.page-item.active .page-link {
  z-index: 3;
    color: #fff;
    background-color: #006400;
    border-color: #006400;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #006400;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* INIT CSS DARK/LIGTH MODE ON DOCTORS */
:root{
  --bs-dark: #000000;
}

.theme-container {
  width: 30px;
  height: 35px;
  border-radius: 50%;
  position: sticky;
  bottom: 26px;
  right: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.theme-container:hover {
  opacity: 0.8;
}

.shadow-dark {
  background: linear-gradient(145deg, #23282c, #1e2125);
  box-shadow: 17px 17px 23px #1a1d20,
    -17px -17px 23px #282d32, inset 5px 5px 4px #1e2226,
    inset -5px -5px 4px #24282c;
}

.shadow-light {
  box-shadow: 7px 7px 15px -10px #bbcfda, -4px -4px 13px #ffffff,
    inset 7px 7px 3px rgba(209, 217, 230, 0.35),
    inset -11px -11px 3px rgba(255, 255, 255, 0.3)
}

@keyframes change {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.4);
  }
}

.change {
  animation-name: change;
  animation-duration: 1s;
  animation-direction: alternate;
}
/* END CSS DARK/LIGTH MODE ON DOCTORS */

.ic-excel-md {
    font-size: 15px;
    font-family: Calibri, Verdana, FontAwesome;
    color: white;
    background-color: #063306;
    vertical-align: middle;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
}
.ic-excel-md:hover {
    background-color: green;
}

/*////////////////////////////////////////////// */
/* CheckBox switch on off button*/
/* Este es el código HTML que va en la vista 
  <!-- Rounded switch -->
  <label class="switch">
    <input type="checkbox">
    <span class="slider round"></span>
  </label>
*/
/* 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: #a1a5a1;
  -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: #2e6231;
}

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

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%;
}


/* The switch input checkbox - the box around the slider on doctors module*/
.seenswitch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

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


/* The slider */
.sliderLitle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a1a5a1;
  -webkit-transition: .4s;
  transition: .4s;
}

.sliderLitle:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .sliderLitle {
  background-color: #2e6231;
}

input:focus + .sliderLitle {
  box-shadow: 0 0 1px #e7e6e6;
}

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

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

.sliderLitle.round:before {
  border-radius: 50%;
}


/*Para quitar las flechas spinner del input type number*/
/* Chrome, Safari, Edge, Opera */ 
.nospinner::-webkit-outer-spin-button,
.nospinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* rows */
div.dropdown-multicol{
  width: 54em;
}
div.dropdown-row>a.dropdown-item{
  display:inline-block;
  width: 30%;
}

.dropdown-item:active {
  background-color:  #25ad0e;
}

/* Columns */
div.dropdown-multicol2{
  width: 30em;
}
div.dropdown-multicol2>div.dropdown-col{
  display:inline-block;
  width: 32%;
}

@keyframes shadow-expansion {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(109, 108, 108, 0.5);
  }
  100% {
    transform: scale(1.1);
    box-shadow: 0 0 10px 4px rgba(97, 97, 97, 0.5);
  }
}


.recording {
  border-radius: 50%;
  padding: 1px 2px;
  animation: shadow-expansion 0.9s ease-in-out infinite alternate;
}


/*
Or just:
div.dropdown-row>a.dropdown-item{
  display:inline-block;
  width: 10em;
}

/*font-size: 12px;
    font-family: Calibri, Verdana, FontAwesome;
    background-color: #063306;
    color: white;
    border-radius: 5px;
    border: 3px;
    height: 30px;
    float: right;
    vertical-align: middle;
    letter-spacing: 3px;
    padding: 7px 5px 10px 10px;
    font-weight: 700;
*/    