@import url(./css/color-theme.css);

@font-face {
	font-family: "Material Symbols Outlined";
	font-style: normal;
	src: url("./fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2")
		format("woff2");
}

.hide {
  opacity: 0;
  transition: ease-in 100ms;
}

.show-loader {
  opacity: 1;
  transition: ease-in 500ms;
}

.material-symbols-outlined {
	font-family: "Material Symbols Outlined";
	font-weight: normal;
	font-style: normal;
	font-size: 24px; /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
}

iframe.formViewer{
	width: calc(100% - 1px);
	height: 60vh;
}

.loader {
  display: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  background: var(--backdrop);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  height: 100vh;
  width: 100vw;
  z-index: 999999;
  max-width: 100%;
  max-height: 100%;
}
.table-loader .loader {
  display: block;
  left: 0px;
  right: 0px;
  margin: auto;
  max-width: 99%;
  max-height: 99%;
}
.loader .cube-folding {
  width: 50px;
  height: 50px;
  display: inline-block;
  transform: rotate(45deg);
  font-size: 0;
}
.loader .cube-folding span {
  position: relative;
  width: 25px;
  height: 25px;
  transform: scale(1.1);
  display: inline-block;
}
.loader .cube-folding span::before {
  content: "";
  background-color: var(--loader1);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  transform-origin: 100% 100%;
  animation: folding 2.5s infinite linear both;
}
.loader .cube-folding .leaf2 {
  transform: rotateZ(90deg) scale(1.1);
}
.loader .cube-folding .leaf2::before {
  animation-delay: 0.3s;
  background-color: var(--loader-dim);
}
.loader .cube-folding .leaf3 {
  transform: rotateZ(270deg) scale(1.1);
}
.loader .cube-folding .leaf3::before {
  animation-delay: 0.9s;
  background-color: var(--loader-dim);
}
.loader .cube-folding .leaf4 {
  transform: rotateZ(180deg) scale(1.1);
}
.loader .cube-folding .leaf4::before {
  animation-delay: 0.6s;
  background-color: var(--loader-dimmer);
}
@keyframes folding {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
.loader .cube-wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  text-align: center;
}
.loader .cube-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  width: 90px;
  height: 6px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  filter: blur(2px);
  border-radius: 100%;
  animation: shadow 0.5s ease infinite alternate;
}
.loader .cube-wrapper .loading {
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
  color: var(--loader1);
  position: relative;
  top: 25px;
  z-index: 2;
  animation: text 0.5s ease infinite alternate;
}
@keyframes text {
  100% {
    top: 35px;
  }
}
@keyframes shadow {
  100% {
    bottom: -18px;
    width: 100px;
  }
}

.sync-progress{
  position: relative;
}

.sync-spinner {
  width: 1rem;
  height: 1rem;
  color: var(--loader1);
}

.file-display .btn-danger {
  line-height: 1;
  padding: 0 0.5rem;
}

.handsontable.htDropdown {
  width: 900px !important;
  min-width: 900px !important;
}

.handsontable.htDropdown .wtHolder,
.handsontable.htDropdown .ht_master,
.handsontable.htDropdown .wtHider,
.handsontable.htDropdown .htCore {
  width: 900px !important;
  min-width: 900px !important;
  max-width: 900px !important;
  overflow: auto !important;
  max-height: 60px !important;
}

.handsontable.htDropdown .htCore {
  table-layout: auto !important;
}

.handsontable.htDropdown .htCore td {
  white-space: nowrap !important;
  width: auto !important;
  max-width: none !important;
  padding: 8px !important;
}







