/*** /user/address page ***/
.addresses_table{
    border: 1px solid gray;
}
.addresses_table .thead{
    background-color: lightgreen;
}
.addresses_thead_address{
    width: 100%;
}
.addresses_thead_actions{
    text-align: center;
}
.addresses_table td{
    border: 1px solid gray;
    padding: 10px;
}
/***** generic info/error classes *****/
.info {
    display: inline-block;
    color: white;
    background-color: green;
    font-weight: bold;
    margin-right: 10px;
    border-radius: 12px;
    padding: 4px;
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
}
.error {
    display: inline-block;
    color: white;
    background-color: red;
    font-weight: bold;
    margin-right: 10px;
    border-radius: 12px;
    padding: 4px;
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
}
.red {
    color: red;
    font-weight: bold;
}
.green {
    color: green;
    font-weight: bold;
}
/***** VueJS  *************************/
[v-cloak] {
    display: none;
}

/******* Contact form ********/
.error-msg {
    font-size: 14px;
    color: red;
    font-weight: bold;
}
.contact_feedback{
    border: 1px solid lightgray;
    padding: 15px;
    padding-bottom: 30px;
    border-radius: 16px;
    margin-bottom: 50px;
}
.contact_feedback.contact_feedback_fail {
    text-align: center;
    position: relative;
    width: 365px;
}
.contact_feedback.contact_feedback_success {
    text-align: left;
    width: 400px;
}
#inputfile_progress{
    display: none;
    position: relative;
    width: 100%;
    border: 2px solid #80dd80;
    border-radius: 12px;
}
.progressbar {
    height: 18px;
    background: #90ee90;
    border-radius: 8px;
}
.progresslabel{
    position: absolute;
    top: 2px;
    left: 48%;
    font-weight: bold;
    color: black;
}