:root {
  --nsf-red: #d15e60;
  --blue: #375a7f;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #e74c3c;
  --orange: #fd7e14;
  --yellow: #f39c12;
  --green: #00bc8c;
  --teal: #20c997;
  --cyan: #3498db;
  --white: #fff;
  --gray: #888;
  --light-gray: #929292;
}

body {
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--white)
}

.cardBoxShadow {
  box-shadow: 1px 2px #1f1f1f;
}

hr.solidLine {
  border-top: 3px solid #bbb;
  margin: 10px auto;
}

.bold {
  font-weight: bold;
}

.centerText {
  text-align: center;
}

.padding {
  padding: 10px;
}

.borderFilled {
  padding: 10px;
  border: 2px solid dimgray;
  border-radius: 15px;
}

.buttonPadding {
  margin: 10px;
}

.hidden {
  display: none;
}

.positionText {
  display: inline-block;
  margin: 4px !important;
}

.icondiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.iconContainer {
  width: 400px;
  margin: 10px
}

img.icon {
  width: 221.25px;
  border-radius: 50%;
  background-color: #1f1f1f;
}

img.logo {
  max-width: 50px;
}

a.logo {
  margin: 4px 16px;
}

a.loginButton {
  margin-left: auto;
  margin-right: 10px;
}

a:hover,
a:focus {
  color: var(--nsf-red) !important;
}

div.dataContainer {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

div.dataHolder {
  border-radius: 10px;
  width: 100%;
  min-width: 340px;
  max-width: 600px;
  margin: 10px;
}

h1.time {
  padding-top: 10px
}

.FAQdiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.FAQcontainer {
  border: 2px solid var(--nsf-red);
  padding: 10px;
  border-radius: 10px;
  width: 400px;
  margin: 10px
}

#linkDropDown:hover>#dropDownMenu,
#linkDropDown:focus>#dropDownMenu

/*, #linkDropDown::selection > #dropDownMenu*/
  {
  display: block;
}

.dropdown-item:hover,
.dropdown-item:target {
  background-color: #444 !important;
  color: white;
}

.editor-root.editor-theme-nerd-dark {
  margin: 10px;
  border-radius: 0.5em;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.3);
  max-height: calc(100% - 35px);
}

.editor-theme-nerd-dark {
  color: #fff;
  background-color: #333b;
  backdrop-filter: blur(2px);
}

.editor-theme-nerd-dark .editor-item-title {
  border-radius: 10px 10px 0 0;
  color: #fff;
}

.editor-theme-nerd-dark .editor-item-title .editor-item-name {
  line-height: 2;
}

.editor-theme-nerd-dark input:not([type=button]):not([type=checkbox]):not([type=color]) {
  color: #fff;
  background-color: #333b;
  backdrop-filter: blur(2px);
  border-radius: 10px;
  height: 2rem;
  box-shadow: inset -6px -6px 16px 0 rgba(51, 51, 51, 0.5), inset 6px 6px 16px 0 rgba(0, 0, 0, 0.5);
  border: none;
}

.editor-theme-nerd-dark input[type=color] {
  height: 2rem;
  border-radius: 10px;
  box-shadow: inset -6px -6px 16px 0 rgba(51, 51, 51, 0.5), inset 6px 6px 16px 0 rgba(0, 0, 0, 0.5);
  border: none;
}

.editor-theme-nerd-dark input[type=checkbox] {
  outline: 0;
  border: none;
  flex: 75px;
  border-radius: 20px;
  box-shadow: -8px -4px 8px #333, 8px 4px 12px #000, 4px 4px 4px #000 inset, -4px -4px 4px #333 inset;
  -webkit-appearance: none;
  position: relative;
  height: calc(100% - 10px);
}

.editor-theme-nerd-dark input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 50%;
  background-color: #777;
  box-shadow: -8px -4px 8px 0px #333, 8px 4px 12px 0px #000;
  border-radius: 20px;
  outline: none;
  transition: all 0.8s;
  cursor: pointer;
}

.editor-theme-nerd-dark input[type=checkbox]:checked:before {
  transform: translateX(100%);
  cursor: pointer;
  background: #c62215;
}

.editor-theme-nerd-dark select {
  color: #fff;
  background-color: #333;
  border-radius: 10px;
  height: 2rem;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 0.25rem;
  box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.5), -6px -6px 16px 0 rgba(51, 51, 51, 0.5);
  border: none;
}

.editor-theme-nerd-dark button,
.editor-theme-nerd-dark input[type=button] {
  color: #fff;
  background-color: #333b;
  backdrop-filter: blur(2px);
  border: none;
  height: 2rem;
  border-radius: 10px;
  box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.5), -6px -6px 16px 0 rgba(51, 51, 51, 0.5);
}

.editor-theme-nerd-dark button:active,
.editor-theme-nerd-dark input[type=button]:active {
  box-shadow: inset -6px -6px 16px 0 rgba(51, 51, 51, 0.5), inset 6px 6px 16px 0 rgba(0, 0, 0, 0.5);
}

.editor-theme-nerd-dark .editor-group,
.editor-theme-nerd-dark.editor-group {
  border-radius: 10px;
  padding: 10px 5px 5px 5px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.3);
}

.editor-theme-nerd-dark .editor-group label,
.editor-theme-nerd-dark.editor-group label {
  line-height: 2;
  padding-top: 0.25rem;
}

.editor-theme-nerd-dark .editor-group .editor-button-theme select,
.editor-theme-nerd-dark.editor-group .editor-button-theme select {
  height: 2rem;
}

.editor-theme-nerd-dark .editor-group .editor-button-collapse button,
.editor-theme-nerd-dark.editor-group .editor-button-collapse button {
  height: 2rem;
}

.editor-theme-nerd-dark .range-slider {
  background-color: #333b;
  border-radius: 20px;
  box-shadow: inset -6px -6px 16px 0 rgba(51, 51, 51, 0.5), inset 6px 6px 16px 0 rgba(0, 0, 0, 0.5);
}

.editor-theme-nerd-dark .range-slider:before {
  background-color: #333b;
  border-radius: 20px;
  box-shadow: inset -6px -6px 16px 0 rgba(51, 51, 51, 0.5), inset 6px 6px 16px 0 rgba(0, 0, 0, 0.5);
}

.editor-theme-nerd-dark .range-slider span {
  background-color: #c62215;
  border-radius: 20px;
  box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.5), -6px -6px 16px 0 rgba(51, 51, 51, 0.5);
}

.dataForm {
  width: 35vw;
  min-width: 360px;
}

.tableData {
  font-size: small;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.actionButton {
  color: #fff;
  background-color: #555 !important;
  border-color: #555 !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 0.825rem !important;
  line-height: 1.5 !important;
  border-radius: 0.2rem !important;
}

.refreshAlert {
  width: 40%;
  margin: auto;
  top: 93%;
  position: fixed !important;
}

.buttonRight {
  float: right;
}