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

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
: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-tertiary {
  color: #667085;
}

.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;
}

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

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

.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%;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.form .form-intro p {
  font-size: 0.875rem;
  color: #0C111D;
}
.form fieldset {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: inherit;
}
.form fieldset legend {
  margin-bottom: 8px;
}
.form fieldset.fieldset--tightspace {
  gap: 4px;
}
.form ::placeholder {
  color: #667085;
}
.form hr {
  width: 100%;
  border-top: 1px solid var(--gray-200);
  border-bottom: 0;
}
.form label, .form legend {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 500;
  color: #344054;
}
.form .input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.form .radio-container {
  display: flex;
  flex-direction: row;
  gap: 2px;
  width: 100%;
}
.form .form-check {
  display: flex;
  gap: 4px;
}
.form .form-check__text {
  font-weight: 500;
  display: block;
}
.form .form-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form .input-group {
  display: flex;
  gap: 0;
  width: 100%;
}
.form .input-group .form__select {
  padding: 2px 2em 2px 4px !important;
}
.form .input-group *:first-child {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: 0;
}
.form .input-group *:last-child {
  border-left: 0;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding-left: 0 !important;
}
.form .input-group--with-icon {
  display: flex;
  align-items: center;
}
.form .input-group--with-icon .input-group--icon {
  height: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .input-group--with-icon .input-group--icon svg {
  color: var(--gray-400);
}
.form__group, .form__input, .form__text-area, .form .chosen-container ul, .form .chosen-container .chosen-single {
  flex: 1;
  width: 100%;
}
.form__input, .form__text-area, .form__select, .form .chosen-container ul, .form .chosen-container .chosen-single {
  color: var(--gray-900);
  font-size: 0.875rem;
  display: block;
  padding: 8px 8px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  outline: none;
  transition: box-shadow 250ms;
}
.form__input:focus, .form__text-area:focus, .form__select:focus, .form .chosen-container ul:focus, .form .chosen-container .chosen-single:focus {
  box-shadow: 0 0 0 2px var(--color-glint);
}
.form__input--large, .form__text-area--large, .form__select--large, .form .chosen-container ul--large, .form .chosen-container .chosen-single--large {
  padding: 0.75em 0.875em;
}
.form__input--invalid, .form__text-area--invalid, .form__select--invalid, .form .chosen-container ul--invalid, .form .chosen-container .chosen-single--invalid {
  border-color: var(--color-primary);
}
.form__input:disabled, .form__text-area:disabled, .form__select:disabled, .form .chosen-container ul:disabled, .form .chosen-container .chosen-single:disabled {
  cursor: default;
  background-color: rgba(239, 239, 239, 0.3);
}
.form__select {
  padding: 8px 4em 8px 8px;
  font-size: 0.875rem;
  border: 1px solid #D0D5DD;
  outline: none;
  transition: box-shadow 250ms;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: 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>") no-repeat;
  background-position: right 12px top 50%;
}
.form__select:disabled {
  cursor: default;
  background-color: rgba(239, 239, 239, 0.3);
}
.form__select--large {
  padding: 8px 4em 8px 16px;
}
.form__validation-error .form__input, .form__validation-error .form__select {
  border-color: var(--error-300);
}
.form__hint-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #344054;
}
.form .form__validation-error-text {
  color: #dc3545;
  line-height: 1.25rem;
  font-size: 0.875rem;
}

fieldset {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: inherit;
}
fieldset legend {
  margin-bottom: 8px;
}
fieldset.fieldset--tightspace {
  gap: 4px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
}

.checkbox-group__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  padding: 8px 16px;
  width: 100%;
  border-radius: 0.5em;
  cursor: pointer;
}
.checkbox-group__item:has(input:checked) {
  background: #EAE9FF;
  border: 1px solid #2F20D7;
  color: #0A0355;
}
.checkbox-group__item:has(input:checked) .form__select {
  border: 1px solid #2F20D7;
  color: #2F20D7;
}
.checkbox-group__item--with-dropdown {
  padding: 4px 8px 4px 16px;
}
.checkbox-group__item--with-dropdown .form__select {
  padding: 4px 3em 4px 8px;
}

