.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 {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}
:host * {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  :host * {
    transition: none !important;
  }
}

.button {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 13px 30px;
  height: 44px;
  transition: all 300ms ease-in-out;
}
:host(.is-mobile) .button {
  width: 100%;
  text-align: left;
  position: relative;
}
:host(.is-mobile) .button ux-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.button:hover {
  background-color: #fff;
  color: #000;
}
.button ux-icon {
  margin-left: 5px;
  font-size: 17px;
}

.tile-content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.media-container {
  line-height: 0;
  min-width: 160px;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

video,
img {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
}

.tile-button-container {
  position: absolute;
  right: 30px;
  bottom: 35px;
}

.tile-button {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  opacity: 1;
}
:host(.is-opened) .tile-button {
  opacity: 0;
}
.tile-button ux-icon {
  transition: all 300ms ease-in-out;
  font-size: 25px;
}

.button-area {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1;
  border-radius: 0;
  padding: 0;
  appearance: none;
  transition: all 300ms ease-in-out;
}
.button-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(179.77deg, #03496c 0.19%, rgba(3, 73, 108, 0.4) 99.79%);
  transition: all 300ms ease-in-out;
  pointer-events: none;
}
:host(.is-mobile) .button-area::before, :host(.is-opened) .button-area::before, .button-area:hover::before {
  background: linear-gradient(179.77deg, #03496c 0.19%, rgba(3, 73, 108, 0) 53.34%);
}
@media (prefers-reduced-motion: reduce) {
  .button-area::before {
    background: linear-gradient(179.77deg, #03496c 0.19%, rgba(3, 73, 108, 0.4) 99.79%) !important;
  }
}
.button-area:hover .tile-button ux-icon {
  transform: rotate(90deg);
}
:host(.is-opened) .button-area {
  cursor: default;
}

.button-area-content {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

video {
  display: inline-block;
  width: 100%;
}

::slotted([slot=tile-title]) {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 60px);
  font-size: 16px !important;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) {
  ::slotted([slot=tile-title]) {
    font-size: 20px !important;
  }
}
@media (min-width: 1440px) {
  ::slotted([slot=tile-title]) {
    font-size: 23px !important;
  }
}

ux-modal {
  --ux-modal-max-width: 1900px;
}

@media (width >= 1024px) {
  .ux-modal__outer {
    width: 90%;
  }
}

.modal-media {
  background: #000;
  background-size: cover;
  background-position: center;
  position: relative;
}
.modal-media ux-video {
  width: 100%;
  height: 100%;
}
.modal-media video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.modal-media--desktop {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: none;
}
@media (min-width: 1024px) {
  .modal-media--desktop {
    display: block;
  }
}
.modal-media--mobile {
  display: block;
  height: 280px;
  margin: 0 -30px 30px;
}
@media (min-width: 1024px) {
  .modal-media--mobile {
    display: none;
  }
}

.modal-section-headline {
  line-height: 1.2;
  color: #000;
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 0.875rem;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .modal-section-headline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .modal-section-headline {
    font-size: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .modal-section-headline {
    font-size: 1.25rem;
  }
}

.modal-challenge-container {
  margin: 30px 0;
  padding-bottom: 10px;
  border-bottom: solid 1px #c5c5c5;
}

.modal-solution-container {
  margin: 30px 0;
  padding-left: 20px;
  border-left: solid 8px #bbd03a;
}

@media (min-width: 1024px) {
  ux-modal-footer,
  ux-modal-content {
    margin-left: 50% !important;
    width: 50% !important;
  }
}

@media (min-width: 1024px) {
  ux-modal-footer {
    display: none !important;
  }
}

.link-button--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .link-button--desktop {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .link-button--mobile {
    display: none;
  }
}

::slotted([slot=modal-challenge]),
::slotted([slot=modal-solution]) {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}