/**
 * Breadcrumb
 */
 ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: transparent;
}
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: none;
}

/**
 * Tabs
 */
 .tabs {
	 width: 75%;
	display: flex;
	flex-wrap: wrap; /*make sure it wraps*/ 
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.tabs label {
	order: 1; /*Put the labels first*/ 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
	color: white;
  background: #a32135;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99; /*Put the tabs last*/ 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #f3f5f9;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
	color: #4A5859;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

/**
 * Course container
*/
.clearfix {
  overflow: hidden; 
  border: 2px solid #a32135;
  padding: 15px;
  background: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.course-container {
  float: right;
}