/**
 * Add this custom CSS to the Theme to the Paperform if using the
 * "zendesk ticket" code snippet.
 **/
.ZendeskTicket {
  background-color: #f3f3f3;
  border: 0;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
}

.ZendeskTicket__centered {
  text-align: center;
}

.ZendeskTicket__error {
  color: red;
}

.ZendeskTicket:hover {
  background-color: #efefef;
}

.ZendeskTicket__link {
  text-decoration: none;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ZendeskTicket__link:focus {
  text-decoration: none;
  color: inherit;
}

.ZendeskTicket__link:hover {
  text-decoration: none;
  color: inherit;
}

.ZendeskTicket__info {
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ZendeskTicket__id {
  color: #888;
  font-size: 12px;
}

.ZendeskTicket__status {
  opacity: 0.6;
  padding: 0;
  margin: 0 3px 0 5px;
  display: inline-block;
  position: relative;
  bottom: 2px;
  min-height: 14px;
  width: 15px;
  text-align: center;
  font-size: 9px;
  line-height: 12px;
  border-radius: 3px;
  color: #fff;
}

.ZendeskTicket__status--open {
  background-color: #e82a2a;
}

.ZendeskTicket__status--new {
  background-color: #f5ca00;
}

.ZendeskTicket__status--pending {
  background-color: #59bbe0;
}

.ZendeskTicket__status--closed {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.ZendeskTicket__status--hold {
  background-color: #000;
}

.ZendeskTicket__status--solved {
  background-color: #828282;
}

.ZendeskTicket__status--suspended {
  background-color: #666;
}

.ZendeskTicket__typeLabel {
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding: 0.2em 0.6em 0.3em 0;
}

.ZendeskTicket__subject {
  color: #78a200;
}

.ZendeskTicket__date {
  width: 30%;
  text-align: right;
}