﻿#ResultWindow {
    position: fixed;
    z-index: 999;
    /*    right: 10px;*/
    bottom: 30px; /*filter: alpha(opacity=40); -moz-opacity: 0.40; opacity: 0.40;*/
}

@media (min-width: 768px) {
    #ResultWindow {
        left: 50%;
        bottom: 70px;
        transform: translateX(-50%);
    }
}

#ResultWindow.Success {
    -background-color: green;
}

#ResultWindow.Error {
    -background-color: red;
}

#ResultWindow.Warning {
    -background-color: orange;
}

#ResultWindow.Information {
    -background-color: blue;
}

#ResultWindow iframe {
    display: none;
}

#Result {
    -background-color: White;
    margin: 5px;
    text-transform: uppercase;
    padding: 11px 21px 11px 21px;
    font-family: Arial, Verdana; /*filter: alpha(opacity=100); -moz-opacity: 1.00; opacity: 1.00;*/
    border-radius: 20px;
}

    #Result, #Result * {
        text-align: left;
    }

        #Result .ResultMessage {
            display: block;
            margin-bottom: 2px;
        }

        #Result div {
            text-transform: none;
        }

.ResultSuccess {
    background: #a5a5a5 !important;
    color: white !important;
}

.ResultError {
    background: #e06c6c !important;
    color: white !important;
}

.ResultWarning {
    background: #decb8b !important;
    color: white !important;
}

.ResultInformation {
    background: #adadad !important;
    color: white !important;
}

.ResultSuccess, .ResultItemSuccess {
    color: white !important;
}

.ResultError, .ResultItemError {
    color: white !important;
}

.ResultWarning, .ResultItemWarning {
    color: white !important;
}

.ResultInformation, .ResultItemInformation {
    color: white !important;
}