
.bt_modal {
  padding: 8px 12px 8px 12px;
  background-color: #bcbcbc;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.9;
  font-family: Open Sans;
  font-weight: 600;
  font-size: 1rem;
  box-shadow:  2px 2px 2px 1px #2B2B2B;		
}

.bt_modal:hover {
  opacity: 1;
  background-color: #82c4f1;	
}

#open-modal {
  background-color: #F3F3F3;
} 

#open-modal:hover {
  background-color: #82c4f1;
} 

#fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
}

#modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 90%;
  background-color: #fafafa;
  padding: 1.2rem;
  border-radius: 0.5rem;
  z-index: 10;
  font-family: Verdana;
  font-size: 16px;
  color: #000;
  text-align: justify;
}

#fade,
#modal {
  transition: 0.5s;
  opacity: 1;
  pointer-events: all;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.modal-body p {
  margin-bottom: 1rem;
}

#modal.hide,
#fade.hide {
  opacity: 0;
  pointer-events: none;
}

#modal.hide {
  top: 0;
}