.checkbox-label {
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 100%;
}
.checkbox-label--light {
  font-weight: 400;
}

.image-upload {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #0C111D;
  font-size: 0.875rem;
  width: 100%;
  max-width: 100%;
  height: 162px;
  padding: 24px;
  border: solid 1px #EAECF0;
  border-radius: 4px;
  transition: box-shadow 250ms;
}
.image-upload__custom-file-upload {
  cursor: pointer;
  color: #0C111D !important;
  text-decoration: none;
  transition: color 200ms;
}
.image-upload__custom-file-upload:hover, .image-upload__custom-file-upload:focus, .image-upload__custom-file-upload:active {
  color: #0C111D;
  text-decoration: underline;
}
.image-upload p {
  text-align: center;
  color: #344054;
  font-size: 0.875rem;
}

.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;
}

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%);
}

.checkbox-group__item .checkbox-label {
  position: relative;
}

/* Hide the default checkbox */
/* Style the custom checkbox */
.checkbox-group__item input[type=checkbox] + .checkbox-label:before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Style the custom checkbox */
.checkbox-group__item input[type=checkbox]:checked + .checkbox-label:before {
  background: #F9F5FF;
  border: 1px solid var(--primary-600);
}

/* Style the checkmark */
.checkbox-group__item input[type=checkbox]:checked + .checkbox-label:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 8px;
  border-bottom: 2px solid var(--primary-600);
  border-right: 2px solid var(--primary-600);
}

/* Style the text label */
.checkbox-label {
  cursor: pointer;
}

/* Style the light text label */
.checkbox-label--light {
  color: #888; /* Color for the light text label */
}

.radio {
  /* Style the custom radio button */
  /* Style the custom radio button when checked */
  /* Style the text label */
  /* Move the radio label to the left */
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  outline: 1px solid #EAECF0;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #2F20D7;
  border: 4px solid white;
  outline: 1px solid #2F20D7;
  margin-top: 4px;
}
.radio .radio-label {
  cursor: pointer;
}
.radio .radio-label {
  display: flex;
  align-items: flex-start;
}
.radio .radio-label:before {
  order: -1;
}
.radio .radio-label--right {
  margin-left: auto; /* Push the light label to the right */
}

.checkbox-group__item {
  /* Hide the default radio button */
  /* Style the custom radio button */
  /* Style the custom radio button when checked */
  /* Style the text label */
  /* Move the radio label to the left */
}
.checkbox-group__item input[type=radio] {
  display: none;
}
.checkbox-group__item input[type=radio] + .radio-label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  outline: 1px solid #D0D5DD;
  background-color: white;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.checkbox-group__item input[type=radio]:checked + .radio-label:before {
  background-color: #2F20D7;
  border: 4px solid white;
  outline: 1px solid #2F20D7;
}
.checkbox-group__item .radio-label {
  font-size: 0.875rem;
  cursor: pointer;
}
.checkbox-group__item .radio-label {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.checkbox-group__item .radio-label:before {
  order: -1;
}
.checkbox-group__item .radio-label--right {
  margin-left: auto; /* Push the light label to the right */
}

.radio-container__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-check__support-text {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #344054;
}

.no-overflow {
  overflow: hidden;
}

.trim-parent {
  display: flex;
  flex: 1;
  min-width: 0;
}

.page-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid #EAECF0;
  padding: 16px 16px;
}
@media (min-width: 640px) {
  .page-header {
    padding: 16px 24px;
  }
}
.page-header__title {
  font-size: 1.25rem;
  font-weight: 500;
}
.page-header > section:first-child {
  flex: 1;
  width: 0;
  display: flex;
}
.page-header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumb {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 4px;
  font-size: 0.875rem;
  align-items: center;
}
.breadcrumb > span, .breadcrumb svg {
  flex-shrink: 0;
}
.breadcrumb a {
  color: #344054;
}
.breadcrumb .icon {
  color: #344054;
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid #EAECF0;
}
@media (min-width: 640px) {
  .action-bar {
    padding: 16px 24px;
  }
}

