body {
  background: #181818;
  color: #ffffff;
  display: none;
}

p {
  align-self: initial;
}

.nav-tabs {
  border-bottom: 1px solid orange;
}

.x_nighty {
  width: 90%;
}

html {
  background: #181818;
  color: #ffffff;
}

#AppContainer {
  background: #181818;
  color: #ffffff;
}

.input-field {
  max-width: 200px;
}

.medium-max-width {
  max-width: 500px;
}

.textarea {
  resize: none;
}

.half-width {
  width: 50%;
}

.error-text {
  color: red;
}

.red-background {
  background-color: red;
}

.wrap {
  flex-wrap: wrap;
}

.green-background {
  background-color: green;
}

.disabled-link {
  pointer-events: none;
}

footer {
  background: #212121;
  padding: 20px;
}

header {
  background: #212121;
  padding: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

footer-bar {
  background: #212121;
  padding: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 999;
}

section {
  margin-top: 130px;
  background: #181818;
  color: #ffffff;
}

.actionItem {
  margin: 20px;
  cursor: pointer;
}
.pointer {
  cursor: pointer;
}

.hide {
  display: none !important;
}

.top-margin-30 {
  margin-top: 30px !important;
}

.line-through {
  color: gray;
  text-decoration: line-through;
}

.beside_btn {
  display: flex;
  align-items: center;
  flex: 0;
  margin-left: 10px;
}

.text-align-center {
  text-align: center;
}

.error {
  color: red;
}

.red_text {
  color: red;
  align-self: center;
}

.flex_row {
  display: flex;
  flex-direction: row;
}

.full_width {
  width: 100%;
}

.warp {
  word-break: break-word;
}
.flex_col {
  display: flex;
  flex-direction: column;
}

.space_between {
  justify-content: space-between;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.divider {
  border-bottom: 1px solid orange;
  margin-top: 20px;
  margin-bottom: 20px;
}

.active {
  color: 'orange';
}

table {
  word-break: 'break-word';
}

.flex_item {
  flex: 1;
}
.no_flex_item {
  flex: 0;
}
.small_margin {
  margin: 10px;
}

.small_margin_left {
  margin-left: 10px;
}

.medium_margin {
  margin: 20px;
}

.small-margin-top {
  margin-top: 10px;
}
.medium-margin-top {
  margin-top: 20px;
}
.small_padding {
  margin: 10px;
}
.margin_right {
  margin-right: 20px;
}

.margin_right_small {
  margin-right: 10px;
}

.sm_padding {
  padding: 10px;
}

.medium_padding {
  padding: 20px;
}
.anchor {
  margin: 10px;
  color: #ffffff;
  font-weight: bold;
}

.form_container {
  max-width: 60%;
}

.full-width {
  width: 100%;
}

.form {
  color: white;
  background: #212121;
  margin: 20px;
}

.flex-end {
  align-items: flex-end;
}

.align-self-flex-end {
  align-self: flex-end;
}

.flex-stretch {
  align-items: stretch;
}

.margin-bottom-medium {
  margin-bottom: 50px;
}

.margin-bottom-small {
  margin-bottom: 20px;
}

a:hover {
  color: #ffa131;
  text-decoration: none;
}

.white_text {
  color: #ffa131;
}

.align_center {
  align-items: center;
}
.align_self {
  align-self: center;
}

.align_end {
  align-self: end;
}

.text-align-right {
  text-align: right;
}

.showMenuButton .yellow {
  color: yellow;
}

.center {
  align-items: center;
  justify-content: center;
}
.logo {
  max-width: 200px;
  min-width: 150px;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #ffc107;
  color: #212529;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.display-contents {
  display: contents !important;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Base style */
.stacked-table {
  width: 100%;
  border-collapse: collapse;
}

@media only screen and (max-width: 700px) {
  body {
    font-size: 0.7rem;
  }

  .stack-table,
  tr td:first-child {
    background-color: orange;
    text-align: center;
    font-weight: 500;
    text-align: center;
  }

  .stack-table,
  .stack-table thead,
  .stack-table tbody,
  .stack-table th,
  .stack-table td,
  .stack-table tr {
    display: block;
    width: 100%;
  }

  .stack-table td {
    border-top: 1px solid #dee2e6;
    word-wrap: break-word;
    line-height: 300%;
  }

  .stack-table thead {
    display: none; /* hide table headers */
  }

  .stack-table tr {
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 0.5rem;
    background-color: #1e1e1e; /* match Bootstrap dark table */
    padding: 0.5rem;
  }

  .stack-table td {
    border: none;
    border-bottom: 1px solid #555;
    position: relative;
    padding-left: 45%;
    text-align: left;
  }

  .stack-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    width: 40%;
    font-weight: 600;
    text-transform: capitalize;
    color: #ccc;
  }

  .stack-table td:last-child {
    border-bottom: none;
  }
}
