.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 600; }

.alert-dismissible {
  padding-right: 4.09375rem; }
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit; }

/*
.alert-primary {
  color: #253e8f;
  background-color: var(--parlangigreen);
  border-color: var(--parlangigreen); }
  .alert-primary hr {
    border-top-color: #1c4ce8; }
  .alert-primary .alert-link {
    color: #1b2c66; }

.alert-secondary {
  color: #ffffff;
  background-color: #506690;
  border-color: #506690; }
  .alert-secondary hr {
    border-top-color: #475a80; }
  .alert-secondary .alert-link {
    color: #222b3f; }

.alert-success {
  color: #2d6e64;
  background-color: #42ba96;
  border-color: #42ba96; }
  .alert-success hr {
    border-top-color: #3ba787; }
  .alert-success .alert-link {
    color: #1e4a43; }

.alert-info {
  color: #4b4492;
  background-color: #7c69ef;
  border-color: #7c69ef; }
  .alert-info hr {
    border-top-color: #6852ed; }
  .alert-info .alert-link {
    color: #39346f; }

.alert-warning {
  color: #8d7d53;
  background-color: #fad776;
  border-color: #fad776; }
  .alert-warning hr {
    border-top-color: #f9d05d; }
  .alert-warning .alert-link {
    color: #6d6140; }

.alert-danger {
  color: #7f3244;
  background-color: #df4759;
  border-color: #df4759; }
  .alert-danger hr {
    border-top-color: #db3145; }
  .alert-danger .alert-link {
    color: #5a2430; }

.alert-light {
  color: #8c9099;
  background-color: #f9fbfd;
  border-color: #f9fbfd; }
  .alert-light hr {
    border-top-color: #e6eef7; }
  .alert-light .alert-link {
    color: #727680; }

.alert-dark {
  color: #19233e;
  background-color: #1b2a4e;
  border-color: #1b2a4e; }
  .alert-dark hr {
    border-top-color: #14203b; }
  .alert-dark .alert-link {
    color: #0a0e1a; }

.alert-primary-desat {
  color: #435590;
  background-color: #6c8aec;
  border-color: #6c8aec; }
  .alert-primary-desat hr {
    border-top-color: #5578e9; }
  .alert-primary-desat .alert-link {
    color: #33406d; }

.alert-black {
  color: #161c2d;
  background-color: #161c2d;
  border-color: #161c2d; }
  .alert-black hr {
    border-top-color: #0e111c; }
  .alert-black .alert-link {
    color: #05070b; }

.alert-white {
  color: #8f929a;
  background-color: white;
  border-color: white; }
  .alert-white hr {
    border-top-color: #f2f2f2; }
  .alert-white .alert-link {
    color: #757881; }
*/

.close {
  float: right;
/*  font-size: 1.59375rem; */
  font-weight: 600;
  line-height: 1;
  color: #869AB8;
  text-shadow: none;
  opacity: .5; }
  .close:hover {
    color: #869AB8;
    text-decoration: none; }
  .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: .75; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0; }

a.close.disabled {
  pointer-events: none; }

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(22, 28, 45, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem; }
  .toast:not(:last-child) {
    margin-bottom: 0.75rem; }
  .toast.showing {
    opacity: 1; }
  .toast.show {
    display: block;
    opacity: 1; }
  .toast.hide {
    display: none; }

.toast-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  color: #869AB8;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.toast-body {
  padding: 0.75rem; }

.toast-header .btn-close {
  margin-right: 5px;
  margin-left: unset;
  margin-top: 5px;
}

