.topstripe .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: .9em;
  margin-top: -100%;
  transition: margin-top ease-in-out .3s
}

.topstripe img {
  max-height: 90px
}
.topstripe .container.active {
  margin-top: 35px
}
.topstripe__container-text {
  padding: 10px 15px
}
.topstripe__container-img .topstripe__text {
  position: relative;
  margin-left: 20px
}
.topstripe__container-img .topstripe__close {
  position: absolute;
  right: 15px;
  bottom: 0;
  background: rgba(0, 0, 0, .15);
  padding: 3px 10px;
  color: rgba(255, 255, 255, .9);
  border-radius: 5px 5px 0 0
}
.topstripe__container-img .topstripe__close:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, .25)
}
.topstripe__text {
  padding: 0 15px 0 0
}
.topstripe__close {
  width: auto;
  text-align: center;
  line-height: 19px;
  cursor: pointer
}
@media (min-width: 991px) {
  .topstripe + header .centered {
    padding-top: 0;
  }
}
@media(max-width:992px) {
  .topstripe .container.active {
    margin-top: 0
  }
  .topstripe img {
    max-height: 50px
  }
  .topstripe__container-img .topstripe__text {
    margin-left: 10px
  }
}
@media(max-width:520px) {
  .topstripe img {
    display: none
  }
  .topstripe__container-img .topstripe__text {
    margin-left: 0
  }
}