/* 
 * Brokerage Report Lead Generation Modal Stylesheet
 * 
 * Site uri: https://www.zacks.com/             
 * @file: Core Stylesheet
 *
 * @author: Subhranil Dutta (subhranild@zacksindia.com)
 *  
 * @copyright Zacks Investment Research 
 * @license Internal Use only. No License granted.
 *
 */
body.modal-open {
  overflow: hidden;
  height: 100vh;
}

/* Modal Wrapper */
.lead-gen-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lead-gen-modal.active {
  opacity: 1;
  visibility: visible;
}
.lead-gen-modal.active .modal-dialog {
  transform: translate(0, -90%);
}

/* Modal Dialog */
.modal-dialog {
  position: relative;
  width: 90%;
  max-width: 100%;
  max-height: 95vh;
  background: #eaeaea;
  border: 1px solid #1a3651;
  border-radius: 16px 16px;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

/* Modal Content */
.modal-content {
  max-height: 95vh;
}

/* Modal Header */
.modal-header {
  position: relative;
  padding: 1rem 1.25rem;
}

.modal-title {
  margin: 0;
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.modal-title span {
  color: #007f06;
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: 9px;
  right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid #595959;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}
.modal-close-btn:hover, .modal-close-btn:focus-visible {
  background: #000;
  color: #fff;
}

/* Modal Body */
.modal-body {
  padding: 0 1.25rem 1.25rem;
}

/* Modal Actions*/
.modal-actions {
  text-align: center;
}

/* Buttons */
.button {
  min-width: 100px;
  margin: 0.25rem 0;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.button:hover, .button:focus-visible {
  opacity: 0.7;
}
.button.btn-positive {
  background: #007f06;
  border: 1px solid #006404;
}
.button.btn-negative {
  background: #ff0000;
}
.button.btn-grey {
  background: #dedddd;
  color: black;
  border: 1px solid #727272;
}

/* Checkbox Section */
.modal-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 12px;
  text-align: left;
}
.modal-checkbox-wrap input[type=checkbox] {
  width: 15px;
  height: 18px;
  margin-top: 3px;
  margin-left: 26px;
  flex-shrink: 0;
  cursor: pointer;
}
.modal-checkbox-wrap label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  letter-spacing: 0.2px;
  margin-left: 0.5rem;
  letter-spacing: 0.2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Tablet & Desktop */
@media (min-width: 577px) {
  .lead-gen-modal {
    align-items: center;
    padding: 1rem;
  }
  .lead-gen-modal.active .modal-dialog {
    transform: translateY(0);
  }
  .modal-dialog {
    max-width: 530px;
    max-height: 90vh;
    width: 100%;
    border-radius: 12px;
  }
  .modal-content {
    max-height: 90vh;
  }
  .button {
    width: auto;
    margin: 0 0.5rem;
  }
  .modal-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
}/*# sourceMappingURL=led-gen-modal.css.map */