 /* modal window */
 body .swal2-popup.swal2-modal{
    box-shadow: var(--shadow-menu);
 }
 body .swal2-title,
 div:where(.swal2-container) h2:where(.swal2-title){
   font-size: 18px;
   padding: 2rem 1em 1rem;
   font-weight: 500;
   color: #000;
  }
body .swal2-actions button{
  width: 100%;
  max-width: 50%;
  padding: 5px 0;
}
  body .swal2-actions .swal2-confirm {
    background: var(--link);
    border-radius: .25rem;
    width: 100%;
    font-weight: 400;
    font-size: .98rem;
    color: #fff;
    box-shadow: none !important;
    border: none !important;
  }
  
  body .swal2-actions .swal2-cancel {
    border-radius: .25rem;
    width: 100%;
    font-weight: 400;
    font-size: .98rem;
    color: #fff;
    box-shadow: none !important;
    border: none !important;
  }
  body .swal2-actions{
    flex-wrap: nowrap;
    width: 100%;
    padding: 0.5rem 1.4rem !important;
}
  body div:where(.swal2-container) .swal2-input{
      padding: 0.5rem 1rem!important;
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.5;
      color: #757a83;
      background-color: #ffffff;
      background-clip: padding-box;
      border: 0.0625rem solid #ababab;
      appearance: none;
      border-radius: 0.25rem;
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.07);
      transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 
 body div:where(.swal2-container) input:where(.swal2-input):focus, 
 body div:where(.swal2-container) input:where(.swal2-file):focus, 
 body div:where(.swal2-container) textarea:where(.swal2-textarea):focus{
     color: #6B7280;
     background-color: #ffffff;
     border-color: #4d6689;
     outline: 0;
     box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(31, 41, 55, 0.25);
  }
  .modal__animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; 
  }
   
  .animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  .animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
  }
  
  @-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
  
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
  }
  
  @keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
  
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
  }
  @-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }
  
    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
  }
  
  @keyframes fadeOutDown {
    0% {
        opacity: 1
    }
  
    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
  }