* {
    box-sizing: border-box;
  }
  .openBtn {
    display: flex;
    justify-content: left;
  }
  .openButton {
    border: none;
    border-radius: 5px;
    background-color: #1c87c9;
    color: white;
    padding: 14px 20px;
    cursor: pointer;
    position: fixed;
  }
  .feedbackPopup {
    position: relative;
    text-align: center;
    width: 100%;
  }
  .popupForm {
    display: none;
    position: fixed;
    left: 45%;
    top: 5%;
    transform: translate(-50%, 5%);
    border: 3px solid #999999;
    z-index: 9;
  }
  .formContainer {
    max-width: 900px;
    padding: 20px;
    background-color: #fff;
    position:fixed;
    bottom: 0;
    right: 0;
  }

  .formContainer h2 {
    color: #1b2e4b;
  }

  .formContainer .btn {
    padding: 12px 20px;
    border: none;
    background-color: #cca711;
    color: #e9eac3;
    cursor: pointer;
    margin-bottom: 15px;
    opacity: 0.8;
  }

  .formContainer textarea {
    width: 100%;
  }
  .formContainer .cancel {
    background-color: #999090;
  }
  .formContainer .btn:hover,
  .openButton:hover {
    opacity: 1;
  }


  .feedback {
    background-color : #003FED;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    border-color: #003FED;
  }

  #mybutton {
    position: fixed;
    bottom: -4px;
    right: 10px;
  }

  /* .alert {
    height: 50px;
    width: 100%;
    line-height: 50px;
    background-color:#00A36C;
    color: white;
    text-align: center;
    display:none;
    z-index:1;
    position:absolute;
  } */



