/*!
 * Styling for the tabbed accordion
 *
 *
 * Copyright 2019 Ice Creates Ltd
 * http://www.icecreates.com
 *
 * Developer: Dom Reilly
 */
/**********************
 * Typography Mixin's *
 **********************/
/******************
 * Typography Variables *
 ******************/
/*24px*/
/*48px*/
/*8px*/
/*37px*/
/******************
 * Color Variables *
 ******************/
/*
 * Ice Web Styles
 *
 * Less: Spacing Variables
 *
 * Developer: Dom Reilly.
 */
.nav-tabs.nav-justified li {
  padding-right: 5px;
}
.nav-tabs.nav-justified li:last-of-type {
  padding-right: 0px;
}
.nav-tabs li a {
  background-color: rgba(0, 180, 196, 0.25);
  color: #00B4C4;
}
body.high_contrast .nav-tabs li a {
  background-color: #000000;
  color: #ffffff;
}
.nav-tabs li.active a {
  background-color: #00B4C4;
  color: #ffffff;
}
body.high_contrast .nav-tabs li.active a {
  background-color: #c41000;
}
.tab-content .tab-pane {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 5px;
}
.tab-content .tab-pane ul {
  list-style: none;
  /* Remove default bullets */
}
.tab-content .tab-pane ul li:before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #ffffff;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}
.tab-content .tab-pane ol li {
  color: #ffffff;
}
.tab-content .tab-pane a {
  color: inherit;
}
