/* style sheet for horizontal image scroll */
/* based on: https://stackoverflow.com/questions/5206140/horizontally-scrolling-list-of-images */

.md_images {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  width: auto;
  overflow-x: auto;
}

.md_item {
  padding: 10px;
  flex: 0 0 auto;
  width: 150px;
  height: 180px;
}

.md_recept_image {
  width: 150px;
  height: 150px;
  padding: 0px 10px 0px 10px;
}

.md_imagetitle_recept {
  font-size: 12px;
  text-align: center;
}

.md_imagetitle_theme {
  font-size: 15px;
  text-align: center;
}

.md_recepten {
  margin: 0px 10px 0px 10px;
  display: flex;
  flex-direction: row;
  /* justify-content: flex-start; */
  justify-content: center;
  align-items: center;     /* vertical center */
  flex-wrap: wrap;
}

.md_recept {
  margin: 1px 1px 0px 0px;
  border: 1px solid #000;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fff;
  line-height: 13px;
  width: 110px;
  height: 45px;
  cursor: pointer;
  /* border-radius: 30%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.md_pointer_theme {
  cursor: pointer;
}

.md_pointer_recept {
  cursor: pointer;
  width: 40px;
  height: 40px;
}

/* styling update form */
.md_hide_form {
  display: none;
}

/* styling update form */
.md_hide_div {
  display: none;
}