#bd-modal {
  display: none; /* MUST be none */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}


.bd-box {
	position:relative;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 30%;
  margin: 15% auto;
  padding: 50px;
  text-align: center;
  border-radius: 8px;
}

.bd-input-box
{
	display:flex;
	flex-direction:column;
	    align-items: center;
	gap: 15px;
}

.bd-box input {
  width: 100%;
  padding: 10px !important;
    text-align: center;
    border-radius: 10px !important;
}

.bd-box button {
 background: transparent;
    color: #00c853;
    border: 5px solid #00c853;
    border-radius: 10px;
    padding: 10px 50px;
    cursor: pointer;
}

.bd-box button:hover {
    background-color: #00c853;
}

.bd-close {
 position: absolute;
    top: 10px;
    right: 10px;
	cursor:pointer;
}

.bd-close i
{
	opacity: 0.3;
}

.bd-close:hover i
{
	opacity: 1;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #00c853;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#bd-download:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
