#expandCourseWork{
  display: inline-block;
}

.picture_shadow_box {
  box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.loader {
  border: 9px solid #f3f3f3; /* Light grey */
  border-top: 9px solid #18bc9c; /* Blue */
  border-radius: 50%;
  width: 85px;
  height: 85px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}