.hide-sm {
  width: 0;
  visibility: hidden;
}
@media (min-width: 640px) {
  .hide-sm {
    width: auto;
    visibility: visible;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dev-mode-controller {
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 200px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  z-index: var(-z-index-critical);
}

.dev-mode-controller h3 {
  color: white;
  margin: 0 0 10px;
  font-size: 16px;
}

.dev-mode-controller label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.dev-mode-controller input[type=checkbox] {
  margin-right: 10px;
}

.dev-mode-controller .links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.dev-mode-controller .links a {
  text-decoration: none;
  color: #62aeff;
  font-size: 14px;
  margin-bottom: 5px;
}

.close-btn {
  position: absolute;
  color: white;
  top: 5px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

:root {
  --website--brand-color: #6901D0;
  --website--success-color: #D3A7FF;
  --website--error-color: #F04438;
  --website--border-radius: 12px;
  --website--border-color: #EAECF0;
  --z-index-base: 0;
  --z-index-mid: 100;
  --z-index-ui: 200;
  --z-index-overlay: 500;
  --z-index-critical: 1000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
  color: #0C111D;
  line-height: 1.375;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input[type=checkbox], input[type=radio] {
  cursor: pointer;
}

a {
  cursor: pointer;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0C111D;
  line-height: 1.375;
  font-weight: 500;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

a {
  color: #0C111D;
  text-decoration: none;
  transition: color 200ms;
}
a:hover, a:focus, a:active {
  color: #0C111D;
}

p {
  margin: 1em 0;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

table {
  border-spacing: 0;
}

pre {
  display: inline-block;
}

b {
  font-weight: 600;
}

.c-text-secondary {
  color: #344054;
}

.c-text-error {
  color: #F04438;
}

.c-text-website-brand {
  color: var(--website--brand-color);
}

.font-size-sm {
  font-size: 0.875rem;
}

.font-size-md {
  font-size: 1rem;
}

.font-size-lg {
  font-size: 1.125rem;
}

.font-size-xl {
  font-size: 1.25rem;
}

.font-size-xxl {
  font-size: 1.5rem;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.text-overflow-ellipsis {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.long-and-truncated-with-child-corrected {
  flex: 1;
  min-width: 0; /* or some value */
}
.long-and-truncated-with-child-corrected h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flex-parent {
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 30px 0;
}

.c-text-secondary {
  color: #344054;
}

.c-text-tertiary {
  color: #667085;
}

.maintenance-items {
  display: grid;
  gap: 32px;
  margin: 16px 0;
}

.maintenance-item {
  display: flex;
  gap: 16px;
}
.maintenance-item__id {
  width: 2rem;
  flex-shrink: 0;
  text-align: center;
  color: #667085;
}
.maintenance-item__header {
  font-size: 1rem;
  padding-bottom: 1em;
  border-bottom: 1px solid #EAECF0;
}
.maintenance-item__description {
  font-size: 1rem;
  color: #344054;
}

.history__header {
  padding: 16px 0 40px;
}
.history__header h1 {
  font-size: 1.5rem;
}
.history__header .history-header__date-nav {
  display: flex;
  color: #344054;
}
.history__header .history-header__date-nav nav {
  display: flex;
  align-items: center;
}
.history__header .history-header__date-nav nav .btn {
  color: #344054;
}
@media (min-width: 640px) {
  .history__header {
    padding: 16px 0 40px;
  }
}
.history__body {
  display: grid;
  gap: 8px;
}
.history__body .history-group {
  display: grid;
  gap: 8px;
  margin-bottom: 48px;
}
.history__body .history-card-group {
  display: grid;
  margin-top: 16px;
  gap: 32px;
}
.history__body .history-group__header {
  padding-bottom: 8px;
  border-bottom: 1px solid #EAECF0;
}
.history__body .history-group__header h2 {
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #344054;
}
.history__body .history-group__no-results-notify {
  color: #667085;
}
.history__nav {
  display: flex;
  gap: 8px;
}
.history__nav .btn {
  flex: 1;
  height: 40px;
}

.card-history {
  display: grid;
  gap: 16px;
  overflow: hidden;
  border-radius: 8px;
}
.card-history:hover {
  background-color: #F9FAFB;
  margin: -8px;
  padding: 8px;
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L10 8L6 4" stroke="%23222121" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5em top 0.5em;
}
.card-history__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.card-history__title {
  font-size: 1.125rem;
}
.card-history__description {
  color: #344054;
}

.graph {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.graph .graph__block {
  display: inline-flex;
  gap: 2px;
  border-radius: 2px;
  height: 1em;
  width: 0.5em;
  background-color: #F9FAFB;
}
.graph .graph__block--success {
  background-color: #17B26A;
}
.graph .graph__block--error {
  background-color: #F04438;
}
.graph .graph__block--alert {
  background-color: #F79009;
}
.graph--round .graph__block {
  width: 0.4em;
}
.graph--round .graph__block:first-child {
  border-radius: 1000px 0 0 1000px;
}
.graph--round .graph__block:last-child {
  border-radius: 0 1000px 1000px 0;
}
.graph--large {
  height: 1.5em;
  border: 1px solid #EAECF0;
}
.graph--large .graph__block {
  width: 0.75em;
  height: 1.5em;
  border-radius: 0;
}
.graph--large .graph__block:first-child {
  border-radius: 200px 0 0 200px;
}
.graph--large .graph__block:last-child {
  border-radius: 0 200px 200px 0;
}
.graph--dynamic {
  align-items: flex-end;
}
.graph--dynamic .graph__block--success {
  height: 20px;
}
.graph--dynamic .graph__block--error {
  height: 7px;
}
.graph--dynamic .graph__block--alert {
  height: 14px;
}

.form-editor__input {
  border: 0;
  border-radius: 0;
}
.form-editor__input--lg {
  font-size: 20px;
  line-height: 24px;
  padding: 4px 0px;
  font-weight: 500;
}
.form-editor__input:focus {
  border: 0;
  outline: 0;
}

.form-editor__textarea {
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  padding: 4px 0px;
  min-height: 24px;
  resize: none;
  max-height: 460px;
}
.form-editor__textarea:focus {
  border: 0;
  outline: 0;
}

.label-dropdown, .label-input {
  display: flex;
  align-items: center;
  gap: 4px;
}
.label-dropdown__label, .label-input__label {
  color: #0C111D;
  font-size: 14px;
  line-height: 20px;
}

.form-input {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 8px 8px;
  border: solid 1px #D0D5DD;
  border-radius: 8px;
}
.form-input--lg {
  padding: 12px 12px;
  border-radius: 4px;
}

.input__check-label {
  display: flex;
  gap: 8px;
}

.input-color-picker {
  border-radius: 50%;
  border: 0px;
  width: 2em;
  height: 2em;
  transition: transform 0.3s ease-in-out;
}
.input-color-picker:hover {
  cursor: pointer;
  animation: scale-up 0.3s ease-in-out forwards;
}
@keyframes scale-up {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.input-color-picker::-webkit-color-swatch-wrapper {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 0;
}
.input-color-picker::-webkit-color-swatch {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 0;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.error {
  color: red;
  display: none;
}

button, .btn {
  cursor: pointer;
}

.btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  height: 2rem;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 8px 8px;
  border-radius: 8px;
  background-origin: border-box;
  background-color: transparent;
  border: solid 0px transparent;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  transition: background-color 0.2s ease;
}
.btn.filter-focus {
  background-color: #F9FAFB !important;
}
.btn.filter-active {
  background-color: #F9FAFB !important;
  border: 1px solid #98A2B3;
  padding-right: 0;
}
.btn:disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: default;
}
.btn--full-width {
  width: 100%;
}
.btn--chevron {
  padding: 8px 0 8px 8px;
}
.btn--icon-only {
  padding: 4px 4px;
}
.btn--sm {
  padding: 2px 2px;
  font-size: 0.75rem;
  border-radius: 2px;
  line-height: 1.25rem;
  height: 1rem;
}
.btn--xl {
  padding: 8px 1.25e;
  line-height: 1.25rem;
  height: 3rem;
}
.btn--brand {
  background: #2F20D7;
  color: white;
}
.btn--brand .icon {
  opacity: 1;
}
.btn--round {
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.btn--primary {
  color: #ffffff;
  background: #2F20D7;
}
.btn--primary:hover, .btn--primary:focus, .btn--primary:focus-within, .btn--primary:active {
  color: #ffffff;
}
.btn--primary-dark {
  color: #ffffff;
  background: #0C111D;
}
.btn--primary-dark:hover, .btn--primary-dark:focus, .btn--primary-dark:focus-within, .btn--primary-dark:active {
  color: #ffffff;
}
.btn--secondary {
  color: #0C111D;
  border: solid 1px #EAECF0;
}
.btn--secondary:hover, .btn--secondary:focus, .btn--secondary:focus-within, .btn--secondary:active {
  color: #0C111D;
  border: solid 1px #EAECF0;
  background: #F9FAFB !important;
}
.btn--tertiary {
  color: #0C111D;
}
.btn--tertiary:hover, .btn--tertiary:focus, .btn--tertiary:focus-within, .btn--tertiary:active {
  background: #EAECF0;
}
.btn--tertiary--light {
  color: #0C111D;
}
.btn--tertiary-brand {
  color: #0A0355;
  background: #EAE9FF;
}
.btn--tertiary-brand:hover, .btn--tertiary-brand:focus, .btn--tertiary-brand:focus-within, .btn--tertiary-brand:active {
  background: #EAE9FF;
}
.btn--primary-website-color {
  color: #ffffff;
  background: var(--website--brand-color);
}
.btn--primary-website-color:hover, .btn--primary-website-color:focus, .btn--primary-website-color:focus-within, .btn--primary-website-color:active {
  background: var(--website--brand-color);
}
.btn--link {
  color: #004EC2;
  font-weight: 400;
  padding: 0;
}
.btn--link-gray {
  color: #344054;
  font-weight: 400;
  padding: 0;
}
.btn--warning {
  color: #dc3545;
}
.btn--light {
  color: #0C111D;
  background-color: #F9FAFB;
}
.btn--light:hover, .btn--light:focus, .btn--light:focus-within, .btn--light:active {
  color: #0C111D;
  filter: brightness(92%);
}

.btn-group--mobile-wrapper {
  position: relative;
  margin-bottom: 2em;
}
@media (min-width: 640px) {
  .btn-group--mobile-wrapper {
    margin-bottom: 0;
  }
}

.btn-group {
  display: flex;
  flex-direction: row;
  border: 1px solid #EAECF0;
  border-radius: 0.5em;
  overflow: hidden;
}
.btn-group--mobile {
  position: absolute;
  right: 0;
  z-index: var(--z-index-mid);
  flex-direction: column;
}
.btn-group--mobile.active {
  filter: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.05));
}
.btn-group--mobile.active .btn-group__button {
  display: flex;
}
.btn-group--mobile.active .btn-group__button.active {
  background-color: #F9FAFB;
}
.btn-group--mobile .btn-group__button {
  display: none;
  justify-content: flex-start;
  border-left: 0;
}
.btn-group--mobile .btn-group__button .active {
  display: flex;
}
.btn-group--mobile--right-aligned-dropdown {
  top: 0px;
}
.btn-group--mobile--right-aligned-dropdown .btn-group__button {
  display: none;
  justify-content: flex-start;
}
@media (min-width: 640px) {
  .btn-group--mobile {
    position: relative;
    flex-direction: row;
  }
  .btn-group--mobile .btn-group__button {
    display: flex;
    border-left: 1px solid #EAECF0;
  }
}
.btn-group input[type=radio] {
  display: none;
}
.btn-group__button {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  padding: 4px 8px;
  color: #344054;
  font-weight: 400;
  line-height: 1.25rem;
  text-decoration: none;
  outline: none;
  transition: filter 400ms, color 200ms;
  border-left: 1px solid #EAECF0;
  background-color: #ffffff;
}
.btn-group__button--with-badge {
  gap: 0.5em;
}
.btn-group__button:first-of-type {
  border-left: 0;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='12' height='12' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>");
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
}
@media (min-width: 640px) {
  .btn-group__button:first-of-type {
    background-image: none;
  }
}
.btn-group__button:hover, .btn-group__button:focus, .btn-group__button:focus-within, .btn-group__button:active {
  color: #0C111D;
  background-color: #F9FAFB;
}
@media (min-width: 640px) {
  .btn-group__button {
    padding: 4px 16px;
  }
}
.btn-group .active {
  display: flex;
  background-color: #ffffff;
  font-weight: 500;
  color: #2F20D7;
}
@media (min-width: 640px) {
  .btn-group .active {
    background-color: #F9FAFB;
  }
}

.uptime-calendar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 480px) {
  .uptime-calendar {
    flex-direction: row;
  }
}

.uptime-calendar__month {
  flex-grow: 1;
}

.uptime-calendar__month-label {
  color: var(--gray-600);
  font-size: var(--font-size-s);
}

.uptime-calendar__weekdays {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.uptime-calendar__weekdays li {
  flex-wrap: wrap;
  list-style-type: none;
  display: inline-flex;
  width: 12.3%;
  font-size: 12px;
  line-height: 20px;
  color: #344054;
}

.uptime-calendar__days {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.uptime-calendar__days .uptime-calendar__day {
  flex-wrap: wrap;
  list-style-type: none;
  display: inline-flex;
  width: 12.3%;
  padding-bottom: 12.3%;
  background-color: #F9FAFB;
  border-radius: 6px;
}
.uptime-calendar__days .uptime-calendar__day--up {
  background-color: var(--website--success-color);
}
.uptime-calendar__days .uptime-calendar__day--error {
  background-color: var(--website--error-color);
}
.uptime-calendar__days .uptime-calendar__day--warning {
  background-color: var(--website--error-color);
}
.uptime-calendar__days .uptime-calendar__day--no-data {
  background-color: #F9FAFB;
}
.uptime-calendar__days .uptime-calendar__day--today {
  border: 2px solid var(--website--brand-color);
  padding-bottom: 11.4%;
}

.data-graph-group {
  display: grid;
  gap: 32px;
}

.data-graph {
  display: grid;
  gap: 16px;
}
.data-graph__header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.875rem;
}
.data-graph__container canvas {
  height: 140px;
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-flex;
}
.dropdown .btn:first-child {
  width: 100%;
}

.overlay {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1px;
  z-index: var(--z-index-mid);
  display: none;
  float: left;
  min-width: 120%;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
}

.dropdown-menu {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  list-style: none;
  padding: 0.5em 0;
}
.dropdown-menu .dropdown-title {
  padding: 0.5em 1em;
  display: inline-block;
  opacity: 0.8;
  font-weight: 600;
}
.dropdown-menu .dropdown-item, .dropdown-menu .filter-item {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-width: 10em;
  gap: 0.5em;
  padding: 0.5em 1em;
  clear: both;
  font-weight: 400;
  color: #0C111D;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-menu .dropdown-item--border, .dropdown-menu .filter-item--border {
  border-top: 1px solid #EAECF0;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .filter-item:hover, .dropdown-menu .filter-item:focus {
  color: #0C111D;
  text-decoration: none;
  background-color: #F9FAFB;
}

.overlay-subscribe {
  width: 24em;
  padding-bottom: 1.5em;
}

.overlay__tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px 32px;
  gap: 24px;
}

.overlay__body, .overlay__form {
  padding: 0 1.5em;
  margin-bottom: 1.25em;
}

.overlay__form form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.overlay__form form button {
  width: 100%;
}

.icon {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor; /* This makes the icon inherit the text color */
}
.icon--xs {
  width: 14px;
  height: 14px;
}
.icon--sm {
  width: 16px;
  height: 16px;
}
.icon--md {
  width: 20px;
  height: 20px;
}
.icon--lg {
  width: 24px;
  height: 24px;
}
.icon--warning {
  color: #F79009;
}

.icon-featured {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  outline: 12px solid #f9f8fe;
  background: #f9f8fe;
  width: 72px;
  height: 72px;
}
.icon-featured .icon {
  width: 36px;
  height: 36px;
  color: #2F20D7;
}
.icon-featured .icon svg {
  width: 56px;
  height: 56px;
}

.pill-group {
  display: flex;
  gap: 4px;
}

.pill {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  justify-content: space-between;
  padding: 4px 12px;
  border-radius: 50px;
  background-color: #EAECF0;
  color: #0C111D;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  height: 28px;
  transition: background-color 0.3s ease;
}
.pill .icon {
  color: #0C111D;
}
.pill--disabled {
  opacity: 0.6;
  pointer-events: none;
}
.pill__content {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pill--amount {
  min-width: 2em;
}
.pill--leading-icon {
  padding-left: 8px;
}
.pill--icon-only {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  padding: 4px 4px;
}
.pill--warning {
  background-color: #FFFAEB;
  color: #B54708;
}
.pill--warning .icon {
  color: #F79009;
}
.pill--error {
  background-color: #FEF3F2;
  color: #dc3545;
}
.pill--error .icon {
  color: #F04438;
}
.pill--success {
  background-color: #DCFAE6;
  color: #067647;
}
.pill--success .icon {
  color: #067647;
}
.pill--info {
  background-color: #EFF8FF;
  color: #175CD3;
}
.pill--info .icon {
  color: #2E90FA;
}
.pill--success-dark {
  background-color: #067647;
  color: #DCFAE6;
}
.pill--success-dark .icon {
  color: #DCFAE6;
}
.pill--error-dark {
  background-color: #dc3545;
  color: #FEF3F2;
}
.pill--error-dark .icon {
  color: #FEF3F2;
}
.pill--gray-dark {
  background-color: #0C111D;
  color: #ffffff;
}
.pill--gray-dark .icon {
  color: #ffffff;
}
.pill--border-only {
  background-color: #ffffff;
  border: 1px solid #EAECF0;
}
.pill--leading-icon-dropdown .chevron, .pill--text-dropdown .chevron {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.pill--leading-icon-dropdown:hover .chevron, .pill--text-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.pill--leading-icon-dropdown .icon--dropdown,
.pill--text-dropdown .icon--dropdown {
  color: #344054;
}
.pill--leading-icon-dropdown .dropdown-content,
.pill--text-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #EAECF0;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: var(--z-index-mid);
}
.pill--leading-icon-dropdown .dropdown-content a,
.pill--text-dropdown .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.pill--leading-icon-dropdown .dropdown-content a:hover,
.pill--text-dropdown .dropdown-content a:hover {
  background-color: white;
}
.pill--leading-icon-dropdown:hover .dropdown-content,
.pill--text-dropdown:hover .dropdown-content {
  display: block;
}

.tooltip {
  position: absolute;
  z-index: var(--z-index-mid);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* Prevent the tooltip from capturing mouse events */
  transform: translateY(10px); /* Initial transform to create a slide effect */
}

.tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.time-line__item:last-of-type .time-line-item__body::after {
  display: none;
}

.time-line--dots .time-line-item__body {
  margin-left: 25px;
}
.time-line--dots .time-line-item__body::after {
  left: -19px;
}

.time-line-item {
  display: flex;
}
.time-line-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.25em;
}
.time-line-item__header-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.time-line-item__body {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  gap: 8px;
  margin-left: 32px;
  position: relative;
}
.time-line-item__body:after {
  content: "";
  position: absolute;
  width: 0;
  height: calc(100% + 28px);
  border: 0.5px solid #EAECF0;
  top: 4px;
  left: -26px;
}

.message-style {
  font-family: monospace;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  padding: 16px;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 180%;
  background-color: #F9FAFB;
}

.text-description-body ul {
  margin: 8px 0 8px 1em;
}
.text-description-body ul li {
  margin-bottom: 0.5em;
}
.text-description-body ul li > ul {
  margin-top: 0.5em;
}

.dot {
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  border-radius: 50%;
  margin: 4px;
  background-color: #EAECF0;
  outline: 1px solid #D0D5DD;
}
.dot--md {
  width: 10px;
  height: 10px;
}
.dot--success {
  background-color: #17B26A;
  outline: 4px solid #DCFAE6;
}
.dot--error {
  background-color: #F04438;
  outline: 4px solid #FEF3F2;
}
.dot--success-pulse {
  outline: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(23, 178, 106);
  margin-right: 0.25rem;
  border-radius: 100%;
  position: relative;
  box-shadow: 0 0 0 0 rgb(23, 178, 106);
  transform: scale(1);
  animation: pulse-success 2s infinite;
}
.dot--error-pulse {
  outline: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(240, 68, 56);
  margin-right: 0.25rem;
  border-radius: 100%;
  position: relative;
  transform: scale(1);
  animation: pulse-error 2s infinite;
}

@keyframes pulse-error {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(240, 68, 56, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(240, 68, 56, 0);
  }
  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(240, 68, 56, 0);
  }
}
@keyframes pulse-success {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(23, 178, 106, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(23, 178, 106, 0);
  }
  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(23, 178, 106, 0);
  }
}
.badge-fancy {
  font-size: 12px;
  color: #344054;
  background-color: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  filter: drop-shadow(0 2px 2px rgba(152, 140, 140, 0.07));
  box-shadow: inset 0 2px 12px rgba(118, 112, 112, 0.04);
}

.badge {
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 6px;
}
.badge--gray {
  color: #0C111D;
  background-color: #EAECF0;
}
.badge--dark {
  color: #F9FAFB;
  background-color: #0C111D;
}

.tabs-container .tab-links-wrapper {
  position: relative;
  height: 40px;
}
.tabs-container .tab-links {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: auto;
  box-sizing: border-box;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  background: white;
}
.tabs-container .tab-links.active-for-mobile {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.07);
  z-index: var(--z-index-mid);
}
@media (min-width: 640px) {
  .tabs-container .tab-links.active-for-mobile {
    box-shadow: none;
  }
}
.tabs-container .tab-links.active-for-mobile > button {
  display: flex;
  width: 100%;
  filter: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.05));
  background-color: var(--base-white);
}
@media (min-width: 640px) {
  .tabs-container .tab-links.active-for-mobile > button {
    width: auto;
  }
}
.tabs-container .tab-links.active-for-mobile > button.active {
  background-image: none;
}
.tabs-container .tab-links.active-for-mobile > button:first-child {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='12' height='12' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>");
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
}
@media (min-width: 640px) {
  .tabs-container .tab-links.active-for-mobile > button:first-child {
    background-image: none;
  }
}
.tabs-container .tab-links button.active {
  display: flex;
  width: 100%;
  color: #0C111D;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='12' height='12' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>");
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-color: #F9FAFB;
}
.tabs-container .tab-links button.active:first-child {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='12' height='12' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>");
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
}
.tabs-container .tab-links button.active:focus {
  display: flex;
}
.tabs-container .tab-links button {
  display: none;
  align-items: center;
  gap: 12px;
  background-color: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 16px;
  float: left;
  border: 0;
  outline: none;
  color: #344054;
  cursor: pointer;
  padding: 8px 16px;
  height: 40px;
}
@media (min-width: 640px) {
  .tabs-container .tab-links {
    position: relative;
    flex-direction: row;
    gap: 8px;
    border: 0;
  }
  .tabs-container .tab-links button {
    display: flex;
    border-radius: 0.5em;
  }
  .tabs-container .tab-links button.active {
    width: auto;
    background-image: none;
    background-color: #F9FAFB;
  }
  .tabs-container .tab-links button {
    filter: none;
  }
  .tabs-container .tab-links button.active {
    background-image: none;
  }
  .tabs-container .tab-links button.active:first-child {
    background-image: none;
  }
}

.tabcontent {
  display: none;
  animation: fadeEffect 0.75s;
  padding-bottom: 4em;
}
.tabcontent.active {
  display: block;
  width: 100%;
}

.tabs-container--classic {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.tabs-container--classic .tab-links-wrapper {
  height: 60px;
}
.tabs-container--classic .tab-links {
  border-radius: 0;
}
.tabs-container--classic .tab-links button {
  height: 60px;
}
.tabs-container--classic .tab-links button.active {
  box-shadow: inset 0px -2px 0px #EAECF0;
}
.tabs-container--classic.active-for-mobile button.active {
  box-shadow: 0 !important;
}
@media (min-width: 640px) {
  .tabs-container--classic .tab-links-wrapper {
    height: 40px;
  }
  .tabs-container--classic .tab-links {
    padding-left: 1.25em;
    position: relative;
    flex-direction: row;
    gap: 8px;
    border: 0;
    background: transparent;
  }
  .tabs-container--classic .tab-links button {
    display: flex;
    font-size: 14px;
    border-radius: calc(var(--website--border-radius) / 3) calc(var(--website--border-radius) / 3) 0 0;
    padding-bottom: 7px;
    padding-left: 1em;
    padding-right: 1em;
    height: 40px;
  }
  .tabs-container--classic .tab-links button.active {
    background-color: white;
    color: #0C111D;
    padding-bottom: 9px;
    padding-top: 9px;
    position: relative;
    box-shadow: none;
  }
  .tabs-container--classic .tab-links button.active::before, .tabs-container--classic .tab-links button.active::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    bottom: 0;
  }
  .tabs-container--classic .tab-links button.active::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='3' height='3' viewBox='0 0 3 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 0C3 1.65686 1.65674 3 0 3H3V0Z' fill='white'/%3e%3c/svg%3e");
    left: -3px;
  }
  .tabs-container--classic .tab-links button.active::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='3' height='3' viewBox='0 0 3 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0C0 1.65686 1.34326 3 3 3H0V0Z' fill='white'/%3e%3c/svg%3e");
    right: -3px;
  }
}

