.pulsating-icon {
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.brown-background {
  background: rgba(163, 112, 81, 1);
}

.text-white {
  color: white;
}

.text-brown {
  color: rgba(163, 112, 81, 1);
}

.font-small {
  font-size: 12px;
}

#modal-default {
  padding-right: 0 !important;
}