.mana-service-links {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.mana-service-links__close {
  display: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e4ece8;
  background: #fff;
  color: #102033;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.12);
}

.mana-service-links__row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.mana-service-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 154px;
  padding: 14px 7px;
  border-radius: 8px 0 0 8px;
  color: #fff;
  background: #01684b;
  border: 1px solid rgba(1, 104, 75, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(1, 104, 75, 0.16);
  white-space: nowrap;
  overflow: hidden;
}

.mana-service-links a span {
  display: block;
  width: max-content;
  transform: rotate(-90deg);
  transform-origin: center;
}

.mana-service-links a:nth-child(2) {
  background: #102033;
  border-color: #102033;
  height: 140px;
}

@media (max-width: 640px) {
  .mana-service-links {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
    bottom: auto;
  }

  .mana-service-links__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mana-service-links__row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .mana-service-links a {
    width: 42px;
    height: 146px;
    padding: 10px 6px;
    font-size: 12px;
  }

  .mana-service-links a:nth-child(2) {
    height: 128px;
  }
}
