/* stylelint-disable prettier/prettier */
.l-floatingBanner {
  display: grid;
  gap: 0 10px;
  grid-template-columns: 1fr minmax(355px, 1360px) 1fr;
}
@media (min-width: 768px) {
  .l-floatingBanner {
    gap: 0 32px;
  }
}

.l-floatingBanner {
  bottom: 0;
  grid-area: pageTop;
  margin-top: -228px;
  pointer-events: none;
  position: sticky;
  right: 0;
  z-index: 4000;
}

.l-floatingBanner__inner {
  grid-column: 2/3;
  margin-left: auto;
  position: relative;
  width: fit-content;
}

.l-floatingBanner__link {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  border: 2px solid #b9d7eb;
  border-radius: 3px;
  display: flex;
  filter: drop-shadow(0 0 20px rgba(0, 73, 172, 0.2));
  flex-direction: column;
  margin-right: 8px;
  margin-top: 8px;
  max-width: 150px;
  padding: 6px;
  pointer-events: visible;
  text-decoration: none;
}

.l-floatingBanner__subText {
  color: #666;
  font-size: 0.625rem;
  line-height: 1.5;
}

.l-floatingBanner__text {
  color: #1495db;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.3;
}
.l-floatingBanner__text::after {
  background-color: #1495db;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 11px;
  margin-left: 4px;
  vertical-align: middle;
  width: 11px;
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%2011%2011%22%20fill%3d%22%23fff%22%3e%3cpath%20d%3d%22M8%205%2e5l%2d4%202%2e5v%2d5l4%202%2e5z%22%2f%3e%3c%2fsvg%3e");
}

.l-floatingBanner__image {
  display: block;
  margin-top: 2px;
}

.l-floatingBanner__closeButton {
  background-color: #666;
  border-radius: 50%;
  height: 40px;
  pointer-events: visible;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}
.l-floatingBanner__closeButton::before, .l-floatingBanner__closeButton::after {
  background-color: #fff;
  content: "";
  height: 2px;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 23px;
}
.l-floatingBanner__closeButton::before {
  transform: rotate(45deg);
}
.l-floatingBanner__closeButton::after {
  transform: rotate(-45deg);
}

.l-floatingBanner__closeButtonText {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (min-width: 768px) {
  .l-floatingBanner {
    margin-bottom: -276px;
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .l-floatingBanner {
    gap: 0 32px;
  }
}
