.beta-strip {
  background: #ff3b3b;
  color: white;
  position: absolute;
  left: -92px;
  top: 110px;
  transform: rotate(-45deg);
  padding: 17px 58px;
  display: block;
  font-size: 21px;
}


footer {
  display: flex;
  justify-content: flex-end;
  background: black;
  color: white;
  padding: 10px;
  font-size: 28px;
}

footer .logo {
  font-family: Orbitron, sans-serif;
}

footer .logo .l2 {
  font-weight: 700
}

header {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ep-status-gray);
  margin: 0 auto;
  width: 100%;
}

header .top-message {
  font-size: 31px;
  border: 1px solid white;
  border-radius: 5px;
  padding: 20px;
  color: white;
  display: flex;;
  gap: 9px;
  flex-wrap: wrap;
  font-weight: 500;
}

body {
  font-family: "Ubuntu", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background: #f4f4f4;
  padding-top: 13px;
  box-sizing: border-box;
  max-width: var(--ep-main-width);
  margin: auto;
  border: 1px solid #cecece;
}

body.green header {
  background: var(--ep-status-green);
}

body.amber header {
  background: var(--ep-status-amber);
}

body.red header {
  background: var(--ep-status-red);
}

body.blue header {
  background: var(--ep-status-blue);
}

header .active-msg {
  display: none;
}

body.green header .green-msg {
  display: block;
}
body.amber header .amber-msg {
  display: block;
}
body.amber header .green-msg {
  display: none;
}

body.blue header .blue-msg {
  display: block;
}
body.blue header .green-msg {
  display: none;
}

body.red header .red-msg {
  display: block;
}
body.red header .green-msg {
  display: none;
}

body.green header .loading-msg {
  display: none;
}
body.blue header .loading-msg {
  display: none;
}
body.amber header .loading-msg {
  display: none;
}
body.red header .loading-msg {
  display: none;
}

.has-issue {
  display: none
}

body.red .has-issue {
  display: inline-block
}
body.blue .has-issue {
  display: inline-block
}
body.amber .has-issue {
  display: inline-block
}
body.red .no-issue {
  display: none
}
body.blue .no-issue {
  display: none
}
body.amber .no-issue {
  display: none
}

.status-inner {
  flex-grow: 1;
  margin: 0 auto;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11px 0;
}

.status-message {
  position: relative;
  border: 1px solid black;
  max-width: 900px;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
}

.status-message .more-info-link {
  right: 6px;
  position: absolute;
  bottom: 3px;
}

.status-message h1 {
  font-weight: 500;
  font-size: 22px;
  margin: 4px 0px;
}

.status-message .detail {

}


.status-message .timestamps {
  border-top: 1px solid #c7c7c7;
  padding-top: 8px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.status-message .status-and-time {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 7px;
}

.status-message .start-lbl,
.status-message .end-lbl {
  min-width: 2.5em;
  display: inline-block;
}

.status-message .timestamp-statement {
  font-weight: 500;
  color: #616161;
}

.status-message.blue {
  --ep-status-line-color: var(--ep-status-blue);
}

.status-message.red {
  --ep-status-line-color: var(--ep-status-red);
}

.status-message.amber {
  --ep-status-line-color: var(--ep-amber-text);
}

.status-message.green {
  --ep-status-line-color: var(--ep-green-text);
}

.status-message .status-lbl {
  color: var(--ep-status-line-color);
  font-weight: 500;
}

.status-message .event-timestamps {
  border: 1px solid #7f7f7f;
  background: #ffffda;
  padding: 6px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 6px;
}

.service-overview-wrapper {
  width: 100%;
  display: flex;
}

.service-overview {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  box-sizing: border-box;
  border-top: 1px solid #d2d2d2;
  margin: 16px 13px;
  padding: 16px;
  justify-content: center;
}

.service-box {
  position: relative;
  border-left: 8px solid var(--ep-status-color);
  padding: 15px 15px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  height: 62px;
  width: 100%;
}

@media (width > 650px) {
  .service-box {
    max-width: 250px;
  }
}

.service-box .status {
  position: absolute;
  bottom: 6px;
  right: 9px;
  background: var(--ep-status-text-color);
  text-align: center;
  padding: 2px 8px;
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 18px;
}

.service-box.blue {
  --ep-status-color: var(--ep-status-blue);
  --ep-status-text-color: var(--ep-status-blue);
}

.service-box.amber {
  --ep-status-color: var(--ep-status-amber);
  --ep-status-text-color: var(--ep-amber-text);
}

.service-box.red {
  --ep-status-color: var(--ep-status-red);
  --ep-status-text-color: var(--ep-status-red);
}

.service-box.green {
  --ep-status-color: var(--ep-status-green);
  --ep-status-text-color: var(--ep-green-text);
}
.contact-us {
  box-sizing: border-box;
  border-top: 1px solid #d2d2d2;
  margin: 16px 13px;
}
.contact-us p {
  margin: 1em 2em;
}

.recent-events {
  display: flex;
 flex-direction: column;
 width: 100%;
   padding: 0 43px;
     box-sizing: border-box;
}

.recent-events-inner {
  display: flex;;
  flex-direction: column;
  gap: 12px;
}


.hidden {
  display: none !important;
}

:root {
  --ep-status-gray: #d3d3d3;
  --ep-status-red: #dd0047;
  --ep-status-amber: #bba459;
  --ep-amber-text: #886f1d;
  --ep-status-green: #259e71;
  --ep-green-text: #337630;
  --ep-status-blue: #3a3a91;
  --ep-status-color: var(--ep-status-gray);
  --ep-main-width: 1024px;
}
