.mb-6 {
  margin-bottom: 3.5rem !important;
}

.mb-7 {
  margin-bottom: 4rem !important;
}

.h-60 {
  height: 60px !important;
}

.br-icon {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 100;
  height: 75px;
  width: 75px;
  border-radius: 100%;
  background-color: #f3edef;
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
  opacity: 0.5;
}

.br-icon::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.br-icon:hover {
  background-color: #49cf14;
}

.br-icon:hover::after {
  opacity: 0.5;
  background-color: #f3edef;
}

div.container {
  width: 80%;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  color: #333;
  text-align: center;
  z-index: 1000;
}

div.dataTables_processing .spinner {
  width: 40px;
  height: 40px;
  margin: 10px auto;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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