.filters {
  display: none;
}
@media (min-width: 640px) {
  .filters {
    display: flex;
    gap: 4px;
  }
}

.data-grid__section-header {
  display: flex;
  flex-direction: row;
  gap: 4px;
  font-weight: 500;
  padding: 4px 16px;
  border-bottom: 1px solid #EAECF0;
  background-color: #F9FAFB;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .data-grid__section-header {
    padding: 4px 24px;
  }
}
.data-grid__section-header span {
  font-weight: 400;
}

.data-grid-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 16px;
  border-bottom: 1px solid #EAECF0;
  transition: background-color 0.2s ease;
}
@media (min-width: 640px) {
  .data-grid-row {
    padding: 16px 24px;
  }
}
.data-grid-row div {
  display: flex;
  flex-shrink: 0;
}
.data-grid-row div.shrink-unset {
  flex-shrink: unset;
}
.data-grid-row:hover {
  background-color: #F9FAFB;
  cursor: pointer;
}

.data-grid-cell__space-left {
  margin-left: 16px;
}
.data-grid-cell__text-only {
  font-size: 0.875rem;
}
.data-grid-cell__grow-align-right {
  flex-grow: 1;
  justify-content: end;
}

.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;
}

.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;
}

.list {
  display: flex;
  flex-direction: column;
}
.close-sub > .list--sub {
  display: none;
}
.open-sub > .list--sub {
  display: flex;
  transition: all 0.3s easy;
}
.list .icon--down use {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 15l-6-6 1.41-1.41L12 12.17l4.59-4.58L18 9z"/></svg>');
}
.list--sub {
  margin-left: 20px;
}
.list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  border-top: 1px solid #EAECF0;
}
.list .list-item__section {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.list .list-item__name {
  font-size: 14px;
  line-height: 20px;
}
.list .accordion-handler {
  height: 100%;
  width: 1em;
  cursor: pointer;
}
.list .accordion-handler--disabled {
  visibility: hidden;
}

.list-label {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.list-label .list-label-item {
  display: flex;
  flex-direction: row;
  font-size: 0.875rem;
  align-items: center;
}
.list-label .list-label-item__label {
  width: 100px;
  color: #344054;
}

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);
  }
}

.main-frame {
  display: flex;
  flex: 1 1 0;
  min-height: 1px;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .js-nav-toggle {
    display: none;
  }
}

