@charset "UTF-8";
/* This CSS Document is for the formatting of the policies documents*/

.policy-document {
  background: #ffffff;
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.0;
}

.policy-document h2 {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 45px 0 20px;
}

.policy-document h2:first-child {
  margin-top: 0;
}

.clause {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 25px;
  margin-bottom: 0px;
  line-height: 1.0;
}

.clause-number {
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 1.0;
}

.clause p {
  margin: 0;
  line-height: 1.0;
}

.definition-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    column-gap: 20px;
    margin: 15px 0;
}

.definition-term {
    font-weight: 700;
    white-space: nowrap;
}


.definition-text {
  line-height: 1.6;
}

/* Force compact spacing inside policy clauses */
.policy-document .clause {
  margin: 0 !important;
  padding: 5px !important;
  row-gap: 0 !important;
  line-height: 1.2 !important;
}

.policy-document .clause p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.policy-document .clause-number {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

/* Sub-clauses such as 6.1.1 */
.policy-document .sub-clause {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 25px;

    /* Indent the entire row */
    margin-left: 110px;

	margin-top: 5px !important;
	margin-bottom: 5px !important;
    padding: 0 !important;
}

.policy-document .sub-clause-number {
    font-weight: 500;
    line-height: 1.2 !important;
}

.policy-document .sub-clause p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}


/* --------------- For mobile phones ------------- */

@media (max-width: 768px) {
  .policy-document {
    padding: 25px;
  }

  .policy-document h2,
  .clause,
  .definition-row {
    grid-template-columns: 1fr;
  }

  .policy-document h2 span,
  .clause-number {
    margin-bottom: 5px;
  }

  .definition-term {
    margin-bottom: 5px;
  }
}
/* --------------- End of For mobile phones ------------- */
