.device {
  display: flex;
  align-items: flex-end;
  background-color: #8F8F8F;
}

.cell-container {
  position: relative;
  background-color: white;
}

.floor-row {
  display: flex;
}

.goods-cell {
  width: 100px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-image: url('../img/device/goods-cell.svg');
}

.goods-cell.empty {
  background-color: #d9d9d9;
}

.goods-cell.on {
  background-color: #5cb85c;
}

.goods-cell .position {
  font-size: 12px;
  position: absolute;
  bottom: 6px;
  color: black;
}

.goods-cell .value {
  font-size: 20px;
  padding-bottom: 10px;
}

.lift {
  position: absolute;
  left: 0;
  top: 180px;
  width: 100px;
  height: 24px;
  background-image: url('../img/device/lift.svg');
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}

.heater-block {
  width: 300px;
  height: 100%;
  min-height: 541px;
  position: relative;
  background-color: #d9d9d9;
}

.door {
  position: absolute;
  left: 0;
  bottom: 90px;
  width: 20px;
  height: 70px;
  writing-mode: vertical-rl;
  text-align: center;
  border: 1px solid #777777;
  transition: all 0.3s linear;
  background-color: #777777;
  color: wheat;
}

.door.open {
  bottom: 160px;
  background-color: #5cb85c;
  color: white;
}

.microwave {
  position: absolute;
  bottom: 160px;
  left: 50px;
  width: 200px;
  height: 120px;
  background-color: #a5a4a4;
}

.microwave .title {
  text-align: center;
  color: white;
  font-size: 20px;
}

.microwave .magnetron {
  width: 20px;
  height: 90px;
  writing-mode: vertical-rl;
  font-size: 14px;
  background-color: #777777;
  color: wheat;
  text-align: center;
}

.microwave .magnetron.on {
  background-color: #5cb85c;
  color: white;
}

.microwave .magnetron-1 {
  position: absolute;
  top: 30px;
  left: 49px;
}

.microwave .magnetron-2 {
  position: absolute;
  top: 30px;
  left: 90px;
}

.microwave .magnetron-3 {
  position: absolute;
  top: 30px;
  left: 131px;
}

.box {
  position: absolute;
  left: 75px;
  bottom: 80px;
  width: 150px;
  height: 80px;
  background-color: white;
}

.dispense-door {
  position: absolute;
  left: 50px;
  bottom: 80px;
  width: 200px;
  height: 80px;
  background-color: #777777;
  transition: all 0.3s linear;
  opacity: 0.8;
  color: wheat;
}

.dispense-door.open {
  bottom: 0px;
  background-color: #5cb85c;
  color: white;
}

.dispense-door .title-up {
  position: absolute;
  top: 11px;
  left: 5px;
  writing-mode: vertical-rl;
  font-size: 14px;
}

.dispense-door .title-bottom {
  position: absolute;
  top: 24px;
  left: 175px;
  writing-mode: vertical-rl;
  font-size: 14px;
}

.take-goods {
  position: absolute;
  left: 90px;
  bottom: 25px;
  width: 120px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #777777;
  color: wheat;
}

.take-goods.on {
  background-color: #3f923f;
  color: white;
}

.background-top {
  position: absolute;
  left: 0;
  top: 0px;
  width: 300px;
  height: 20px;
  background-image: url('../img/device/background-top.svg');
}

.background-middle {
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 160px;
  width: 300px;
  background-image: url('../img/device/background-middle.svg');
}

.background-bottom {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 300px;
  height: 160px;
  background-image: url('../img/device/background-bottom.svg');
}

.iframe2 {
  position: absolute;
  top: -86px;
  right: -93px;
  border: none;
  width: 486px;
  height: 454px;
  transform: scale(0.53);
}
