.popup {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s ease-in;
  opacity: 0;
  font-family: "Myriad Pro", Tahoma, sans-serif;
  background: rgba(0, 0, 0, 0.5);
  margin: 0;
  z-index: 2;
}

.popup__container {
  width: 90%;
  max-height: 70%;
  position: absolute;
  top: 5%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  align-items: center;
  background: #ffffff;
  margin: 0 12px auto 12px;
  padding: 0 0 22px;
}

.popup__container_type_select-list {
  padding: 0;
}

.popup_opened {
  visibility: visible;
  opacity: 1;
}

.popup__button-close-border {
  width: calc(100% - 12px);
  position: sticky;
  background: #ffffff;
  top: 0;
  margin-left: 12px;
  padding: 12px 0;
  z-index: 3;
}

.popup__button-close {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.popup__button-close-img {
  width: 20px;
  height: 20px;
}

.popup__button-close-img:active {
  width: 18px;
  height: 18px;
}

.popup__buttons-row {
  display: flex;
}

.popup__buttons-row > :not(:first-child) {
  margin-left: 20px;
}

.popup-ok__text {
  width: 90%;
  line-height: 24px;
  font-size: 22px;
  text-align: center;
  font-weight: normal;
  color: #8b8b8b;
  margin: 0 0 24px;
}

.popup_type_order-ok .popup-ok__text {
  display: none;
}
