.row--gutter {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

a {
  color: #727272;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: color 0.5s ease;
}
.ux-info-banner[type=info] a:hover {
  color: #fff;
}
.ux-info-banner[type=error] a:hover {
  color: #ff0201;
}
a:hover {
  color: #131313;
}

:host {
  box-sizing: border-box;
  margin: 0 0 0 auto;
  display: block;
  position: sticky;
  right: 0;
  height: 0;
  width: 300px;
  top: 40%;
  text-align: right;
  z-index: 1;
  font-family: "Frutiger-Roman", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}
@media (max-width: 1024px) {
  :host {
    display: none;
  }
}

:host([is-sticky]) .headline,
:host([is-sticky]) .chapter {
  color: transparent;
}
:host([is-sticky]) .inner:not(:hover) {
  --ux-button-primary-bg-color: #c3cfd6;
  --ux-button-primary-text-color: #4f708b;
}
:host([is-sticky]) .inner:hover {
  background-color: #fff;
}
:host([is-sticky]) .inner:hover .headline {
  color: #0b0b0b;
}
:host([is-sticky]) .inner:hover .chapter {
  color: #899fb2;
}

.inner {
  padding: 40px;
  background-color: transparent;
  transition: background-color 200ms ease-in-out;
}

.headline {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  color: #0b0b0b;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 11px 30px 0;
  transition: color 200ms ease-in-out;
}

.chapter {
  color: #899fb2;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 200ms ease-in-out;
  padding: 5px calc(32px + 11px) 5px 10px;
  position: relative;
}
.chapter::after {
  display: block;
  content: "";
  height: 12px;
  width: 12px;
  background: #c3cfd6;
  transition: background 200ms ease-in-out;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}
.chapter--active {
  color: #285172;
}
.chapter--active::after {
  background: #285172;
}
.chapter:hover {
  color: #285172 !important;
}

.contact-button {
  margin-top: 20px;
}