/* Newsletter captcha popup modal */

.bsit-nl-modal{
  position: fixed;
  inset: 0;
  z-index: 999999; /* above everything */
  display: none;
}

.bsit-nl-modal.is-open{ display:block; }

.bsit-nl-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.bsit-nl-dialog{
  position: relative;
  max-width: 460px;
  width: calc(100% - 28px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
}

.bsit-nl-close{
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  cursor: pointer;
}

.bsit-nl-title{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 2px 0 4px;
}

.bsit-nl-subtitle{
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin: 0 0 14px;
}

.bsit-nl-captcha{
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.04);
}

.bsit-nl-captcha-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.bsit-nl-q{
  font-weight: 700;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.12);
}

.bsit-nl-refresh{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #ffd400;
  cursor: pointer;
  font-size: 18px;
}

.bsit-nl-answer{
  width: 100%;
}

.bsit-nl-actions{
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

/* Prevent background scroll while modal is open */
body.bsit-nl-lock{
  overflow: hidden !important;
}


/* Button styled like Subscribe */
.bsit-nl-actions .cust-btn{
  height: 50px;
  border-radius: 10px;
  background: #efb405;
  font-weight: 600;
  color: #000;
  box-shadow: none;
  outline: none;
  font-size: 14px;
  border: 1px solid #efb405;
  text-transform: uppercase;
  padding: 10px 15px;
}
.bsit-nl-actions .cust-btn:hover{
  background: #cd7a00;
}
