.event-callout-sticky {
  position: fixed;
  top: 140px;
  right: 0;
  z-index: 1;
  width: 300px;
  text-align: center;
  transform: translateY(150px);
  transition: transform 0.2s ease;
  display: none;
}
@media (min-width: 900px) {
  .event-callout-sticky {
    display: block;
  }
}
.header--compact .event-callout-sticky {
  transform: translateY(0);
}
.event-callout-sticky__boundary {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  background-color: #c8102e;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transform: translateX(230px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.event-callout-sticky__boundary.open {
  transform: translateX(0);
}
.event-callout-sticky__boundary.closed {
  opacity: 0;
  pointer-events: none;
}
.event-callout-sticky__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
  background-image: url("../DocumentDefault/Assets/close-icon-white.svg");
}
.event-callout-sticky__open {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 45px;
  cursor: pointer;
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
  background-image: url("../DocumentDefault/Assets/arrowIconRed.svg");
  transition: background-position 0.2s ease;
  opacity: 1;
}
.event-callout-sticky__open:hover {
  background-position: 56% center;
}
.open .event-callout-sticky__open {
  opacity: 0;
}
.event-callout-sticky__dismiss {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
  background-image: url("../DocumentDefault/Assets/close-icon-white.svg");
  opacity: 1;
}
.open .event-callout-sticky__dismiss {
  opacity: 0;
}
.event-callout-sticky__info {
  color: #ffffff;
  padding: 2.5rem 2.5rem 1rem 2.5rem;
  transition: opacity 0.2s ease;
  width: 100%;
  min-height: 240px;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.open .event-callout-sticky__info {
  opacity: 1;
}
.event-callout-sticky__date {
  font-family: "legacy-bold";
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.event-callout-sticky__title {
  font-family: "weiss-bold";
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
}
.event-callout-sticky__description {
  line-height: 1.5rem;
}
.event-callout-sticky__button {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  padding: 1rem 1.25rem 0.625rem 1.25rem;
  text-transform: uppercase;
  color: #c8102e;
  text-decoration: none;
}
.event-callout-sticky__button:hover::after {
  transform: translateX(3px);
}
.event-callout-sticky__button::after {
  content: " ";
  width: 7px;
  height: 14px;
  display: inline-block;
  margin-left: 0.75rem;
  background-repeat: no-repeat;
  background-size: 7px 14px;
  background-position: center center;
  background-image: url("../DocumentDefault/Assets/chevron-red.svg");
  transition: transform 0.2s ease;
}
.event-callout-sticky__toggle-label {
  transition: opacity 0.2s ease;
  height: 70px;
  line-height: 70px;
  font-family: "weiss-bold";
  font-size: 1.625rem;
  color: #ffffff;
  transform: rotate(-90deg);
  transform-origin: top left;
  position: absolute;
  bottom: 0;
  opacity: 1;
}
.open .event-callout-sticky__toggle-label {
  opacity: 0;
}