.pickuporlenpopup__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.pickuporlenpopup__contacts {
  font-size: 14px;
  line-height: 1.4;
}

.pickuporlenpopup__button {
  cursor: pointer;
  white-space: nowrap;
  background-color: red;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 14px;
}

.pickuporlenpopup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.pickuporlenpopup__modal {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
}

.pickuporlenpopup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .pickuporlenpopup__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
