.toast-wrapper {
    width: 420px;
    padding: 30px 20px;
    position: absolute;
    bottom: 50px;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}

#show-toast {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background-color: #101020;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

#toast {
    width: 380px;
    height: 125px;
    padding: 15px 3px 15px 7px;
    background-color: #ddf2f5;
    box-shadow: 0 15px 20px rgba(75,50,50, 0.05);
    border-left: 8px solid #34D3EB;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 0.8fr 8.5fr 0.2fr;
    transform: translate(400px);
    transition: 1s;
}

.toast-pack-a, .toast-pack-b {
    align-self: center;
}
.toast-pack-a i {
    font-size: 30px;
    color: #34D3EB;
}
.toast-pack-b p:first-child {
    color: #101020;
    font-weight: 600;
    font-size: 12px;
}

.toast-pack-b p:last-child {
    color: #656565;
    font-weight: 400;
    font-size: 12px;
}

.toast-pack-b button{
    display: block;
    margin-left: auto;
    margin-right: 0;
}

#toast .button-group {
    align-self: flex-start;
    font-size: 25px;
    line-height: 0; 
}

#toast .button-group > button {
    color: #656565;
    cursor: pointer;
    border: none;
    background-color: transparent;
    pointer-events: auto;
    flex: 1;
    padding: 10px 4px;
}

.button-group {
    display: flex;
    flex-direction: column;
}

#toast-new-message {
    background: #e8f1f3;
    text-align: left;
    word-wrap: break-word;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    padding: 4px;
    cursor: pointer;
    pointer-events: auto;
}

#mark_as_read >svg:hover {
    fill:#3498db;
}
