/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 12, 2018, 5:09:19 PM
    Author     : OHM_NB
*/

* {
    box-sizing: border-box;
}

.error_div {
    width: 100%;
    color: red;
    display: none;
    border: 1px solid red;
    margin: 5px auto;
    padding: 5px; 
    border-radius: 5px;    
}

.error_div .error-header {
    font-weight: bold;    
}

.error_div hr {
    border: 0px;
    height: 0px;
    border-bottom: 1px solid red;
    background: red;
}

.error_div .error-detail {
    padding-left: 10px;
}

.err-close {
    /*color: #0e5e9c;*/
    float: right;
    font-size: 20px;
    font-weight: bold;
    margin-top: -5px;
}

.err-close:hover,
.err-close:focus {
    /*color: #000;*/
    text-decoration: none;
    cursor: pointer;
}

.err-img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}