.VegamToastNotificationWrapper {
    position: fixed;
    z-index:1100;
    margin: 10px;
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    /* justify-content: flex-end; */
    box-sizing: border-box;
    /* border: 2px solid red; */
    gap: 10px;
  }
  
  .VegamToastNotificationWrapper[data-position^="top-"] {
    top: 50px;
  }
  
  .VegamToastNotificationWrapper[data-position^="bottom-"] {
    bottom: 0;
  }
  
  .VegamToastNotificationWrapper[data-position$="-right"] {
    right: 26px;
  }
  
  .VegamToastNotificationWrapper[data-position$="-left"] {
    left: 0;
  }
  
  .VegamToastNotificationWrapper[data-position$="-center"] {
    left: 50%;
    transform: translateX(-50%);
  }

.VegamToastNotification {
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    width: 320px;
    padding: 0.4rem 1rem;
    color: #373a3c;
    background: #fff;
    border: 1px solid #dfdfdf;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 0;
    transition: all 0.5s;
    border-radius: 5px;
    overflow: hidden;
    /* animation: swipe-left 1s; */
    /* transform: translateX(150%); */
}
  
  .VegamToastNotificationWrapper[data-position$="-left"] .VegamToastNotification {
    transform: translateX(-100%);
  }
  
  .VegamToastNotificationWrapper[data-position$="-right"] .VegamToastNotification {
    transform: translateX(100%);
  }
  
  .VegamToastNotificationWrapper[data-position="top-center"] .VegamToastNotification {
    transform: translateY(-100vh);
  }
  
  .VegamToastNotificationWrapper[data-position="bottom-center"] .VegamToastNotification {
    transform: translateY(100vh);
  }
  
  .VegamToastNotificationWrapper .VegamToastNotification.Show {
    transform: translate(0, 0);
    opacity: 1;
  }
  
  /* .VegamToastNotification.show {
    animation: swipe-left 1s, swipe-right 1s;
  } */
  
  .VegamToastNotification .ToastCloseButton {
    position: absolute;
    top: 0;
    right: 0;
    color: transparent;
    font-size: 20px;
    font-weight: 600;
    border: none;
    outline: none;
    background: url('../images/i-close-red.svg') center no-repeat;
    cursor: pointer;
  }

  .VegamToastNotification .ToastBody {
    font-size: 14px;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    word-break:break-word;
  }

  .VegamToastNotification .ToastFooter {
    /* margin-top: 0.8rem; */
    font-size: 14px;
  }
  
  @keyframes swipe-left {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  /* @keyframes swipe-right {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  } */

.VegamToastNotification .ToastProgressBar {
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    /*background: #96C6FA;*/
    background: #D3D3D3;
}

.VegamToastNotification .ToastProgressBar .ToastProgress {
    width: 0%;
    height: 100%;
    float: right;
    /*background: #dfdfdf;*/
    background: #FFF;
}

.VegamToastNotification .ToastIndicator {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: #96C6FA;
    border-radius: 5px;
}

/*.VegamToastNotification.success .ToastProgressBar,*/
.VegamToastNotification.success .ToastIndicator {
    background: #1DE89E;
}


/*.VegamToastNotification.danger .ToastProgressBar,
.VegamToastNotification.error .ToastProgressBar,*/
.VegamToastNotification.danger .ToastIndicator,
.VegamToastNotification.error .ToastIndicator {
    background: #FF8F73;
}


/*.VegamToastNotification.warning .ToastProgressBar,*/
.VegamToastNotification.warning .ToastIndicator {
    background: #F27F32;
}

.VegamToastNotification.delete .ToastIndicator {
    background: #FF8F73;
}

.VegamToastNotification .ToastTitle {
  font-size: 16px;
  font-weight: 600;
}

.VegamToastNotification .ToastIcon{
  display: inline-block;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  margin-right: 0.4rem;
  background: url('../images/i-information.svg') no-repeat;
  background-size: contain;
}

.VegamToastNotification.success .ToastIcon {
  background: url('../images/i-check-mark.svg') no-repeat;
  background-size: contain;

}

.VegamToastNotification.danger .ToastIcon,
.VegamToastNotification.error .ToastIcon {
  background: url('../images/i-error.svg') no-repeat;
  background-size: contain;

}

.VegamToastNotification.warning .ToastIcon {
  background: url('../images/i-warning.svg') no-repeat;
  background-size: contain;
}

.VegamToastNotification.delete .ToastIcon {
    background: url('../images/i-delete-icon.svg') no-repeat;
    background-size: contain;
}

/* *:focus{
    scale: 1.2
} */

