.stockRequestPopupTitle {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}

.stockRequestPopup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
  opacity: 0;
}

.stockRequestPopupDialog {
  position: fixed;
  max-width: 444px;
  height: auto;
  width: var(--web-container, 95%);
  background-color: var(--web-background, #fff);
  border-radius: var(--border-radius, 8px);
  padding: 45px 25px 25px;
  box-sizing: border-box;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--base, #000);
  font-size: var(--base-font-size, 13px);
  line-height: var(--base-line-height, 19px);
}

.stockRequestPopupClose {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  color: var(--base, #000);
  text-align: center;
  font-size: 30px;
  line-height: 19px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

.stockRequestPopupText {
  position: relative;
  width: 100%;
  margin: 22px auto 0;
  text-align: center;
  color: var(--base, #58595b);
  font-weight: var(--base-font-weight, 400);
  box-sizing: border-box;
  max-width: 335px;
}

.stockRequestEmailInput {
  position: relative;
  display: block;
  width: 100%;
  margin: 24px auto 0;
  border: 1px solid var(--lines-border-color, #d7d7d7);
  border-radius: var(--border-radius, 8px);
  color: var(--base, #58595b);
  box-sizing: border-box;
  padding: 15px 14px;
  background: transparent;
  height: auto;
}

.stockRequestEmailInput::placeholder {
  color: var(--ligher-base, #8c8c8c);
}

.stockRequestEmailInput::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: var(--ligher-base, #8c8c8c);
}

.stockRequestEmailInput:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: var(--ligher-base, #8c8c8c);
}

.stockRequestEmailInput::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--ligher-base, #8c8c8c);
}

.stockRequestEmailInput:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--ligher-base, #8c8c8c);
}

.stockRequestEmailInput::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--ligher-base, #8c8c8c);
}

.buttonStockRequest {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius, 8px);
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  text-align: center;
  line-height: 40px;
  height: 40px;
  font-size: 15px;
  color: var(--button-font-color);
}

.buttonStockRequestSecondary {
  background-color: #f2f2f2;
  color: var(--base, #000);
  border: 1px solid #f2f2f2;
}
.stockRequestButtons {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  display: grid;
}
@media screen and (max-width: 1100px) {
  .stockRequestPopupDialog {
    padding-top: 35px;
  }
}
@media screen and (min-width: 1100px) {
  .stockRequestPopupClose:hover {
    opacity: 0.8;
  }
  .buttonStockRequest:hover {
    background-color: var(--base-aux);
    color: var(--button-font-color-hover);
    border-color: var(--secondary);
  }
}

