.modal-header {
  display: block;
}
.modal-header .btn-close {
  position: absolute;
  right: 10;
  top: 10;
}
.modal-header {
  position: relative;
	text-align: center;
	background-color: rgba(240,240,240,1.00);
}
#privacyPolicy h3 {
	margin-top: 3px;
	color: #000;
	padding-bottom: 0px;
	font-style: normal;
  font-weight: normal;
	font-size: 1.1rem;
}
#privacyPolicy h3#content-title {
	font-size: 1.25rem;
	color: rgb(16,119,65);
	font-weight: normal;
  text-align: center;
}
.modal-header h3#modalLabel {
	font-size: 1.25rem;
	text-decoration: underline;
	color: rgb(16,119,65);
	font-weight: bold;
}
#privacyPolicyContent {
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 15px;
	line-height: normal;
	font-size: .95rem;
}
#privacyPolicyContent p {
	line-height: 1.2rem;
}
#privacyPolicyContent p:last-child {
	margin-bottom: 0px;
}
#privacyPolicyContent h2 {
  font-family: 'Open Sans', Arial, Verdana, Geneva, sans-serif;
	text-align: left;
	text-decoration: underline;
	margin-top: 9px;
	margin-bottom: 4px;
	font-size: 1rem;
	color: #D29B17;
	font-weight: normal;
}
#privacyPolicyContent a {text-decoration: none;}
#privacyPolicyContent a:hover {text-decoration: underline;}
#privacyPolicyContent h4 {
  font-style: italic;
  font-size: 1.5rem;
  font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
  font-weight: 400;
  text-align: center;
  color: #2C7A07;
  margin-top: 30px;
}

/* scroll icon */
#scrollButton {
  display: block;
  background-color: #fea700;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 1000;
  opacity: .7;
  padding-top: 0px;
}
  @media screen and (min-width:768px) {
    #scrollButton {
      bottom: 25px;
    }
  }
#scrollButton svg {
  fill: #FFF;
  width: 30px;
}
#scrollButton {-webkit-transform: scale(0);transform: scale(0);transition: transform 1s;}
#scrollButton.visible {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: transform 1s;
}
#scrollButton:hover {
  opacity: 1;
}