.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;
  transition: all 300ms ease-in-out;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  :host {
    transition: none !important;
  }
}
:host * {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  :host * {
    transition: none !important;
  }
}

:host(.is-opened) {
  padding-right: 630px;
}

:host(.is-mobile) {
  max-width: 100vw;
  padding-right: 0;
}

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

.overflow-container {
  transition: all 300ms ease-in-out;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
}
:host(.is-opened) .overflow-container {
  width: 630px;
}
:host(.is-mobile) .overflow-container {
  width: auto;
  left: 0;
}

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

.video-container {
  line-height: 0;
  max-width: 400px;
  width: 630px;
  height: 630px;
}
:host(.is-square) .video-container {
  max-width: 630px;
}

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

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

.initial-button {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  opacity: 1;
}
:host(.is-opened) .initial-button {
  opacity: 0;
}
.initial-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 .initial-button ux-icon {
  transform: rotate(90deg);
}
:host(.is-opened) .button-area {
  cursor: default;
}

:host(.is-opened) .initial-button ux-icon {
  transform: rotate(90deg);
}

.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;
  height: 630px;
}

::slotted([slot=initial-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: 340px;
  font-size: 23px;
  line-height: 27px;
  color: #fff;
  margin: 0;
}
:host(.is-opened.is-mobile) ::slotted([slot=initial-title]) {
  opacity: 0;
}

.close-button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: all 300ms ease-in-out;
}
.close-button:hover {
  background-color: #fff;
  color: #000;
}
.close-button ux-icon {
  font-size: 12px;
}

.layer-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 30px;
  overflow: auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

::slotted([slot=copy]) {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0;
  flex-grow: 1;
}
::slotted([slot=copy]) p {
  margin: 0;
  line-height: 24px;
}

::slotted([slot=layer-title]) {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

.link-container {
  text-align: right;
}

.layer {
  pointer-events: none;
  position: absolute;
  opacity: 0;
  transition: all 300ms ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translate(0, 0);
  width: 630px;
  background-color: #005074;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
:host(.is-mobile) .layer {
  width: auto;
  left: 0;
  transform: translate(0, 100%);
  padding: 15px;
  background: linear-gradient(180deg, #005074 0%, rgba(0, 80, 116, 0.4) 100%);
}
:host(.is-opened) .layer {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
:host(.is-mobile.is-opened) .layer {
  transform: translate(0, 0);
}

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