/* loading css */
.loading-circle {
  display: inline-block;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  min-width: 17px;
  max-width: 17px;
  min-height: 17px;
  animation: spin 2s linear infinite;
  margin: 0 6px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Floating Notification */
.floating_notification-con {
  position: fixed !important;
  bottom: 0;
  /* top: 0; */
  max-width: 200px;
  z-index: 9000;
  /* outline: 1px solid; */
}
.floating_notification-con > .floating-notification {
  position: relative;
  left: calc(-100% - 200px);
  min-width: 300px;
  margin: 10px 0px 10px 15px;
  min-height: 25px;
  word-wrap: break-word;
  border-left: 4px solid var(--bs-primary);
  padding: 15px 10px;
  border-radius: 8px;
  box-shadow: 7px 0px 15px -3px #6c757dcc;
  cursor: default;
}
.floating_notification-con > .floating-notification.bg {
  background-color: rgba(255, 255, 255, 0.749);
}
.floating_notification-con > .floating-notification.bg.no-opacity {
  background-color: rgba(255, 255, 255, 1);
}
.floating_notification-con > .floating-notification.in {
  left: 0;
  transition: left 0.5s linear;
}
.floating_notification-con > .floating-notification.out {
  left: calc(100% - 200px);
  transition: left 0.5s linear 1s;
}
.floating_notification-con > .floating-notification.alert-danger {
  border-color: #95010e;
  border-width: 1px 1px 1px 15px !important;
  border-style: solid;
  background: white;
  min-width: calc(100vw - 72px);
  bottom: 25px;
  text-align: center;
  font-size: 22px;
  padding: 7px 0;
  font-weight: bold;
}
