
body{
  overflow-y: hidden;
}

*{

  font-family: Arial !important;

}

.inventory{

  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.3);
  z-index: 3;
  user-select: none;

}

.inventory.closed, .overlay.closed, .settings.closed{

  display: none;

}

.overlay{

  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 2;

}
.itemDiv{

  border: 2px solid #6666bb;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #9999ee;

}
.itemsParent{

  max-width: 80vw;
  white-space: nowrap;
  overflow-x: auto;
  display: inline-block;

}
.buttonsParent{

  display: inline-block;
  width: calc(20vw - 10px);
  padding: 5px;
  min-width: 200px;
  overflow: hidden;

}
.selected{

  border: 2px solid yellow !important;

}
.totalUpperParent{

  max-width: 100vw;
  height: 150px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;

}
.recipeParent{

  height:100px;
  display: inline-block;
  margin-left: 10px;
  outline: 1px solid black;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.25s;

}
.recipeParent:hover{

  background-color: rgba(100, 200, 100, 0.5);

}
.itemsGiven, .arrow, .itemsNeeded{

  height: 100px;
  display: inline-block;
  border-right: 1px solid black;
  float:left;
  overflow: auto;

}
.arrow{

  width: 100px;

}
.itemsGiven{

  border-right: none;

}
.recipeLabel{

  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 1px solid gray;

}
.recipeLabelName{

  font-weight: bold;
  display: inline-block;

}
.recipeLabelImage{

  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  vertical-align: middle;

}
.arrow{

  background-image: url(https://www.searchpng.com/wp-content/uploads/2019/02/Arrow-Icon-PNG.png);
  background-size: contain;

}
.totalLowerParent{

  padding: 10px;

}
.mainButton{

  padding: 10px;
  border: 1px solid black;
  font-family: Arial;
  background-color: white;
  cursor: pointer;
  margin-left: 10px;

}
.nameAmount{

  font-family: Arial;

}
.settingsMod{

  padding: 10px;
  display: inline-block;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);

}
.settingsValue{

  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;

}
.settingsLabel{

  padding-right: 10px;
  padding-left: 10px;
  font-weight: bold;
  display: inline-block;

}
.settingsProperty{

  background-color: rgba(255, 255, 255, 0.2);

}
.settingsWrapper{

  padding: 5px;

}

.settings{

  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.3);
  z-index: 3;
  user-select: none;

}
.clickableImage{

  width: 70px;
  height: 70px;
  border: 2px solid black;
  cursor: pointer;
  background-size: contain;
  margin-left: 10px;
  display: inline-block;

}
.buttonsWrapper{

  left: 10px;
  bottom: 10px;
  position: absolute;

}
