/* Sticky 3M baner */
.sticky-3m-banner {
  position: sticky;
  top: 0;
  z-index: 998;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #ededed;
}

.sticky-3m-banner__link {
  min-height: 32px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #363f4d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
  overflow: hidden;
}

.sticky-3m-banner__link:hover {
  color: #007ba0;
  text-decoration: none;
}

.sticky-3m-banner__logo {
  width: auto;
  height: 40px;
  display: block;
  flex: 0 0 auto;
}

.sticky-3m-banner__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .sticky-3m-banner__link {
    min-height: 28px;
    padding-top: 4px;
    padding-bottom: 4px;
    gap: 7px;
    font-size: 12px;
  }

  .sticky-3m-banner__logo {
    height: 30px;
  }
}
