 
.display-none {
    display:  none
}
 

#feedbackModal {
    display: none;
    position: fixed; /* 🔥 KEY */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5); /* overlay */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    position: relative;
}

#closeModal {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

.modal-content input, .modal-content select, .modal-content textarea {
    font-size: 14px;
    min-height: 30px;
    display: block;
    margin: 10px 0;
    width: 100%;
}

#cookie-banner button {

}

.cookies-reject {

}

.cookies-accept {
  background: green;
  border-radius: 4px;
  padding: 5px 11px;
}

#feedback-frm input, #feedback-frm select, #feedback-frm textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px 8px;
}

#submitFeedback {
  background: 1px solid green;
  background: green;
  color: #fff;
  padding: 5px 8px;
  border-radius: 8px;
}