@charset "UTF-8";
/**
*   images.wilkhahn.de
*   Layout StyleSheet
*   @author Tom Lohmann
*   @version 0.1
*
 */

/* ----- Fonts ------ */
@font-face
{
    font-family:FrutigerLT-Light;
    src:url('fonts/FrutigerLT-Light.woff') format('woff')
}

/* ----- RESET ----- */
/* http://html5doctor.com/html-5-reset-stylesheet/ */
* {
    box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, button,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}


/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
    min-width: 41em; /* Mindestbreite verhindert Umbruch und Anzeigefehler in modernen Browsern */
}

input, select {
    vertical-align:middle;
}

/* ----- General Style ------ */

body {
    color: #000000;
    background-color: #F5F5F8;
    font-size: 16px;
    font-family: FrutigerLT-Light, sans-serif;
    text-rendering: optimizeLegibility;
    line-height: 24px;
}

header {
    height: 100%;

}

main {
    height: 100%;
    min-height: 500px;
}

footer {
    height: 100%;
    min-height: 100px;
    text-align: center;
}

a {
    color: #000000;
}

a:hover {
    color: #6ea100;
}

a.green {
    color: #6ea100;
}

a.green:hover {
    color: #4b6e00;
}

input[class="btn"], .button.black.intern, .button.intern, .buttonlink, a.darkbuttonlink {
    align-items: center;
    background-color: #fff;
    border: solid 1px #6ea100;
    border-radius: 3px;
    color: #6ea100;
    padding: 7px 16px 8px;
    text-decoration: none;
}

.buttonlink.center {
    text-align: center;
}

input[class="btn"]:hover, .button.black.intern:hover, .button.intern:hover, .buttonlink:hover, a.darkbuttonlink:hover {
    background-color: #fff;
    color: #4b6e00!important;
    text-decoration: none;
    border: solid 1px #6ea100;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    color: inherit;
    display: block;
}

h1
{
    font-size: 48px;
    line-height: 48px;
}

h2
{
    font-size: 34px;
    line-height: 34px;
}

h3,
.h3 {
    font-size: 20px;
    color: #373737;
}

h4,
.h4 {
    font-size: 18px;
    color: #373737;
}

h5
{
    font-size: 16px;
}

