/* popup онлайн-опрос */
.popup.online-survey {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 335px !important;
  height: 273px !important;
  z-index: 99999 !important;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.2) !important;
  border-radius: 4px !important;
}
#popup_bg {
  z-index: 99999 !important;
}
.online-survey__content {
  padding: 34px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 16px;
}
.online-survey__title {
  margin: 0px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.online-survey__text {
  font-size: 16px;
  font-weight: 400;
}
.online-survey__btn {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #fd7d3b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}
.online-survey__btn:hover {
  background: #fd7d3b;
}
@media (min-width: 768px) {
  .popup.online-survey {
    top: auto !important;
    left: auto !important;
    transform: none !important;
    right: 20px !important;
    bottom: 20px !important;
  }
}
