.accred-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  margin-bottom: 30px;
}
.accred-logos img {
  flex-basis: 30%;
  object-fit: contain;
  max-width: 120px;
}
.course-type{
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  border-radius: 20px;
  color: #737a8c;
  border: 1px solid #737a8c;
  padding: 4px 20px;
}
h1.course-title {
  font-size: 36px;
  margin: 1ex 0;
  color: #16244d;
}
.course-text-fields {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width:500px){
  .course-text-fields {
    font-size: 90%;
  }
}
.course-text-fields div {
  border-top: 1px solid black;
  padding: 0.5em 0;
  flex-basis: 40%;
  flex-shrink: 1;
  flex-grow: 1;
}
.course-text-fields .label {
  font-weight: bold;
  flex-grow: 0;
}
.course-text-fields .value {
  text-align: right;
  color: #474f5f;
}
.price {
  color: #16244d;
  font-size: 30px;
}
.plus-vat {
  text-transform: uppercase;
  font-size: 50%;
}
.course-image {
  height: 100%;
  object-fit: cover;
}
.fixed {
  position: fixed;
}
.buybar {
  bottom: 0;
  height: 60px;
  width: 100%;
  padding: 0 30px;
  font-size: 30px;
  color: white;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  background: #282c47;
  z-index: 100;
}
.buybar .course-title {
  flex: 1;
  font-size: 30px;
  overflow: hidden;
  list-style-type: none;
}
@media only screen and (max-width:1600px){
  .buybar .course-title.long {
    font-size: 24px;
  }
}
@media only screen and (max-width:1280px){
  .buybar .course-title {
    font-size: 24px;
  }
}
.buybar-top {
  top: 80px;
}
.course-content-section {
  display: flex;
  background: #f2f2f2;
}
.contact-section {
  background: #ececec;
}
.toc {
  left: 0;
  top: 80px;
  bottom: 60px;
  padding: 60px 0;
  position: sticky;
}
.toc h2 {
  padding-left: 1rem;
  font-size: 100%;
  text-transform: uppercase;
}
.toc nav.toc-nav {
  margin-bottom: 60px;
}
.navlist .toc-nav-item {
  margin-bottom: 10px;
}
.course-description {
  margin-top: -40px;
  margin-bottom: 40px;
}
.course-description .chapter-anchor {
  height: 0;
/*
  position: relative;
  top: -40px;
*/
}
.course-description .chapter {
  margin-top: 40px;
  padding: 50px 60px 10px 0;
  border-top: 1px solid black;
}
.course-description .chapter:nth-child(1),
.course-description .chapter:nth-child(2) {
  /* 1 is for no-anchor, 2 is for anchor ; due to a Safari anchor hack */
  border-top: 0;
}
.course-description h2 {
  font-size: 36px;
}
.course-description h3 {
  font-size: 120%;
  font-weight: bold;
}
.chapter .time {
  color: white;
  padding: 15px 20px;
  font-weight: bold;
  width: 160px;
  background: #95b3cd;
}
.chapter .time.alt-bg {
  background: #474f5f;
}
.chapter .agenda-item {
  background: white;
  padding: 15px 20px;
  margin-bottom: 20px;
}
.chapter details {
  user-select: none;
  margin-bottom: 20px;
}
.chapter details>summary i {
  transition: all 0.3s;
  margin-left: auto;
}
.chapter details[open] summary i {
  transform: rotate(180deg);
}
.chapter details.course-overview summary {
  text-transform: uppercase;
  padding: 20px;
  background: #474f5f;
  color: white;
}
.chapter details[open].course-overview summary {
  background: #16244d;
}
.course-overview-a {
  background: white;
  padding: 20px;
}
details .hidewhenclosed{
  display: none;
}
details[open] .hidewhenclosed{
  display: initial;
}
details[open] .hidewhenopen{
  display: none;
}
.chapter summary {
  display: flex;
  cursor: pointer;
  padding: 10px 20px;
  background: white;
}
.chapter summary.alt-bg {
  background: #474f5f;
  color: white;
}
.chapter summary::-webkit-details-marker {
  display: none;
}
.chapter .faq-a {
  padding: 20px;
}
@media only screen and (max-width:991px){
  .course-content-section {
    display: block;
  }
  .accred-logos img {
    margin-top: 10px;
    margin-left: 10px;
  }
  .toc {
    padding-bottom: 0;
  }
  .course-description .chapter {
    padding: 30px 0;
  }
  .buybar-top {
    top: 60px;
  }
  .buybar {
    padding: 0 20px;
    font-size: 26px;
  }
  .buybar-price {
    flex-basis: 80%;
  }
  .buybar .btn {
    padding: .625em 2em;
  }
}
