@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-red: #e81317;
  --links-blue: #317e8c;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
  font: normal 400 16px "Open Sans";
  margin: 0;
}

body.index {
  color: #333;
}

*{
  box-sizing: border-box;
}

a {
  color: var(--links-blue);
  outline: none;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: var(--primary-red);
}

a.logo {
  background: url(logo1.png) center top no-repeat;
  background-size: contain;
  display: block;
  height: 100px;
  width: 220px;
}

.index h1 {
  color: unset;
  font: normal 700 24px sans-serif;
  padding: 0;
}

h1 {
  color: #333;
  font: normal 400 30px sans-serif;
  padding: 0;
}

h2 {
  color: #333;
  font: normal 400 24px sans-serif;
  padding: 0;
}

h3 {
  font: normal 700 1.17em/1.27em sans-serif;
  margin: 1em 0;
  padding: 0;
}

.report-text {
  margin-bottom: -10px;
}

img {
  border: 0;
  display: block;
}

ol, ul {
  margin: 1em 0;
  padding: 0 0 0 1.25em;
}

p {
  margin: 1em 0;
  padding: 0;
}

.contain {
  margin: 0 auto;
  width: 1000px;
}

.fill {
  min-width: 1000px;
  width: 100%;
}

.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

.top {
  margin-top: 0;
  padding-top: 0;
}

.center {
  text-align: center;
}


/* header */

header {
  border-bottom: 1px solid #1f3667;
  display: block;
}

.index header {
  border: none;
}

header > .contain {
  padding-bottom: 20px;
}

#epLang {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    position: relative;
    text-align: center;
}

#epLang > a {
    display: none;
}

#epLang a:hover {
    /* color: var(--links-blue); */
    background-color: #ff4447;
}

#epLangDrop {
    background: var(--primary-red);
    display: none;
    position: absolute;
    left: 0;
    z-index: 999;
}

#epLang > div {
    background: var(--primary-red);
    padding: 5px 0px 7px 0px;
    width: 100px;
}

#epLangDrop a {
    display: block;
    color: #fff;
    padding: 7px 10px;
}

#epLang:hover #epLangDrop {
    display: block;
}

nav {
  display: flex;
  font: normal 400 14px sans-serif;
  justify-content: space-between;
}

nav a {
  color: rgb(34, 34, 34);
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  align-content: center;
  font-weight: bold;
  text-align: center;
}

nav a:lang(es) {
  font-size: 12px;
}

nav a:hover {
  color: var(--primary-red);
}

#epAttention {
  padding: 10px 0;
  text-align: center;
}

#epAttention strong {
  color: var(--primary-red);
}

banner {
  background: #ccc url(banner.jpg) no-repeat center center;
  background-size: cover;
  display: block;
  padding: 50px 0 100px;
  height: 600px;
}

.buttons {
  margin-right: auto;
  width: 35%;
}

.buttons a {
  align-items: center;
  background: var(--primary-red) url() no-repeat center left 15px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  height: 100px;  
  margin: 10px 0;
  padding: 15px 15px 15px 25px;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.1s ease-in-out;
}

.buttons a:hover {
  background-image: none !important;
  box-shadow: #333 0px 3px 5px -1px;

  /* font-size: 21px; */
  padding: 15px 15px 15px 25px;
  /* text-align: center; */
}

.buttons span.title {
  display: block;
  font-size: 16px;
  width: 100%;
}

.qr-code-button {
  cursor: default;
}

.qr-code{
  background: url(qr-code.png) no-repeat left top;
  background-size: contain;
  height: 69px;
  width: 80px;
}

.qr-code:lang(zhs) {
  margin-left: 100px;
}

.qr-code:lang(nl) {
  width: 108px;
}


/* content */

main {
  display: block;
  padding: 30px 0 50px;
}

section {
  display: block;
}

section.flex {
  display: flex;
  /* padding: 20px 0; */
}

div.col-left {
  margin-right: 2%;
  width: 60%;
}

div.col-right {
  padding: 0 10px;
  width: 38%;
}

#epEmergency, #epEmergencyEU {
  padding: 10px 0;
  text-align: center;
}

#epEmergency br, #epEmergencyEU br {
  display: none;
}

#epEmergency strong, #epEmergencyEU strong {
  display: inline-block;
  margin-right: 7px;
}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

#epDataPrivacy .online, #epDataPrivacy .phone {
  display: none;
}

#epDataPrivacy .output {
  display: block;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

#epDataPrivacy .text {
  color: #333;
}

select {
  font: normal 400 14px sans-serif;
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
}

.submit {
  background: red;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  margin: 15px 0;
  padding: 8px 60px;
  font-weight: bold;
  transition: all 0.1s ease-in-out;
}

.submit:hover {
  box-shadow: #333 0px 3px 5px -1px;
  color: #fff;
}

button, input.submit {
  background: red;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  margin: 15px 0;
  padding: 8px 60px;
  font-weight: bold;
  transition: all 0.1s ease-in-out;
}

button:disabled, button:disabled:hover, input.submit:disabled, input.submit:disabled:hover {
  background: #ccc;
  cursor: default;
}

button:hover, input.submit:hover {
  box-shadow: #333 0px 3px 5px -1px;
}

.nowrap {
  white-space: nowrap;
}

#epIssues {
  width: 100%;
}

#epIssues .category {
  display: flex;
  margin-bottom: 20px;
}

#epIssues .category{
  background: var(--primary-red);
}

#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  color: #fff;
  font: normal 700 16px sans-serif;
  padding: 20px 20px 20px 30px;
  width: 24%;
}

#epIssues .details {
  font: italic 400 11px sans-serif;
  position: absolute;
  right: 7px;
  text-decoration: underline;
  top: 3px;
}

#epIssues .issue {
  margin-bottom: 10px;
  padding: 0 5px 0 10px;
  position: relative;
}

#epIssues .issue:last-of-type {
  margin-bottom: 0;
}

#epIssues .issue:hover {
  background: #eee;
}

#epIssues .issuebox {
  background: #fff;
  padding-left: 20px;
  width: 76%;
}

#epIssues .name {
  font: normal 400 16px/20px sans-serif;
  padding: 5px 0;
}

#epIssues .desc {
  color: #777;
  font-size: 14px;
  padding: 0 60px 10px 15px;
}

input.text-input  {
  margin: 5px 0 20px;
  min-width: 300px;
  padding: 5px;
}

.follow-page section span {
  font-size: 18px;
}

/* footer */

footer {
  border-top: 2px solid #1f3667;
  font-size: 14px;
  padding: 20px 0;
  margin-top: auto
}

footer th {
  display: none;
}

footer td {
  padding: 5px 0 0 !important;
}

footer .line1 {
  float: left;
  padding-left: 10px;
}

footer .line2 {
  color: #fff;
  float: right;
  padding-right: 10px;
}

footer .line2 a {}

footer .line2 a:hover {}

footer table {
  font-size: 12px;
  margin: 15px auto 0 !important;
  width: 1000px !important;
}

.grayBG {
  background-color:#f2f2f2;
  border-top: 2px solid #1f3667;
  padding:20px 0;
}

.mainText {
	padding:0px 0 60px;
}