/*Index*/
.recipe-card {
  background-color: #dbd5c2;/*#4c4336;*/
  border-radius: 4px;
  height: 300px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 500ms;
  box-shadow: 1px 1px 2px #333;
}
.recipe-card a {
  color: #fff !important;
}
.recipe-card a:hover {
  text-decoration: none;
}
.recipe-card:hover {
  box-shadow: 5px 6px 10px #333;
}
.recipe-card h3 {
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 5px;
    margin: 0 0 0 0;
    /*
  width: 100%;
  text-align: center;
  font-size: 20px;
  padding: 18px 5px;
  margin: 0;
    */
}
.recipe-card .recipe-thumb {
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.recipe-card .shadow-box {
    background-color: rgba(33,33,33,0.75);
    text-align: center;
    color: #ddd;
    height: 25px;
    line-height: .95em;
    width: 100%;
    margin: 0;
    padding: 5px;
    position: absolute;
    bottom: 0px;
    transition: height 500ms;
}
.recipe-card:hover .shadow-box {
  height: 60px;
}
.recipe-card .shadow-box p {
  line-height: 1.1em;
}
.recipe-card .delete-recipe {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
}
.recipe-card:hover .delete-recipe {
  display: block;
}

.tag-list li {
  padding: 0;
  margin: 7px 0;
}
.tag-list li a {
  padding: 5px 10px;
  margin: 2px 3px;
  background: #796B55;
  border: 1px solid #665a48;
  border-radius: 4px;
  transition: background 300ms, box-shadow 300ms;
  color: #ddd;
  text-decoration: none;
  box-shadow: 1px 1px 2px #333;
}
.tag-list li a:hover {
  background: #6b5e4c;
  box-shadow: 2px 3px 5px #333;
}
.tag-list li a.active {
  background: #3D8131;
  box-shadow: 2px 3px 5px #333;
}

/*show*/
.recipe-img {
  display: block;
}
.recipe-img a {
  height: 420px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
}
.recipe-img p {
  padding: 15px 0;
}

.fb-likes img {
  position: relative;
  bottom: 3px;
}
.fb-likes span {
  background-color: #fff;
  border-radius: 3px;
  padding: 3px 10px;
}
.arrow-left {
  display: inline-block;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;

	border-right:5px solid #fff;
}

.ingredients {
    background: #f7f7f7; /* #f2e7da;*/
    padding: 1px 15px;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 8%);
    transition: 0.3s;
}
.ingredients li {
  border-top: 1px solid #d8c5ad;
  padding: 8px 0;
}

/*QR Code*/
.qr {
  margin: 10px 0;
}