.nav-wrapper {
  width: 100%;
  max-width: 260px;
  height: 100%;
  position: fixed;
  z-index: var(--z-index-ui);
  top: 0;
  bottom: 0;
  right: 0;
  display: none;
  background: #F9FAFB;
  border-left: 1px solid #EAECF0;
  box-shadow: 0 0 12px rgba(55, 55, 55, 0.07);
}
@media (min-width: 768px) {
  .nav-wrapper {
    border-right: 1px solid #EAECF0;
    display: flex;
    position: sticky;
    z-index: unset;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  height: 100%;
}
.nav--open {
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 16rem;
  }
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 16px 24px;
}
.nav-header__title {
  font-size: 1.125rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 var(--space-xs);
  padding: 16px 16px;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-menu ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0C111D;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 4px 12px 4px 8px;
  height: 40px;
  border-radius: 8px;
}
.nav-menu ul a.switch {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.67085 8.33752C3.89866 8.10971 4.26801 8.10971 4.49581 8.33752L7 10.8417L9.50419 8.33752C9.73199 8.10971 10.1013 8.10971 10.3291 8.33752C10.557 8.56533 10.557 8.93467 10.3291 9.16248L7.41248 12.0791C7.18467 12.307 6.81533 12.307 6.58752 12.0791L3.67085 9.16248C3.44305 8.93467 3.44305 8.56533 3.67085 8.33752Z" fill="%23AEAFB0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.67085 5.66248C3.89866 5.89028 4.26801 5.89028 4.49581 5.66248L7 3.15829L9.50419 5.66248C9.73199 5.89028 10.1013 5.89028 10.3291 5.66248C10.557 5.43467 10.557 5.06533 10.3291 4.83752L7.41248 1.92085C7.18467 1.69305 6.81533 1.69305 6.58752 1.92085L3.67085 4.83752C3.44305 5.06533 3.44305 5.43467 3.67085 5.66248Z" fill="%23AEAFB0"/></svg>');
  background-repeat: no-repeat;
  background-position: center right;
}
.nav-menu ul a.switch:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.67085 8.33752C3.89866 8.10971 4.26801 8.10971 4.49581 8.33752L7 10.8417L9.50419 8.33752C9.73199 8.10971 10.1013 8.10971 10.3291 8.33752C10.557 8.56533 10.557 8.93467 10.3291 9.16248L7.41248 12.0791C7.18467 12.307 6.81533 12.307 6.58752 12.0791L3.67085 9.16248C3.44305 8.93467 3.44305 8.56533 3.67085 8.33752Z" fill="%23344054"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.67085 5.66248C3.89866 5.89028 4.26801 5.89028 4.49581 5.66248L7 3.15829L9.50419 5.66248C9.73199 5.89028 10.1013 5.89028 10.3291 5.66248C10.557 5.43467 10.557 5.06533 10.3291 4.83752L7.41248 1.92085C7.18467 1.69305 6.81533 1.69305 6.58752 1.92085L3.67085 4.83752C3.44305 5.06533 3.44305 5.43467 3.67085 5.66248Z" fill="%23344054"/></svg>');
}
.nav-menu ul a svg {
  color: #98A2B3;
}
.nav-menu ul a.active {
  color: #0C111D;
  background-color: #ffffff;
  border: 0.5px solid #EAECF0;
  box-shadow: 0 1px 1px 0 rgba(105, 105, 106, 0.1), 0 2px 4px 0 rgba(195, 195, 197, 0.16);
}
.nav-menu ul a.active svg {
  color: #2F20D7;
}
.nav-menu ul a:hover svg {
  color: #2F20D7;
}

.nav__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.current-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EAECF0;
  margin: 0 16px;
  padding: 16px 0;
}
.current-user .current-user__log-out .btn {
  width: 32px;
  height: 32px;
  padding: 0;
  color: #0C111D;
  opacity: 0.4;
}
.current-user .current-user__log-out .btn:hover {
  background-color: none;
  opacity: 0.8;
}

.initials {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #2F20D7;
  border-radius: 4px;
}

.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);
}

.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;
}

.search-wrapper {
  position: relative;
}

input.search {
  display: inline-flex;
  height: 2rem;
  font-size: 0.875rem;
  padding: 16px 16px 16px 36px;
  gap: 8px;
  min-width: 10em;
  background: #ffffff;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  filter: drop-shadow(0 2px 2px rgba(152, 140, 140, 0.07));
  transition: all 250ms ease;
}
@media (min-width: 640px) {
  input.search {
    padding: 4px 16px 4px 36px;
  }
}
input.search.no-border {
  border: 0;
}
input.search.no-background {
  background-color: transparent;
}
input.search:hover {
  background-color: var(--gray-50);
}
input.search:focus, input.search:focus-within {
  border-color: var(--primary-300);
}
input.search::placeholder {
  color: #667085;
}

.icon-search {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  color: var(--gray-500);
  pointer-events: none;
}

.search-amount {
  padding: 8px 8px 8px 32px;
  width: 100%;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: var(--font-size-xs);
}

