/*---------------------------------
-----  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)
*/
/**
**  Official Font sizes
------------------------------- */
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
.ux-iws-notification-bar {
  display: block;
  margin: 40px 0;
}
@media only screen and (min-width: 768px) {
  .ux-iws-notification-bar {
    margin: 50px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .ux-iws-notification-bar {
    margin: 60px 0;
  }
}
.ux-iws-notification-bar__wrapper {
  background-color: #f6f6f6;
  transition: background-color 250ms ease;
}
.ux-iws-notification-bar__wrapper:hover {
  background-color: #e7e7e7;
}
.ux-iws-notification-bar__wrapper:hover .btn, .ux-iws-notification-bar__wrapper:hover .ux-button {
  background-color: #131313;
  color: #fff;
}
.ux-iws-notification-bar__wrapper--blue {
  background-color: #285172;
  color: #fff;
}
.ux-iws-notification-bar__wrapper--blue:hover {
  background-color: #4f708b;
}
.ux-iws-notification-bar__wrapper--blue:hover .btn-green, .ux-iws-notification-bar__wrapper--blue:hover .ux-button--green {
  border: 1px solid #bbd03a;
  background-color: transparent;
  color: #bbd03a;
}
.ux-iws-notification-bar__wrapper--blue *[slot=copy] * {
  color: #fff !important;
}
.ux-iws-notification-bar__wrapper--green {
  background-color: #bbd03a;
  color: #fff;
}
.ux-iws-notification-bar__wrapper--green:hover {
  background-color: #c7d85e;
}
.ux-iws-notification-bar__wrapper--green .ux-icon {
  fill: #fff;
}
.ux-iws-notification-bar__wrapper--green *[slot=copy] * {
  color: #fff !important;
}
.ux-iws-notification-bar__inner-wrapper {
  width: 83.3%;
  padding: 30px 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .ux-iws-notification-bar__inner-wrapper {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .ux-iws-notification-bar__inner-wrapper {
    padding: 35px 15px 45px;
  }
}
@media only screen and (min-width: 1440px) {
  .ux-iws-notification-bar__inner-wrapper {
    width: 66.6666666667%;
  }
}
.ux-iws-notification-bar__content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .ux-iws-notification-bar__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.ux-iws-notification-bar__icon {
  display: block;
}
@media only screen and (min-width: 768px) {
  .ux-iws-notification-bar__icon {
    margin-right: 40px;
    margin-top: 5px;
  }
}
.ux-iws-notification-bar .ux-icon {
  font-size: 55px;
}
@media only screen and (min-width: 768px) {
  .ux-iws-notification-bar .ux-icon {
    font-size: 85px;
  }
}
.ux-iws-notification-bar__wrapper--blue .ux-icon {
  fill: #fff;
}
.ux-iws-notification-bar *[slot=title] {
  line-height: 1.25;
}
@media only screen and (min-width: 768px) {
  .ux-iws-notification-bar *[slot=title] {
    margin-top: 0;
  }
}
.ux-iws-notification-bar *[slot=copy] * {
  color: #131313;
}
@media only screen and (min-width: 1024px) {
  .ux-iws-notification-bar *[slot=copy] *:last-child {
    margin-bottom: 0;
  }
}
.ux-iws-notification-bar__cta {
  margin-top: 20px;
}
@media only screen and (min-width: 1024px) {
  .ux-iws-notification-bar__cta {
    align-self: flex-end;
    flex: 0 0 auto;
    margin-left: 8%;
  }
}