/* Global themes */
@import url(corporate_colors.css);

.overlay-box-transparent-datapolicy {
  /*Background box for the AI Summary and the header*/ 
  position: relative;
  margin-top: 20px;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%; 
  height: auto; 
  background-color: none;
  align-items: center;
  padding-bottom: 20px;
  gap: 15px;
}

.overlay-box-white-datapolicy {
  /*Background box for the actual AI Summary*/
  margin: 0px;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
  justify-content: space-between;
  width: 75%; 
  height: auto; 
  background-color: white;
  align-items: center;
}

.datapolicy-headers {
  font-size: 24px;
  font-weight: bold;
  padding-left: 20px;
  padding-top: 30px;
  color: #023d6b;
}

/*For the first subheader as 1., 2., etc.*/
.datapolicy-subheaders {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  padding-top: 20px;
  color: #adbde3;
}

/*For the second subheader as a), b), etc.*/
.datapolicy-subsubheaders {
  font-size: 18px;
  font-weight: bold;
  padding-left: 60px;
  padding-top: 20px;
  color: black;
}

/*Text under the header and first sub header*/
.datapolicy-text {
  font-size: 16px;
  padding-left: 20px;
  padding-top: 10px;
  text-align: justify;
  text-align-last: none;
}

/*Text under the second sub header*/
.datapolicy-text2 {
  font-size: 16px;
  padding-left: 60px;
  padding-top: 10px;
  text-align: justify;
  text-align-last: none;
}