.msgBox {
    border-radius: 25px;
    padding: .75rem 1.25rem;
    text-align: center;
    font-family: sans-serif;
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    height: max-content;
    min-width: 280px;
    z-index: 10;
    cursor: pointer;
    user-select: none;
}
.msgBoxContent {
    display: inline-block;
    vertical-align: middle;
    color: #050505;
}
.msgBoxBtn {
    top: 50%;
    transform: translateY(-50%);
    display: inline-block; 
    position: fixed; 
    right: 5px;
    width: 10%;
    max-width: 55px;
    color: #050505;
}

.msgBoxSuccess {
    background-color: rgba(207,241,192,0.9);
}
.msgBoxSuccess div {
    color: rgba(50, 110, 24, 0.9);
}

.msgBoxDanger {
    background-color: rgba(242,222,222,0.9);
}
.msgBoxDanger div {
    color: rgba(80, 0, 0, 0.9);
}