div.mfeedback {}
div.mf-name, div.mf-email, div.mf-captcha, div.mf-message {width:80%; padding-bottom:0.4em;}
div.mf-name input, div.mf-email input {width:60%;}
div.mf-message textarea {width: 60%;}
span.mf-req {color:red;}
div.mf-ok-text {color:green; font-weight:bold; padding-bottom: 1em;}


.discount-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-pack: center;
        justify-content: center;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 250;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
  }
  .discount-modal.open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .discount-modal:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #14161E;
    opacity: 0.5;
  }
  .discount-modal .modal__container {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    border: 1.2px solid #E3E3E3;
    padding: 24px 24px 32px 24px;
    width: 450px;
    max-width: 100%;
    max-height: 100%;
    z-index: 20;
    overflow-y: auto;
  }
  .discount-modal .modal__close {
    width: 29px;
    height: 29px;
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
  }
  .discount-modal .modal__close:before, .discount-modal .modal__close:after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: calc(50% - 11px);
    background-color: #636B71;
    width: 20.5px;
    height: 1.8px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .discount-modal .modal__close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .discount-modal .modal__close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .discount-modal .modal__close:hover:before, .discount-modal .modal__close:hover:after {
    background-color: #FE412D;
  }
  .discount-modal .modal__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.7px;
    letter-spacing: -1.3%;
    text-align: left;
    color: #1C1F33;
  }
  .discount-modal .modal-form {
    margin-top: 16px;
  }
  .discount-modal .form_group {
    margin-top: 16px;
  }
  .discount-modal .form_label {
    color: #636B71;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.01em;
    display: block;
  }
  .discount-modal .form_item {
    width: 100%;
    padding: 15px 12px;
    background: #F9F9F9;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.01em;
    color: #636B71;
    border: none;
  }
  .discount-modal .form_item:focus, .discount-modal .form_item:active {
    border: none;
    outline: none;
  }
  .discount-modal .form_item-number {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    margin-top: 8px;
    width: 200px;
    height: 48px;
    padding: 8px;
    border: 1px solid #E3E3E3;
    border-radius: 8px;
  }
  .discount-modal .form_item-number .form_item {
    background: none;
    text-align: center;
    margin-left: 16px;
    margin-right: 16px;
  }
  .discount-modal .form_item-number .change {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-pack: center;
        justify-content: center;
    flex-shrink: 0;
    -webkit-box-flex: 0;
        flex-grow: 0;
    width: 32px;
    height: 100%;
    background: #F9F9F9;
    border-radius: 2px;
    color: #1C1F33;
    font-size: 24px;
    cursor: pointer;
  }
  .discount-modal .form_item-number .change:hover {
    background-color: #e9e9e9;
  }
  .discount-modal .form_button {
    width: 100%;
    margin-top: 16px;
  }
  .discount-modal .form_policy {
    margin-top: 8px;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
  }
  .discount-modal .form_policy a {
    display: inline;
    color: #FE412D;
  }