body {
    font-family: 'Comfortaa', sans-serif;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(176,176,255,1) 42%, rgba(0,161,255,1) 100%)
  }

.noHover{
    pointer-events: none;
}

.white {
  color: white !important;
  background-color: #04AA6D;
}

.min-width-10rem {
  min-width: 100rem;
}

.border-red {
  border: 10px !important;
  border-color: red !important;
}

.indicator-style {
  pointer-events: none;
  position: Fixed;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 999; /*make sure it's on top of everything*/
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /*semi-transparent black overlay*/
  z-index: 990;
  transition: 0.8s; /*make sure it's on top of everything*/
}

.redText {
  color: red;
}

/* Page layout: ensure footer sticks to the bottom of the viewport */
html, body {
  height: 100%;
}

/* Apply the page layout only when the body has the `page-flex` class to ensure high specificity
   (this avoids accidental overrides when styles are loaded in different orders). */
body.page-flex {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-flex main#main-content {
  flex: 1 0 auto;
}

.page-flex footer[role="contentinfo"] {
  flex-shrink: 0;
}

/* Select2 Bootstrap Styling */
.select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 24px;
  padding-left: 0;
  color: #495057;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}

.select2-container {
  width: 100% !important;
}

.select2-dropdown {
  border: 1px solid #ced4da;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
}
