/* Overlay */
.disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Modal Box */
.disclaimer-box {
  background: #fff;
  width: 85%;
  max-width: 1100px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0px 20px 40px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  font-family: Georgia, serif;
}
.sub-title{
    font-size: 18px !important;
    margin-bottom: 0;
}
/* Title */
.title {
  text-align: center;
  color: #1f5ea8;
  margin-bottom: 0px;
  font-weight: 700;
  border-bottom: 1px solid grey;
  line-height: 60px;
}

/* Headings */
.disclaimer-box h3 {
      font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}
.disclaimer-box p{
       margin-bottom: 0px;
    text-align: justify;
    margin-left: 10px;
    margin-right: 10px;
    color: #6f6f6f !important;
    font-size: 15px;
}
/* Paragraphs */
.disclaimer-box p {
  line-height: 1.7;
  color: #333;
  font-size: 15px;
}
.title{
    font-size: 20px;
}
/* Button */
#agreeBtn {
  display: block;
  margin: 25px auto 0;
  background: #1f5ea8;
  color: #fff;
  border: none;
  padding: 10px 35px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

#agreeBtn:hover {
  background: #144a86;
}
