<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--cui-primary-rgb: 23, 40, 58;
}
.filters {
}

.filters label {
  display: block;
}
.filters input,
.filters select {
  font-size: 0.8em;
}
.filterSelect .apply {
  border-width: 1px;
  position: absolute;
  right: 30px;
  top: 2px;
}

@keyframes iDSpinner {
  to {transform: rotate(360deg);}
}
.iDLoading::after {
  animation: iDSpinner .6s linear infinite;
  content: '';
  border-radius: 50%;
  border-top: 2px solid #07d;
  border-right: 2px solid transparent;
	box-sizing: border-box;
	position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  z-index: 9999999;
}
.iDError::after {
  content: '!';
  color: #d70;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #d70;
	box-sizing: border-box;
	position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  z-index: 9999999;
}

.hasDatepicker {
  text-align: center;
}

.grid-7 {
  display: grid;
  overflow: hidden;
  /* grid-template-columns: fit-content( 14.285714285714285714285714285714% ); */
  grid-template-columns: repeat(7, 14.285714285714285714285714285714%);
  grid-auto-rows: 1fr;
  grid-row-gap: 5px;
}
.grid-item {
  display: flex;
  /* width: 100%; */
  width: auto;
}
.grid-7 .grid-item {
  /* width: 14.285714285714285714285714285714%; */
}

@media (min-width: 768px){
  .col-md-1_7,
  .col-sm-1_7,
  .col-lg-1_7  {
    display: flex;
    flex-direction: unset;
    width: 100%;
    *width: 100%;
  }
  .col-md-1_7 &gt; div,
  .col-sm-1_7 &gt; div,
  .col-lg-1_7 &gt; div {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1_7,
  .col-sm-1_7,
  .col-lg-1_7 {
    width: 14.285714285714285714285714285714%;
    *width: 14.285714285714285714285714285714%;
  }
}

/**
 *  The following is not really needed in this case
 *  Only to demonstrate the usage of @media for large screens
 */    
@media (min-width: 1200px) {
  .col-md-1_7,
  .col-sm-1_7,
  .col-lg-1_7 {
    width: 14.285714285714285714285714285714%;
    *width: 14.285714285714285714285714285714%;
  }
}

</pre></body></html>