.notify-dialog{
    z-index: 100000;
    transition: all 0.3s;
    cursor: default;
    position: fixed;
    width: 15em;
    padding:1em;
}
.notify-dialog:hover{
    opacity: 0.3 !important
}
.notify-dialog.notify-visible{
    opacity: 1
}
.notify-dialog:not(.notify-visible){
    opacity: 0
}
.notify-dialog .notify-badge {
    position: absolute;
    top: -1em;
    left: -1em;
    font-size: 0.7rem;
    color: #fff;
    /* background-color: #FF4081; */
    background: linear-gradient( red, #850202);
    border-radius: 50%;
    font-family: "Roboto";
    
    /* Alignment */
    line-height: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    /* Adjust as required: */
    padding: 10px;
  }
  
  /* Height = width */
.notify-dialog .notify-badge::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
.notify-info{
    background:linear-gradient(#45ad64,#226e38);
    color:white;
    border:0.1em solid #45ad64;
    border-radius: 0.3em;
    box-shadow: 0em 0.2em 0.3em #2f302f;
}
.notify-warning{
    background:linear-gradient(#f59d33,#a3661c);
    color:white;
    border:0.1em solid #f59d33;
    border-radius: 0.3em;
    box-shadow: 0em 0.2em 0.3em #2f302f;
}
.notify-error{
    background:linear-gradient(#e64964,#b5223b);
    color:white;
    border:0.1em solid #e64964;
    border-radius: 0.3em;
    box-shadow: 0em 0.2em 0.3em #2f302f;
}

.notify-message-container{
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    top:0px;left:0px;bottom: 0px;right: 0px;
    user-select: none;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notify-message-dialog{
    box-sizing: border-box;
    background-color: white;
    border-radius: 0.5em;
    border:0.2em solid #602880;
    border-radius: 0.5em ;
    box-shadow: 0px 0px 0.5em #602880;
}
body.port .notify-message-dialog{
    width: 95vw;
}
body:not(.port) .notify-message-dialog{
    min-width: 50vw;
    max-width: 80vw;
}
.notify-message-operations{
    background-color:#e3d1ed;
    border-bottom-right-radius:0.3em;
    border-bottom-left-radius:0.3em;
    padding: 0.5em;
    text-align: center;
}
.notify-message-text{
    padding: 1em;
}
.notify-message-container button{
    color: white;
    font-size: 1em;
    border-radius: 1em;
    box-sizing: border-box;
    padding: 0.3em 1em;
}
button.notify-positive{
    background-color: rgb(5, 63, 5);
    border:1px solid rgb(15, 119, 15);
}
button.notify-negative{
    background-color: rgb(109, 6, 32);
    border:1px solid rgb(182, 21, 61);
}
button.notify-neutral{
    background-color: rgb(209, 158, 16);
    border:1px solid rgb(255, 187, 0);
}