@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/Poppins-Italic.ttf");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/Poppins-MediumItalic.ttf");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.ttf");
}

@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/Poppins-BoldItalic.ttf");
}

body {
  font-size: 15px;
  line-height: calc(22 / 15);
  font-style: normal;
  color: #3b3b3b;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #fff;
  hyphens: auto;
}

::selection {
  color: #fff;
  background: #6dcbd6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: 700;
  color: #272d3a;
}

h1 {
  font-size: 32px;
}

form h2 {
  font-size: 22px;
  border-radius: 4px;
  background-color: #00aab588;
  padding: 0.5rem 1rem;
  margin: 3rem -1rem 1rem;
}

@media (max-width: 800px) {
  form h2 {
    border-radius: 0;
  }
}

h3 {
  margin-top: 1rem;
  font-size: 18px;
}

p {
  margin: 1rem 0;
}

a:link {
  font-weight: 500;
  text-decoration: none;
  color: #1e91cc;
}

a:link:hover {
  color: #444b53;
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

main,
.header-center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
.header-center {
  display: flex;
  min-width: 800px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .header-center {
    min-width: 0;
    flex-direction: column;
  }
}
header {
  align-items: center;
  display: flex;
  padding: 0px 20px;
}

.header-wrapper {
  background-color: #00aab5;
}

header {
  color: white;
  display: flex;
  align-items: center;
}

header img {
  margin-right: 0.5rem;
}

header h1 {
  color: inherit;
  line-height: 1;
  font-size: 20px;
  margin-right: 1rem;
}

header .line1 {
  display: block;
  font-size: 55%;
  font-weight: 500;
}

.menu-item,
.menu-item:link {
  color: inherit;
  padding: 0.5rem;
  border-radius: 2px;
  font-weight: 500;
}

.menu-item:hover,
.menu-item:link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: inherit;
  text-decoration: none;
}

.field > label {
  font-weight: 500;
  font-size: 80%;
  line-height: 1;
  text-transform: uppercase;
}

.field input[type="date"],
.field input[type="email"],
.field input[type="number"],
.field input[type="password"],
.field input[type="search"],
.field input[type="tel"],
.field input[type="text"],
.field input[type="time"],
.field input[type="url"],
.field select,
.field textarea {
  border: 1px solid silver;
  background-color: white;
  border-radius: 4px;
}

.field input[type="date"]:disabled,
.field input[type="email"]:disabled,
.field input[type="number"]:disabled,
.field input[type="password"]:disabled,
.field input[type="search"]:disabled,
.field input[type="tel"]:disabled,
.field input[type="text"]:disabled,
.field input[type="time"]:disabled,
.field input[type="url"]:disabled,
.field select:disabled,
.field textarea:disabled {
  background-color: #eee;
}

.field input[type="date"],
.field input[type="email"],
.field input[type="number"],
.field input[type="password"],
.field input[type="search"],
.field input[type="tel"],
.field input[type="text"],
.field input[type="time"],
.field input[type="url"],
.field select {
  height: 40px;
  padding: 0 10px;
}

.field textarea {
  resize: vertical;
}

.field textarea,
.field select[multiple] {
  padding: 10px;
  width: 100%;
  height: auto;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  outline: none;
}

.field input::placeholder,
.field select::placeholder,
.field textarea::placeholder {
  color: #999;
  opacity: 1;
}

.select {
  display: inline-block;
  position: relative;
}

.select select {
  padding-right: 2rem;
}

.select::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.25rem 0.25rem 0 0.25rem;
  border-color: #666 transparent transparent;
  vertical-align: 0.15em;
  margin-left: 0.15em;
}

.row-custom {
  align-items: center;
  display: flex;
  width: 100%;
  margin: 0 -0.25rem;
}

.column {
  width: 100%;
  margin: 0 0.25rem;
}

.column input,
.column select,
.column .select,
.column textarea {
  width: 100%;
}

.errorlist {
  color: red;
}

.button,
.button:link {
  display: inline-block;
  color: white;
  background-color: #00aab5;
  border: 1px solid #00aab5;
  padding: 0 1rem;
  text-decoration: none;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.button.button-cancel {
  background-color: #cb2626;
  color: white;
  border: 1px solid #cb2626;
}
.button.button-cancel:hover {
  background-color: white;
  color: #cb2626;
  border: 1px solid #cb2626;
}

.button:disabled,
.button-disabled,
.button-disabled:link {
  background: silver;
  color: gray;
  border: none;
}

.button:not(.button-disabled):not(.button-cancel):hover {
  border: 1px solid #00aab5;
  background-color: white;
  color: #00aab5;
}

.button:not(:disabled):focus,
.button:not(.button-disabled):focus,
.button:not(.button-disabled):link:focus {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  outline: none;
}

.button-light,
.button-light:link {
  background-color: #eee;
  color: #333;
}

.buttons {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 2px solid #eee;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table a {
  color: inherit;
}

.table thead {
  font-weight: 500;
}

.table thead th {
  border-bottom: 2px solid #ccc;
}

.table td,
.table th {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.property {
  margin-bottom: 0.5rem;
}

.property-body p {
  margin: 0.5rem 0 0;
}

.property-body p:first-child {
  margin-top: 0;
}

.pagination-custom {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
}

.page {
  display: block;
  min-width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 0 2px;
}

.page-link:hover {
  border-color: silver;
  text-decoration: none;
}

.page-current {
  background-color: #00aab5;
  color: white;
}

.page-ellipsis {
  color: gray;
}

.publications li {
  text-indent: -1rem;
  padding-left: 1rem;
}

.publications + .publication-link {
  margin-top: 0.5rem;
}

.counter {
  color: gray;
}

.important {
  color: #cb2626;
  font-weight: 700;
}

.decision_date {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
