#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; }

.company {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  align-items: stretch;
  justify-content: space-evenly;
  margin-bottom: 70px; }

/* individual company container */
.company-container {
  border: 1px solid #d1d0d0;
  padding: 0 0 20px 0;
  margin: 10px auto;
  max-width: 350px; }

.company-name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: rgba(0, 0, 0, 0.7);
  padding: 10px 0 10px 0;
  background-color: #e2eafb; }

.company-job-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 5px;
  font-size: 14px;
  background-color: #f8f4f4; }

/* body text - the bullet items */
.body-container {
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
  font-size: 14px;
  padding-right: 20px; }

.company-screenshot {
  max-width: 320px;
  margin-bottom: 50px; }

.employment-dates {
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 12px;
  padding: 10px;
  background-color: #e2eafb; }

.employment-type {
  font-size: 10px;
  font-style: italic; }

@media (max-width: 1200px) {
  .container {
    grid-template-columns: 45% 45%; }

  .company-container {
    max-width: 455px; }

  .company-screenshot {
    max-width: 300px; } }
@media (max-width: 900px) {
  .company {
    grid-template-columns: 90%; } }
@media (max-width: 700px) {
  .container > h1 {
    margin-top: 140px; }

  .company p {
    padding: 5px 20px; } }
@media (max-width: 500px) {
  .company-screenshot {
    max-width: 250px; } }
@media (max-width: 400px) {
  .container > h1 {
    margin-top: 100px; }

  .container .company {
    padding-top: 10px; }

  .company-screenshot {
    max-width: 200px; } }

/*# sourceMappingURL=company.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 */


/*# sourceMappingURL=history.065303145ea668c38dd5.css.map*/