/**
 * @file
 * Defines toastr related rules.
 */

#toast-container.toast-bottom-right {
    margin-bottom: 70px;
}

#toast-container > div.toast {
    background-color: #4aa3ff;
    color: #232323;

    opacity: 1;

    width: 400px;
    padding-left: 65px;

    border: 2px solid #4aa3ff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}

#toast-container > div.toast:after {
    content: '';

    display:block;

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    margin-left: 50px;
    background-color: white;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    z-index: 50;
}

#toast-container .toast > div {
    position: relative;
    z-index: 100;
}

#toast-container > div.toast-error {
    background-color: #de263c;
    border-color: #de263c;
}

#toast-container > div.toast-warning {
    background-color: #f3ac2b;
    border-color: #f3ac2b;
}

#toast-container .toast .toast-title {
    text-transform: uppercase;
}
