﻿div.sandglass.panel {
    
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

div.sandglass.panel div.sandglass.icon {
    width: 70px;
    height: 70px;
    background-image: url(Pix/Sandglass.png);
    background-repeat: no-repeat;
    background-position: center center;
    animation: sandglassSpin 1s linear infinite;
    -webkit-animation: sandglassSpin 1s linear infinite;
}

@-webkit-keyframes sandglassSpin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sandglassSpin {
    100% {
        transform: rotate(360deg);
    }
}

div.message {
    background-position: 21px 21px;
    background-repeat: no-repeat;
    color: #ffffff;
    min-height: 200px;
    padding: 20px;
    padding-top: 85px;
    margin-bottom: 14px;
    overflow:hidden;
}

div.message h2 {
    /*font-size: 1.8em;*/
    margin-bottom: 0.1em;
}

div.message p {
    margin-bottom: 0em;
}

div.message b {
    font-weight: bold;
}

    div.message.information {
        background-image: url(Pix/MessageInformationIcon.png);
        background-color: #99c25c;
        background-color: #bcd845;

        background-size: 50px 50px;
    }

div.message.warning {
    background-image: url(Pix/MessageErrorIcon.png);
    background-color: #ffc15c;
    background-size: 50px 50px;
}

    div.message.error {
        background-image: url(Pix/MessageErrorIcon.png);
        background-color: #e50041;

        background-size: 50px 50px;
    }
