/*-------------------------------------------------------*/
/* Styling for the content of the tent content container */
/*-------------------------------------------------------*/

.tent-padding-btm {
  padding-bottom: 2rem;
}

/** Styles the container that holds the logo - allows for box-shadow around the logo */
.tent-logo-container {
  height: 4.2rem;
  width: 4.2rem;
  margin: 0 auto;
  display: block;
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
  padding-top: 0.7rem;
  padding-left: 0.6rem;
  text-align: center;
  background-color: white;
  border: 3.5px solid #2d2d2d;
  border-radius: 50%;
  box-shadow: 0rem 0rem 1px 0.08px #2d2d2d;
}

/** Styles the logo that acts as a header for the content-page */
.tent-logo {
  color: black;
  font-size: 2.25rem;
}

/** Styles the info text greeting the user */
.tent-logo {
 width: 23rem;
 margin: 0 auto;
 margin-bottom: 1.2rem;
 display: block;
 font-size: 2rem;
 text-align: justify;
 text-justify: inter-word;
}

/** Styles the p tag that holds the description of the given tent */
.content p:nth-of-type(1) {
  width: 21rem;
  padding: 1rem;
  margin: 0 auto;
  display: block;
  outline: none;
  border: none;
  background-color: rgba(255,255,255,0);
  text-align: justify;
  text-justify: inter-word;
  font-size: 1rem;
}

/** Styles the container for the label and the checkbox */
.label-check-container {
  position: relative;
}

/** Styles the label associated with the amount of people it holds */
.people-amount {
  font-size: 1.2rem;
  padding-left: 0.5rem;
  background-color: rgba(255,255,255,0);
  display: block;
}

/** Styles the label associated with the tent-size in sqr. meters */
.tent-size {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 0.5rem;
  background-color: rgba(255,255,255,0);
  display: block;
  margin-right: 0.5rem;
}