.form-control-dark, .form-control-dark[readonly] {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

a {
  text-decoration: none;
}

.ingredient-filter-btn, .page-link {
    cursor: pointer;
}

.recipe-link:visited {
  color: #5959f7;
}

.recipe-ingredient {
  color: #212529;
}

.recipe-ingredient:hover {
  color: #212529;
}

.recipe-domain {
  color: #999999;
}

.recipe-domain:hover {
  color: #999999;
}

.recipe-picture {
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
}

.recipe-picture img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}