.toast-move-up {
    animation: moveUp 2s ease;
    animation-fill-mode: forwards;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 9999;
}
/* Styling for the toggle switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    border-radius: 10px;
    border: 1px solid #6D071A;
    margin:5px;
}
    
.toggle input {
    display: none;
}
    
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}
    
.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 2px;
    background-color: #6D071A;
    border-radius: 50%;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slider {
    background-color: #6D071A;
    border-radius: 10px;
}
    
input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    background-color: #fff;
}
.actions{
    display:flex; 
    flex-direction:'row'; 
    align-items:center;
}
.switch{
    padding: 0;
    width: 'max-content';
}
@keyframes moveUp {
    0% {
        bottom: -100%;
    }
    100% {
        bottom: 70%;
    }
}