/* The bergeToast Notification - position it at the bottom and in the middle of the screen */
.bergeToast {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 100%; /* Set a default minimum width */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 20000; /* Add a z-index if needed */
  bottom: 0px; /* 30px from the bottom */
}
.bergeToastSuccess {
  background-color: #4BB543; /* Green  background color */
  color: #fff; /* White text color */
}

.bergeToastDanger {
  background-color: #D53343; /* Red background color */
  color: #fff; /* White text color */
}

.bergeToastWarning {
  background-color: #E8A34A; /* Orange background color */
  color: #fff; /* White text color */
}

.bergeToastPrimary {
  background-color: #1A73E8; /* Orange background color */
  color: #fff; /* White text color */
}

.bergeToastInfo {
  background-color: #9BD3DD; /* Orange background color */
  color: #fff; /* White text color */
}


/* Show the bergeToast Notification when clicking on a button (class added with JavaScript) */
.bergeToast.show {
  visibility: visible; /* Show the bergeToast Notification */
  /* Add animation: Take 0.5 seconds to fade in and out the bergeToast Notification.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the bergeToast Notification in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
input.invalid, select.invalid, textarea.invalid {
    background-color: #ffdddd !important;
}
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #85838370;
    z-index: 20000000; /* Add a z-index if needed */
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.d-none{
    display:none;
}