/* UP Guidelines Styles */

/* Bullet point lists */
ul.level-l1,
ul.level-l2,
ul.level-l3,
ul.letter-list {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
}

ul.level-l1 > li,
ul.level-l2 > li,
ul.level-l3 > li,
ul.letter-list > li {
    position: relative;
    margin: 5px 0;
    padding-left: 20px;
}

ul.level-l1 > li::before,
ul.level-l2 > li::before,
ul.level-l3 > li::before,
ul.letter-list > li::before {
    position: absolute;
    left: 0;
    top: 0;
}

/* First level bullets */
ul.level-l1 > li::before {
    content: "•";
}

/* Second level bullets */
ul.level-l2 > li::before {
    content: "–";
}

/* Third level bullets */
ul.level-l3 > li::before {
    content: "○";
}

/* Letter list */
ul.letter-list {
    counter-reset: letter;
}

ul.letter-list > li {
    counter-increment: letter;
}

ul.letter-list > li::before {
    content: "(" counter(letter, lower-alpha) ")";
    left: -5px;
}

/* Convert old bullet classes for backward compatibility */
p.epo-bullet-1st-level,
p.epo-bullet-2nd-level,
p.epo-bullet-3rd-level,
p.letter-list {
    position: relative;
    padding-left: 20px;
    margin: 5px 0;
}

p.epo-bullet-1st-level::before {
    content: "•";
    position: absolute;
    left: 5px;
}

p.epo-bullet-2nd-level::before {
    content: "–";
    position: absolute;
    left: 5px;
}

p.epo-bullet-3rd-level::before {
    content: "○";
    position: absolute;
    left: 5px;
}

p.letter-list::before {
    counter-increment: letter;
    content: "(" counter(letter, lower-alpha) ")";
    position: absolute;
    left: 0;
}


#block-languageswitcher-2 {
    display: none !important;
}

@media only screen and (min-width: 992px) and (max-width: 1500px) {
    .region-header.toggled-bg #block-homelogo {
      padding-left: 0;
      margin-left: 0 !important;
    }
  }


  li[class^="epo-body-text-list"] {
    list-style-type: none !important;
  }