#content-wrapper {
  height: unset !important;
}

#content-header {
  text-align: center;
  padding: 30px 15px;
  background: rgba(6, 178, 230, 0.11);
}
#content-header h1 {
  font-weight: bold;
  font-size: 3.25rem;
}
#content-header .breadcrumb {
  padding: 6px 15px 0 15px !important;
}

#nav-col #col-left {
  height: unset;
}

.alert.alert-warning {
  font-weight: bold;
  color: #7b530e;
}

.modal-title {
  display: inline-block;
}

.note-box {
  border: 0.5px solid lightgrey;
  padding: 10px 20px;
}

.pinned-note {
  color: dodgerblue;
}

.unpinned-note {
  color: lightgray;
}

.error {
  color: red;
}

.panel-heading {
  padding: 0;
  border: 0;
}

.panel-title > a, .panel-title > a:active {
  display: block;
  padding: 15px;
  text-decoration: none;
  background-color: white;
  border: 1px solid lightgray;
}

.panel-heading a:before {
  font-family: "Glyphicons Halflings";
  content: "\e114";
  float: right;
  transition: all 0.5s;
}

.panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

#sidebar-nav .nav > li > a {
  height: auto;
  display: flex;
}

#completeEmail, #bulkEmail, #reminderEmail {
  word-wrap: break-word;
}

.btn-row {
  display: flex;
  column-gap: 0.5rem;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 14.25px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 2px;
  background-color: #ffffff;
  border: 1px solid #adadad;
}
.checkbox-container:hover input ~ .checkmark {
  background-color: #dadada;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #2c3e50;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  left: 3.5px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2.25px 2.25px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-inline:first-of-type {
  margin-left: 1rem;
}

#dashboard {
  display: flex;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 830px) {
  #dashboard {
    flex-direction: column;
  }
}
#dashboard .section {
  color: #2c3e50;
  border: 1px solid #E1E1E1;
  border-radius: 3px;
  background-color: white;
  padding: 2rem;
  flex: 1 0 45%;
}
#dashboard .section.placeholder {
  opacity: 0;
}
#dashboard .section h2 {
  clear: unset;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0.5rem 0 2.5rem 0;
  padding: unset;
}
#dashboard .section .list-wrapper {
  position: relative;
  max-height: 31.5rem;
  padding: 2px 0;
}
#dashboard .section .list-wrapper::before, #dashboard .section .list-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5rem; /* size of fade */
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}
#dashboard .section .list-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
#dashboard .section .list-wrapper::after {
  bottom: -5px;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}
#dashboard .section .list-wrapper.scrolled-top::before {
  opacity: 1;
}
#dashboard .section .list-wrapper.scrolled-bottom::after {
  opacity: 1;
}
#dashboard .section .list {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  max-height: 31.5rem;
  overflow-y: scroll;
  scrollbar-color: #2c3e50 #ffffff;
}
#dashboard .section .item {
  border: 1px solid #2c3e50;
  border-radius: 3px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 7rem;
}
#dashboard .section .item .title {
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
#dashboard .section .item .display-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1rem;
}
#dashboard .section .item .count {
  display: flex;
  color: white;
  background-color: #2c3e50;
  padding: 1rem;
  border-radius: 50px;
  min-width: 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 100%;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
#dashboard .section .item a {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0.5rem;
  align-items: center;
  white-space: nowrap;
}
#dashboard .section .item a:hover {
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
