/****************************
 * Inhaltsverzeichnis
 *
 * 1.0 - Reset
 * 2.0 - Hilfsklassen
 * 3.0 - Clearings
 * 4.0 - Global Styles (HTML Elemente)
 * 5.0 - Typography
 * 6.0 - Forms
 * 7.0 - Navigation
 * 8.0 - Layout
 *   8.1 - Header
 *   8.2 - Main
 *   8.3 - Footer
 * 9.0 - Seitenelemente
 * 10.0 - Media (Shopgrafiken)
 * 11.0 - Media Queries
 *    11.1 - XS
 *    11.2 - SM
 *    11.3 - MD
 *    11.4 - LG
 *    11.5 - XL
 * 12.0 - Print
 *****************************/


/*****************************
 *
 * 1.0 Reset
 *
 ***********************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    -moz-box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    font-size:62.5%;
}

*,
*:before,
*:after {
    -moz-box-sizing: inherit;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: #fff;
    overflow: hidden;
}

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

ol,
ul {
    list-style: none;
}

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

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

a:focus {
    outline: 2px solid #c1c1c1;
}

a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}

/****************************
 *
 * 3.0 Hilfsklassen
 *
 ***********************************************************/
.block{
    margin-bottom: 20px;
}
.block-small{
    margin-bottom: 10px;
}
.block-big{
    margin-bottom: 35px;
}
.row-reset{
    margin-left: 10px;
    margin-right: 10px;
}
.left-row-reset{
    margin-left: 10px;
}
.right-row-reset{
    margin-right: 10px;
}

.pos-relative{
    position: relative;
}
.pos-absolute{
    position: absolute;
}
.pos-inherit{
    position: inherit !important;
}

.block-reset{
    margin-bottom: 0 !important;
}

.col-reset {
    padding-left: 0;
    padding-right: 0;
}
.left-col-reset {
    padding-left: 0;
}
.right-col-reset {
    padding-right: 0;
}

.display-block {
    display: block ! important;
}
.display-inline {
    display: inline;
}
.display-inlineblock {
    display: inline-block;
}
.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.baseline-content {
    display: table;
}

.baseline-content > *{
    display: table-cell;
    height: inherit;
    vertical-align: middle;
}

.hidden-overflow {
   overflow: hidden;
   position: relative;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}

.icon-lg {
    font-size: 1.33333333em;
    vertical-align: -15%;
}
.icon-sm{
    font-size: 0.55em;
    vertical-align: 15%;
}
.icon-md{
    font-size: 0.75em;
    vertical-align: 15%;
}
.icon-2x {
    font-size: 1.5em;
}
.icon-3x {
    font-size: 2.5em;
}
.icon-4x {
    font-size: 3em;
}
.icon-5x {
    font-size: 5em;
}
.button-fw,
.full-width{
    width: 100%;
}
.align-top {
    vertical-align: top ! important;
}
.align-middle {
    vertical-align: middle ! important;
}
.align-bottom {
    vertical-align: bottom ! important;
}
.align-sub {
    vertical-align: sub ! important;
}

.no-margin {
    margin: 0px ! important;
}
.no-padding {
    padding: 0px ! important;
}
.no-border {
    border: 0px none ! important;
}
.no-floating {
    float: none ! important;
}
.autowidth{
    width: auto;
}
.margin-center{
    margin: 0 auto;
}

.opacity10 {
    opacity: 0.1;
}
.opacity20 {
    opacity: 0.2;
}
.opacity30 {
    opacity: 0.3;
}
.opacity40 {
    opacity: 0.4;
}
.opacity50 {
    opacity: 0.5;
}
.opacity60 {
    opacity: 0.6;
}
.opacity70 {
    opacity: 0.7;
}
.opacity80 {
    opacity: 0.8;
}
.opacity90 {
    opacity: 0.9;
}
.no-hover {
    text-decoration: none;
}
.text-50 {
    font-size: 10px;
}
.text-200 {
    font-size: 24px;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}
