.sticky-element--wrapper {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 99;
  transform: translateX(-1000px);
  transition: transform 1s ease-in-out;
}

.sticky-element--wrapper.active {
  transform: translateX(0);
  transition: transform 1s ease-in-out;
}

.sticky-element--wrapper--trigger {
  background: black;
  width: fit-content;
  color: white;
  padding: 0.4rem 3rem 0.4rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
}

.sticky-element--wrapper--trigger::after {
  content: "\e900";
  font-family: icomoon;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  right: 20px;
  font-size: 13px;
}

.sticky-element__content {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 99;
  width: 250px;
  padding: 2rem;
  background: white;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  transform: translateX(0);
  transition: transform 1s ease-in-out;
  width: 186px;
}

.sticky-element__content.active {
  transition: transform 1s ease-in-out;
  transform: translateX(-1000px);
}

.sticky-element__content--close {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 0;
  background: url("../../assets_ext/images/sticky-close.svg") no-repeat
    center/15px;
  background-color: black;
  cursor: pointer;
}

.sticky-element__content--title {
  font-weight: 700;
  color: #d50032;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sticky-element__content--link {
  display: flex;
  color: black;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.sticky-element__content--link:hover {
  font-weight: 600;
}

.sticky-element__content--link img {
  width: 20px;
  margin-right: 0.5rem;
}

@media screen and (max-width: 810px) {
  .sticky-element--wrapper,
  .sticky-element__content {
    display: none;
  }
}