.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;
}

.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;
  }
}

.form-toggle {
  display: flex;
  gap: 8px !important;
  align-items: top;
}
.form-toggle--one-line {
  align-items: center;
}
.form-toggle .form-check__input {
  flex-shrink: 0;
  min-width: 0;
  appearance: none;
  position: relative;
  box-sizing: content-box;
  display: inline-block;
  vertical-align: middle;
  width: 2.2rem;
  height: 1.2rem;
  border-radius: 100px;
  font-size: inherit;
  background: #EAECF0;
  cursor: pointer;
  transition: background 0.4s;
}
.form-toggle .form-check__input[type=checkbox][disabled] {
  opacity: 0.5;
}
.form-toggle .form-check__input:before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 100px;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
  background-color: white;
  transition: background-color 0.4s, left 0.4s;
}
.form-toggle .form-check__input:checked {
  background: #2F20D7;
}
.form-toggle .form-check__input:checked:hover {
  background: #EAE9FF;
}
.form-toggle .form-check__input:hover {
  background: #EAECF0;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
  outline: rgba(16, 24, 40, 0.06);
}
.form-toggle .form-check__input:checked:before {
  --toggle-color-ball: white;
  left: 1.1rem;
}
.form-toggle .form-check__support-text {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-m);
  color: var(--gray-500);
}

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;
}

.website--brand-color {
  background-color: var(--website--brand-color);
}
.website--success-color {
  background-color: var(--website--success-color);
}
.website--error-color {
  background-color: var(--website--error-color);
}

.website-preview-wrapper {
  container-type: inline-size;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  padding: 4em 2em;
}
@container (min-width: 700px) {
  .website-preview-wrapper .website-preview {
    aspect-ratio: 3/2;
  }
}
@media (min-width: 768px) {
  .website-preview-wrapper {
    display: flex;
  }
}

.website-preview {
  width: 100%;
  height: 100%;
  max-width: 1024px;
  display: block;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  outline: 0.5px solid rgba(0, 0, 0, 0.07);
  animation: fadeEffect 1s;
  box-shadow: 0 8px 24px rgba(38, 44, 50, 0.1);
  max-height: 720px;
  clip-path: inset();
}
@container (min-width: 400px) {
  .website-preview {
    aspect-ratio: 9/16;
  }
}
.website-preview__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2em;
  z-index: var(-z-index-base);
  background-color: #435360;
}
.website-preview__bar-dots {
  width: 0.75em;
  height: 0.75em;
  background-color: rgba(217, 217, 217, 0.5647058824);
  border-radius: 50%;
  margin: 0.65em 0.8em;
  box-shadow: 1em 0 0 rgba(217, 217, 217, 0.2509803922), 2em 0 0 rgba(217, 217, 217, 0.2509803922);
}
.website-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 2em);
  margin-top: 2em;
  border: 0;
  z-index: var(-z-index-mid);
}

.slide-wrapper {
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 4em;
}
@media (min-width: 640px) {
  .slide-wrapper {
    min-width: 300px;
    max-width: 420px;
  }
}

.slide {
  padding: 1em;
}
.slide__header {
  margin-bottom: 1em;
}
@media (min-width: 640px) {
  .slide {
    padding: 2em;
  }
}

.slide-section {
  margin-bottom: 2em;
}
.slide-section__header {
  margin-bottom: 1em;
}
.slide-section__header h2 {
  font-size: 1.3em;
  margin-bottom: 0.25em;
}
.slide-section__header p {
  font-size: 0.875rem;
  color: #344054;
}

.form-setting {
  display: flex;
  justify-content: space-between;
  background-color: #F9FAFB;
  padding: 16px 16px;
  border-radius: 8px;
  align-items: center;
}
.form-setting__label {
  font-weight: 500;
  font-size: 0.875rem;
}
.form-setting__meta {
  display: flex;
}

.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=application.sass.css.map */
