@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
#html {
    opacity: 0;
    height: 100%;
}
::selection {
  color: #FFFFFF;
  background: #fc6b03;
}
::-moz-selection {
  color: #FFFFFF;
  background: #fc6b03;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #FC6B03;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D65900;
}
::-webkit-scrollbar-thumb:active {
  background: #AD4800;
}
a {
  color: #fc6b03;
}
a:hover {
  color: #fc6b03;
  font-weight: normal;
}
.highlightOnClick:active {
  color: #FFFFFF;
  background-color: #fc6b03;
}
.card-title {
  color: #fc6b03;
  font-weight: bold;
}
.navWhiteOut {
  animation: navWhiteOut;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}
.navTransparent {
  animation: navWhiteOut;
  animation-duration: .5s;
  animation-direction: reverse;
  animation-fill-mode: forwards;
}
.transparentBg {
  background-color: transparent;
}
.titleContainer {
  display: grid;
}
.orangeText {
  color: #fc6b03 !important;
}
.code {
    background-color: #cccccc;
    font-family: monospace, monospace;
    padding: 5px;
    border-radius: 8px;
}
.code:before {
    content: "$ ";
}
.downloadButton {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.scrollDown {
  display: block;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0; right: 0;
  bottom: 1rem;
  height: 20px;
  animation: scrollCue 1s 1s ease-in-out forwards;
  animation-iteration-count: infinite;
  opacity: 0;
}
.postContent {
  margin-top: 6rem;
  padding-right: 300px;
  text-align: left;
}
.postParagraph {
  padding-bottom: 1rem;
}
.ingredientsList {
  margin-top: .5rem;
}
.infoBox {
  padding: 1rem;
  border-style: solid;
  border-color: #fc6b03;
}
.underButtonText {
    margin-top: -1rem;
}
.content {
  position: absolute;
  background-color: white;
  width: 100%;
  top: 100%;
  left: 0;
  vertical-align: bottom;
  padding-bottom: 2em;
}
.navigationPaneContent {
  padding: 25px;
}
.navigationPaneHeader {
  padding-bottom: 10px;
  font-weight: bold;
}
.loaded {
    opacity: 1;
}
.btn {
  border-radius: 0;
}
.btn-primary {
  color: #ffffff !important;
  background-color: #fc6b03;
  border-color: #fc6b03;
}
.btn-primary:hover {
  background-color: #d45800;
  border-color: #d45800;
}
.btn-primary:active {
  background-color: #d45800 !important;
  border-color: #d45800 !important;
  box-shadow: 0 0 0 .2rem rgba(255,145,66,.5) !important;
}
.btn-primary:focus {
  background-color: #d45800;
  border-color: #d45800;
  box-shadow: 0 0 0 .2rem rgba(255,145,66,.5);
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #fc6b03;
}
.form-control {
  border-radius: 0;
}
.form-control:focus {
  border-color: #d45800;
  box-shadow: 0 0 0 .2rem rgba(255,145,66,.5);
}
.navbar {
  z-index: 1000;
}
.bg-white {
  background-color: rgba(255,255,255,1);
}
.card {
  width: 20rem;
  margin-top: .5em;
  margin-bottom: .5em;
}
.card-img-top {
  height: 10em;
  overflow: hidden;
  object-fit: cover;
}
.landingSlogan {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  color: #FFFFFF;
  z-index: 0;
}
.navigationPane {
    position: fixed;
    width: 250px;
    top: 70px;
    bottom: 25px;
    right: 0;
    margin-top: 2rem;
    margin-right: 75px;
    border-style: solid;
    overflow-y: auto;
    overflow-x: hidden;
}
.navigationPaneL2 {
  margin-left: 2em;
}
.navigationPaneLinkL1 {
    font-weight: bold;
}
.navigationPaneLinkL2 {
    font-weight: normal;
}
.navigationPaneLinkL1:hover {
    font-weight: bold;
}
.navigationPaneLinkL1:active {
    color: #FFFFFF;
    background-color: #fc6b03;
}
.navigationPaneLinkL2:active {
    color: #FFFFFF;
    background-color: #000000;
}
.postHeading {
  color: #fc6b03;
  margin-bottom: 2rem;
  text-align: center;
}
.img-zoom {
  cursor: -moz-zoom-in; 
  cursor: -webkit-zoom-in; 
  cursor: zoom-in;
}

/*Media Queries*/
@media only screen and (max-width: 900px) {
  .navigationPane {
    position: static;
    width: 100%;
    margin-bottom: 25px;
    max-height: 80vh;
    overflow-y: scroll;
  }
  .postContent {
    padding-right: 0;
  }
}