.notification-informer {
  position: fixed;
  z-index: 101;
  left: 0;
  bottom: 30px;
  width: 100%;
  display: none;
  padding: 50px 40px;
  box-sizing: border-box;
}

.notification-informer.is-visible {
  display: block;
}

@media (max-width: 992px) {
  .notification-informer {
    padding: 0;
  }
}

.notification-informer .container {
  border-radius: 29px;
  overflow: hidden;
}

.notification-informer__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 160px;
  height: 160px;
  padding: 28px 56px 28px 48px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 992px) {
  .notification-informer__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: 300px;
    padding: 24px 48px 24px 20px;
  }
}

.notification-informer__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  /* max-width: 720px; */
  padding-right: 24px;
}

@media (max-width: 992px) {
  .notification-informer__content {
    max-width: 100%;
    padding-right: 0;
  }
}

.notification-informer__action-wrap {
  position: relative;
  z-index: 1;
  margin-left: auto;
  text-align: right;
}

@media (max-width: 992px) {
  .notification-informer__action-wrap {
    width: 100%;
    margin-top: 16px;
    margin-left: 0;
    text-align: center;
  }
}

.notification-informer__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  font-family: "SB Sans Display", sans-serif;
}

@media (max-width: 992px) {
  .notification-informer__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.notification-informer__text {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
  font-family: "SB Sans Display", sans-serif;
}

@media (max-width: 992px) {
  .notification-informer__text {
    margin-bottom: 16px;
  }
}

.notification-informer__action.u-button {
  min-width: 160px;
}

.notification-informer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  color: #1a1a1a;
}

.notification-informer__close:hover {
  opacity: 0.75;
}

.notification-informer__close-x {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
}
