﻿.toast {
    text-align: left;
    padding: 10px 5px 10px 5px;
    background-color: #fff;
    border-radius: 4px;
    top: 0px;
    position: relative;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
    margin: 5px;
}

.toastBorderLeft {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.toastBorderRight {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.toastIcon {
    position: absolute;
    top: 35%;
    left: 12px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    padding: 7px;
    border-radius: 50%;
    display: inline-block;
}

.toastContent {
    padding-left: 70px;
    padding-right: 60px;
}

.toastTextHeader {
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px !important;
}

.toastText {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787;
    font-size: 14px !important;
}