/* Toast Container - fixed position */
#fe-toast-container {
  font-family: Cera PRO;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  font-weight: 400;
  font-size: 14px;
  
}

/* Toast Notification */
.fe-toast {
  display: flex;
  flex-direction: column;
    background: #333;
    color: #fff;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    border: 1px solid white;
    min-width: 250px;
    position: relative;
    overflow: hidden;
  
}

/* Success toast */
.fe-toast-success {
  	border: 1px solid #783DB4;
    background: #774bad;
}

/* Error toast */
.fe-toast-error {
  	color: #0c0c17;
  	border: 1px solid #0c0c17;
    background: white;
}

/* Toast Progress Bar Container */
.fe-toast-progress {
    position: relative;    
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
 	overflow: hidden;
  	border-radius: 12px;
  	margin-top: 5px;
  
}

/* Toast Progress Bar */
.fe-toast-progress-bar {

    height: 100%;
    width: 100%;
    background: #FF96F8;
  	border-radius: 12px;
}
