.toPrint input, .toPrint select {
  border: none !important;
  box-shadow: none !important;
  font-weight: 800 !important;
  font-size: 20px;
}
.toPrint label {
  font-weight: 400 !important;
  font-size: 20px;
}

.d-none {
  display: none !important;
}
.d-block {
  display: inherit !important;
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}
.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid royalblue;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media print {
  .toPrint {
    display: block;
  }
 
  .notToPrint {
    display: none;
  }
  input, select {
    border: none !important;
    box-shadow: none !important;
    font-weight: 800 !important;
    font-size: 15px;
  }
  label {
    font-weight: 400 !important;
  }
  
}