.alerts {
    top: 0;
    right: 0;
    position: fixed;
    display: flex;
    flex-flow: column;
    overflow-x: scroll;
    width: auto;
    margin: 30px 30px 30px 30px;
    background-color: var(--bg-lightorange_alpha20);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    z-index: 100;
}
.alerts .alert {
    box-sizing: border-box;
    display: flex;
    flex-flow: row;
    margin: 10px 10px 10px 10px;
    width: 500px;
    min-height: 90px;
    height: auto;
    background-color: #cecece;
    border-radius: 4px;
    color: white;
    box-shadow: 0px 10px 46px -21px rgba(0, 0, 0, 0.75);
    transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
    cursor: pointer;
}
.alerts .alert:hover {
    box-shadow: 0px 10px 60px -21px rgba(0, 0, 0, 0.8);
}
.alerts .alert.success {
    background-color: #3db56e;
}
.alerts .alert.request {
    background-color: #67a4c0;
}
.alerts .alert.wait {
    background-color: #c3d2d9;
	color: black;
}
.alerts .alert.failed {
    background-color: #c84346;
}
.alerts .alert-icon {
    font-weight: 300;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
}
.alerts .alert-content {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    width: 100%;
}
.alerts .alert-content .alert-close {
    position: absolute;
    font-size: 25px;
    top: 5px;
    right: 10px;
    cursor: pointer;
}
.alerts .alert-content .alert-title {
    padding-right: 12px;
    font-size: 20px;
    font-weight: 700;
}
.alerts .alert-content .alert-subtitle {
    display: flex;
	/*flex-flow: nowrap;*/
    margin-top: 5px;
    font-size: 16px;
    font-weight: 300;
	overflow: scroll;
	max-height: 250px;
}
.alerts .alert-content .alert-subtitle strong,
.alerts .alert-content .alert-subtitle u {
	margin-left: 5px; margin-right: 5px;
}

.alerts .alert-content .alert-subtitle .little-list {
    display: none;
    padding: 0px 10px;
    list-style-position: inside;
    list-style-type: decimal;
}