h6
{
    font-size: 14px;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

/* Forms */

div.input-mask {
    float: left;
    background-color: #f5f5f5;
    color: #000000;
    padding: 32px 48px;
    margin: 22px 0 20px 15px;
}

.input-mask a,
.input-mask input,
.input-mask label {
    display: block;
}

.input-mask a,
.input-mask input {
    margin-bottom: 10px;
}

.input-mask table input {
    margin-bottom: 0;
    display: inline;
}

.column1_2 {
    clear: both;
    float: left;
}

.column2_2 {
    float: left;
    height: 100%;
    padding-left: 30px;
    margin-left: 30px;
}

.column2_2:after{
    clear: both;
}

.form-control {
    width: 100%;
    height: 36px;^
    padding: 6px 12px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    display: block;
    font-size: 16px;
    line-height: 1.428571429;
    color: #555555;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}

.input-mask select {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #75797b;

    display: inline-block;
    vertical-align: top;
    position: relative;
    height: 36px;
    width: 100%;
    min-width: 150px;
    margin: 0 0 15px;

    color: #575757;;
    background: transparent;

    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(/themes/wilkhahn/graphics/select_arrow_down.svg) 99% / 3% no-repeat;
}

.input-mask select::-ms-expand {
    display: none; /* hide the default arrow in ie10 and ie11 */
}

/* target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    .input-mask select {
        background-image:none\9;
        padding: 5px\9;
    }
}

.input-mask select:focus {
    outline: none;
    margin-bottom: 10px;
}

.email {
    min-width: 300px;
}

.captcha{
    display: block;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid #cccccc;;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #878787;
    color: #ffffff;
}

.btn:hover {
    border-color: #adadad;
}

.btn:active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    border-color: #8c8c8c;
}

/* Bar */

.bar {
    clear: both;
    line-height: 34px;
}

.bar div,
.bar a,
.bar i,
.bar input,
.bar select,
.bar label,
.bar p,
.bar button
{
    float:left;
    line-height: 34px;
}

.bar a:hover {
    text-decoration: underline;
}

.bar select,
select.bar {
    border-radius: 2px;
    border: 0.5px solid rgba(163,163,163,0.5);
    padding: 0 3px;
    margin: 5px 5px;

    position: inherit;
    display: inline-block;
    vertical-align: middle;
    line-height: 24px;
    height: 24px;
    width: 150px;

    color: #878787;
    background: transparent;

    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(/themes/wilkhahn/graphics/select_arrow_down.svg) 99% / 10% no-repeat;
}

.bar input{
    height: 26px;
    line-height: 26px;
    padding: 0 3px;
    margin: 4px 5px;
}

.bar .button{
    border: 0;

    cursor: pointer;
    background-image: none;
    background-color: transparent;

    -ms-touch-action: manipulation;
    touch-action: manipulation;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bar button {
    padding: 0 5px;
}

.bar .button:hover,
.bar .button:active,
.bar .button:focus  {
    color: #979797;
    cursor: pointer;
    outline: 0;
}

.bar .button:disabled,
.bar .button[disabled],
.bar .button:disabled:hover,
.bar .button:disabled:active,
.bar .button:disabled:focus {
    color: #c7c7c7;
    outline: 0;
}

.bar button:hover,
.bar select:hover {
    cursor: pointer;
}

.bar button:disabled {
    cursor: inherit;
    color: #c7c7c7;
}

/* DropDown in Leisten */
.dropdown {
    display: block;
    position: relative;
}

.dropdown-toggle{
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 8;
    display: none;
    float: left;
    min-width: 160px;
    list-style: none;
    font-size: 16px;
    text-align: left;
    background: #f7f7f7;
    padding: 8px 0;
}

.dropdown-menu > li {
    padding: 8px 24px;
    width: 100%;
    float: left;
    display: block;
    position: relative;
}

.dropdown .dropdown-menu.open {
    display: block;
}

.dropdown-menu > li > a,
.dropdown-menu > li > input.button {
    display: block;
    clear: both;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown-menu > li > input.button {
    height: 33px;
    margin: 0;
    width: 100%;
    text-align: left;
}

.dropdown-menu > li:last-child > a,
.dropdown-menu > li:last-child > input.button {
    border-bottom: none;
}

.dropdown-menu > li:focus,
.dropdown-menu > li:hover {
    background-color: #f5f5f5;
}

/* Tabs */

li.tab,
li.tab_selected {
    display: inline-block;
    list-style-type: none;
    margin: 0 5px 0 0;

}

a.tab,
a.tab_selected {
    background-color: #bfbfbf;
    padding: 10px 20px;
    border: none;
    display: inline-block;
    color: #fff;
}

a.tab:hover {
    text-decoration: underline;
}

a.tab_selected {
    text-decoration: underline;
    background-color: #969696;
}

/* ----- Custom Classes ----- */

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.hidden{
    display: none;
}

.disabled {
    color: #c7c7c7;
}

.border-top {
    border-top: 1px solid rgba(163,163,163,0.5);
}

.border-bottom {
    border-bottom: 1px solid rgba(163,163,163,0.5);
}

.border-left {
    border-left: 1px solid rgba(163,163,163,0.5);
}

.border-right {
    border-right: 1px solid rgba(163,163,163,0.5);
}

.big-block {
    padding-top: 22px;
    padding-bottom: 20px;
}

.center {
    margin-left: auto ;
    margin-right: auto ;
}

.page-headline {
    color: #000000;
    margin-top: 22px;
    margin-bottom: 20px;
}

.caret
{
    display:inline-block;
    width:0;
    height:0;
    margin-left:2px;
    vertical-align:middle;
    border-top:4px dashed;
    border-top:4px solid \9;
    border-right:4px solid transparent;
    border-left:4px solid transparent
}

/* ----- Specific Styles ----- */

/* Main Frame */
div#main_frame {
    background-color: #fff;
    width: 1230px;
    min-width: 930px;
    padding-left: 45px;
    padding-right: 45px;
    margin-right: auto;
    margin-left: auto;
    height: auto;
    overflow: auto;
}

/* Navigation General */
nav a {
    line-height: 22px;
    display: block;
}

/* Logo */
div#logo {
    width: 550px;
    height: 44px;
    font-size: 20px;
    line-height: 22px;
    position: relative;
}

div#logo img:hover,
label#logo_headline:hover {
    cursor: pointer;
}

div#logo img {
    width: 240px;
    height: 44px;
    float: left;
}

label#logo_headline {
    float: left;
    font-size: 24px;
    position: absolute;
    bottom: -2px;
    margin: 0 0 0 10px;
}

/* Navigation Top */
nav.topbar {
    min-height: 70px;
    margin-top: 50px;
    margin-bottom: 22px;
    border: 1px solid transparent;
}

