
.thediv {
  width: auto;
  color: #fff;
  display: flex;
  background-position: center bottom;
  background-size: cover;
}
  
.header-content {
  padding: 5%;
  margin: 10%;
  width: 80%;
	background-color: rgba(25, 25, 25, 0.850);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-content p {
  margin-top: 20px;
}

.tutorial-main-content {
	margin: 0 20px;
}

/* ----------------------------------------------------------------- */
.requirements {
  display: flex;
  justify-content: space-between;
}

.requirements div {
  display: flex;
  flex-direction: column;
  margin: 20px;
  width: 46%;
}

.requirements div ul {
  list-style: none;
  line-height: 30px;
  margin-top: 20px;
}
.requirements div ul li {
	border-bottom: solid 1px;
	border-color: rgb(119, 119, 119);
	align-self: flex-start; /* Required to stop the line items from stretching */
  display: flex;
  justify-content: space-between;
}

.quantity {
  margin-left: 20px;
  font-weight: 700;
}
/* ----------------------------------------------------------------*/
/* Intro */
.intro {
  margin-top: 20px;
}
/* ----------------------------------------------------------------*/
/* Instructions */
.instructions {
  margin-top: 10px;
  list-style-position: inside;
}

.instructions-list {
	list-style: none;
	counter-reset: instruction-step-counter;	
}

.instructions-step {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  counter-increment: instruction-step-counter;
}

.instructions-text {
  flex: 5;
  font-weight: 700;
}

.instructions-image {
  flex: 2;
  margin-top: 8px;
  margin-left: 15px;
}

.instructions-image img {
  width: 100%;
  min-width: 250px;
}

.instructions-main::before {
	content: counter(instruction-step-counter) ". ";
	font-weight: bold;
  }  

.instructions-sub {
  margin-top: 10px;
  font-weight: 400;
}
/* ----------------------------------------------------------------*/
/* Summary */
.summary {
	margin-top: 40px;
	margin-bottom: 40px;
}
/* ----------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .requirements div {
    width: 100%;
  }
  .requirements {
    flex-wrap: wrap;
  }  
}

@media only screen and (max-width: 650px) {

  .instructions-step {
    flex-direction: column-reverse;
  }

  .instructions-image {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

