#crm_messages{
	display: block;
	height: 100%;
	overflow-y: auto;
	padding-top: 10px;
	padding-right: 10px;
}

/* https://codingartistweb.com/2021/07/toast-notifications-ui-design-html-css/ */
.toast{
    min-width: 100%;
    height: auto;
    padding: 10px;
    background-color: #303235;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 70px auto 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.info{
    border-left: 8px solid #b0b0b0;
}
.info i{
    color: #b0b0b0;
}
.toast:not(:last-child){
    margin-bottom: 10px;
}
.container-1,.container-2{
    align-self: center;
} 
.container-1 i{
    font-size: 35px;
}
.container-2 p:first-child{
    color: #b0b0b0;
    font-size: 20px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.container-2 p:last-child{
    color: #656565;
    font-size: 16px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

