#logo > img {
  padding: 5px;
  height: 60px; }

#logo > img:hover {
  border: 1px dashed #346adf; }

#navbarCollapse {
  max-width: 1100px;
  margin: auto; }

.navbar {
  border-bottom: 2px solid #346adf;
  display: block;
  min-height: 80px;
  /* force nav to stay horizontal */ }
  .navbar .navbar-nav {
    flex-direction: row;
    /* align items vertically*/ }
    .navbar .navbar-nav .nav-item {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0px 5px;
      width: 80px; }
    .navbar .navbar-nav .nav-item-active,
    .navbar .navbar-nav .nav-item:hover {
      font-weight: bold;
      color: #346adf !important; }

@media (max-width: 700px) {
  .navbar-nav {
    justify-content: space-between;
    width: 90%; }
    .navbar-nav .nav-item {
      justify-content: left;
      width: 60px;
      margin-left: 15px; } }
@media (max-width: 500px) {
  #logo img {
    height: 50px; } }
@media (max-width: 400px) {
  #logo img {
    margin: 0 0 0 10px; }

  .navbar {
    padding: 0; }
    .navbar .navbar-nav {
      width: 100%;
      margin-left: -7px !important; }
      .navbar .navbar-nav .nav-item {
        margin-left: -2px;
        font-size: 14px; } }
.box {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.box::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.box:hover {
  -webkit-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02); }

.box:hover::after {
  opacity: 1; }

html {
  overflow-y: scroll; }

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-color: #346adf #e2eafb;
  background-image: url(https://chriscorchado.com/images/cclogobg.jpg);
  background-attachment: fixed; }

.preloadAnimation {
  text-align: center;
  font-size: 34px;
  color: #e2eafb;
  text-shadow: 1px 1px 2px #000000;
  margin-top: 100px; }

.preloadAnimation > div {
  width: 25px;
  height: 25px;
  background-color: #e2eafb;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  border: 1px solid #000000; }

.preloadAnimation .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.preloadAnimation .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.screen-reader {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

h1 {
  color: #346adf;
  font-size: 30px; }

.highlightSearchText {
  background-color: yellow; }

/* space for top navigation */
.container {
  margin: 0 auto;
  text-align: center;
  padding: 20px 5px 20px 5px;
  background-color: #fff;
  opacity: 0;
  border-radius: 0 0 15px 15px; }

#noRecords {
  font-size: 36px;
  max-width: 700px;
  border-radius: 5px;
  color: #346adf;
  background-color: #f8f9fa;
  padding: 15px;
  text-align: center;
  margin: auto;
  margin-top: 150px !important; }

a:link {
  text-decoration: none; }

.shadow {
  -webkit-box-shadow: 3px 3px 5px 3px #ccc;
  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 3px 3px 5px 3px #ccc;
  /* Firefox 3.5 - 3.6 */
  box-shadow: 3px 3px 5px 3px #ccc;
  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */ }

/* override the featherlight lightbox arrows */
.featherlight-next span,
.featherlight-previous span {
  font-size: 24px !important;
  width: 35px !important; }

.featherlight .featherlight-close-icon {
  background-color: #0078d7 !important;
  padding: 0 10px 0 3px !important;
  border: 2px solid black !important;
  color: white !important;
  font-weight: bold !important; }

#footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 3px;
  background-color: #f8f9fa;
  border-top: 2px solid #346adf; }

.site-version {
  text-align: center;
  padding: 10px 0; }
  .site-version div {
    display: inline-block;
    margin: 0 5px; }
    .site-version div img {
      width: 45px; }

@media (max-width: 700px) {
  h1 {
    font-size: 24px; } }
@media (max-width: 600px) {
  #footer {
    display: none; } }

/*# sourceMappingURL=chriscorchado.css.map */

.container > h1 {
  margin-top: 100px; }

.courses-container {
  display: grid;
  grid-gap: 5px;
  justify-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 0 0 40px 0;
  /* course title */ }
  .courses-container h2 {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7); }

.course-box {
  padding: 20px;
  margin: 0 0 20px 0;
  font-size: 12px;
  max-width: 260px; }
  .course-box h2 {
    height: 22px;
    justify-content: center;
    align-items: center; }
  .course-box img {
    max-width: 200px; }
  .course-box .course-wrapper {
    max-width: 190px;
    margin: auto;
    padding: 0 5px; }
  .course-box .course-date {
    float: left;
    margin-top: 4px; }
  .course-box .course-links {
    float: right;
    padding: 0 2px; }

@media (max-width: 1200px) {
  .courses-container .course-box {
    padding: 20px; }
    .courses-container .course-box img {
      max-width: 170px; }
  .courses-container h2 {
    font-size: 12px; } }
@media (max-width: 1000px) {
  .courses-container {
    grid-template-columns: 1fr 1fr 1fr; }
    .courses-container .course-box {
      padding: 15px; } }
