/*---------------------------------
-----  dimension variables --------
----------------------------------*/
/*------  standard elements padding & margin  -------*/
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
/* special breakpoint for the 100 Years special navigation */
.row--gutter {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

/**
**  Official Font sizes
------------------------------- */
/** patternlab style takeover for a tags */
a {
  color: #727272;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: color 0.5s ease;
}
a:hover {
  color: #131313;
}

/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
/* special breakpoint for the 100 Years special navigation */
.row--gutter {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

.ux-iws-nav-burger {
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media only screen and (min-width: 1199px) {
  .ux-iws-nav-burger {
    transform: translate(0, -7px);
  }
}
.ux-iws-nav-burger__open, .ux-iws-nav-burger__close {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0 solid transparent;
  background: none;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
}
.ux-iws-nav-burger__open .ux-icon, .ux-iws-nav-burger__close .ux-icon {
  margin-left: 10px;
  fill: #727272;
  transition: fill 0.2s ease-in-out;
}
@media only screen and (min-width: 1199px) {
  .ux-iws-nav-burger__open {
    display: none;
  }
}
.ux-iws-nav-burger__open .ux-icon {
  font-size: 20px;
}
.ux-iws-nav-burger__close {
  display: none;
}
.ux-iws-nav-burger__close .ux-icon {
  font-size: 16px;
}
.ux-iws-nav-burger .ux-iws-nav-burger__text {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 12px;
  color: #727272;
  text-transform: uppercase;
  line-height: normal;
  transition: color 0.2s ease-in-out;
  padding-left: 10px;
}

@media only screen and (min-width: 1199px) {
  .ux-iws-nav-burger__close .ux-icon {
    font-size: 20px;
  }
}
.ux-iws-nav-burger:hover .ux-iws-nav-burger__text {
  color: #bbd03a;
}
.ux-iws-nav-burger:hover .ux-icon {
  fill: #bbd03a;
}

.ux-iws-nav-burger--active .ux-iws-nav-burger__open {
  display: none;
}
.ux-iws-nav-burger--active .ux-iws-nav-burger__close {
  display: flex;
}