.AnalyticsData {
  flex-flow: column;
  flex: auto;
  min-height: 60px;
  display: flex;
}

.AnalyticsData ul {
  flex-flow: wrap;
  flex: auto;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.AnalyticsData li {
  border: 1px var(--sfly-border-style-solid) var(--brand-color-border-primary);
  flex-flow: row;
  flex: 0 33%;
  justify-content: stretch;
  align-items: stretch;
  height: 30px;
  margin: 0;
  padding: 0;
  display: flex;
}

.AnalyticsData li strong {
  background-color: var(--brand-color-background-primary);
  color: var(--white);
  flex: 0 33%;
  justify-content: flex-end;
  align-items: center;
  padding: 0 3px;
  display: flex;
}

.AnalyticsData li em {
  background-color: var(--white);
  color: var(--text-color);
  font-weight: var(--font-weight-semibold);
  flex: 67%;
  justify-content: flex-start;
  align-items: center;
  padding: 0 3px;
  display: flex;
}

.abtest-utility {
  z-index: 1000000;
  background: var(--black);
  font-weight: var(--brand-fontweight-callout);
  color: #000;
  margin: .286rem;
  padding: .5714rem;
  font-size: 1rem;
  transition: all .15s ease-out;
  position: fixed;
  bottom: 1.429rem;
  left: 1.429rem;
  transform: translateX(-100%);
}

.abtest-utility div:first-child {
  display: flex;
}

.abtest-utility.utility-active {
  transition: all .15s ease-in;
  animation-iteration-count: 1;
  transform: translateX(0);
}

.abtest-utility button, .abtest-utility select, .abtest-utility label, .abtest-utility input {
  font-weight: var(--brand-fontweight-interactive);
  margin: .286rem;
  padding: .5714rem;
  font-size: 1rem;
}

.showaboutlines [data-abtestid^="activity"]:before, .showaboutlines [data-abtestid^="Fix"]:before {
  content: attr(data-abtestid);
  color: var(--textColor);
  background: var(--textBackground);
  border: .071rem var(--sfly-border-style-solid) #4b4b4b;
  border-bottom: 0;
  padding: .214rem 1.429rem;
  display: inline-block;
  position: absolute;
  top: -2.071rem;
  left: 6.9vw;
}

[data-abtestid][forcehide="true"] {
  display: none !important;
}

.showaboutlines [data-abtestid^="activity"], .showaboutlines [data-abtestid^="Fix"] {
  border: .357rem var(--sfly-border-style-solid) var(--textBackground);
  margin-top: 2.143rem;
  position: relative;
}

[data-abtestid*="activity-1-"] {
  --textColor: black;
  --textBackground: #1cdc1c;
}

[data-abtestid*="activity-2-"] {
  --textColor: white;
  --textBackground: #ff8200;
}

[data-abtestid*="activity-3-"] {
  --textColor: black;
  --textBackground: #ffff21;
}

[data-abtestid*="activity-4-"] {
  --textColor: black;
  --textBackground: #08e8e6;
}

[data-abtestid*="activity-5-"] {
  --textColor: var(--black);
  --textBackground: #fdd;
}

[data-abtestid*="activity-6-"] {
  --textColor: white;
  --textBackground: #ff8200;
}

[data-abtestid^="Fix Me"] {
  --textColor: #e8e8e8;
  --textBackground: red;
}

.abtest-utility .alterEgoMenu .element.checked:before {
  content: "✓";
  position: absolute;
  left: 1rem;
}

.abtest-utility .alterEgoMenu .element {
  color: var(--white);
  padding: .143rem .429rem .143rem 2.143rem;
}

.abtest-utility .alterEgoMenu .element[data-abtestid] {
  color: var(--textBackground);
}

.abtest-utility .alterEgoMenu .element:hover {
  background: #326ec899;
  border-radius: 5%;
}

.abtest-utility .alterEgoMenu {
  backdrop-filter: blur(1.786rem) saturate(180%);
  background: #080606bf;
  border-radius: 2%;
  max-height: 21.429rem;
  padding: .85rem;
  position: absolute;
  bottom: 100%;
  right: 0;
  overflow-y: auto;
}

.abtest-utility .alterEgoMenuHidden {
  display: none;
}

.abtest-utility .element:hover {
  background: #326ec826;
}

.abtest-utility .utility-arrow {
  color: #ffff21;
  font-size: xx-large;
  transition: all .3s ease-in;
}

.abtest-utility.utility-hidden .utility-arrow {
  transform: rotate(180deg);
}

.NotFound {
  flex-flow: column;
  flex: 0 auto;
  max-width: 80%;
  margin: 0 auto;
}

.NotFound h1 {
  text-transform: var(--sfly-font-transform-lettercase);
  flex: 0 auto;
  justify-content: center;
  margin: 0;
  font-size: 50px;
  display: flex;
}

.NotFound p {
  text-align: center;
  margin: 5px 0;
  padding: 0;
  font-size: 22px;
}

.NotFound ul {
  flex-flow: wrap;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.NotFound li {
  --padding: 10px;
  padding: var(--padding);
  width: calc(50% - (var(--padding)) * 2);
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  display: flex;
}

.NotFound li a {
  color: var(--text-color);
  flex-flow: column;
  font-size: 20px;
  text-decoration: none;
  display: flex;
}

.NotFound li img {
  flex: auto;
  width: 100%;
  height: auto;
  display: flex;
}

.NotFound li span {
  flex: 1 0 auto;
  justify-content: center;
  margin: 10px 0;
  display: flex;
}

@media (width <= 479px) {
  .NotFound ul {
    flex-flow: column;
  }

  .NotFound li {
    width: 100%;
  }
}

.ErrorDetails {
  flex-flow: column;
  flex: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ErrorDetails a {
  color: #d74012;
  text-decoration: none;
  display: flex;
}

.ErrorDetails a:hover {
  color: #d74012;
  text-decoration: underline;
}

.Page {
  position: relative;
}

.page-loading {
  position: fixed;
  top: 50vh;
  left: 50vw;
}

.Loading {
  color: var(--text-color);
  font-weight: var(--brand-fontweight-callout);
  letter-spacing: 0;
  z-index: 0;
  flex-flow: column;
  flex: 100%;
  justify-content: center;
  align-items: center;
  line-height: 17px;
  display: flex;
}

.Loading p {
  animation: .6s ease-in-out fadeIn;
}

.Loading .indicator {
  box-sizing: border-box;
  border: var(--sfly-border-style-solid) 5px transparent;
  background: #fff padding-box padding-box;
  border-radius: 50%;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto;
  display: flex;
  position: relative;
}

.Loading .indicator:before {
  content: "";
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(to right, #fff, #f05323);
  margin: -3px;
  animation: .5s linear infinite rotate, .5s ease-in-out fadeIn;
  position: absolute;
  inset: 0;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=brcmsspa-86.d458af3436c10.css.map */