body:has(#modal) {
  overflow: hidden;
}

.modal {
  /* Underlay covers entire screen. */
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: var(--z-index-ui);
  /* Flexbox centers the .modal-content vertically and horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Animate when opening */
  animation-name: fadeIn;
  animation-duration: 150ms;
  animation-timing-function: ease;
}
.modal .modal-underlay {
  /* underlay takes up the entire viewport. This is only
  required if you want to click to dismiss the popup */
  position: absolute;
  z-index: var(-z-index-overlay);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.modal .modal-content {
  /* Position visible dialog near the top of the window */
  margin-top: 5vh;
  max-height: 90vh;
  position: absolute;
  bottom: 0;
  /* Wrap, this should be a section on it's own */
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px 16px;
  /* Sizing for visible dialog */
  width: 100%;
  /* For the footer */
  padding-bottom: 60px;
  /* Display properties for visible dialog*/
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 24px 24px 0 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  /* Animate when opening */
  animation-name: zoomIn;
  animation-duration: 150ms;
  animation-timing-function: ease;
}
@media (min-width: 640px) {
  .modal .modal-content {
    border-radius: 24px;
    position: relative;
    min-width: 524px;
    max-width: 524px;
    padding: 40px 32px;
  }
}

.modal-content__main-wrapper {
  max-height: 70vh;
  overflow-y: scroll;
}

.modal-content__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-content-header__title {
  display: flex;
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-content__footer {
  position: absolute;
  bottom: 0;
  background: white;
  left: 0;
  right: 0;
  border-top: 1px solid #EAECF0;
  border-radius: 0 0 8px 8px;
}

.modal-icon-close-button {
  position: absolute;
  right: 1em;
  top: 1em;
}

#modal.closing {
  /* Animate when closing */
  animation-name: fadeOut;
  animation-duration: 150ms;
  animation-timing-function: ease;
}
#modal.closing > .modal-content {
  /* Animate when closing */
  animation-name: zoomOut;
  animation-duration: 150ms;
  animation-timing-function: ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

.modal-subscribe .modal-content .icon-featured svg {
  color: var(--website--brand-color);
}

body {
  display: none;
  flex-direction: row;
  height: 100%;
}
body.loaded {
  display: flex;
}

main {
  flex: 1; /* Take up remaining space */
  display: flex;
  overflow: hidden;
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.scroll-y {
  overflow-y: auto;
}

.layout-centered-md {
  max-width: 632px;
  margin: 0 auto;
}

.border-top {
  border-top: 1px solid #EAECF0;
}

.border-bottom {
  border-bottom: 1px solid #EAECF0;
}

.border-right {
  border-right: 1px solid #EAECF0;
}

.hide {
  display: none !important;
}

.max-width-md {
  max-width: 520px;
  min-width: 520px;
}

.max-width-lg {
  max-width: 720px;
}

.max-width-xxl {
  max-width: 1280px;
  min-width: 1280px;
}

.cards-max-width {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 1280px;
  margin: 1em auto;
  padding: 1em;
}
@media (min-width: 640px) {
  .cards-max-width {
    padding: 2em;
    margin: 2em auto;
  }
}

.width-full {
  width: 100%;
}

.height-full {
  height: 100%;
}

.content-container-meta {
  padding: 12px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex--column {
  flex-direction: column;
}

.flex--row {
  flex-direction: row;
}

.flex--space-between {
  justify-content: space-between;
}

.flex--start {
  justify-content: flex-start;
}

.flex--align-center {
  align-items: center;
}

.flex--align-end {
  align-items: end;
  justify-content: end;
}

.flex--wrap {
  flex-wrap: wrap;
}

hr.divider {
  border-top: 1px solid #EAECF0;
  border-bottom: 0;
  outline: 0;
}

.margin-lr-xs {
  margin-left: 12px;
  margin-right: 12px;
}

.margin-lr-sm {
  margin-left: 14px;
  margin-right: 14px;
}

.margin-lr-md {
  margin-left: 16px;
  margin-right: 16px;
}

.margin-lr-lg {
  margin-left: 24px;
  margin-right: 24px;
}

.margin-lr-xl {
  margin-left: 32px;
  margin-right: 32px;
}

.margin-lr-xxl {
  margin-left: 40px;
  margin-right: 40px;
}

.margin-tb-sm {
  margin-top: 8px;
  margin-bottom: 8px;
}

.margin-tb-md {
  margin-top: 12px;
  margin-bottom: 12px;
}

.margin-tb-lg {
  margin-top: 16px;
  margin-bottom: 16px;
}

.margin-tb-xl {
  margin-top: 24px;
  margin-bottom: 24px;
}

.margin-tb-xxl {
  margin-top: 40px;
  margin-bottom: 40px;
}

.margin-tb-xxxl {
  margin-top: 64px;
  margin-bottom: 64px;
}

.padding-lr-xs {
  padding-left: 12px;
  padding-right: 12px;
}

.padding-lr-sm {
  padding-left: 14px;
  padding-right: 14px;
}

.padding-lr-md {
  padding-left: 16px;
  padding-right: 16px;
}

.padding-lr-lg {
  padding-left: 24px;
  padding-right: 24px;
}

.padding-lr-xl {
  padding-left: 32px;
  padding-right: 32px;
}

.padding-lr-xxl {
  padding-left: 40px;
  padding-right: 40px;
}

.padding-tb-sm {
  padding-top: 8px;
  padding-bottom: 8px;
}

.padding-tb-md {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-tb-lg {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding-tb-xl {
  padding-top: 24px;
  padding-bottom: 24px;
}

.padding-tb-xxl {
  padding-top: 48px;
  padding-bottom: 48px;
}

.padding-tb-xxxl {
  padding-top: 64px;
  padding-bottom: 64px;
}

.gap-xs {
  gap: 2px;
}

.gap-sm {
  gap: 4px;
}

.gap-md {
  gap: 8px;
}

.gap-lg {
  gap: 12px;
}

.gap-xl {
  gap: 16px;
}

.gap-xxl {
  gap: 24px;
}

.gap-xxxl {
  gap: 40px;
}

.fixed-lg {
  width: 5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1em 0 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #EAECF0;
}
.section-header__title h2 {
  font-size: 0.875rem;
  color: #667085;
}
.section-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-header--sm {
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 12px;
}

.section-date-group__label {
  font-size: 1rem;
  color: #344054;
  font-weight: 500;
  padding: 1em 0;
  border-bottom: 1px solid #EAECF0;
}

.c-website-success-color {
  color: var(--website--success-color);
}

.c-website-error-color {
  color: var(--website--error-color);
}

.c-website-brand-color {
  color: var(--website--brand-color);
}

.rotate {
  transform: rotate(180deg);
}

.website-status-page {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  background-color: #EAECF0;
  position: relative;
}
@media (min-width: 768px) {
  .website-status-page {
    margin: 0 0 3em 0;
  }
}
.website-status-page--rect {
  --website--border-radius: 1px;
}
.website-status-page .colors > div {
  border-radius: var(--website--border-radius);
}
.website-status-page .uptime-calendar__day,
.website-status-page .btn {
  border-radius: calc(var(--website--border-radius) - 4px) !important;
}
.website-status-page--width-1200 .website-header__wrapper,
.website-status-page--width-1200 .website__main,
.website-status-page--width-1200 .website__footer {
  width: 100%;
  max-width: 1200px;
}

.website__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.website__header::before {
  content: "";
  position: absolute;
  height: 10px;
  left: 0;
  right: 0;
  background-color: var(--website--brand-color);
}
.website__header .website-header__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 760px;
  margin: 3em 1em 1em 1em;
  padding: 0 1rem;
}
.website__header .website-header__wrapper .subscribe-btn {
  background-color: rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .website__header .website-header__wrapper {
    padding: 0;
    margin: 4em 1em 2em 1em;
  }
}
.website__header .website-header__logo {
  font-size: 1.25em;
  font-weight: 600;
  color: var(--website--brand-color);
}
.website__header .website-header__section {
  display: flex;
  gap: 1em;
}

.website-type--data-grid .website-header__wrapper {
  margin: calc(1em + 10px) 1em 1em 1em;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .website-type--data-grid .website-header__wrapper {
    padding: 0;
    margin: 2.5em 1em 1.5em 1em;
  }
}

.website__header--dominant .website__header {
  max-width: 100%;
  background-color: var(--website--brand-color);
  color: white;
}
.website__header--dominant .website__header__wrapper {
  margin: 1em;
}
.website__header--dominant .website__header::after {
  content: "";
  position: absolute;
  height: 120px;
  top: 76px;
  left: 0;
  right: 0;
  background-color: var(--website--brand-color);
}
.website__header--dominant .website-header__logo,
.website__header--dominant .website-header__logo a {
  color: white;
  display: flex;
  align-items: center;
}
.website__header--dominant .website__header .subscribe-btn {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .website__header--dominant button.tab-link {
    color: white;
  }
}

.website-type--data-grid .website-status-page {
  padding: 0;
}
.website-type--data-grid .website-header__wrapper {
  width: 100%;
  padding: 0 16px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .website-type--data-grid .website-header__wrapper {
    padding: 0 32px;
  }
}
.website-type--data-grid .website__main {
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
@media (min-width: 640px) {
  .website-type--data-grid .website__main {
    max-width: 100%;
  }
}
.website-type--data-grid .website__footer {
  max-width: 100%;
  padding: 2em 2em;
  margin: 0;
}

.website__main {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: var(--website--border-radius);
  width: 100%;
  max-width: 760px;
  padding: 16px 16px 32px 16px;
  margin: 1em;
  gap: 8px;
  filter: drop-shadow(0px 12px 12px rgba(170, 170, 170, 0.1));
}
@media (min-width: 640px) {
  .website__main {
    padding: 16px 32px;
  }
}
.website__main .page-title {
  padding: 8px 16px;
}
.website__main .page-title h1 {
  font-size: 1.5rem;
}
@media (min-width: 640px) {
  .website__main .page-title {
    padding: 16px 32px;
  }
}
.website__main .bleeding-edge {
  background-color: white;
  padding: 8px 16px;
}
@media (min-width: 640px) {
  .website__main .bleeding-edge {
    padding: 24px 32px;
  }
}
.website__main .bleeding-edge--max-width-lg {
  max-width: 760px;
}
.website__main .website-widget {
  background-color: #F9FAFB;
  padding: 24px;
  border-radius: var(--website--border-radius);
}
.website__main .website-widget--float {
  padding: 0;
  background-color: transparent;
}
.website__main .website-widget:last-child {
  margin-bottom: 0;
}

.website__footer {
  display: flex;
  width: 100%;
  max-width: 760px;
  justify-content: space-between;
  padding: 0 1rem;
  margin: 0 1rem;
  align-items: center;
}

.website-current-state {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  height: 7em;
  padding: 24px;
}
.website-current-state__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--website--brand-color);
}
.website-current-state__icon svg {
  width: 2em;
  height: 2em;
}
.website-current-state__label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--website--brand-color);
}

.service-item-group--closed .service-item-master svg.accordion-state {
  transform: rotate(-0.25turn);
  transition: transform 0.2s ease-out;
}
.service-item-group--closed .service-item-master:hover svg.accordion-state {
  transform: rotate(0turn);
}
.service-item-group--closed .service-items-subs {
  display: none;
}
.service-item-group--open .service-item-master svg.accordion-state {
  transform: rotate(0turn);
  transition: transform 0.2s ease-out;
}
.service-item-group--open .service-item-master:hover svg.accordion-state {
  transform: rotate(-0.25turn);
}
.service-item-group--open .service-item-master .service-item-period-view__range {
  display: none;
}
.service-item-group--open .service-items-subs {
  display: block;
}

.service-item-master {
  cursor: pointer;
}

.service-item-period-view {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  margin: 16px 0;
}
.service-item-period-view__label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-item-period-view__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  font-weight: 500;
}
.service-item-period-view__info svg {
  stroke-width: 1.5;
  color: var(--website--brand-color);
}
.service-item-period-view__state-label {
  display: flex;
  color: var(--website--brand-color);
}
.service-item-period-view__state-label--error {
  color: var(--website--error-color);
}
.service-item-period-view__range {
  display: flex;
  gap: 1px;
}
.service-item-period-view__range .status-box {
  display: none;
  background-color: var(--website--success-color);
  height: 1em;
  flex: 1;
  transition: scale 0.1s ease-in-out;
}
.service-item-period-view__range .status-box--error {
  background-color: var(--website--error-color);
}
.service-item-period-view__range .status-box:nth-child(n+61):nth-child(-n+90) {
  display: inline-flex;
}
.service-item-period-view__range .status-box:hover {
  scale: 1.4;
  border: 1px;
  outline: 1px solid rgba(255, 255, 255, 0.9);
}
.service-item-period-view__range .status-box:nth-child(61) {
  border-radius: calc(var(--website--border-radius) - 8px) 0 0 calc(var(--website--border-radius) - 8px);
}
.service-item-period-view__range .status-box:last-child {
  border-radius: 0 calc(var(--website--border-radius) - 8px) calc(var(--website--border-radius) - 8px) 0;
}
@media (min-width: 480px) {
  .service-item-period-view__range .status-box {
    border-radius: 0;
  }
  .service-item-period-view__range .status-box:nth-child(61) {
    border-radius: 0;
  }
  .service-item-period-view__range .status-box:nth-child(31) {
    border-radius: calc(var(--website--border-radius) - 8px) 0 0 calc(var(--website--border-radius) - 8px);
  }
  .service-item-period-view__range .status-box:nth-child(n+31):nth-child(-n+90) {
    display: inline-flex;
  }
}
@media (min-width: 640px) {
  .service-item-period-view__range .status-box {
    display: inline-flex;
  }
  .service-item-period-view__range .status-box:nth-child(61), .service-item-period-view__range .status-box:nth-child(31) {
    border-radius: 0;
  }
  .service-item-period-view__range .status-box:nth-child(1) {
    border-radius: calc(var(--website--border-radius) - 8px) 0 0 calc(var(--website--border-radius) - 8px);
  }
}

