/*-----------toastr-------------*/

.toast-title {
    font-weight: bold;
}

.toast-message {
    display: inline-block;
    padding: 5px;
    border-radius: 3px;
    font-size: 13px;
}

.toast-message a,
.toast-message label {
    color: #ffffff;
}

.toast-message a:hover {
   /* color: #cccccc;*/
    text-decoration: none;
}

.toast-close-button {
    position: relative;
    right: -2em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-shadow: 0 1px 0 #ffffff;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}

.toast-close-button:hover,
.toast-close-button:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display:none;
}

.toast-center {
    top: 45%;
    right: 1rem;
    left: 1rem;
    margin: auto;
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-full-width {
    top: 2%;
    right: 0;
    width: 100%;
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-left {
    top: 12px;
    left: 12px;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

#toast-container > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;

    color: #ffffff;

}


#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}


.toast-success {

    text-align: center;

}

.toast-success > div {
    background-color: rgba(0, 0, 0, .6);
}

.toast-error {
    text-align: center;
}

.toast-error > div {
    background-color: rgba(189, 54, 47, .8);
}

.toast-info {
    text-align: center;
}

.toast-info > div {
    background-color: rgba(47, 150, 180, .8);
}

.toast-warning {
    text-align: center;
}

.toast-warning > div {
    background-color: rgba(248, 148, 6, .8);
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}
/*-----------/toastr-------------*/