
.recipecard-container {
    background: #ededed;
    box-shadow: 0px 0px 200px #999;
    font-family: 'dejavu_sanscondensed', sans-serif;
    width: 65%;
    height: 385px;
    margin: 5% auto;
}

.recipecard-title {
    font-family: 'dejavu_sanscondensed', sans-serif;
    font-weight: 700;
    font-size: 25px;
    background: #455560;
    padding: 15px 20px;
    color: #fff;
    border-radius: 2px 2px 0 0;
}

.recipedetails {
    background: #fff;
    border-left: solid 1px #ededed;
    border-right: solid 1px #ededed;
    font-size: 16px;
    font-family: 'dejavu_sanscondensed', sans-serif;
    padding: 15px 20px;
}

.detail-value {
  color: #455560;
}

.recipecard-items {
    background: #ededed;
    font-family: 'dejavu_sanscondensed', sans-serif;
    padding: 20px
}

.card-item-title {
  font-size: 18px;
  font-weight: 700;
}

ul.checkmark li:before {
    color: #455560;
    content: "\2713\0020";
    font-weight: 600;
    /*margin-left: -38px;*/
    margin-left: 0px;
    margin-right: 10px;
}

.checkmark li {
  list-style-type: none;
}

li {
  margin-bottom: 3px;
}

.recipemethod {
  background: #fff;
  border-left: solid 1px #ededed;
  border-right: solid 1px #ededed;
  border-bottom: solid 1px #ededed;
  padding: 20px;
}

.recipemethod ol li {
    list-style-position: inside;
    margin-bottom: 10px;
    /*margin-left: -38px;*/
    margin-left: 0px;
    list-style-type: none;
}

.recipe-image {
  /*background: url('https://images.unsplash.com/photo-1497534547324-0ebb3f052e88?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1290&q=80');*/
  overflow: hidden;
  height: 450px;
  background-size: cover;
}

ol {
  counter-reset: item;
}

ol > li {
  counter-increment: item;
}

ol > li::before {
  font-weight: bold;
  content: counter(item) ".";
  margin-right: 8px;
}
.recipeprint {
    text-decoration: none;
    background-color: #0c5eb6;
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
}
.recipeprint:hover {
    /*box-shadow: 2px 4px 12px rgba(10, 88, 64, 0.35);*/
    background-color:#04b031;
    color: #fff;
}