/*** DOJ Statements ***/

.doj-statements * {
  font-family: Arial, sans-serif !important;
}

.doj-statements {
  display: none; /* Hide except on homepage */
  width: 100%;
  /*max-width: 90vw;*/
  padding: 15px 10px 10px;
  border-bottom: 1px dotted #58595b;
}

.home .doj-statements {
  display: block; /* Show on homepage */
}

.doj-statements .doj-container {
  color: #000;
  width: 100%;
  min-width: 100%;
}

.doj-statements .doj-container h5 {
  text-align: left;
  margin: 0 5px 10px;
  line-height: 1.4;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
}

.doj-statements .doj-links li {
  padding: 0.5rem 0;
  font-size: 11px;
  padding-bottom: 4px;
}

.doj-statements .doj-links-container {
  width: 100%;
  margin: 0 5%;
}

.doj-statements .doj-links-container .doj-links {
  width: 100%;
  padding: 0 1.5em;
  margin: 0;
}

@media (min-width: 920px){
  .doj-statements .doj-links-container .doj-links {
    float: left;
    width: 50%;
  }
}

.doj-statements .doj-container h5 a,
.doj-statements .doj-links li a {
  display: inline;
  text-decoration: underline;
  color: #333;
  font-weight: normal;
}

.doj-statements .doj-container .text-italic {
  font-style: italic;
}

/*** DOJ MODAL ***/
body.modal-open {
  overflow: hidden !important;
}

#doj-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000004;
  background: rgba(0, 0, 0, 0.6);
}

#doj-modal-overlay.modal-open {
  display: block;
}

#doj-modal {
  display: none;
  width: 92%;
  height: auto;
  min-height: 90%;
  max-width: 1100px;
  max-height: 90%;
  position: fixed;
  z-index: 10000005;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  font-size: 14px;
}

@media (min-width: 992px) {
  #doj-modal {
    width: 85%;
    min-height: 80%
  }
}

@media (min-width: 1200px) {
  #doj-modal {
    width: 80%;
  }
}

#doj-modal.modal-open {
  display: block;
}

#doj-modal .modal-close {
  float: right;
  position: relative;
  right: 20px;
  top: 15px;
  z-index: 10000004;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #000;
  font-family: Arial, sans-serif;
  line-height: 0;
  padding-top: 20px;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  font-size: 50px;
}

#doj-modal .modal-close:hover,
#doj-modal .modal-close:focus {
  color: #333;
}

#doj-modal .modal-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 4rem 3rem 6rem;
  color: #000 !important;
}

@media (min-width: 920px) {
  #doj-modal .modal-body {
    padding: 4rem 5rem 6rem;
  }
}

#doj-modal .modal-content {
  width: 100%;
  font-size: 14px;
}

#doj-modal .modal-content h5 {
  font-size: 14px;
}

#doj-modal .modal-content p {
  margin-top: 0;
}

#doj-modal .modal-content h5,
#doj-modal .modal-content p,
#doj-modal .modal-content li {
  line-height: 1.5;
}

.tablet-doj-statements {
  display: none;
}

.mobile-doj-statements {
  display: block;
  margin: 10px auto;
}

.mobile-doj-statements .doj-statements {
  border-bottom: none;
}

@media (min-width: 920px) {
  .tablet-doj-statements {
    display: block;
  }

  .mobile-doj-statements {
    display: none;
  }
}