.section-group__title {
  color: #344054;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-top: 32px;
  font-weight: 500;
}

.card-group {
  display: grid;
  gap: 8px;
}
@media (min-width: 640px) {
  .card-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .card-group--2-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .card-group {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .card-group--3-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .card-group--2-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.card-group .card-metric {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: var(--website--border-radius);
  border: 1px solid #EAECF0;
  padding: 24px;
  background-color: #F9FAFB;
}
.card-group .card-metric__amount {
  font-size: 2rem;
  font-weight: 500;
}
.card-group .card-metric__label {
  font-size: 0.875rem;
  color: #344054;
}
.card-group .card-service {
  display: flex;
  flex-direction: column;
  border-radius: var(--website--border-radius);
  border: 1px solid #EAECF0;
  padding: 16px;
  background-color: #F9FAFB;
  font-size: 1rem;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  height: 5em;
}
.card-group .card-service svg {
  color: var(--website--brand-color);
  width: 2rem;
  height: 2rem;
}
.card-group .card-response-time {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1;
  background-color: #F9FAFB;
  border-radius: var(--website--border-radius);
  border: 1px solid #EAECF0;
  height: 5em;
  overflow: hidden;
}
.card-group .card-response-time__body {
  padding: 16px;
}
.card-group .card-response-time__amount {
  font-size: 1.125rem;
  font-weight: 500;
}
.card-group .card-response-time__label {
  font-size: 0.875rem;
  color: #344054;
}
.card-group .card-response-time__graph-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: red;
  z-index: var(-z-index-base);
  background-color: #F9FAFB;
}

.badge-website-global-state {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
}

.sheet-grid {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.sheet-section {
  padding-bottom: 24px;
  border-bottom: 1px solid #F9FAFB;
}
.sheet-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 16px;
  border-bottom: 1px solid #EAECF0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sheet-section__header {
    padding: 16px 32px;
  }
}

