#fsc_overlayPdf {
  z-index: 20;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#fsc_popupPdf {
  width: 95%;
  box-sizing: border-box;
  margin: 15px auto;
  padding: 10px;
  background: white;
}
#fsc_popupPdf textarea {
  flex-grow: 1;
  outline: none;
  resize: none;
  font-family: 'Montserrat';
  border: 1px solid #BABABA;
}
#fsc_popupPdf #fsc_input1Counter,
#fsc_popupPdf #fsc_input2Counter {
  font-size: 12px;
  width: 50px;
  text-align: right;
}
#fsc_popupPdf .overlay-actions {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  @media (max-width: 576px) {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
#fsc_popupPdf .fsc_button {
  height: 42px;
  width: 100px;
  padding: 0 20px;
  margin: 0 10px;
  border-radius: 20px;
  overflow: hidden;
  background: #13B582;
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #fsc_popupPdf {
    width: 50%;
    padding: 10px 50px;
  }
}