.text-hervorhebung {
    font-weight: 700;
    font-size: 115%;
}
strike, .strike {
    text-decoration: line-through;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-pre {
    white-space: pre !important;
}
.text-normal-whitespace {
    white-space: normal !important
}
.text-lowercase {
    text-transform: lowercase;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-capitalize {
    text-transform: capitalize;
}
.text-strong {
    font-weight: 700;
}
.text-italic {
    font-style: italic;
}
.text-normal {
    font-weight: 400 !important;
}
.text-underline{
    text-decoration: underline;
}
.text-underline:hover{
    text-decoration: none;
}
.text-hover-underline{
    text-decoration: none;
}
.text-hover-underline:hover{
    text-decoration: underline;
}
.padding-wide{
    padding: 18px !important;
}
.left-padding-wide{
    padding-left: 18px !important;
}
.right-padding-wide {
    padding-right: 18px !important;
}
.bottom-padding-wide{
    padding-bottom: 18px !important;
}
.top-padding-wide{
    padding-top: 18px !important;
}
.padding-small{
    padding: 6px !important;
}
.left-padding-small {
    padding-left: 6px !important;
}
.right-padding-small{
    padding-right: 6px !important;
}
.bottom-padding-small{
    padding-bottom: 6px !important;
}
.top-padding-small{
    padding-top: 6px !important;
}
.padding-tiny{
    padding: 3px !important;
}
.left-padding-tiny {
    padding-left: 3px !important;
}
.right-padding-tiny{
    padding-right: 3px !important;
}
.bottom-padding-tiny{
    padding-bottom: 3px !important;
}
.top-padding-tiny{
    padding-top: 3px !important;
}
.right-padding-none {
    padding-right: 0 !important;
}
.left-padding-none{
    padding-left: 0 !important;
}

.margin-wide{
    margin: 12px !important;
}
.left-margin-wide{
    margin-left: 12px !important;
}
.right-margin-wide{
    margin-right: 12px !important;
}
.top-margin-wide{
    margin-top: 12px !important;
}
.bottom-margin-wide{
    margin-bottom: 12px !important;
}
.margin-small{
    margin: 4px !important;
}
.left-margin-small{
    margin-left: 4px !important;
}
.right-margin-small{
    margin-right: 4px !important;
}
.top-margin-small{
    margin-top: 4px !important;
}
.bottom-margin-small{
    margin-bottom: 4px !important;
}
.margin-tiny{
    margin: 2px !important;
}
.left-margin-tiny{
    margin-left: 2px !important;
}
.right-margin-tiny{
    margin-right: 2px !important;
}
.top-margin-tiny{
    margin-top: 2px !important;
}
.bottom-margin-tiny{
    margin-bottom: 2px !important;
}
.margin-wide{
    margin: 15px !important;
}
.left-margin-wide{
    margin-left: 15px !important;
}
.right-margin-wide{
    margin-right: 15px !important;
}
.top-margin-wide{
    margin-top: 15px !important;
}
.bottom-margin-wide{
    margin-bottom: 15px !important;
}
.tbl {
    display: table !important;
    table-layout: fixed;
    height: 100%;
}
.tbl-row {
    display: table-row !important;
    width: 100%;
}
.tbl-cell {
    display: table-cell !important;
}
.no-float {
    float: none;
}
.tbl-row,
.tbl-cell,
.tbl-cell > div {
    height: 100%;
}

.height-100 {
    height: 100%;
}

.border{
    border: 1px solid #ddd;
}
.border-left{
    border-left: 1px solid #ddd;
}
.border-right{
    border-right: 1px solid #ddd;
}
.border-top{
    border-top: 1px solid #ddd;
}
.border-bottom{
    border-bottom: 1px solid #ddd;
}
.border-wk-info {
    border:1px solid #DDD;
    border-left: 5px solid #DDD;
}

.cursor-pointer {
    cursor: pointer;
}

/*-------------------------*/


.equal-height, .row.equal-height {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    -webkit-flex-basis: 100%;
    display: flex;
    flex: 1 0 100%;
    flex-flow: row wrap;
}
.row.equal-height > div:not(.ueberschrift) {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    display: flex;
    flex-flow: row wrap;
}

.display-flex,
.row.equal-height:before,
.row.equal-height:after {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-row-wrap{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    display: flex;
    flex-flow: row wrap;
}
.flex-row-nowrap{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -ms-flex-wrap: nowrap;
    flex-flow: row nowrap;
    display: flex;
    flex: 1;
}
.flex-column{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: normal;
    -ms-flex-direction: column;
    display: flex;
    flex-flow: column;
    flex: 1;
}
.flex-basis-100{
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
}
.flex-basis-auto{
    -webkit-flex-basis: auto;
    flex-basis: auto;
}
.flex-grow-2{
    -webkit-flex-grow: 2;
    flex-grow: 2;
}
.flex-grow-1{
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.flex-grow-8{
    -webkit-flex-grow: 8;
    flex-grow: 8;
}
.flex-grow-4{
    -webkit-flex-grow: 4;
    flex-grow: 4;
}
.jfy-c-space-around{
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.jfy-c-space-between{
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.jfy-c-space-evenly{
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
}
.jfy-c-center{
    -webkit-justify-content: center;
    justify-content: center;
}
.jfy-c-flex-end{
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.jfy-c-flex-start{
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.align-s-center{
    -webkit-align-self: center;
    align-self: center;
}
.align-c-center{
    -webkit-align-content: center;
    align-content: center;
}
.align-i-center{
    -webkit-align-items: center;
    align-items: center;
}
.align-s-flex-start{
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.align-i-flex-start{
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.align-c-flex-start{
    -webkit-align-content: flex-start;
    align-content: flex-start;
}
.align-s-flex-end{
    -webkit-align-self: flex-end;
    align-self: flex-end;
}
.align-i-flex-end{
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.align-c-flex-end{
    -webkit-align-content: flex-end;
    align-content: flex-end;
}
.align-i-stretch{
    -webkit-align-items: stretch;
    align-items: stretch;
}

/****************************
 *
 * 4.0 Clearings
 *
 ***********************************************************/

.clear:before,
.clear:after { /* zu erweitern! */
    content: "";
    display: table;
}

.clear:after {
    clear: both;
}
.clear-right {
    clear: right;
}
.clear-left {
    clear: left;
}

/*****************************
 *
 * 5.0 Global Styles (HTML Elemente)
 *
 ***********************************************************/

hr {
    background-color: #eaeaea;
    border: 0;
    height: 1px;
    margin-bottom: 20px;
}

ul,
ol {
    margin: 0 0 1.6em 1.3333em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
}

dl {
    margin-bottom: 1.6em;
}

dt {
    font-weight: bold;
}

dd {
    margin-bottom: 1.6em;
}

table,
th,
td {
    border: 1px solid #eaeaea;
    border: 1px solid rgba(51, 51, 51, 0.1);
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0;
    width: 100%;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #F6F6F6;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: 700;
}

td {
    border-width: 0 1px 1px 0;
}

th, td {
    padding: 6px;
}


/*****************************
 *
 * 6.0 Typographie
 *
 ***********************************************************/

body,
button,
input,
select,
textarea {
    color: #333;
    font-family: Open Sans, Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

textarea {
  resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-weight: 700;
}

p {
    margin-bottom: 1.6em;
}

b,
strong {
    font-weight: 700;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

.bg-weiss{
    background: #fff;
}

.clr-weiss{
    color: #fff;
}

.clr-primary{
    color: #213D77;
}

/*****************************
 *
 * 7.0 Formulare
 *
 ***********************************************************/

button,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
select,
textarea {
    background-color: #f7f7f7;
    border-radius: 0;
}

button,
input,
select,
textarea {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
}

button,
input {
    line-height: normal;
}

input,
textarea {
    border: 1px solid #eaeaea;
    border: 1px solid rgba(51, 51, 51, 0.1);
    color: #707070;
    color: rgba(51, 51, 51, 0.7);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}


input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    background-color: #fff;
}

input:focus,
textarea:focus {
    border: 1px solid #c1c1c1;
    border: 1px solid rgba(51, 51, 51, 0.3);
    color: #333;
}

input:focus{
    outline: 2px solid #c1c1c1;
    outline: 2px solid rgba(51, 51, 51, 0.3);
}

button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
    cursor: default !important;
    opacity: .5;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    background-color: #333;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    font-size: 12px;
    padding: 0.7917em 1.5em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    background-color: #707070;
    background-color: rgba(51, 51, 51, 0.7);
    outline: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    padding: 0.375em;
    width: 100%;
}*/

input[type="number"] {-moz-appearance: textfield;}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: 0;
}


input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}


button,
input,
select,
textarea {
    border: 1px solid #DDDDDD;
    vertical-align: middle;
}
/*-------------------------------------*/

input.input-small {
    width: 75% !important;
}

input.input-initial {
    width: initial !important;
}

.field-wrapper {
    clear: both;
    margin: 0 0 15px;
    height: 100%;
    position: relative;
}

.field-wrapper:not(.multiple) > div,
.field-wrapper.multiple div.row {
    display: table;
    width: 100%;
}

.field-wrapper span.tt{
    width: 30px;
    text-align: center;
    display: table-cell;
}

.no-tt .field-wrapper span.tt{
    width: 0;
}
.no-tt .field-wrapper .button {
    margin-right: 0;
}

.field-wrapper span.tt[class*="icon-"]{
    cursor: pointer;
}

.dialog-wrapper span:not(.icon){
    display: block;
    padding: 5px 0;
}

.field-wrapper .button {
    margin-right: 30px;
}

.dialog-wrapper > *:last-child {
    margin-bottom: 15px;
}
.dialog-wrapper .warnung{
    margin-top: 0;
}

/*gesplitteter field-wrapper*/
.field-wrapper.multiple .row,
.field-wrapper.multiple.row {
    margin: 0 !important;
}

form .field-wrapper div[class*="col-"]{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.input-wrapper {
    display: block;
    margin-bottom: 5px;
    margin-top: 8px;
    /*overflow: hidden;*/
    position: relative;
}

input[type='button'],
input[type='reset'],
input[type='submit']{
    display: inline-block;
    line-height: 1;
}

.input-wrapper input[type="text"],
.input-wrapper input[type="email"],
.input-wrapper input[type="number"],
.input-wrapper input[type="tel"],
.input-wrapper input[type="url"],
.input-wrapper input[type="password"],
.input-wrapper input[type="search"],
.input-wrapper select{
    background-color: #F6F6F6;
    border: 1px solid #ddd;
    display: table-cell;
    font-weight: normal;
    margin: 0;
    outline: medium none;
    padding: 8px 5px;
    width: 100%;
    height: 38px;
}

.input-wrapper select{
    padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
    outline: medium none;
}

.d_form {
    display: inline;
}
.field-wrapper input#EMAIL,
.field-wrapper input#LIS_EMAIL{
    padding-left: 32px;
}

/*****************************
 *
 * 8.0 Navigation
 *
 ***********************************************************/

/** 8.1 Links
 *****************************/

a {
    color: #333;
    text-decoration: none;
}


 /****************************
 *
 * 11.0 Media
 *
 ***********************************************************/

img{
    border: 0 none;
    display: block;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.img-responsive{
    width: 100%;
}

 /****************************
 *
 * 12.0 Media Queries
 *
 ***********************************************************/

 /** 12.1 - XS
 *****************************/

@media (max-width : 768px) {
    .xs-button-fw{
        width: 100%;
    }

    .xs-no-margin{
        margin: 0 !important;
    }

    .xs-no-padding{
        padding: 0 !important;
    }

    .xs-flex-basis-100{
        -webkit-flex-basis: 100% !important;
        flex-basis: 100%m !important;
    }

    .xs-jfy-c-center{
        -webkit-justify-content: center;
        justify-content: center;
    }

    .xs-flex-order-2{
        order: 2;
    }
    .xs-no-border{
        border: none;
    }
}

 /** 12.2 - SM
 *****************************/

@media (min-width: 768px) {
    .xs-flex-order-2 {
        order: inherit;
    }
}

 /** 12.3 - MD
 *****************************/

@media (min-width: 992px) {

}

 /** 12.4 - LG
 *****************************/

@media (min-width: 1200px) {
}

 /** 12.5 - XL
 *****************************/

@media (min-width: 1550px) {

}


/* NUR SM */
@media (min-width: 768px) and (max-width: 991px) {
}

/* NUR MD */
@media (min-width: 992px) and (max-width: 1199px) {

}

/*MOBILE - NUR XS und SM*/
@media (max-width: 991px) {
    .mobile-button-fw{
        width: 100%;
    }
    .mobile-jfy-c-center{
        -webkit-justify-content: center;
        justify-content: center;
    }
}

 /****************************
 *
 * 13.0 Print
 *
 ***********************************************************/

@media print {
    body {
        background: none !important;
        font-size: 14px;
    }

    .navigation,
    button,
    input,
    textarea,
    select {
        display: none;
    }

    body,
    a {
        color: #000 !important;
    }

    .img-responsive,
    .thumbnail > img,
    .thumbnail a > img,
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
        width: auto !important;
    }
}