.ui-dialog {
  background-color: #f5f5f5;
  border: none;
  border-radius: 0;
}
.ui-dialog-title {
	font-weight:normal;
}
.ui-dialog-titlebar {
   background-color: #404041;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    padding: 10px;
}
.ui-dialog-titlebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
}
.ui-dialog-titlebar-close::before {
	content: "✖";
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 11px;
}
#report {
	background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-content: center;
}
#report textarea {
	margin:10px;
	background: #1a1a1c;
    border: 1px solid #343434;
    height: 150px;
    color: #a5a5a5;
    font-size: 14px;
    padding: 10px;
}
#report textarea::placeholder {
  color: gray;
  font-style: italic;
  font-size: 14px;
  opacity: 1;
}
#report button {
	color: #dfdfdf;
    background: #323232;
    border: 1px solid #424242;
    font-weight: 300;
    padding: 8px;
    vertical-align: top;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    margin: 0 10px;
    font-size: 14px;
    line-height: 14px;
}
#report button:hover {
    background: #2c2c2c;
}
#report .alert {
  font-size: 14px;
  margin: 10px 10px 0 10px;
  padding: 5px 5px 5px 15px;
  display: none;
}