/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.checkinlinks {
  padding: 10px;
  display: block;
}

.no-bullets {
  list-style-type: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.loading-spinner {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  align-items: center;
  justify-content: center;
  */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(203, 51, 59, 0.4);
  border-top-color: #cb333b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner.small {
  width: 20px;
  height: 20px;
  border: 4px solid rgba(100, 100, 100, 0.4);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: flex;
  float: right;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dg-search-fields-wrapper {
  display: contents;
  float: left;
  width: 100%;
}

.disable-element {
  pointer-events: none;
}

.dgmc-actions-wrapper {
  display: flex;
}

.dgmc-copy-filters-wrapper,
.dgmc-clean-filters-wrapper {
  padding: 5px;
}

.hidden-element{
  display: none;
}