@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Modal Animation */
.loading-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

.loading-animation>div {
  width: 10px;
  height: 10px;
  margin: 2px;
  background-color: #333;
  border-radius: 50%;
  animation: loading 1s ease-in-out infinite;
}

.loading-animation>div:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-animation>div:nth-child(3) {
  animation-delay: 0.4s;
}

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

  50% {
    transform: scale(2);
  }

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

/* jspreadsheet */
.jexcel_container,
.jexcel_content {
  box-sizing: border-box;
  width: 100%;
}

.jexcel_pagination_dropdown {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  font-weight: 400;
  color: #6e707e;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d1d3e2;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.jexcel_search {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  font-weight: 400;
  color: #6e707e;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d1d3e2;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.jexcel_toolbar i.jexcel_toolbar_item {
  width: 30px !important;
  height: 30px !important;
}

.jexcel_content label {
  padding: 0px;
  color: #ffffff;
  background-color: none;
  cursor: pointer;
}

.jexcel_content input[type="file"] {
  display: none;
}

.jexcel_content input[type="checkbox"] {
  transform: scale(2.0);
}

#imagePreviewModal img{
  max-width: 100%;
  height: auto;
}
