#ui_notifIt {
    position: fixed;
    inset-block-start: 10px;
    inset-inline-end: 10px;
    cursor: pointer;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 5px #{$shadow-color};
    -moz-box-shadow: 0px 3px 5px #{$shadow-color};
    -o-box-shadow: 0px 3px 5px #{$shadow-color};
    box-shadow: 0px 3px 5px #{$shadow-color};
    -wekbit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    z-index: 2000;
  
    &:hover {
      opacity: 1 !important;
    }
  
    p {
      text-align: center;
      font-size: 14px;
      padding: 0;
      margin: 0;
      padding: 10px;
      font-weight: 400;
      text-transform: capitalize;
  
      i {
        font-size: 20px;
      }
    }
  }
  
  #notifIt_close {
    position: absolute;
    color: rgb($white);
    inset-block-start: 0;
    padding: 0px 5px;
    inset-inline-end: 0;
  
    &:hover {
      background-color: #{$white-3};
    }
  }
  
  /* Color setup */
  /* You are free to change all of this */
  
  #ui_notifIt {
    &.success {
      background-color: #{$success};
      color: #{$fixed-white};
    }
  
    &.error {
      background-color: #{$danger};
      color: #{$fixed-white};
    }
  
    &.warning {
      background-color: #{$warning};
      color: #{$fixed-white};
    }
  
    &.info {
      background-color: #{$info};
      color: #{$fixed-white};
    }
  
    &.dark {
      background-color: #{$dark};
      color: #{$fixed-white};
    }
  }
  
  /* notifit confirm */
  
  .notifit_confirm_bg, .notifit_prompt_bg {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    background-color: #{$white-8};
  }
  
  .notifit_confirm, .notifit_prompt {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    padding: 30px;
    background-color: rgb($white);
    border: 1px solid #{$border};
    border-radius: 1px;
    -webkit-box-shadow: 0px 2px 10px #{$shadow-color};
    box-shadow: 0px 2px 10px #{$shadow-color};
    z-index: 9999;
    border-radius: 5px;
  }
  
  .notifit_confirm_accept, .notifit_confirm_cancel, .notifit_prompt_accept, .notifit_prompt_cancel {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-inline-end: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .notifit_prompt_accept:hover, .notifit_prompt_cancel:hover {
    background-color: #{$dark};
  }
  
  .notifit_confirm_cancel {
    background-color: #{$danger};
    color: #{$fixed-white};
    border-radius: 4px;
  }
  
  .notifit_confirm_message {
    text-align: center;
    margin-block-end: 20px;
    font-size: 14px;
  }
  
  .notifit_prompt_message {
    color: #{$default-color};
    margin-block-start: 0;
    text-align: center;
  }
  
  .notifit_prompt_input {
    text-align: center;
    font-size: 14px;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #{$border};
    color: #{$default-color};
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  
  .notifit_prompt {
    text-align: center;
  }
  
  #ui_notifIt.info {
    margin: 0 auto;
    inset-inline-end: 10px !important;
    inset-inline-start: 10px !important;
  }