* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}
body {
  background-color: #FFFFFF;
  margin: 0;
}
.navtop {
  background-color: #232529;
  height: 60px;
  width: 100%;
  border: 0;
}
.navtop div {
  display: flex;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  height: 100%;
}
.navtop div h1, .navtop div a {
  display: inline-flex;
  align-items: center;
}
.navtop div h1 {
  flex: 1;
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: rgb(233, 233.2, 233.6);
  font-weight: 500;
}
.navtop div a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  color: rgb(189, 189.6, 190.8);
  font-size: 15px;
  font-weight: 500;
}
.navtop div a svg {
  margin-right: 5px;
  fill: rgb(189, 189.6, 190.8);
}
.navtop div a:hover {
  color: rgb(233, 233.2, 233.6);
}
.navtop div a:hover svg {
  fill: rgb(233, 233.2, 233.6);
}
.content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.content > .title {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 30px 0 20px 0;
  font-size: 22px;
  font-weight: 500;
  color: #60636b;
}
.content > .title span {
  margin-left: 10px;
  font-weight: 700;
}
.content > .desc {
  margin: 0;
  padding: 0 0 25px 0;
  font-size: 16px;
  font-weight: 400;
  color: #60636b;
}
.btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background-color: #3783da;
  color: #FFFFFF;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  height: 38px;
  box-shadow: 0px 0px 6px 1px rgba(68, 45, 45, 0.1);
}
.btn:has(svg) {
  padding: 0 18px 0 14px;
}
.btn svg {
  margin-right: 7px;
  fill: rgb(175, 205.4, 240.2);
}
.btn:hover {
  background-color: rgb(38.6392405063, 118.0063291139, 208.8607594937);
}
.btn.red {
  background-color: #bd4d4d;
}
.btn.red:hover {
  background-color: rgb(175.4467213115, 65.0532786885, 65.0532786885);
}
.home .tickets-list {
  display: flex;
  flex-flow: column;
  padding: 25px 0;
}
.home .tickets-list .ticket {
  padding: 15px 15px 15px 0;
  width: 100%;
  display: flex;
  text-decoration: none;
  border-radius: 15px;
}
.home .tickets-list .ticket:nth-child(even) {
  background-color: #fbfbfd;
}
.home .tickets-list .ticket .con {
  display: flex;
  justify-content: center;
  flex-flow: column;
  gap: 7px;
}
.home .tickets-list .ticket .con > svg {
  text-align: center;
  width: 80px;
  fill: rgb(229.5, 229.5, 229.5);
}
.home .tickets-list .ticket .con > svg.closed {
  fill: #bd4d4d;
}
.home .tickets-list .ticket .con > svg.resolved {
  fill: #44bb78;
}
.home .tickets-list .ticket .title {
  font-weight: 600;
  color: #60636b;
  max-width: 700px;
  word-break: break-word;
}
.home .tickets-list .ticket .title svg {
  margin-left: 5px;
  fill: #999999;
}
.home .tickets-list .ticket .msg {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 400px;
  color: rgb(127.5, 127.5, 127.5);
  font-size: 14px;
}
.home .tickets-list .ticket .created {
  flex-grow: 1;
  align-items: flex-end;
  color: rgb(127.5, 127.5, 127.5);
  font-size: 14px;
}
.home .tickets-list .ticket:hover {
  background-color: #f9f9fc;
}
.home .tickets-list .ticket:hover svg {
  fill: rgb(191.25, 191.25, 191.25);
}
.view h2 .open, .view h2 .resolved {
  color: #38b673;
}
.view h2 .closed {
  color: #b63838;
}
.view .ticket {
  padding: 0 0 25px 0;
}
.view .ticket .created {
  color: rgb(127.5, 127.5, 127.5);
}
.view .comments {
  margin-top: 15px;
  padding: 25px 0;
}
.view .comments .comment {
  display: flex;
  padding-bottom: 5px;
}
.view .comments .comment div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 70px;
  transform: scaleX(-1);
}
.view .comments .comment div svg {
  fill: rgb(229.5, 229.5, 229.5);
}
.view .comments .comment p {
  margin: 0 0 20px 0;
}
.view .comments .comment p span {
  display: flex;
  font-size: 14px;
  padding-bottom: 5px;
  color: rgb(127.5, 127.5, 127.5);
}
.create form, .view form {
  padding: 15px 0;
  display: flex;
  flex-flow: column;
  max-width: 400px;
  width: 100%;
}
.create form label, .view form label {
  display: inline-flex;
  width: 100%;
  padding: 10px 0;
  margin-right: 25px;
  font-weight: 500;
  font-size: 14px;
  color: #60636b;
}
.create form input, .create form textarea, .view form input, .view form textarea {
  padding: 10px 12px;
  width: 100%;
  margin-right: 25px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}
.create form input::placeholder, .create form textarea::placeholder, .view form input::placeholder, .view form textarea::placeholder {
  color: rgb(163.9655172414, 175, 186.0344827586);
}
.create form textarea, .view form textarea {
  height: 200px;
}