.sheet-section-header__chevron {
  color: #344054;
  flex-shrink: 0;
}
.sheet-section-header__title {
  font-size: 1.125rem;
}
.sheet-section-header__meta {
  font-size: 0.875rem;
  color: #344054;
}

.sheet-row,
.sheet-header {
  display: flex;
  padding: 0 16px;
  border-bottom: 1px solid #EAECF0;
  min-width: fit-content;
}
@media (min-width: 768px) {
  .sheet-row,
  .sheet-header {
    padding: 0 32px;
  }
}

.sheet-header {
  font-size: 0.875rem;
  color: #344054;
}

.sheet-cell {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 16px;
  padding-right: 32px;
  border-right: 1px solid #EAECF0;
}
.sheet-cell--fixed-width-xs {
  min-width: 220px;
  max-width: 220px;
}
.sheet-cell--fixed-width-sm {
  min-width: 260px;
  max-width: 260px;
}
.sheet-cell--fixed-width-md {
  min-width: 320px;
  max-width: 320px;
}
.sheet-cell--fixed-width-lg {
  min-width: 420px;
  max-width: 420px;
}
.sheet-cell:first-child {
  padding-left: 0;
}
.sheet-cell:last-child {
  border-right: 0;
}

.state-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.state-details--error {
  background-color: #FEF3F2 !important;
}
.state-details__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.state-details__title {
  max-width: 580px;
  font-size: 1.25rem;
  font-weight: 600;
}
.state-details__date-time {
  font-size: 0.875rem;
}
.state-details__description {
  color: #344054;
  max-width: 640px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.state-details__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 8px;
  color: #344054;
}

.website--button.btn--primary {
  background-color: var(--website--brand-color);
}

/*# sourceMappingURL=website.sass.css.map */
