.popup {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: white;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: none;
    z-index: 998;
  }

  #popup-question-form form button,
  #popup-outside-form form button {
      border-radius: 3px;
      background-color: black;
      color: #FFF;
      cursor: pointer;
      border-style: none;
      margin-top: 40px;
      padding: 10px 15px;
      font-size: 16px;
      font-weight: 400;
  }

  #popup-question-form h3,
  #popup-outside-form h3 {
      padding-bottom: 20px;
  }

  #popup-question-form form label,
  #popup-outside-form form label {
      margin: 0px;
      font-size: 15px;
  }

  #popup-question-form form p,
  #popup-outside-form form p {
      margin: 0px;
  }

  #popup-question-form form input,
  #popup-outside-form form input {
      width: 300px;
  }

  #popup-question-form form input:hover,
  #popup-outside-form form input:hover {
      cursor: auto;
  }

  #popup-question-form form #id_phone_number,
  #popup-outside-form form #id_phone_number {
      cursor: auto;
      padding: 5px 5px 5px 10px;
      border-radius: 3px;
      outline: none;
      font-size: 15px;
      border: 1px solid #000;
      font-family: Open Sans, sans-serif;
      font-size: 15px;
  }

  .close-btn {
      height: 30px;
      width: 30px;
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      font-size: 30px;
      font-weight: bold;
  }

  #overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 998;
  }

  /*question-form */

  #popup-question-form {
      height: 85%;
      width: 400px;
      z-index: 999;
  }

  #popup-question-form form textarea:hover,
  #popup-question-form form textarea:focus {
      cursor: auto;
      box-shadow: none;
  }

  /* outside form */

  #popup-outside-form {
      height: 90%;
      width: 400px;
      overflow-y: auto;
      z-index: 999;
  }

  #popup-outside-form form textarea:hover{
      cursor: auto;
  }

  #popup-outside-form form select{
      margin: 3px;
  }