@import url("/domain/media/shared/ciCLIENTMobileADA.css");
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
 --primary-color: #232020;
 --secondary-color: #333;
 --tertiary-color: #fff;

 --body-text: #666;

 --button-color-bg:#333;
 --button-color:#fff;
 --button-color-alt:#fff;
 --button-color-hover:#fff;
 
 --link-color: #33658a;
 --link-color-alt: #fff;
 --link-color-hover: #fff;

 --mobile-menu-bg-color: transparent;
 --mobile-menu-bg-hover: #333;
 --mobile-menu-icon-color: #333;
 --mobile-menu-icon-color-hover: #fff;

 --footer-bg-color: #925D16;
 --footer-link-color:#fff;
 --footer-link-color-hover:#fff;
}

body {
  color: var(--body-text);
  font: normal 400 20.8px/1.5 "Work Sans", sans-serif;
  margin: 0;
}

a {
  color: var(--link-color);
  outline: none;
  text-decoration: underline;
}

a:hover {
  color: var(--link-color-hover);
}

/* header */

header {
  display: block;
  padding: 10px;
  background-color: #232020;
}

#epLang {
  display: none;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}

#epLang a {
  margin-left: 20px;
}

header .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

a.logo {
  background: url(logo1.png) center center no-repeat;
  background-size: contain;
  display: inline-block;
  height: 50px;
  margin: 20px 0;
  width: 150px;
}

#epNavBar ul {
  align-items: center;
  display: none;
  flex-direction: column;
  flex-grow: 0;
  list-style: none;
  padding: 0;
}

#epNavBar li {
  width: 100%;
}

#epNavBar a {
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  display: inline-block;
  font: normal 600 20.8px/25px "Work Sans", sans-serif;
  padding: 10px 20px;
  text-align: left;
  text-decoration: none;
}

#epNavBar a:hover, #epNavBar a:focus {
  /* background-color: var(--secondary-color); */
  color: #fff;
}

#epAttention {
  padding: 10px;
  text-align: center;
  background-color: #fe9519;
  color: #2a2a2a;
}

/* content */

h1 {
  font: normal 700 54px "Work Sans", sans-serif;
  padding: 0;
}

h2 {
  font: normal 700 42px "Work Sans", sans-serif;
  padding: 0;
}

h3 {
  font: normal 700 32px "Work Sans", sans-serif;
  margin: 1em 0;
  padding: 0;
}

#epEmergency {}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

#epDataPrivacy {
  display: inline-block;
  vertical-align: top;
}

#epDataPrivacy .online, #epDataPrivacy .phone, #epDataPrivacy .output {}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

select {
  font: normal 400 14px "Work Sans", sans-serif;
  margin: 2px 0 15px;
  padding: 5px;
  width: 100%;
}

button {
  background: var(--primary-color);
  border: none;
  color: var(--button-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
}

button:hover {
  background: var(--button-color-bg);
  color: #fff;
}

button:disabled {
  background: #ddd;
  cursor: default;
}

button:hover:disabled {
  background: #ddd;
}

.nowrap {
  white-space: nowrap;
}

button {
  cursor: pointer;
}

button:disabled {
  background: #808080;
  cursor: not-allowed;
}

/* footer */

footer {
  background: var(--footer-bg-color);
  font-size: 20.8px;
}

#epNAVEXFooter th {
    display: none;
}

#epNAVEXFooter {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  direction: ltr !important;
  font-size: 20.8px;
  font-weight: 500;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  color: #fff
}

#epNAVEXFooter .line1 {
    margin-block-end: 20px;
}

footer nav ul {
    justify-content: center;
    margin-block-start: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

footer nav li a {
    color: var(--footer-link-color);
    font-size: 20.8px;
    font-weight: 500;
    text-decoration: none;
}

footer nav > a:hover {
    margin: 0 auto;
    color: var(--footer-link-color-hover);
}

rect.bar {
 fill: white;
}



@media only screen and (min-width:1024px) {
  #epNAVEXFooter {
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
  }

  footer nav ul {
    flex-direction: row;
  }

  #epNAVEXFooter .line1 {
    margin: 0;
  }

  #epMobileNavButton {
    display: none;
    visibility: none;
  }

  #epNavBar ul {
    display: flex;
    flex-direction: row;
  }

  #epNavBar li {
    width: auto;
  }

  footer nav li {
    margin-left: 20px;
  }
}

@media only screen and (min-width:1200px) {
  .contain {
    width: 1200px;
  }

  .fill {
    min-width: 1200px;
    width: 100%;
  }

  #epNAVEXFooter {
    /* width: 1200px; */
  }
}