@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);



h1{
	font-weight:bold;
}


a:link { 
  text-decoration: none; 
	} 

a:hover { 
  font-weight:bold;
	color:#5da5d4;
	} 


div.table-title {
   display: block;
  margin: auto;
  max-width: 600px;
  padding:5px;
	  width: 100%;

}

.table-title h3 {
   text-align: center;
   font-size: 30px;
   font-weight: 400;
   font-style:normal;
   font-family: "Roboto", helvetica, arial, sans-serif;
   text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
   text-transform:uppercase;

}



.small {
	font-family: "Roboto", helvetica, arial, sans-serif;
font-size: .8em;
	text-align: center;
	
}


/*** Table Styles **/

.table-fill {
  background: white;
  border-radius:3px;
  border-collapse: collapse;
  height: 320px;
  margin: auto;
  max-width: 600px;
  padding:5px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}
 
th {
  color:#fff;
  background:#0e4c74;
  border-bottom:4px solid #9ea7af;
  border-right: 1px solid #343a45;
  font-size:20px;
  font-weight: 200;
  padding:20px;
  text-align:left;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align:middle;
}

th:first-child {
  border-top-left-radius:3px;
}
 
th:last-child {
  border-top-right-radius:3px;
  border-right:none;
}
  
tr {
  border-top: 1px solid #C1C3D1;
  border-bottom-: 1px solid #C1C3D1;
  color:#666B85;
  font-size:16px;
  font-weight:normal;
  text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
 
tr:hover td {
  background:#177ec1;
  color:#FFFFFF;
  border-top: 1px solid #22262e;
}
 
tr:first-child {
  border-top:none;
}

tr:last-child {
  border-bottom:none;
}
 
tr:nth-child(odd) td {
  background:#EBEBEB;
}
 
tr:nth-child(odd):hover td {
  background:#177ec1;
}

tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}
 
tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}
 
td {
  background:#FFFFFF;
  padding:12px;
  text-align:left;
  vertical-align:middle;
  font-weight:300;
  font-size:13px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #C1C3D1;
}

td:last-child {
  border-right: 0px;
}

th.text-left {
  text-align: left;
}

th.text-center {
  text-align: center;
}

th.text-right {
  text-align: right;
}

td.text-left {
  text-align: left;
}

td.text-center {
  text-align: center;
}

td.text-right {
  text-align: right;
}




.training-list p {
	margin: 0;
	line-height: 1.6;
}

.training-list ol {
	list-style: none;
	counter-reset: list;
	padding: 0 1rem;
}

.training-list li {
	--stop: calc(100% / var(--length) * var(--i));
	--l: 50%;
	--l2: 50%;
	--h: calc((var(--i) - 1000) * (100 / var(--length)));
	--c1: hsl(var(--h), 70%, var(--l));
	--c2: hsl(var(--h), 20%, var(--l2));
	
	position: relative;
	counter-increment: list;
	max-width: 45rem;
	margin: 2rem auto;
	padding: 2rem 1rem 1rem;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.8);
	border-radius: 0.25rem;
	overflow: hidden;
	background-color: white;
}

.training-list li::before {
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--c1) var(--stop), var(--c2) var(--stop));
}

.training-list h3 {
	display: flex;
	align-items: baseline;
	margin: 0 0 1rem;
	color: rgb(0 0 0);
}

.training-list h3::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 3rem;
	height: 3rem;
	content: counter(list);
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--c1);
	color: white;
}

@media (min-width: 40em) {
	.training-list li {
		margin: 3rem auto;
		padding: 3rem 2rem 2rem;
	}
	
	.training-list h3 {
		font-size: 2.25rem;
		margin: 0 0 2rem;
	}
	
	.training-list h3::before {
		margin-right: 1.5rem;
	}
}

$color-dark: #222;
$color-body: #ccc;
$color-background: white;

.sidebar {
  
}
.main {
  width: 60%;
  height: 100%;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
}

.sidebar {
  border: 0px solid blue;
  background-color: $color-background;
  border-radius: 5px;
  color: $color-dark;
  padding: 15px;
	width: 30%;
  height: 50%; // experiment with this value, try changing to 110vh
  min-height: 200px;
  overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 20%;

}


.sidebar2 {
  border: 0px solid blue;
  background-color: $color-background;
  border-radius: 5px;
  color: $color-dark;
  padding: 15px;
	width: 20%;
  height: 70%; // experiment with this value, try changing to 110vh
  min-height: 200px;
  overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 70%;
	left: 20%;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.8);
}


.wrapper {
  display: flex;
  justify-content: space-between;
}
