.site-popup-button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 175px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.site-popup-button__close {
  position: absolute;
  top: 8px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #005141;
  font-family: 'ibm';
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-popup-button__link {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  text-align: right;
}

.site-popup-button__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 159px;
  min-height: 86px;
  margin-bottom: 0;
  margin-left: auto;
  padding: 6px 13px 8px 17px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0) 53%,
    rgba(252, 179, 98, 0.8) 53%,
    rgba(252, 179, 98, 0.8) 100%
  );
}

.site-popup-button__image {
  display: block;
  width: 100%;
  max-width: 129px;
  height: 99px;
  object-fit: contain;
}

.site-popup-button__label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  gap: 6px;
  padding: 5px;
  background: rgba(252, 179, 98, 0.8);
  font-family: 'space';
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #111;
  margin-top: -5px;
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
  border-bottom: 1px solid transparent;
}

.site-popup-button__arrow {
  font-size: 14px;
  line-height: 1;
}

@media (hover: hover) {
  .site-popup-button__link:hover .site-popup-button__label {
    border-bottom-color: currentColor;
  }
}

@media (max-width: 640px) {
  .site-popup-button {
    top: auto;
    right: 0;
    bottom: 16px;
    transform: none;
    width: 175px;
  }

  .site-popup-button__label {
    font-size: 16px;
  }
}