@media (max-width: 800px) {
  .courses-container {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  #pagination {
    display: inline; }

  .container > h1 {
    margin-top: 135px; } }
@media (max-width: 600px) {
  .courses-container {
    grid-template-columns: 1fr; } }
@media (max-width: 500px) {
  .container .course-box {
    padding: 10px !important; }

  .container > h1 {
    margin-top: 100px; } }

/*# sourceMappingURL=course.css.map */

#logo > img {
  padding: 5px;
  height: 60px; }

#logo > img:hover {
  border: 1px dashed #346adf; }

#navbarCollapse {
  max-width: 1100px;
  margin: auto; }

.navbar {
  border-bottom: 2px solid #346adf;
  display: block;
  min-height: 80px;
  /* force nav to stay horizontal */ }
  .navbar .navbar-nav {
    flex-direction: row;
    /* align items vertically*/ }
    .navbar .navbar-nav .nav-item {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0px 5px;
      width: 80px; }
    .navbar .navbar-nav .nav-item-active,
    .navbar .navbar-nav .nav-item:hover {
      font-weight: bold;
      color: #346adf !important; }

@media (max-width: 700px) {
  .navbar-nav {
    justify-content: space-between;
    width: 90%; }
    .navbar-nav .nav-item {
      justify-content: left;
      width: 60px;
      margin-left: 15px; } }
@media (max-width: 500px) {
  #logo img {
    height: 50px; } }
@media (max-width: 400px) {
  #logo img {
    margin: 0 0 0 10px; }

  .navbar {
    padding: 0; }
    .navbar .navbar-nav {
      width: 100%;
      margin-left: -7px !important; }
      .navbar .navbar-nav .nav-item {
        margin-left: -2px;
        font-size: 14px; } }

/*# sourceMappingURL=navigation.css.map */

label {
  margin-bottom: 2px; }

.paginationYes {
  margin: -65px 0 0 0 !important; }

.paginationNo {
  margin: -53px 0 0 0 !important; }

#pagination {
  text-align: center;
  padding-left: 45px;
  margin-top: 5px;
  display: inline-block;
  /* next / prev text */ }
  #pagination a {
    color: #ffffff;
    text-shadow: 1px 1px #000; }
  #pagination .pager-navigation {
    background-color: #346adf;
    margin: 0px 3px;
    padding: 3px 10px;
    font-size: 12px; }
  #pagination .disabled {
    color: #3d3c3c;
    background-color: #cac9c9 !important; }

#recordCount {
  display: none; }

@media (max-width: 700px) {
  .paginationYes {
    margin: -2px 0 0 0 !important; }

  .paginationNo {
    margin: 0 0 0 0 !important; }

  #pagination {
    padding-left: 30px; } }
@media (max-width: 500px) {
  .paginationYes {
    margin: -5px 0 0 0 !important; }

  #pagination {
    padding-left: 10px; }
    #pagination .pager-navigation {
      margin: 0px 2px;
      padding: 3px 5px; } }
@media (max-width: 400px) {
  #searchSite {
    width: 85px !important; }

  #pagination {
    padding-left: 5px;
    margin-right: 5px; } }

/*# sourceMappingURL=pagination.css.map */

@charset "UTF-8";
#search-container {
  float: right;
  margin: -50px 0 0 0;
  padding: 0px;
  width: 330px;
  text-align: center;
  display: none;
  /* search textbox */
  /* remove IE “clear field or cross” X button from inputs field */
  /* search button */ }
  #search-container label {
    display: inline-block; }
  #search-container #searchCount {
    font-size: 12px;
    text-align: right;
    margin-right: 0px;
    display: inline-block;
    width: 85px; }
  #search-container #searchSite {
    width: 150px; }
  #search-container ::-ms-clear {
    display: none; }
  #search-container .searchBtn {
    padding: 2px;
    font-size: 12px;
    margin-left: 0px; }
  #search-container .searchBtn:hover {
    color: #fff;
    box-shadow: 0 0 #fff;
    background-color: #346adf; }

@media (max-width: 700px) {
  #search-container {
    float: none;
    width: 100%;
    padding-bottom: 2px; } }
@media (max-width: 500px) {
  #search-container #searchSite {
    width: 105px; }
  #search-container #searchBtn {
    margin-left: 5px; }
  #search-container #searchCount {
    width: 80px; } }
@media (max-width: 350px) {
  #search-container #searchSite {
    width: 95px;
    font-size: 12px; }
  #search-container #searchCount {
    width: 75px; } }
/* remove IE “clear field or cross” X button from inputs field */
::-ms-clear {
  display: none; }

/*# sourceMappingURL=search.css.map */

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:0}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}}

/*# sourceMappingURL=course.885db407858a06758bf1.css.map*/