@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700|Roboto:300,400,500,700');
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    background: url(/Files/App_002/Images/error.jpg) no-repeat center fixed;
    background-size: cover;
}
.content.error {
    width: 500px;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    font-weight: 500;
}
.content.error p {
    margin: 20px 0;
    font-weight: 500;
}
.error_title {
    color: #0a58a1;
    font-size: 16px;
    font-weight: 500;
}
.error_advices {
    color: #0a58a1;
    font-size: 16px;
}
.error_text {
    color: #6d6d6d;
    line-height: 20px;
}
.error_text.second {font-weight: 400!important;}
.link_home {
    background: #0a58a1;
    display: inline-block;
    line-height: 34px;
    width: auto;
    text-align: center;
    color: #FFF;
    font-weight: 500;
    text-decoration: none;
    padding: 0 15px;
}
.link_home:hover {
    background: #000;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-decoration: none;
    color: #FFF;
    outline:0;
}
.link_home:focus {color: #FFF;}

@media (max-width: 768px) {
    body {font-size: 12px;}
    .content.error {width: 400px;padding: 20px;}
}


