.alert {

    border-radius: 0;

    -webkit-border-radius: 0;

    box-shadow: 0 1px 2px rgba(0,0,0,0.11);

    display: table;

    width: 100%;

  }

  

  .alert-white {
    background-image: linear-gradient(to bottom, #fff, #f9f9f9);
    border-top-color: #d8d8d8;
    border-bottom-color: #bdbdbd;
    border-left-color: #cacaca;
    border-right-color: #cacaca;
    color: #404040;
    padding: 20px 46px 20px 61px;
    position: relative;
  }

  

  .alert-white.rounded {

    border-radius: 3px;

    -webkit-border-radius: 3px;

  }

  

  .alert-white.rounded .icon {

    border-radius: 3px 0 0 3px;

    -webkit-border-radius: 3px 0 0 3px;

  }

  

  .alert-white .icon {
    text-align: center;
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #bdbdbd;
    padding-top: 0;
  }

  

  

  .alert-white .icon:after {

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    transform: rotate(45deg);

    display: block;

    content: '';

    width: 10px;

    height: 10px;

    border: 1px solid #bdbdbd;

    position: absolute;

    border-left: 0;

    border-bottom: 0;

    top: 50%;

    right: -6px;

    margin-top: -3px;

    background: #fff;

  }

  

  .alert-white .icon i {
    font-size: 20px;
    color: #fff;
    left: 12px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
  }

  .alert-white strong {
    display: block;
    margin-bottom: 6px;
  }

  /*============ colors ========*/

  .alert-success {

    color: #3c763d;

    background-color: #dff0d8;

    border-color: #d6e9c6;

  }

  

  .alert-white.alert-success .icon, 

  .alert-white.alert-success .icon:after {

    border-color: #54a754;

    background: #60c060;

  }

  

  .alert-info {

    background-color: #d9edf7;

    border-color: #98cce6;

    color: #3a87ad;

  }

  

  .alert-white.alert-info .icon, 

  .alert-white.alert-info .icon:after {

    border-color: #3a8ace;

    background: #4d90fd;

  }

  

  

  .alert-white.alert-warning .icon, 

  .alert-white.alert-warning .icon:after {

    border-color: #d68000;

    background: #fc9700;

  }

  

  .alert-warning {

    background-color: #fcf8e3;

    border-color: #f1daab;

    color: #c09853;

  }

  

  .alert-danger {

    background-color: #f2dede;

    border-color: #e0b1b8;

    color: #b94a48;

  }

  

  .alert-white.alert-danger .icon, 

  .alert-white.alert-danger .icon:after {

    border-color: #ca452e;

    background: #da4932;

  }



  .alert .close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    color: #666;
    background: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
  }



  .alert .close::before {

    content: "\00d7";

  }



  .alert-popup-overlay {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: grid;

    place-items: center;

    padding: 24px;

    background: rgba(15, 28, 22, 0.58);

    backdrop-filter: blur(4px);

  }



  .alert-popup-overlay[hidden] {

    display: none;

  }



  .alert-popup-body .alert {
    margin: 0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  }

  .alert-popup-dialog {
    width: min(520px, 100%);
    margin: 0 auto;
    animation: alert-popup-in 0.22s ease;
  }



  body.alert-popup-open {

    overflow: hidden;

  }



  @keyframes alert-popup-in {

    from {

      opacity: 0;

      transform: translateY(12px) scale(0.98);

    }



    to {

      opacity: 1;

      transform: translateY(0) scale(1);

    }

  }

  .alert-popup-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
  }

  .alert-popup-actions .btn {
    min-width: 110px;
  }

  .alert-popup-actions__confirm {
    background: #c0392b;
    border-color: #c0392b;
  }

  .alert-popup-actions__confirm:hover,
  .alert-popup-actions__confirm:focus {
    background: #a93226;
    border-color: #a93226;
  }

