textarea {
  resize: none;
}

input[type='checkbox'] {
  height: 15px;
  width: 15px;
}

.hidden {
  display: none;
}

.input-table {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: #858796;
  width: 100%;
  height: 100%;
}

.link-report {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.6);
}

.link-report:hover {
  color: #fff;
}

.link-report > i {
  text-align: center;
  font-size: 24px;
}

.period-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.field-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.field-report > label {
  padding-right: 10px;
}

.field-report > input,
.field-report > select {
  flex: 1;
}

.datepicker,
.datetimepicker {
  padding: 0.375rem 0.75rem;
}

.lead-item {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #858796;
}

.hidden-table-data {
  display: none;
}

@media (max-width: 575px) {
  .period-report,
  .field-report {
    padding-bottom: 0px;
  }

  .field-report {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* LOADER */
.lds-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* CLOCK WIDGET */

.sidebar-widget {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;

  padding: 5px;
  margin: 15px 10px;
}

.sidebar-widget-mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-top: -15px;
}

.sidebar-widget span {
  color: #fff;
}

.sidebar-widget .icon {
  font-size: 1.5rem;
}

.sidebar-widget .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.sidebar-widget .info span {
  text-align: center;
}

/* CLOCK TOOGLED */

.sidebar.toggled .nav-item .sidebar-widget {
  flex-direction: column;
}

.sidebar.toggled .nav-item .sidebar-widget .info {
  margin-top: 0.3rem;
}

.sidebar.toggled .nav-item .sidebar-widget .info span {
  font-size: 0.7rem;
}

/* CLOCK RESPONSIVE */

@media (max-width: 768px) {
  .sidebar-widget {
    flex-direction: column;
  }

  .sidebar-widget .info {
    margin-top: 0.3rem;
  }

  .sidebar-widget .info span {
    font-size: 0.7rem;
  }
}

/* CHECKINOUT DETAIL */

.checkinout_photo {
  max-width: 100%;
  max-height: 300px;
}

.map {
  width: 100%;
  height: 300px;
}

/* RECORD PROMOTOR */
.section-form-info {
  font-size: 1.1rem;
}

.label-user-form {
  font-size: 0.8rem;
  margin-left: 15px;
}

.label-form {
  font-size: 0.8rem;
}

.first-column-hidden > thead > tr > th:first-child,
.first-column-hidden > tbody > tr > td:first-child {
  display: none;
}

/* CUSTOM MULTIPLE SELECT */
.ms-choice {
  width: 100%;
  height: 100%;
  border: none !important;
}

.ms-choice:focus {
  outline: none !important;
}

.ms-choice > span {
  display: flex !important;
  align-items: center;
  width: 100%;
  height: 100%;
}