.toast-container {
    width: 280px;
    z-index: 99999;
    /*increasing z-index so it appears over kendo popup*/
    font-family: "Lato", sans-serif;
}


* html .toast-container {
    position: absolute;
}

.toast-item {
    height: auto;
    background: #f5f5f5;
    opacity: 0.9;
    -moz-border-radius: 10px;
    -webkit-border-radius: 4px;
    color: #454545;
    /* padding-top: 9px; */
    /* padding-bottom: 5px; */
    /* padding-left: 6px; */
    /* padding-right: 6px; */
    padding: 10px 10px 10px 12px;
    font-family: lucida Grande;
    font-size: 14px;
    border: 2px solid #ccc;
    display: block;
    position: relative;
    margin: 0px;
}

.toast-item p {
    text-align: center;
    /* margin-left: 9px; */
    margin-bottom: 0px;
    font-family: "Lato", sans-serif;
    font-weight: bold;
}

.toast-item a {
    color: #235C78;
}

.toast-item-close {
    background:url(../images/ToasMessage_Close.png);
    width:22px;
    height:22px;
    float:right;
    /* top: 10px; */
    /* right:7px; */
    /* border: 1px solid; */
    margin: -2px -3px 0px 0px;
}

.toast-item-image {
    width:32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 10px;
}

.toast-item-image-notice {
    background:url(../images/notice.png);
    display: none;
}

.toast-item-image-success {
    background:url(../images/success.png);
    display: block;
}

.toast-item-image-warning {
    background:url(../images/warning.png);
    display: none;
}

.toast-item-image-error {
    background:url(../images/error.png);
    display: none;
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
    color: #454545;
    display: none;
}

.toast-type-success {
    color: #454545;
    display: block;
}

.toast-type-warning {
    color: #454545;
    border-color: #FCBD57;
    display: none;
}

.toast-type-error {
    color: white;
    border-color: #B32B2B;
    display: none;
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.toast-position-top-left {
    position: fixed;
    left: 20px;
    top: 20px;
}

.toast-position-top-center {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.toast-position-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
}

.toast-position-middle-left {
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.toast-position-middle-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.toast-position-middle-right {
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.toast-position-bottom-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 90%;
}