ul.topbar {
    list-style-type: none;
    margin-top: 20px;
}

.topbar li a {
    padding: 14px 15px;
    position: relative;
}

ul.topbar li {
    float: left;
    display: block;
    position: relative;
}

.topbar .dropdown-menu > li > a {
    padding: 0px;
}

div.quicksearch {
    width: 400px;
    padding: 9px 8px;
}

#quicksearch{
    float:left;
    width: 330px;
    color: #474747;
}

#search_button {
    float: left;

    width: 46px;
    height: 26px;
    padding: 4px 0;
    margin-top: 2px;
    margin-left: 6px;
    border-radius: 2px;

    text-align: center;
    color: #FFFFFF;
    border-color: #666666;
    background-color: #CECECE;
    background-image: none;
    filter: none;
}

#search_button:hover,
#search_button:active {
    background-color: #9E9E9E;
}

div.quicksearch a.quicksearch {
    clear: both;
    padding: 10px 0 0;
    width: 100%;
}
div.quicksearch a.quicksearch:hover,
div.quicksearch a.quicksearch:active {
    text-decoration: underline;
}

/* Breadcrumbs */
i.breadcrumbs {
    padding: 0 7px 0 7px ;
    font-size: 14px;
}
/* Content */


/* Footer */
footer a {
    padding: 15px;
    display: inline-block;
}
footer a:hover {
    text-decoration: underline;
}

/* ----- Page Specific Styles ----- */

/* Login */
div.login-message {
    background-color: #f5f5f5;
    padding: 5px;
    margin: 15px 15px 14px 15px;
    color: #000000;
}

.login-message ol {
    padding-left: 35px;
    color: #000000;
    font-size: 15px;
}

img.login-screen {
    float: left;
    padding-left: 150px;
    margin: 22px 0 20px 0;
}

/* Account bearbeiten, Nutzer anlegen */

#user-settings-outer {
    padding: 0 15px;
    height: 100%;
}

#user-settings-inner {
    margin: 22px 0 20px;
    width: 645px;
}

#user-settings-inner div{
    clear: both;
    margin-bottom: 3px;
}

#user-settings-inner input,
#user-settings-inner a,
#user-settings-inner select {
    margin-bottom: 0;
}

div.user_groups label,
div.user_groups input {
    float: left;
}
div.user_groups input {
    clear: both;
}

div.Benutzername label,
div.User.name label,
div.Usuario label {
    float: left;
    padding-right: 10px;
    margin-bottom: 5px;
}

#user-settings-inner > div > a.btn{
    margin-top: 20px;
    display: inline-block;
    float: right;
}

/* Impressum + Rechliche Hinweise */
#imprint,
#legal_provisions,
#help{
    border-top: 1px solid rgba(163,163,163,0.5);
    padding-bottom: 20px;
}

#imprint b,
#imprint strong,
#legal_provisions b {
    color: #000000;
}

#imprint p {
    max-width: 400px;
    padding-bottom: 2px;
    margin: 18px 0;
    line-height: 16px;
}

#legal_provisions p {
    max-width: 800px;
    padding-bottom: 2px;
}

#legal_provisions ol {
    position: relative;
    left: 50px;
}

div.headline,
#imprint p.headline,
#legal_provisions p.headline,
#help p.headline {
    font-size:34px;
    line-height: 34px;
    padding: 17px 0 15px 0;
    color: #000000;
}

#help a.tab_selected {
    padding: 0;
    border: none;
    color: #676767;
    background-color: inherit;
}

#help a.tab_selected:hover {
    color: #878787;
}

/* Neuaufnahmen */
.checkboxes {
    height:100%;
    padding-bottom: 30px;
}

/* Info Ansicht */
div.headline a i.fa {
    font-size: 26px;
    padding: 4px 0 4px 8px;
}

/* Download Pop-Up */
div.download_popup {
    background: #ffffff;
    padding: 30px 30px;
    text-align: left;
    max-width: 500px;
    margin: 40px auto;
    position: relative;
    line-height: 21px;
    color: #000000;
}

h3.download_title {
    padding-top: 10px;
    font-size: 22px;
    line-height: 24px;
}

p.download_hint {
    padding-top: 15px;
}

div.download_link {
    font-size: 18px;
    padding-top: 10px;
}

div.download_link i {
    padding-right: 10px;
    font-size: 18px;
}

label.download_info {
    display: block;
    padding-left: 26.7px;
    font-size: 14px;
    cursor: text;
}

div.download_terminology {
    font-size: 14px;
    line-height: 17px;
    padding-top: 15px;
}

