/* Download Gate Modal */
#download-gate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#download-gate-modal.active { display: flex; }
#download-gate-modal .modal-content {
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  position: relative;
}
#download-gate-modal .close-btn {
	position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #666;
}
#download-gate-modal .close-btn:hover { color: #000; }
#download-gate-modal .col-sm-6,
#download-gate-modal .col-sm-12,
#download-gate-modal .col-sm-4,
#download-gate-modal .col-sm-3 {
  float: left;
  box-sizing: border-box;
  padding: 0 5px;
}
#download-gate-modal .col-sm-12 { width: 100%; }
#download-gate-modal .col-sm-6 { width: 50%; }
#download-gate-modal .col-sm-4 { width: 33.33%; }
#download-gate-modal .col-sm-3 { width: 25%; }
#download-gate-modal .row::after {
  content: "";
  display: table;
  clear: both;
}
#download-gate-modal .form-group {
  margin-bottom: 15px;
}
#download-gate-modal .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
#download-gate-modal .form-group label.required::after { content: " *"; color: #d9534f; }
#download-gate-modal .form-group input,
#download-gate-modal .form-group textarea,
#download-gate-modal .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
#download-gate-modal .form-group .error {
  color: #d9534f;
  font-size: 13px;
  margin-top: 5px;
}
#download-gate-form-container h3 {margin: 0;}

#download-gate-modal .btn-primary:hover { background: #005a8c; }
#download-gate-modal .btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}