.smart-banner {
  display: none;
  position: relative;
  color: $gray-dark;
  height: auto;
  padding: 9px 8px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 8px;

  > div {
    display: flex;
    align-items: center;

    &:nth-of-type(3) {
      column-gap: 10px;
    }

  }

  .header-text {
    font-style: normal;
    font-weight: 500;
    font-size: .75rem;
    line-height: 16px;
    color: $gray-dark;
    margin-bottom: 0;
    white-space: normal;
  }

  &__head {
    width: auto;
    padding-left: 0;
  }

  &__action {
    width: auto;
    padding: 0;

    &-close.close {
      position: static;
      font-size: 1.1rem;
      border: 0;
      background: transparent;
      padding: 0;
      opacity: .5;
    }

    .btn-primary {
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .5px;
      line-height: 16px;
      padding: 11px 6px;
    }

    .btn_hover {
      color: $blue;
      background-color: $white;
      border-color: $blue;

      &:hover {
        background-color: $blue;
        border-color: $blue;
        color: $white;
      }
    }
  }

  &__logo {
    width: 40px;
    padding: 0;

    img {
      display: block;
      height: auto;
      max-width: 100%;
    }
  }
}

@include media-breakpoint-down(xs) {
  .smart-banner {
    display: flex;

    &.hide {
      display: none;
    }
  }
}
