@import url(fonts.css);

:root {
  --font-main: 'Inter Tight', sans-serif;
  --color-orange: #ff5200;
  --color-black: #000000;
  --color-stone: #ece0d6;
  --color-brown: #cec4a1;
  --color-white: #fff;
}

html {
  background-color:var(--color-stone);
}


body {
  color: var(--color-black);
  font: normal 400 17px/1.4 var(--font-main);
  margin: 0;
}

* {
  box-sizing: border-box;
}

a.cta {
  color: var(--color-black);
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

a.cta::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

a.cta:hover::after {
  transform: scaleX(0);
}

a{
  text-decoration: underline;
  color: var(--color-black);
}

a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

a.logo {
  background: url(logo1.png) center top no-repeat;
  background-size: contain;
  display: block;
  height: 26px;
  width: 187px;
}

a.logo::after {
  display: none;
}

h1 {
  font: normal 600 30px/1.4 var(--font-main);
  padding: 0;
}

h2 {
  font: normal 600 24px/1.4 var(--font-main);
  margin-bottom: 15px;
  padding: 0;
}

h3 {
  font: normal 600 18px/1.2 var(--font-main);
  margin: 1em 0;
  padding: 0;
}

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: 960px;
}

.fill {
  min-width: 960px;
  width: 100%;
}

.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

.top {
  margin-top: 0;
  padding-top: 0;
}


/* header */

header {
  display: block;
  background: #fff;
}

header>.contain {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
}

#epAttention {
  padding: 10px 0;
  text-align: center;
}

#epLang {
  display: none;
}

#epLang a {
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
}

nav{
  position: relative;
  display: flex;
  align-items: center;
  top: 2px;
}

nav a {
  color: var(--color-black);
  display: inline-block;
  margin: 0 15px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight:600;
  position: relative;
  overflow: hidden;
}

nav a:hover {
  color: var(--color-black);
}

nav a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

nav a:hover::after {
  transform: scaleX(1);
}

.banner {
  background: #ccc url(banner.jpg) no-repeat center center;
  width: 916px;
  background-size: cover;
  min-height: 400px;
  display: block;
  padding: 50px 50px 100px;
}

.qr-code-container {
  display: flex;

  .qr-code {
    width: 174px;
    height: 174px;
    display: block;
    background: url(qr-code.png) no-repeat center center;
    background-size: contain;
  }
}

/* content */

main {
  display: block;
  padding: 30px 0 70px;
}

.report main{
  min-height: 70vh;
}

section {
  display: block;
}

section.flex {
  display: flex;
  padding: 20px 0;
}

.text-index {
  margin-top: 30px;
}

[class^="col-"] {
  /* Applies to all CSS classes that start with "col-" */
  vertical-align: top;
}

.col-100 {
  display: inline-block;
  padding: 10px 25px;
  width: 100%;

  h2 {
    margin-bottom: 0;
    font-family: var(--font-main);
    font-weight:600;	
  }

  h2+p {
    margin-top: 0;
  }
}

.col-50 {
  /* Column-50 is technically 49% so columns do not break to a new line in all browsers */
  display: inline-block;
  padding: 10px 25px;
  width: 49%;
}

.col-1 {
  display: inline-block;
  padding: 10px 25px;
  width: 570px;
}

.col-2 {
  display: inline-block;
  padding: 10px 25px;
  width: 360px;
}


.col-left {
  margin-right: 2%;
  padding: 10px 25px;
  width: 60%;
}

.col-right {
  padding: 10px 25px;
  width: 39%;
  margin-right: 40px;
}

.retaliation-text-container{
  display: flex;

  p {
    margin-top: 30px;
  }
}

#epEmergency {
  padding: 10px 0 30px 0;
  text-align: center;
}


#epEmergency strong {
  display: block;
  margin-right: 7px;
}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

.faq{
  #general, #report, #follow {
    margin-top: 20px;
  }
  h2{
    display: inline-block;
    border-bottom: 1px solid var(--color-orange);
    font-family: var(--font-main);
    font-weight:600;	
  }
  .expand-button{
    display: block;
    font-weight: bold;
    font-family: var(--font-main);
    margin: 10px 0;
  }

  .expand-button-opened{
    text-decoration: underline;
  }
  .expand-text > p:first-child{
    margin-top: 0;
  }
}

/* dp and phone */

#epDataPrivacy .online, #epDataPrivacy .phone, #epDataPrivacy .output {
  display: none;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

#epDataPrivacy .text {
  color: var(--color-black);
}

#epPhone {}


select {
  font: normal 400 14px var(--font-main);
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
}

button, .submit {
  transition: all .2s ease;
  background: #000;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  margin: 15px 0;
  padding: 6px 24px;
  text-decoration: none;
  font-family: var(--font-main);
  border: 1px solid #000;
}

button:disabled, button:disabled:hover, input.submit:disabled, input.submit:disabled:hover {
  background: #ccc;
  cursor: default;
}

button:hover, .submit:hover {
  color: #000;
  background: #fff;
  border-color: #000;
}

.nowrap {
  white-space: nowrap;
}

/* issues */

#epIssues {
  width: 100%;
}

#epIssues .category {
  display: flex;
  margin-bottom: 20px;
}

#epIssues .category {
  background: #1f3667;
}


#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  color: #fff;
  font: normal 700 20px var(--font-main);
  padding: 20px 20px 20px 30px;
  width: 24%;
}

#epIssues .details {
  font: italic 400 11px var(--font-main);
  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 var(--font-main);
  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 {
  font-size: 12px;
  padding: 10px 0 15px;
  background: var(--color-black);
  color: var(--color-white);
}

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 {
  color: var(--color-white);
}

footer .line2 a::after {
  background: var(--color-white);
}

footer table {
  font-size: 12px;
  margin: 0 auto !important;
  width: 960px !important;
}