body {
  margin: 0;
  font-family: "Arial", sans-serif;
}

header {
  position: relative;
  top: 0;
  padding-top: 85px;
  width: 100%;
  height: 80px;
  background-image: url("/static/images/header-background.png");
  background-color: #FFFFFF;
  color: #fff;
}

body > main {
  width: 80%;
  margin: 15px auto;
}

.logo-link {
  width: 53px;
  height: 3.5rem;
  float: left;
  margin-right: 20px;
}

h1 {
  font-size: 22px;
  margin: 0;
}

h2 {
  margin: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
}

h3 {
  font-size: 15px;
}

label {
  color: #797979;
  font-size: 13px;
  display: inline-block;
  margin: 10px 25px 10px 0;
}

::placeholder {
  color: #AAAAAA;
  opacity: .7;
}

input {
  height: 28px;
  padding: 0 10px;
  color: #797979;
  border: 1px solid #AAA;
  border-radius: 5px;
}

input:focus-visible {
  outline: #AAA 1px solid;
}

input[type=text] {
  width: 15rem;
}

input[type=submit] {
  height: 30px;
  color: #fff;
  border-color: rgba(241, 181, 28, 1);
  background-color: rgba(241, 181, 28, 1);
  padding: 0 40px;
  text-transform: uppercase;
  background-position: 7px 2px;
  background-repeat: no-repeat;
  background-image: url("/static/images/search-icon.svg");
  background-size: 22px;
}

input[type=submit]:hover {
  background-color: rgba(241, 181, 28, .7);
}

/* Table */
table {
  width:100%;
  border-collapse: collapse;
}

.bottom-space {
  margin-bottom: 2rem;
}

th {
  padding: 10px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #7F7F7F;
}

th span {
  width: calc(100% + 15px);
  height: 3rem;
  display: flex;
  justify-content: left;
  align-items: center;
  border-right: 1px solid rgba(241, 181, 28);
  padding-right: 5px
}

th:last-child span {
  border: 0;
}

td {
  padding: 11px;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
  font-size: 13px;
}

td a {
  color: inherit;
  text-decoration: none;
}

td a:hover {
  color: rgba(241, 181, 28);
  cursor: pointer;
}

tr {
  border-bottom: 1px solid #AAA;
}

tr:hover {
  color: rgba(241, 181, 28);
  cursor: pointer;
}

thead tr {
  background-color: #F7F7F7;
  border-top: 1px solid #AAA;
}

.border-block {
  border: rgba(215, 215, 215, 1) 1px solid;
  border-radius: 12px;
  padding: 20px 25px;
  margin-top: 3rem;
}

.txt-yellow {
  color: rgba(241, 181, 28);
}

.error-box {
  color: #797979;
  text-align: left;
}

.text-center{
  text-align: center;
}

.entry-details {
  margin-top: 3rem;
}

.header-container {
  width: 100%;
  background-color: rgba(81, 81, 81, 1);
}

.header-grid {
  display: grid;
  gap: 1rem;
  height: 5rem;
  margin: auto;
  width: 80%;
  align-items: center;
  grid-template-columns: auto 1fr auto;
}

.logo-box img {
  max-height: 50px;
}

.text-box {
  color: #fff;
}

.lang-switcher {
  font-size: 14px;
}

.lang-switcher a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.5rem;
}

.lang-switcher a.active {
  font-weight: 700;
}


/* MEDIA */
/* Medium size */
@media only screen and (max-width: 1124px) {
  .center {
    width: 85%;
  }

  .text-box h1 {
    font-size: 16px;
  }
  .text-box h2 {
    font-size: 15px;
  }
}

/* Small size */
@media only screen and (max-width: 768px) {
  .center {
    width: 95%;
  }

  header {
    padding-top: 40px;
  }

  header .center:before {
    width: 40px;
    margin-right: 10px;
  }

  form {
    text-align: center;
  }

  label {
    display: block;
    text-align: left;
  }

  input {
    width: 100%;
    min-width: unset;
  }

  input[type="submit"] {
    width: 11rem;
  }

  .entry-details h3 {
    margin-top: 1.5rem;
  }

  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .error-box {
    margin: 2rem;
  }

  .lang-switcher {
    font-size: 12px;
  }

  .text-box h1 {
    font-size: 11px;
  }

  .text-box h2 {
    font-size: 9px;
    display: none;
  }
}
