﻿@CHARSET "UTF-8";

body, 
html {
    transition: all 0.5s ease-in-out;
}

.pannello_errore {
    border-width: 1px;
    border-style: solid;
    border-color: #94999F;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 1px 1px 12px #111111;
    background: #FCFDFD;
    min-width: 600px;
    min-height: 325px;
    top: 15%;
    left: 10%;
    width: 60%;
    height: 45%;
    position: absolute;
    padding: 20px 10px 20px 10px;
    
    box-shadow: 5px 5px 10px #666666;
    -webkit-border-radius: 0px 0px 50px 0px;
    -moz-border-radius: 0px 0px 50px 0px;
    border-radius: 0px 0px 50px 0px;

    background-image: url("../images/error_large.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    transition: all 0.5s ease-in-out;
    
    position: absolute;
    left: 20%;
    right: 20%;
    top: 30%;
    bottom: 30%;
    width: auto;
    height: auto;
}
h1, .h1 {
    color: #870000;
    text-transform: uppercase;
    font-size: 200%;
    letter-spacing: 2px;
    margin: 30px;
    width: auto;
}
.message {
    margin: 10px;
    margin-left: 30px;
    margin-right: 250px;
    font-family: Arial;
    white-space: normal;
}

div.footer_errore {
    position: absolute;
    bottom: 5px;
    padding: 5px;
    padding-left: 10px;
}



@media screen and (max-width: 1200px) {
    .pannello_errore {
        left: 10%;
        right: 10%;
        top: 20%;
        bottom: 20%;
    }
}
@media screen and (max-width: 800px) {
    h1, .h1 {
        text-align: left;
        margin-top: 180px;
    }
    .message {
        margin-top: 0px;
        margin-right: 30px;
    }
    .pannello_errore {
        /*position: absolute;*/
        width: auto;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        border: none;
        border-radius: 0px;
        margin: 0px;
        min-width: auto;
        min-height: auto;
        box-shadow: none;
        height: auto;
        background-position: right top;
    }
}
