.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 {
  --ux-language-switch-shadow-height: 20px;
  --ux-language-switch-height-opened: 160px;
  display: inline-block;
  position: fixed;
  z-index: 1;
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  padding: 0 15px;
}

:host * {
  box-sizing: inherit;
}

:host([opened]:not([opened=false])) {
  height: calc(var(--ux-language-switch-height-opened) + var(--ux-language-switch-shadow-height));
}

.list {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-width: 165px;
  box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.1490196078);
  overflow: auto;
  height: 0;
  padding: 5px 0;
  transition: all 0.3s ease-in-out;
}

:host([opened]:not([opened=false])) .list {
  height: var(--ux-language-switch-height-opened);
}

.option {
  font-family: "Frutiger-Roman", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  padding: 7px 20px;
  text-align: left;
  color: #747474;
  cursor: pointer;
}

.option:hover,
.option:focus {
  background-color: var(--ux-input-hover-bg);
  color: #0b0b0b;
}

.option.is-selected {
  text-decoration: underline;
  color: #0b0b0b;
}