div.download_terminology p{
    padding-top: 5px;
}

div.download_terminology b {
    color: #070707;
    font-weight: bold;
}

/* Logs */
div.log {
    padding-top: 20px;
    overflow-y: scroll;
}

.log table{
    border: 1px solid black;
    border-collapse: collapse;
}

.log td {
    border: 1px solid black;
    color: #676767;
    font-size: 16px;
    font-family: Helvetica, Arial, Geneva, sans-serif;
    text-decoration: none;
    padding: 2px;
}

.log tr.c0 {
    background-color: #ffffff;
}

.log tr.c1		{
    background-color: #eeeeee;
}

/* Userliste */
div.user_list {
    padding: 15px 0;
}

div.user_list_table {
    overflow-y: scroll;
    color: #000000;
    font-family: Helvetica, Arial, Geneva, sans-serif;
}

.user_list_table table {
    border: 1px solid black;
    border-collapse: collapse;
}

.user_list_table td {
    border: 1px solid black;
    padding: 0 2px;
}

/* Warenkorbabholer */
div.cart_assign {
    background: #ffffff;
    padding: 30px 30px;
    text-align: left;
    max-width: 700px;
    height: 500px;
    overflow-y: scroll;
    margin: 40px auto;
    position: relative;
    line-height: 21px;
    color: #676767;
}

div#cart_assign_user_search
{
    display: none;
    visibility: hidden;
    padding: 10px 5px;
}

div#cart_assign_user_registry
{
    padding: 10px 5px;
    display: none;
    visibility: hidden;
}

div#cart_assign_user_search table {
    width : 100%;
}

div#cart_assign_user_search table th {
    padding: 2px;
    background-color: #969696;
    cursor: pointer;
}

div#cart_assign_user_search tbody tr {
    z-index: +5;
}

div#cart_assign_user_search td {
    padding: 2px;
    cursor: default;
}

div#cart_assign_user_search #search_collector {
    min-width: 250px;
    display: block;
    margin-top: 2px;
}

div#cart_assign_user_search #user_search {
    display: block;
    margin-top: 10px;
}

div#cart_assign_user_search tbody tr:hover {
    background-color: #e6e6e6;
}

div#cart_assign_user_search tbody tr.selected {
    background-color: #b6b6b6;
}

div#cart_assign_user_search tbody tr.selected:hover {
    background-color: #b6b6b6;
}

div#cart_assign_user_registry select{
    clear: both;
    float: left;
    border-radius: 2px;
    border: 0.5px solid rgba(163,163,163,0.5);
    padding: 0 15px 0 3px;
    margin: 4px 0 6px;
    line-height: 24px;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(/themes/wilkhahn/graphics/select_arrow_down.svg) 100% / 13px no-repeat;)
}

div#cart_assign_user_registry lable {
    clear: both;
    display: block;
    float: left;
    line-height: 24px;
    padding: 1px 0;
}

div#cart_assign_user_registry input {
    clear: both;
    float: left;
    height: 26px;
    width: 200px;
    margin-bottom: 6px;
}

div#cart_assign_user_registry input.btn {
    clear: both;
    height: auto;
    width: auto;
    margin: 8px 0 0;
}

p.error {
    color: #d52813;
}

div#cart_assign_email {
    padding: 10px 5px;
    margin-right: 15px;
}

li.tab.back {
    float: right;
}

a.tab.back {
    background-color: inherit;
    color: #878787;
    font-size: 20px;
}

a.tab.back:hover {
    color: #575757;
    cursor: pointer;
}

p.terms_of_use_headline {
    font-weight: bold;
    color: #000000;
}

ol.terms_of_use {
    margin-left: 2.5rem;
    margin-right: 20rem;
}

.terms_of_use.popup {
    margin-right: 0rem;
}

#terms_of_use_text {
    padding: 1rem 0rem;
}

.terms_of_use.dropdown-toggle {
    text-decoration: underline;
    font-weight: bold;
    font-style: italic;
}

.terms_of_use_agreement {
    margin-top: 1rem;
}

.terms_of_use_copyrightholder {
    margin: 1rem 0rem;
    padding: 0.5rem;
    background-color: #eeeeee;
}

div.download_link.disabled a{
    cursor: text;
}

div.div-button {
    font-size: 14px;
    cursor: pointer;
}

div.div-button i.glyphicon {
    line-height: 14px;
    vertical-align: middle;
}

div.p1000 {
    padding-top: 0.25rem;
}

div.p2020 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
