/**
 * @author Torje Nymo <tn@officelink.no>
 * @ 17.02.2016
 * @copyright 2015 OfficeLink as
 * @version 0.0.3
 */

/***
CUSTOMER INFO (MODAL))
***/
.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    width: 400px;
    max-height: 700px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }

.edit_order_data, .my_order_data {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}
.edit_order_data::-webkit-scrollbar, .my_order_data::-webkit-scrollbar  {
    width: 18px;
}
.edit_order_data::-webkit-scrollbar-track, .my_order_data::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
.edit_order_data::-webkit-scrollbar-thumb, .my_order_data::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    background-color: lightgray;
    /*background-color: green;*/
}
/*.edit_order_data::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: lightgreen;
}*/

.resource_properties_edit, .resource_properties_edit_newtext {
    border-radius: 10px;
}
.store_resource_change_block {
    margin-top: 10px;
}
.remove_resource_button {
    float: left;
}

.notes_log_field {
    display: none;
}
input.resource_properties_edit {
    text-align: center;
}
textarea.resource_properties_edit {
    height: 36px;
}
legend {
    font-size: 20px;
    font-weight: bold;
}
.see_resource_data {
    margin-left: 10px;
    opacity: 0.7;
}
.see_resource_data:hover {
    opacity: 1;
    cursor: pointer;
}
