/* CSS 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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
body {
    line-height: 1
}
ol, ul {
    list-style: none
}
blockquote, q {
    quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}
strong {
    font-weight: bold
}
i {
    font-style: italic
}
a {
    text-decoration: none
}
/* GENERIC PROPERTIES
____________________________________*/
html {
    height: 100%;
    font-size: 10px;
    background-color: #ffffff
}
body {
    height: 100%;
    font-family: "Georgia",serif, sans-serif;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-size: 1.6rem;
    line-height: 2.4rem;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column
}
main {
    -moz-box-flex: 1;
     -ms-flex: 1 0 auto;
         flex: 1 0 auto;
    background-color: #f2f1ec
}
body.is-public {
    background-color: #f2f1ec
}
input::-ms-clear {
    display: none
}
/* Removing the "clear" that IE ads automatically in the input fields */
select::-ms-expand {
    display: none
}
/* Removing the dropdown arrow in IE*/
a {
    color: inherit
}
a:link, a:visited, a:hover, a:active {
    text-decoration: none
}
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 1px dashed #000
}
/* WCAG - actionable elements having a clear and visible outline when focused. */
a > .icon {
    width: 2.1rem;
    height: 2.1rem;
    position: relative;
    top: .6rem;
    left: .5rem
}
.clear {
    clear: both
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0
}
.hidden {
    opacity: 0;
    height: 0;
    visibility: hidden;
    display: none
}
.tooltip-visible {
    overflow: hidden
}
@media all and (max-width:540px) {
    .hidden-mobile {
        display: none
    }
}
/* Dividers
____________________________________*/
.dotted-divider {
    width: 100%;
    margin: 6rem 0 1.5rem;
    border-bottom: .1rem dotted #000
}
/* DEFAULT CONTAINER --> edit widths as needed
____________________________________*/
.box-wide {
    width: 92%;
    margin: auto;
    max-width: 98.8rem
}
.not-public .box-wide {
    max-width: 120rem
}
.accordion.box-wide {
    min-width: initial
}
/* Custom grid: Open page only
____________________________________*/
.box-medium {
    width: 92%;
    margin: auto;
    min-width: 76.8rem;
    max-width: 99.6rem;
    padding: 0 0 6rem 0;
    margin-bottom: 4rem
}
/* Typgraphy
____________________________________*/
h1, h2, h3 {
    font-family: "Minion W01 Bd", serif
}
h1 {
    font-size: 4rem;
    line-height: 4.4rem
}
h2 {
    font-size: 3rem;
    line-height: 3.4rem
}
h3 {
    font-size: 2.4rem;
    line-height: 2.8rem
}
p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1.8rem
}
.last-published {
    font-size: 1.6rem;
    color: rgba(0,0,0,.5);
    line-height: 2rem;
    font-family: "Georgia", sans-serif
}
.section-headline {
    font-size: 4rem;
    line-height: 1.2;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: .3rem solid black
}
.section-headline.small {
    font-size: 2.4rem;
    border-bottom: .2rem solid black;
    padding-bottom: 1.2rem
}
/*
* Page layout 
*/
.page-header {
    border-bottom: .2rem solid black;
    margin-top: 7rem
}
.page-headline {
    font-size: 5rem;
    word-break: break-word;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 2rem;
    text-align: left
}
.page-description {
    font-size: 2.6rem;
    line-height: 1.2;
    margin: 1rem 0
}
.page-content {
    max-width: 100%
}
.page .content-editor {
    margin: 3rem 0 7rem 0;
    padding-bottom: 4rem;
    max-width: 70%
}
@media (max-width: 920px) {
    .page .content-editor {
        max-width: 100%
    }
}
@media (max-width: 540px) {
    .page-header {
        margin-top: 3rem
    }
    .page-headline {
        font-size: 3.6rem
    }
    .page-description {
        font-size: 1.8rem
    }
    .page-content {
        max-width: 100%
    }
    .page .content-editor {
        margin: 2rem 0 3rem 0;
        padding-bottom: 2rem;
        word-break: break-word
    }
}
/* GRID --> edit gutter as needed
____________________________________*/
.box-full {
    width: 100%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.box-half {
    width: 50%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.box-third {
    width: 33.333%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.box-two-thirds {
    width: 66.66%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.box-quarter {
    width: 25%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.box-three-quarters {
    width: 75%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.column-grid {
    width: -moz-calc(100% + 3rem);
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
.column-grid > .box-quarter {
    width: -moz-calc(25% - 3rem);
    width: calc(25% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem
}
.column-grid > .box-third {
    width: -moz-calc(33.333% - 3rem);
    width: calc(33.333% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem
}
.column-grid > .box-two-thirds {
    width: -moz-calc(66.66% - 3rem);
    width: calc(66.66% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem
}
.column-grid > .box-full {
    width: -moz-calc(100% - 3rem);
    width: calc(100% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem
}
.column-grid > .box-half {
    width: -moz-calc(50% - 3rem);
    width: calc(50% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    position: relative
}
.column-grid > .box-three-quarters {
    width: -moz-calc(75% - 3rem);
    width: calc(75% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem
}
@media (max-width:920px) {
    body.expanded-menu {
        overflow: hidden
    }
}
@media (max-width: 768px) {
    .column-grid > .box-third, .column-grid > .box-quarter {
        width: -moz-calc(50% - 3rem);
        width: calc(50% - 3rem)
    }
}
@media (max-width: 540px) {
    .dotted-divider {
        margin: 2rem 0 1.5rem
    }
    .column-grid > .box-third, .column-grid > .box-quarter, .column-grid > .box-half {
        width: -moz-calc(100% - 3rem);
        width: calc(100% - 3rem)
    }
}
/**
* Buttons
*/
.button-wrapper {
    text-align: left;
    margin: .2rem .2rem 1rem .2rem
}
.button-wrapper.right {
    text-align: right
}
.button {
    padding: 1.43rem 1.5rem;
    min-width: 15rem;
    position: relative;
    font-size: 1.6rem;
    background-color: #8ad2f1;
    border: 0;
    color: black;
    display: inline-block;
    border: .1rem dotted transparent;
    text-align: center;
    cursor: pointer;
    -moz-transition: background-color .4s;
    transition: background-color .4s;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -moz-border-radius: 0;
         border-radius: 0;
    font-family: "Georgia", serif, sans-serif
}
.button.transparent {
    background: #fff;
    border: .1rem solid #8ad2f1;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.button.right {
    float: right
}
.button.left {
    float: left
}
.button:hover {
    background-color: #8ad2f1
}
.button.close-overlay {
    background-color: #000000;
    color: #ffffff;
    text-decoration: none
}
.button.close-overlay:hover {
    color: #ffffff
}
.button.with-arrow {
    min-width: 31.4rem;
    text-align: left;
    float: right;
    margin-top: 2rem
}
.button.with-arrow:before, .button.with-arrow:after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 0;
    bottom: 0;
    margin: auto
}
/* arrow stick */
.button.with-arrow:after {
    top: 50%;
    width: .7rem;
    height: .1rem;
    background-color: black;
    top: 0;
    bottom: 0;
    margin: auto
}
/* arrow head */
.button.with-arrow:before {
    border-left: .1rem solid black;
    border-top: .1rem solid black;
    width: .4rem;
    height: .4rem;
    right: 1.8rem;
    -moz-transform: rotate(135deg);
     -ms-transform: rotate(135deg);
         transform: rotate(135deg)
}
.button.hero {
    padding: 2rem 0;
    min-width: 25rem;
    font-size: 3rem
}
.button.full-width {
    display: block;
    min-width: initial;
    width: 100%
}
.button.wide {
    padding: 1.5rem 2rem
}
.button-description {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 1rem 0
}
.button.questionnaire-choice-item-button {
    display: table
}
.button.reject {
    background-color: transparent;
    border: .1rem dotted #969696;
    color: #969696
}
.button.disabled {
    background-color: transparent;
    border: .1rem dotted #969696;
    color: #969696;
    cursor: default
}
.button.with-arrow.disabled:before {
    border-color: #969696
}
.button.with-arrow.disabled:after {
    background-color: #969696
}
.button.js-send-claim-button.disabled {
    padding-right: 6rem
}
.button.js-send-claim-button.disabled .spinner {
    display: block;
    position: absolute;
    right: 6px;
    top: -2px
}
@media all and (max-width:768px) {
    .button-wrapper {
        margin-left: 0;
        margin-right: 0
    }
    .button-wrapper .button {
        width: 100%
    }
    .claim-page .button {
        width: 100%
    }
    .claim-page .button + .button {
        margin-top: 1rem
    }
}
.header {
    position: relative;
    background-color: #fff
}
.header-inner {
    padding-top: 5rem;
    padding-bottom: 4.6rem;
    position: relative;
    white-space: nowrap;
    max-width: 120rem
}
.header-logo {
    display: inline-block;
    width: 25%;
    vertical-align: bottom
}
.header-logo-link {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1;
    font-family: "Minion W08 Dsp Regular", Georgia
}
.logo-emphasized {
    font-weight: bold;
    display: block;
    margin-bottom: .3rem
}
.header-title {
    display: inline-block;
    text-align: center;
    width: 50%
}
.header-title-text {
    font-size: 4rem;
    margin: 0;
    font-weight: bold;
    font-family: 'Minion W01 Bd'
}
.header-preview {
    margin-bottom: -5rem;
    text-align: center;
    color: red
}
.header-menu {
    border-bottom: .2rem solid #000000;
    width: 100%;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 7.2rem
}
.header-menu-link {
    -moz-box-flex: 1;
     -ms-flex: 1;
         flex: 1;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
    margin: 0 1.2rem;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
    padding: 1.8rem 0
}
.header-menu-link.is-active {
    text-decoration: underline
}
.header-menu-link:first-child {
    margin-left: 0
}
.header-menu-link:last-child {
    margin-right: 0
}
.header-submenu {
    width: 25%;
    display: inline-block;
    text-align: right;
    vertical-align: top;
    white-space: normal
}
.header-submenu.is-logged-in {
    width: 75%
}
.header-submenu-link {
    font-size: 1.6rem;
    padding: 0 1.5rem;
    font-weight: bold
}
.header-submenu-link.underline {
    text-decoration: underline
}
.header-submenu-link:last-child {
    padding-right: 0
}
.mobile-menu-icon {
    display: none
}
.burger-menu-wrapper {
    display: none;
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    float: right;
    cursor: pointer
}
.burger-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
     -ms-transform: translate(-50%,-50%);
         transform: translate(-50%,-50%);
    margin: auto;
    -moz-transform-origin: center;
     -ms-transform-origin: center;
         transform-origin: center
}
.burger-menu-item {
    height: .2rem;
    width: 2.8rem;
    -moz-border-radius: 0;
         border-radius: 0;
    background-color: #000;
    -moz-transition: transform .25s, -moz-transform .25s;
    transition: transform .25s;
    transition: transform .25s, -moz-transform .25s
}
.burger-menu-item:nth-child(2n) {
    margin: .4rem 0
}
.expanded-menu .burger-menu-item:first-child {
    -moz-transform: translate3d(-0.1rem, 0.5rem, 0) rotate(45deg);
         transform: translate3d(-0.1rem, 0.5rem, 0) rotate(45deg)
}
.expanded-menu .burger-menu-item:nth-child(2n) {
    -moz-transform: scaleX(0);
     -ms-transform: scaleX(0);
         transform: scaleX(0)
}
.expanded-menu .burger-menu-item:last-child {
    -moz-transform: translateY(-0.7rem) rotate(-45deg);
     -ms-transform: translateY(-0.7rem) rotate(-45deg);
         transform: translateY(-0.7rem) rotate(-45deg)
}
@media all and (max-width:920px) {
    .header-title {
        position: absolute;
        top: 50%;
        right: 6rem;
        width: initial;
        -moz-transform: translateY(-50%);
         -ms-transform: translateY(-50%);
             transform: translateY(-50%)
    }
    .header-title-text {
        font-size: 2rem
    }
    .header-submenu {
        position: fixed;
        top: 13.5rem;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 2;
        -moz-transform: translate3d(100%, 0, 0);
             transform: translate3d(100%, 0, 0);
        background: #f2f1ec;
        -moz-transition: transform ease-out .3s, -moz-transform ease-out .3s;
        transition: transform ease-out .3s;
        transition: transform ease-out .3s, -moz-transform ease-out .3s
    }
    .expanded-menu .header-submenu {
        -moz-transform: translateX(0);
         -ms-transform: translateX(0);
             transform: translateX(0)
    }
    .is-logged-in.header-submenu {
        width: 100%
    }
    .is-not-logged-in.header-submenu {
        top: 8.7rem
    }
    .is-public .header-submenu {
        top: 13.5rem
    }
    .not-public .header-submenu {
        top: 12.7rem
    }
    .header-submenu-item-list {
        width: 92%;
        margin: 0 auto;
        text-align: left
    }
    .header-submenu-item-list .header-submenu-link {
        display: block;
        padding: 2rem 0;
        -moz-box-sizing: border-box;
             box-sizing: border-box
    }
    .sub-menu-item {
        display: block;
        border-bottom: .1rem dotted #000
    }
    .mobile-menu-icon {
        display: block;
        position: absolute;
        top: 6.8rem;
        right: 0
    }
}
@media all and (max-width:540px) {
    .header-inner {
        padding: 2.4rem 0
    }
    .header-logo {
        display: block;
        width: 100%
    }
    .header-submenu {
        height: -moz-calc(100vh -15.1rem);
        height: calc(100vh -15.1rem);
        top: 15.1rem
    }
    .header-title {
        position: static;
        width: 100%;
        text-align: center;
        -moz-transform: translate(0, 0);
         -ms-transform: translate(0, 0);
             transform: translate(0, 0)
    }
    .header-title-text {
        margin-top: 2rem;
        font-size: 3rem
    }
    .mobile-menu-icon {
        top: 2.3rem;
        -moz-transform: translate(0, 0);
         -ms-transform: translate(0, 0);
             transform: translate(0, 0);
        cursor: pointer
    }
    .is-public .header-submenu {
        top: 15.3rem
    }
    .is-public .header-submenu.is-logged-in {
        top: 8.7rem
    }
}
.upper-information {
    overflow: hidden
}
.upper-information-inner {
    padding: 6rem 0 5rem;
    border-top: .7rem solid
}
.upper-information__headline {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem
}
.upper-information__link {
    font-size: 1.6rem;
    line-height: 2.4rem;
    display: block;
    margin: .8rem 0;
    display: block
}
.upper-information__link:last-child {
    margin-bottom: 0
}
.upper-information_logo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 20rem
}
.upper-information input[type="text"], .upper-information input[type="email"] {
    position: relative;
    padding: 0 1rem;
    font-size: 1.4rem;
    width: 100%;
    height: 4rem;
    -moz-border-radius: 0;
         border-radius: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border: .1rem solid black;
    background-color: transparent
}
.upper-information .button {
    padding: .95rem 1.5rem;
    font-family: 'Georgia', Times New Roman, Times, serif
}
.footer {
    background-color: #000000
}
.bottom-information {
    color: #fff;
    padding: 6rem 0
}
.bottom-information .box-wide {
    min-width: initial
}
.footer__item {
    position: relative
}
.footer__item-headline {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 1rem 0
}
.footer__item-text {
    font-size: 1.6rem;
    margin: 1rem 0;
    color: #eae7e0
}
.footer__item-text:last-child {
    margin: 0
}
.footer__item-link {
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    display: table
}
.logo + .footer__item-link {
    margin-top: 1.7rem;
    margin-bottom: 0
}
@media (max-width: 768px) {
    .upper-information-inner {
        padding: 4.2rem 0
    }
    .upper-information-inner .box-quarter:not(:first-child) {
        padding-top: 3rem
    }
    .bottom-item:not(:last-child) {
        margin-bottom: 3.5rem
    }
}
/**
* Shared
*/
.form-label, .form-submit, .radiobox-option, .checkbox-option {
    cursor: pointer
}
.input-field, .textarea-field, .selectbox-field, .search-field {
    position: relative;
    padding: 0 1rem;
    font-size: 1.4rem;
    width: 100%;
    height: 4.8rem;
    -moz-border-radius: 0;
         border-radius: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: .1rem solid #7f7f7f;
    background-color: transparent;
    font-family: "Georgia", sans-serif
}
.textarea-with-placeholder {
    position: relative;
    display: inline-block;
    background: #fff
}
.textarea-with-placeholder textarea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2
}
.textarea-with-placeholder textarea:focus + span:after {
    display: none
}
.textarea-with-placeholder span[data-placeholder-text] {
    display: block
}
.textarea-with-placeholder span[data-placeholder-text]:after {
    content: attr(data-placeholder-text);
    position: absolute;
    width: -moz-calc(100% - 1rem);
    width: calc(100% - 1rem);
    height: -moz-calc(100% - 1.4rem);
    height: calc(100% - 1.4rem);
    top: 1.4rem;
    left: 1rem;
    color: #7f7f7f;
    font-size: 1.4rem;
    font-family: "Georgia", sans-serif
}
.form-submit {
    -webkit-appearance: none;
    -moz-border-radius: 0;
         border-radius: 0
}
.form-submit:focus {
    outline: .1rem dotted #000
}
/* validation */
.input-validation-error {
    border-color: #ff665e
}
.field-validation-error {
    font-style: italic;
    font-size: 1.6rem;
    color: #ff665e;
    margin: .6rem 0;
    display: block
}
/**
* Input, inputgroup
*/
.input-group {
    position: relative;
    margin-bottom: 2.4rem
}
.input-group-label {
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 1.2rem
}
.input-field.with-text-box {
    margin-left: 3rem
}
/**
* Searchfield
*/
.search-wrapper {
    position: relative
}
.search-wrapper:after {
    background-image: url(/src/images/icons/magnefier.svg);
    -moz-background-size: 2rem;
         background-size: 2rem;
    width: 2rem;
    height: 2rem;
    position: absolute;
    content: "";
    right: 2.4rem;
    top: 50%;
    margin-top: -1rem;
    display: block
}
.search-field {
    padding: 1.2rem 6.3rem 1.2rem 1.2rem
}
.not-public .search-field {
    border-width: .2rem;
    border-color: #b8afa6;
    border-style: solid
}
/**
* Select
*/
.selectbox-wrapper {
    width: 33rem;
    display: inline-block;
    position: relative
}
.selectbox-wrapper:after {
    content: "";
    background-image: url(/src/images/icons/accordion-arrow.svg);
    -moz-background-size: 1.2rem;
         background-size: 1.2rem;
    width: 1.2rem;
    height: .8rem;
    display: block;
    background-repeat: no-repeat;
    right: 2.4rem;
    position: absolute;
    top: 50%;
    margin-top: -.4rem;
    pointer-events: none
}
.selectbox-wrapper select {
    padding-right: 5rem;
    cursor: pointer
}
/**
* Textarea
*/
.textarea-field {
    height: 10rem;
    resize: vertical;
    padding-top: 1rem
}
/**
* Radio button, radio group
*/
.radio-button {
    position: relative;
    display: inline-block
}
.radio-button-input {
    visibility: hidden;
    display: none
}
.radio-button-label {
    margin-left: 3rem;
    cursor: pointer
}
.radio-button-label:before {
    content: "";
    background-color: transparent;
    width: 2.1rem;
    height: 2.1rem;
    border: .2rem solid #8ad2f1;
    -moz-border-radius: 50%;
         border-radius: 50%;
    position: absolute;
    left: 0
}
.radio-button-input:checked ~ .radio-button-label:after {
    content: "";
    background-color: #8ad2f1;
    width: 1.7rem;
    height: 1.7rem;
    -moz-border-radius: 50%;
         border-radius: 50%;
    position: absolute;
    left: .4rem;
    top: .4rem
}
.radio-group-vertical .radio-button {
    margin-right: 1rem
}
.radio-group-vertical .radio-button:last-child {
    margin-right: 0
}
.radio-group-horizontal .radio-button {
    margin-bottom: .6rem;
    display: block
}
.radio-group-horizontal .radio-button:last-child {
    margin-bottom: 0
}
/**
* Checkbox 
*/
.checkbox-input {
    display: none
}
.checkbox-label {
    display: inline-block;
    position: relative;
    padding-left: 3rem;
    margin: 0 0rem 0 .3rem;
    top: -.5rem;
    left: -.5rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    cursor: pointer
}
.checkbox-label:before {
    content: "";
    border: .2rem solid #8ad2f1;
    display: inline-block;
    position: absolute;
    width: 1.8rem;
    height: 1.8rem;
    left: 0
}
.checkbox-input:checked + .checkbox-label:after {
    content: "";
    width: 1.3rem;
    height: .5rem;
    border-bottom: .2rem solid #8ad2f1;
    border-left: .2rem solid #8ad2f1;
    display: inline-block;
    position: absolute;
    left: .3rem;
    top: .5rem;
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg)
}
.checkbox-label.right {
    padding-left: 0;
    padding-right: 3rem
}
.checkbox-label.right:before {
    right: 0;
    left: auto
}
.checkbox-input:checked + .checkbox-label.right:after {
    left: auto;
    right: .3rem
}
.solemn-declaration-checkbox.not-checked {
    color: #f39600
}
/**
* Checkbox list
* scrollable list of checkbox items
*/
.checkbox-group-list {
    max-height: 17rem;
    overflow-y: auto
}
.checkbox-group-list-item {
    margin-bottom: .5rem
}
.checkbox-group-list-item .checkbox-label {
    top: 0;
    left: 0;
    margin: 0
}
/* newsletter */
.newsletter-text {
    font-size: 1.6rem;
    line-height: 2.4rem
}
/* grid */
.newsletter-form .contourPage {
    width: -moz-calc(100% + 1rem);
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem
}
.newsletter-form fieldset, .newsletter-form .contourNavigation {
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.newsletter-form fieldset {
    width: -moz-calc(66.66% - 1rem);
    width: calc(66.66% - 1rem);
    margin-right: 0.5rem
}
.newsletter-form .contourNavigation {
    width: -moz-calc(33.333% - 1rem);
    width: calc(33.333% - 1rem);
    margin-left: 0.5rem;
    margin-right: 0.5rem
}
.newsletter-form .contourNavigation .button {
    min-width: 100%
}
.newsletter-form .content-editor p {
    font-size: 1.6rem
}
.newsletter-form fieldset legend, .newsletter-form fieldset label, .newsletter-form .contourPageName {
    display: none
}
/* sent */
.confirmation-header-container {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: .1rem dotted black
}
.confirmation-header-label {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.4
}
.confirmation-header-text {
    font-size: 1.8rem;
    line-height: 1.4
}
.confirmation-text {
    max-width: 65rem;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    line-height: 1.4
}
.popup fieldset legend {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    line-height: 1.3;
    display: inline-block
}
@media all and (min-width:768px) and (max-width:1024px) {
    .newsletter-form fieldset, .newsletter-form .button {
        width: 100%
    }
    .newsletter-form .button {
        margin-top: .5rem
    }
}
@media all and (max-width:768px) {
    .upper-information .newsletter-form {
        margin-top: 3rem
    }
    .upper-information .box-half.newsletter-form {
        width: -moz-calc(100% - 3rem);
        width: calc(100% - 3rem);
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
}
@media all and (max-width:540px) {
    .input-group-label {
        word-break: break-word
    }
    .newsletter-form fieldset, .newsletter-form .button {
        width: 100%
    }
    .newsletter-form .button {
        margin-top: .5rem
    }
}
/* placeholder */
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #7f7f7f
}
::-moz-placeholder {
    /* Firefox 19+ */
    color: #7f7f7f
}
:-ms-input-placeholder {
    /* IE 10+ */
    color: #7f7f7f
}
textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #7f7f7f
}
input:-ms-input-placeholder {
    /* IE 10+ */
    color: #7f7f7f
}
:-moz-placeholder {
    /* Firefox 18- */
    color: #7f7f7f
}
/* GENERIC ACCORDION
____________________________________*/
.accordion {
    margin-bottom: 8.4rem
}
.accordion .section-headline {
    margin-bottom: 0
}
.accordion-item {
    margin-bottom: .6rem;
    border-bottom: .1rem dotted #000
}
.submit-claim-form .accordion-item {
    border: none
}
.submit-claim-form .accordion-item.is-visible .accordion-content.with-overflow {
    overflow: visible
}
.accordion-item.is-visible .accordion-item-arrow {
    -moz-transform: translateZ(0) rotate(180deg);
         transform: translateZ(0) rotate(180deg);
    -moz-transform-origin: 50% 50%;
     -ms-transform-origin: 50% 50%;
         transform-origin: 50% 50%
}
.accordion-headline {
    cursor: pointer;
    position: relative
}
.submit-claim-form .accordion-headline {
    margin: 0
}
.accordion-last-published {
    color: rgba(0,0,0,.5);
    font-size: 1.6rem;
    position: absolute;
    right: 6.5rem;
    top: 1.6rem
}
.accordion-headline-text {
    font-size: 2.4rem;
    line-height: inherit;
    padding: 1.6rem 2.4rem
}
.claim-page .accordion-headline-text {
    padding: 0
}
.accordion-date {
    color: #7f7f7f;
    position: absolute;
    right: 5.7rem;
    top: 1.9rem;
    bottom: 1.9rem
}
.accordion-content {
    overflow: hidden;
    max-height: 0;
    -moz-transition: max-height .3s ease-in-out;
    transition: max-height .3s ease-in-out;
    -webkit-transition: max-height .3s ease-in-out
}
.accordion-content .content-editor {
    display: inline-block;
    padding: 0 6.2rem 0 2.4rem
}
.accordion-content-inner .accordion-item__row {
    clear: both;
    overflow: hidden
}
.accordion-toolbox {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
    margin-top: 3rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap
}
.accordion-load-more {
    text-align: center;
    margin-top: 3.6rem
}
.accordion-load-link {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
    -moz-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
    margin-bottom: 3.6rem
}
.accordion-load-link:after {
    background-image: url(/src/images/icons/accordion-arrow.svg);
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -.5rem;
    bottom: -1.5rem;
    width: 1rem;
    height: 1rem;
    content: ""
}
/* Headline icons */
.accordion-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 6.3rem;
    z-index: 1
}
.accordion-icon svg {
    pointer-events: none
}
.accordion-item-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    stroke: #8ad2f1;
    margin-top: -.75rem;
    margin-left: -.75rem;
    -moz-transform: translateZ(0) rotate(0deg);
         transform: translateZ(0) rotate(0deg);
    -moz-transition: transform .3s, -moz-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -moz-transform .3s
}
.accordion-item-arrow.with-bg {
    width: 2.1rem;
    height: 2.1rem;
    margin-top: -1.05rem;
    stroke: none
}
.accordion-item-document {
    position: absolute;
    left: 2.4rem;
    top: 2rem;
    width: 1.5rem;
    height: 2.2rem
}
.accordion-item-download {
    position: absolute;
    right: 2.1rem;
    top: 1.9rem;
    width: 2rem;
    height: 2rem
}
/* */
.accordion-single-link {
    margin-left: 2.4rem;
    margin-bottom: 2.4rem;
    display: inline-block
}
/* Generic accordion: Not-public
____________________________________*/
.not-public .accordion-item {
    background-color: #eae7e0;
    border-bottom: none;
    display: block;
    -moz-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out
}
.not-public .accordion-item.hidden {
    display: none
}
.not-public .accordion-item.is-visible {
    background-color: #f5f3ee
}
/* Basic accordion: Raw
____________________________________*/
.accordion--simple .accordion-item {
    font-weight: bold;
    border-top: #000000 .1rem solid;
    background-color: transparent;
    margin: 0
}
.accordion--simple .accordion-item.is-visible {
    background-color: transparent
}
.accordion--simple .accordion-item:last-child {
    border-bottom: #000000 .1rem solid
}
.accordion--simple .accordion-headline:after {
    position: absolute;
    right: 2rem;
    top: 50%;
    margin-top: -.3rem;
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border-right: .1rem solid #000000;
    border-top: .1rem solid #000000;
    -moz-transform: rotate(135deg);
     -ms-transform: rotate(135deg);
         transform: rotate(135deg);
    -moz-transition: transform .3s, -moz-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -moz-transform .3s;
    -webkit-transition: transform .3s;
    -moz-transform-origin: 80% 25%;
     -ms-transform-origin: 80% 25%;
         transform-origin: 80% 25%
}
.accordion--simple .no-children .accordion-headline {
    cursor: auto
}
.accordion--simple .no-children .accordion-headline:after {
    display: none
}
.accordion--simple .accordion-item.is-visible .accordion-headline:after {
    -moz-transform: rotate(315deg);
     -ms-transform: rotate(315deg);
         transform: rotate(315deg)
}
.accordion--simple .content-editor {
    max-width: 70%;
    font-weight: normal
}
/* Bankruptcylist: 
____________________________________*/
.bankruptcyList {
    margin-bottom: 1.8rem
}
.bankruptcylist-headline {
    font-weight: 200;
    margin-bottom: 1.8rem;
    font-family: "Minion W08 Dsp Regular", Georgia
}
.bankruptcyList .accordion-headline-text {
    padding: 1.6rem 2.4rem;
    display: block;
    font-size: 2rem;
    line-height: inherit
}
.bankruptcy-details {
    overflow: hidden;
    margin: 0 2.4rem 3rem 2.4rem;
    padding: 0 0 .6rem 0
}
.bankruptcy-details-item {
    float: left;
    min-width: 25rem;
    position: relative
}
.bankruptcy-details-item:first-child {
    color: #7f7f7f
}
.bankruptcy-details-item .radio-button {
    margin-right: 3rem
}
.bankruptcy-member-add {
    position: absolute;
    right: 2.5rem;
    bottom: 2.4rem
}
.bankruptcy-submit {
    margin-left: 2.4rem;
    margin-bottom: 2.4rem
}
/* Creditorlist
____________________________________*/
.creditor-entry .bankruptcy-memberlist-toolbox {
    top: -.5rem
}
/* Memberlist
____________________________________*/
.bankruptcy-memberlist {
    margin-left: 2.4rem;
    margin-bottom: 2.4rem
}
.bankruptcy-memberlist-item {
    position: relative
}
.bankruptcy-memberlist-headline {
    display: inline-block;
    line-height: 4rem;
    font-size: 2rem
}
.bankruptcy-memberlist-toolbox {
    position: absolute;
    top: .4rem;
    right: 2rem
}
.bankruptcy-memberlist-toolbox-item {
    display: inline-block;
    margin-right: 1rem
}
.bankruptcy-memberlist-toolbox-item:last-child {
    margin-right: .5rem
}
.bankruptcy-memberlist-toolbox-item .checkbox-label {
    top: 0;
    left: 0
}
.bankruptcy-memberlist-toolbox .spinner {
    position: absolute;
    left: -4rem;
    top: -.9rem
}
.bankruptcy-memberlist-toolbox .selectbox-wrapper {
    width: 25rem
}
.bankruptcy-memberlist-toolbox select {
    height: 4rem;
    background-color: #ffffff
}
.member-entry .bankruptcy-memberlist-toolbox {
    top: .6rem
}
/* DOCUMENTLIST
____________________________________*/
.documentlist .accordion-list {
    margin: 0 0 4.2rem
}
.documentlist-headline {
    -moz-transition: border-color .3s;
    transition: border-color .3s;
    font-size: 2.4rem;
    line-height: 2.8rem;
    border-bottom: .1rem solid #B8AFA6;
    padding: 0 2.4rem 2.4rem 2.4rem
}
.documentlist .accordion-item {
    background-color: #ffffff;
    margin: 0
}
.documentlist .accordion-last-published {
    top: 1.6rem
}
.documentlist .accordion-item.is-visible {
    background-color: #ffffff
}
.documentlist .accordion-content {
    border-bottom: .1rem solid #B8AFA6
}
.documentlist .accordion-content-inner .content-editor {
    padding: 0 2.4rem 2.4rem
}
.documentlist .accordion-headline-text {
    padding-left: 5.4rem;
    display: block;
    position: relative;
    font-size: 2rem
}
.documentlist .accordion-headline-text:focus {
    outline: none
}
.documentlist .accordion-item.is-downloadable .accordion-headline {
    border-bottom: .1rem solid #B8AFA6
}
.documentlist .accordion-content-inner {
    background-color: #ffffff
}
.documentlist .accordion-download-link-icon {
    display: inline-block;
    margin-left: 1.2rem;
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    top: .5rem
}
.documentlist .accordion-icon-download {
    margin-left: .6rem;
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1.2rem;
    margin-left: -1.2rem
}
/**
Budget accordion
____________________________________*/
.accordion-budget-overview-header-with-tooltip h2 {
    display: inline-block
}
.accordion-budget-overview-header-with-tooltip .tooltip {
    position: relative;
    top: .3rem
}
.budget-accordion .accordion-item:first-child {
    border-top: none
}
.budget-accordion .accordion-item:last-child {
    border-bottom: none
}
.budget-accordion .accordion-headline {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row
}
.budget-accordion .accordion-headline .accordion-item__cell {
    word-break: break-word;
    text-align: right
}
.budget-accordion .accordion-item:first-child .accordion-headline:after, .budget-accordion .accordion-item:last-child .accordion-headline:after {
    display: none
}
.budget-accordion .accordion-item, .budget-accordion .accordion-item.is-visible {
    background-color: transparent;
    margin-bottom: 0
}
.budget-accordion .accordion-item__row {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row
}
.budget-accordion .accordion-item__cell {
    padding: 1.6rem 2.4rem;
    width: 18rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
    -ms-flex-item-align: center;
        align-self: center;
    -moz-box-flex: 1;
     -ms-flex-positive: 1;
         flex-grow: 1;
    position: relative;
    text-align: right
}
.budget-accordion .accordion-item__cell:first-child {
    width: 30rem;
    text-align: left
}
.budget-accordion .accordion-item__cell:last-child {
    width: 5%
}
.budget-accordion .accordion-content-inner .accordion-item__cell {
    font-weight: normal
}
.budget-accordion .accordion-content-inner .accordion-item__cell:first-child {
    padding-left: 4.5rem
}
.budget-accordion .accordion-item__cell.with-tooltip {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row
}
.budget-accordion .accordion-item__cell .tooltip {
    position: absolute;
    top: 1.8rem;
    right: 0
}
.budget-accordion .accordion-item__cell .tooltip .tooltip-text {
    text-align: left
}
/**
Budget accordion
____________________________________*/
.accordion-debt__headline {
    margin-bottom: 3.6rem
}
@media all and (max-width:920px) {
    .accordion-headline-text {
        padding-right: 16vw
    }
    .accordion .page-content {
        max-width: 100%
    }
}
@media all and (max-width:768px) {
    .accordion {
        margin-bottom: 2.4rem
    }
    .accordion .section-headline {
        font-size: 3rem
    }
    .accordion-headline-text {
        padding-left: 0
    }
}
@media all and (max-width:540px) {
    .accordion .section-headline {
        font-size: 2.5rem
    }
    .accordion-headline-text {
        font-size: 2.3rem
    }
    .accordion-content .content-editor {
        padding: 0
    }
    .claim-page .accordion-headline-text {
        padding: 0 5rem 0 0
    }
}
.cookie-overlay {
    background-color: #000;
    padding: 3.6rem 0;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    z-index: 1;
    color: #fff
}
.cookie-layout {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-flow: row wrap;
         flex-flow: row wrap;
    -moz-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between
}
.cookie-text-container {
    width: 40%;
    float: left;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.cookie-text-container .content-editor a {
    text-decoration: underline
}
.cookie-buttons-container {
    width: 50%;
    float: right;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    position: relative
}
.cookie-overlay-close.icon {
    position: absolute;
    top: -1rem;
    right: -1rem;
    padding: 2rem;
    cursor: pointer
}
.cookie-overlay-close.icon:before, .cookie-overlay-close.icon:after {
    content: "";
    display: block;
    width: 2.5rem;
    height: .2rem;
    background-color: #8ad2f1;
    position: absolute;
    top: 50%;
    left: 50%
}
.cookie-overlay-close.icon:before {
    -moz-transform: translate(-50%, -50%) rotate(45deg);
     -ms-transform: translate(-50%, -50%) rotate(45deg);
         transform: translate(-50%, -50%) rotate(45deg)
}
.cookie-overlay-close.icon:after {
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
     -ms-transform: translate(-50%, -50%) rotate(-45deg);
         transform: translate(-50%, -50%) rotate(-45deg)
}
.cookie-main-buttons {
    position: absolute;
    bottom: 0
}
.cookie-main-buttons .button {
    display: block;
    text-align: center;
    cursor: pointer
}
.cookie-main-buttons .button.reject {
    background-color: #000000;
    border-style: dotted;
    border-color: #969696;
    color: #969696
}
.cookie-headline-container {
    position: relative;
    margin-bottom: 1rem
}
.cookie-headline {
    padding: 0 0 1rem;
    display: inline-block;
    position: relative
}
@media all and (max-width:768px) {
    .cookie-text-container {
        width: 100%
    }
    .cookie-layout {
        position: relative
    }
    .cookie-buttons-container {
        position: static;
        width: 100%;
        float: initial;
        margin-top: 3.2rem
    }
    .cookie-main-buttons {
        position: static
    }
    .cookie-main-buttons .button {
        margin-bottom: 1.2rem
    }
}
.content-editor ul {
    margin: 0 0 1.8rem 2.4rem
}
.content-editor ul li {
    list-style-type: disc
}
.content-editor ol {
    list-style: decimal;
    margin: 0 0 1.8rem 2.4rem
}
.content-editor ol li {
    list-style-type: decimal
}
.content-editor em {
    font-style: italic
}
.content-editor strong {
    font-weight: bold
}
.content-editor p {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1.8rem
}
.content-editor img {
    max-width: 100%;
    height: auto !important;
    margin: 3rem 0
}
.content-editor a {
    text-decoration: underline;
    -moz-transition: color .3s ease;
    transition: color .3s ease
}
.content-editor a:hover {
    color: #8ad2f1
}
.content-editor h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 3.5rem 0 3rem 0
}
.content-editor h2 {
    font-size: 2.6rem;
    margin: 3.5rem 0 3rem 0;
    line-height: 1.4
}
.content-editor h3 {
    font-size: 1.8rem;
    margin: 1.75rem 0 0 0;
    line-height: 1.4;
    font-weight: bold
}
.submit-claim-container {
    margin-bottom: 21.8rem
}
.submit-claim-container .input-field {
    display: inline-block;
    width: 33rem
}
.bankruptcy-headline {
    font-size: 2rem;
    color: #7f7f7f;
    font-weight: bold
}
.claim-form-background-image {
    background: #d5d5d5;
    width: 100%;
    height: 51rem;
    position: absolute
}
.submit-claim-form {
    position: relative;
    padding: 5.4rem 7.7rem;
    margin-top: 12.7rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    background: #fff
}
.claim-accordion-section {
    margin-bottom: 3rem
}
.claim-accordion-section.qudos {
    margin-top: 3rem
}
.claim-section-content-wrapper {
    width: 100%;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.submit-claim-form .content-group {
    margin: 0 2.4rem
}
/* HEADLINES */
.group-headline {
    padding: 4rem 0 3rem;
    font-size: 1.6rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #000
}
.group-headline.no-margin {
    margin: 0
}
.group-headline .tooltip {
    top: .5rem
}
.likoba-headline-text {
    font-size: 1.4rem;
    padding-bottom: 0
}
.link-in-text {
    color: #8ad2f1
}
.likoba-paragraph {
    font-weight: 400
}
.likoba-headline-reset {
    padding-bottom: 0;
    border-bottom: .1rem solid black
}
.claim-accordion-section .section-headline {
    margin-top: 7rem;
    font-weight: 300
}
.claim-accordion-section:first-child .section-headline {
    margin-top: 3.6rem;
    margin-bottom: 3.6rem
}
/* TEXT AND DIVIDER */
.claim-page-qudos .accordion-headline-text {
    padding-left: 0
}
.claim-comment-wrapper {
    width: 69%;
    height: 20rem;
    border: .1rem solid #8ad2f1;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.claim-title-wrapper {
    height: 20rem;
    width: 50rem
}
.claim-title.input-field {
    resize: none;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    height: 20rem;
    line-height: 1.5;
    padding: 1.4rem 1rem;
    overflow: auto;
    width: 50rem
}
.claim-title.with-value + span, .claim-comment.with-value + span {
    display: none
}
.claim-text-field {
    width: 59.384%;
    margin: 4.2rem 0 6.6rem;
    font-family: "Georgia", sans-serif
}
.claim-comment {
    resize: none;
    font-size: 1.6rem;
    padding: 1.4rem 1rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border: none;
    font-family: 'Minion W01 Regular', "Georgia", sans-serif;
    overflow: auto
}
.claim-text-field.no-margin {
    margin: 0 0 2.5rem
}
/* added for qudos */
.likoba-form-explaination-text {
    margin: 1.5rem 0;
    font-weight: 300
}
.likoba-form-explaination-text:last-of-type {
    margin-bottom: 4rem
}
.likoba-form-explaination-text > b {
    font-weight: bold
}
.input-field.other-association {
    width: 47.5rem;
    position: relative;
    top: -5rem;
    left: 3rem
}
/* INPUT GROUP */
.claim-page .input-group {
    width: 100%
}
.claim-page .input-group-label {
    width: 13rem
}
.claim-page.qudos .input-group-label {
    width: 18rem
}
.claim-page .input-group-label-block, .claim-page .input-group-label-block {
    display: block;
    padding: 4rem 0 3rem;
    font-size: 1.6rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #000
}
.claim-page .input-field {
    font-size: 1.6rem;
    background: #fff
}
.qudos-selectbox-wrapper {
    display: block;
    margin: .6rem 0
}
.claim-page .selectbox-field {
    background: #fff
}
.claim-page.qudos .selectbox-field > option {
    color: black
}
.claim-page .textarea-with-placeholder textarea {
    background: transparent
}
.claim-page .input-group .tooltip {
    position: absolute;
    right: auto;
    top: 1.5rem;
    margin-left: .5rem
}
.claim-page .input-group .tooltip + .error-container {
    position: absolute;
    right: auto;
    top: 1.5rem;
    margin-left: 4rem;
    width: 100%
}
.claim-page.qudos .reason-for-representing-textarea-error {
    position: relative;
    top: -14rem
}
.claim-page .input-section {
    display: inline-block;
    margin-bottom: 0;
    max-width: 78%
}
.claim-page .input-section .input-group {
    margin-bottom: .6rem;
    width: 100%
}
.radio-group-horizontal .radio-button {
    margin-bottom: .6rem;
    display: block
}
.qudos .radio-group-horizontal .radio-button {
    margin-bottom: .6rem;
    display: block;
    height: 3rem
}
.radio-group-horizontal .radio-button:last-child {
    margin-bottom: 0
}
/* PNUMBERS DROPDOWN */
.claim-page .input-group-with-dropdown {
    position: relative
}
.pnumbers-list-container {
    display: none;
    position: absolute;
    width: 33rem;
    top: 4.7rem;
    left: 13.4rem;
    max-height: 32rem;
    padding: 1.2rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border: .1rem solid #7f7f7f;
    z-index: 1;
    background: #fff;
    -moz-transition: opacity .2s;
    transition: opacity .2s;
    opacity: 0;
    overflow: auto
}
.pnumbers-list-container.active {
    display: block;
    opacity: 1
}
.pnumbers-list-item {
    color: #7f7f7f;
    cursor: pointer
}
.pnumbers-list-item:hover {
    color: #000
}
.pnumber {
    outline: none
}
/* CREDITOR REFERENCE TO DEBITOR */
.submit-claim-form .content-group.creditor-reference-to-debitor-container {
    margin: 0 2.4rem 4rem
}
.submit-claim-form .content-group.creditor-reference-to-debitor-container .group-headline {
    padding-top: 0
}
.submit-claim-form .creditor-reference-to-debitor-container .input-field {
    width: 59.384%
}
/** 
				* Radiogroup 
				*/
.claim-page .radio-group-horizontal {
    position: relative;
    margin: 2.2rem 0 3.2rem 13.5rem
}
.claim-page .radio-group-horizontal.on-behalf-of-others {
    margin-left: 0
}
.claim-page .radio-group-horizontal.likoba-radio-group-horizontal {
    margin: 0 0 3.2rem 0
}
/**
				* Checkbox group
				*/
.checkbox-group {
    position: relative;
    margin-left: 0
}
.checkbox-group-item {
    margin-left: .4rem
}
.likoba-checkbox-group {
    margin-top: 3rem
}
/**
				*	Textarea
				*/
.textarea-label {
    display: block;
    font-weight: bold
}
.textarea {
    height: 11rem;
    max-width: 100%;
    min-width: 50rem;
    margin-bottom: 4rem;
    border: .1rem solid #7f7f7f;
    background-color: #fff
}
/**
				* tooltip on the right side to the form
				*/
.qudos .tooltip {
    font-size: 1.6rem;
    line-height: 1.5
}
.recaptcha-not-ok {
    color: #f39600;
    text-align: left
}
.policy-status {
    display: none
}
.policy-status.visible {
    display: block
}
.when-not-notified {
    margin-top: 2rem;
    color: red
}
@media all and (max-width:920px) {
    .submit-claim-container {
        margin-bottom: 0
    }
    .submit-claim-form {
        min-width: initial;
        padding: 5.4rem 4.2rem
    }
    .submit-claim-form .content-group {
        margin: 0
    }
    .claim-page .input-group-label, .claim-page .input-field, .selectbox-wrapper {
        display: inline-block;
        width: 92.6%;
        top: 0
    }
    .claim-page .input-section, .input-section .input-group {
        width: 100%;
        max-width: 100%
    }
    .textarea {
        min-width: 92%
    }
    .claim-page .input-group .tooltip {
        position: relative;
        display: inline-block;
        margin-left: 3%;
        right: 0;
        top: .7rem
    }
    .claim-page .checkbox-group {
        margin-left: 0;
        margin-top: 2.4rem
    }
    .input-group .error-container {
        display: none
    }
    .claim-page .input-group .tooltip + .error-container {
        position: static;
        margin-left: 0
    }
    .validation-fail .error-container {
        display: block
    }
    .claim-page .radio-group-horizontal {
        margin-left: 0;
        display: block
    }
    .claim-page .radio-group-horizontal .radio-button {
        margin-bottom: 1.2rem;
        display: block
    }
    .claim-title-wrapper {
        width: 92.6%
    }
    .claim-page .claim-title-wrapper .input-field {
        width: 100%
    }
    .submit-claim-form .content-group.creditor-reference-to-debitor-container {
        margin: 0 0 4rem
    }
    .pnumbers-list-container {
        width: 92.6%;
        top: 7.1rem;
        left: 0
    }
    /** added for qudos */
    .input-field.other-association {
        width: 47.5rem;
        position: relative;
        top: -5rem;
        left: 3rem
    }
}
@media all and (max-width:768px) {
    .claim-page .input-group-label, .claim-page .input-field, .selectbox-wrapper {
        width: 90%
    }
    .claim-text-field {
        width: 100%;
        margin: 2.4rem 0
    }
    .claim-title-wrapper {
        width: 90%
    }
    .submit-claim-form .creditor-reference-to-debitor-container .input-field {
        width: 100%
    }
    .pnumbers-list-container {
        width: 90%
    }
    /** added for qudos */
    .input-field.other-association {
        width: -moz-calc(90% - 3rem);
        width: calc(90% - 3rem);
        position: relative;
        top: -5rem;
        left: 3rem
    }
}
@media all and (max-width:540px) {
    .submit-claim-form {
        width: 100%;
        padding: 4.2rem 0;
        margin: 0
    }
    .bankruptcy-headline {
        font-size: 1.8rem
    }
    .claim-general-section, .claim-summary-section, .bankruptcy-headline {
        margin: 0 2rem
    }
    .claim-detail-section .section-headline {
        margin: 2.4rem 2rem 0
    }
    .claim-accordion-section .section-headline {
        margin-top: 2.4rem
    }
    .claim-detail-section {
        margin: 0
    }
    .claim-detail-section .group-headline, .claim-detail-section .radio-group-vertical {
        margin: 0 2rem
    }
    .claim-detail-section .claim-text-field {
        -moz-box-sizing: border-box;
             box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding: 2.4rem 2rem
    }
    .claim-page .radio-group-vertical {
        margin-top: 1.4rem
    }
    .claim-page .input-group-label, .claim-page .input-field, .selectbox-wrapper {
        width: 88%
    }
    .claim-title-wrapper {
        width: 88%
    }
    .submit-claim-form .creditor-reference-to-debitor-container .input-group {
        padding: 0 2rem
    }
    .pnumbers-list-container {
        width: 88%
    }
}
/* Dynamic inputs */
[data-show-for~="Company"], [data-show-for~="CompanyWithFiler"], [data-show-for~="PrivatePerson"], [data-show-for~="PrivatePersonWithFiler"], [data-show-for~="Filer"], [data-show-for~="ContactPerson"], [data-show-input-group-for~="company"], [data-show-input-group-for~="companywithfiler"], [data-show-input-group-for~="privateperson"], [data-show-input-group-for~="privatepersonwithfiler"], [data-show-input-group-for~="filer"], [data-show-input-group-for~="contactperson"] {
    display: none !important
}
.company [data-show-for~="Company"], .companywithfiler [data-show-for~="CompanyWithFiler"], .privateperson [data-show-for~="PrivatePerson"], .privatepersonwithfiler [data-show-for~="PrivatePersonWithFiler"], .filer [data-show-for~="Filer"], .contactperson [data-show-for~="ContactPerson"] {
    display: inline-block !important
}
.company h3[data-show-for~="Company"], .companywithfiler h3[data-show-for~="CompanyWithFiler"], .privateperson h3[data-show-for~="PrivatePerson"], .privatepersonwithfiler h3[data-show-for~="PrivatePersonWithFiler"], .filer h3[data-show-for~="Filer"], .filer .radio-group-horizontal[data-show-for~="Filer"], .contactperson h3[data-show-for~="ContactPerson"], .company [data-show-input-group-for~="company"], .companywithfiler [data-show-input-group-for~="companywithfiler"], .privateperson [data-show-input-group-for~="privateperson"], .privatepersonwithfiler [data-show-input-group-for~="privatepersonwithfiler"], .filer [data-show-input-group-for~="filer"], .contactperson [data-show-input-group-for~="contactperson"] {
    display: block !important
}
/* CLAIM GENERAL SUMMARY */
.claim-general-section.is-visible .claim-general-summary {
    display: none
}
.claim-general-summary {
    margin-top: 3rem
}
.claim-general-summary.hidden {
    margin: 0
}
.claim-general-info-bank {
    height: 46.6rem;
    margin-bottom: 4.6rem;
    opacity: 1;
    visibility: visible;
    -moz-transition: opacity .5s;
    transition: opacity .5s
}
.claim-general-section .on-behalf-of-others .by-creditor, .claim-general-section .is-company-headline:not(.on-behalf-of-others) .by-filer {
    display: none
}
.claim-general-section .on-behalf-of-others .by-filer, .claim-general-section .is-company-headline:not(.on-behalf-of-others) .by-creditor {
    display: inline-block
}
@media all and (max-width:920px) {
    .claim-general-info-bank {
        height: 58rem
    }
}
@media all and (max-width:768px) {
    .claim-general-section .button {
        width: 100%
    }
}
/* CLAIM SUMMARY */
.claim-overview {
    width: 100%
}
.claim-overview-header tr td {
    padding: 1.8rem 2.4rem;
    font-weight: bold;
    border-bottom: #e9e9e9 .1rem solid
}
.claim-overview-header tr td:first-child {
    width: 30%
}
.claim-overview-header tr td:nth-child(2) {
    width: 10%
}
.claim-overview-header tr td:nth-child(3), .claim-overview-header tr td:nth-child(4), .claim-overview-header tr td:nth-child(5) {
    width: 20%
}
.claim-overview-header tr td:last-child {
    padding-right: 2.4rem;
    text-align: right
}
.claim-overview-summary tr td {
    width: 50%;
    padding: 2.4rem;
    font-weight: bold
}
.claim-overview-summary tr td:last-child {
    text-align: right
}
.claim-overview-rows tr td {
    padding: 2.4rem;
    border-bottom: .1rem dotted #000;
    width: 20rem;
    vertical-align: middle
}
.claim-overview-rows tr td:last-child {
    text-align: right
}
.summary-total {
    padding: 0 2.6rem;
    font-weight: bold
}
.claim-summary-text {
    width: 69%;
    padding: 0 2.6rem
}
.likoba-summary-text {
    margin-top: 2rem
}
.flex-table-row {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
    text-align: center;
    padding: 1.8rem 2.4rem;
    border-bottom: .1rem dotted #000
}
.read-only .flex-table-row {
    padding: 0;
    border: 0
}
.flex-table-row.head {
    font-weight: bold;
    border-bottom: #e9e9e9 .1rem solid
}
.read-only .flex-table-row.head {
    margin-bottom: .6rem;
    border: 0
}
.flex-table-row.head.claim-excerpt-comment-head {
    margin-top: 4rem
}
.flex-table-row.claim-excerpt-comment-head .cell:last-child {
    text-align: left;
    width: 59.384%
}
.flex-table-row.summary {
    font-weight: bold;
    border-bottom: none
}
.flex-table-row.summary .cell {
    width: 50%;
    font-weight: bold
}
.cell {
    width: 20%;
    text-align: center
}
.cell:first-child {
    text-align: left
}
.cell:last-child {
    text-align: right
}
.cell.likoba-reset {
    -moz-box-flex: 1;
     -ms-flex: auto;
         flex: auto
}
.flex-table-row.likoba-reset {
    border-bottom: 0
}
@media all and (max-width:768px) {
    .read-only.active {
        font-size: 0
    }
    .flex-table-row {
        position: relative;
        display: inline-block;
        width: 49.3%;
        padding: 1.8rem 0
    }
    .flex-table-row.head {
        border-bottom: none;
        margin-right: .33%
    }
    .claim-summary-overview .flex-table-row {
        width: 100%;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 0;
        border-top: .1rem dotted #000
    }
    .flex-table-row.head.claim-excerpt-comment-head {
        margin-top: 0
    }
    .flex-table-row.claim-excerpt-comment-head, .flex-table-row.claim-excerpt-comment-head .cell:last-child {
        width: 100%
    }
    .claim-summary-text {
        width: 100%;
        padding: 0;
        margin-top: 3rem
    }
    .edit-claim-button {
        text-align: left;
        font-size: 1.6rem
    }
    .cell {
        width: 100%;
        font-size: 1.6rem;
        padding: .6rem 0;
        text-align: left
    }
    .cell:last-child {
        text-align: left
    }
    .flex-table-row.summary {
        width: 100%;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        border-top: .1rem solid #000
    }
    .claim-summary-overview {
        font-size: 0
    }
}
/*CLAIM TEMPLATE*/
.button.review-claims.disabled {
    pointer-events: none;
    background-color: #e0e0e0
}
.button.review-claims {
    pointer-events: all;
    background-color: #8ad2f1
}
.new-claim {
    opacity: 0;
    display: none
}
.new-claim.active {
    opacity: 1;
    display: inline-block
}
.delete-claim-button {
    margin-left: 3rem;
    cursor: pointer
}
.claim-index-container {
    width: 94.2%;
    margin: 0 auto;
    padding: 1.8rem 0 1rem;
    font-size: 2.4rem;
    border-bottom: .1rem solid #000;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.read-only {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    padding: 2.4rem 2.4rem 2.3rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    -moz-transition: opacity .5s;
    transition: opacity .5s
}
.read-only.active {
    opacity: 1;
    visibility: visible
}
.claim-excerpt-comment {
    width: 42rem;
    word-break: break-all
}
.claim-excerpt-currency {
    margin-left: .7rem
}
.editable {
    padding: 4.2rem 2.4rem;
    opacity: 0;
    -moz-transition: opacity .5s .25s;
    transition: opacity .5s .25s;
    overflow: hidden;
    visibility: hidden
}
.editable.active {
    opacity: 1;
    visibility: visible
}
.claim-list {
    position: relative
}
.claim-item {
    position: relative;
    margin-bottom: 1.8rem;
    background-color: #f5f3ee
}
.claim-read-only-item {
    margin: 0 0 4.2rem 9rem;
    vertical-align: top;
    width: 15.8rem
}
.claim-read-only-item:first-child {
    margin-left: 0
}
.claim-read-only-item:last-child {
    text-align: right
}
.claim-read-only-item-heading {
    font-weight: bold
}
.claim-read-only-item-heading.comment {
    margin-top: 4.2rem;
    display: block
}
.claim-read-only-item-heading:last-child {
    text-align: right
}
.edit-claim-button {
    cursor: pointer;
    margin-top: 1rem;
    text-align: right
}
.edit-claim-arrow {
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-left: .5rem;
    top: .1rem;
    stroke: #8ad2f1;
    -moz-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
         transform: rotate(0deg);
    -moz-transition: transform .3s, -moz-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -moz-transform .3s
}
.claim-action-buttons {
    width: 100%;
    margin-top: 1.2rem;
    text-align: right
}
.saved-claim .save-claim-button {
    display: inline-block;
    cursor: pointer
}
.save-claim-button, .delete-claim-button {
    -moz-transition: color .3s ease;
    transition: color .3s ease
}
.saved-claim .save-claim-button:hover, .delete-claim-button:hover {
    color: #8ad2f1
}
.save-claim-button, .locked .delete-claim-button {
    display: none
}
/* UPLOAD */
.upload-input {
    position: relative;
    display: inline-block;
    margin-bottom: .6rem
}
.hidden-upload {
    opacity: 0;
    visibility: hidden;
    height: 5rem
}
.upload-input .button {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}
.upload-summary {
    width: 69%
}
.upload-summary-item-list {
    width: 100%;
    min-height: 17.4rem;
    padding: 1.8rem 1.2rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border: .1rem solid #8ad2f1;
    background: white
}
.upload-summary-item {
    position: relative;
    width: 80%;
    height: 4.2rem;
    margin-bottom: .6rem;
    background: #eae7e0
}
.hidden-upload-summary-item {
    display: none
}
.upload-summary-item-wrapper {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%);
    width: 100%;
    padding: 0 1.2rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.upload-summary-item-name {
    display: inline-block;
    width: 31.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 1.6rem
}
.upload-summary-item-status {
    position: absolute;
    right: 1.2rem;
    top: 0.3rem
}
.uploading .upload-summary-item-spinner, .upload-summary-item-done {
    display: block
}
.upload-summary-item-spinner, .uploading .upload-summary-item-done {
    display: none
}
.upload-summary-item-button {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%);
    right: -5.6rem;
    font-size: 1.6rem;
    text-decoration: underline;
    cursor: pointer
}
.upload-summary-counter {
    display: inline-block;
    margin-top: 1.2rem
}
.upload-summary-button {
    float: right;
    margin-top: 1.2rem
}
.upload-error-container {
    padding-left: 10px;
    display: inline-table
}
.upload-error-text {
    color: red
}
@media all and (max-width:768px) {
    .upload-summary, .upload-input, .claim-comment-wrapper {
        width: 100%
    }
    .claim-excerpt-comment {
        width: 100%
    }
}
@media all and (max-width:540px) {
    .claim-item {
        display: inline-block;
        overflow: hidden
    }
    .claim-index-container {
        width: auto;
        padding: 1.8rem 0rem;
        margin: 0 2rem
    }
    .editable {
        padding: 1.8rem 2rem 2rem
    }
    .editable .group-headline, .editable .input-group, .editable .claim-text-field {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0
    }
    .claim-page .input-group {
        margin: 1.4rem 0
    }
    .claim-page .editable .claim-text-field {
        padding: 1rem 0
    }
    .claim-page .group-headline {
        padding: 2rem 4.3rem 0 0
    }
    .upload-summary, .upload-input, .claim-comment-wrapper {
        width: 100%
    }
    .button.review-claims, .button.new-claim {
        width: -moz-calc(100% - 4rem);
        width: calc(100% - 4rem);
        margin: 0 2rem 1rem
    }
}
@media all and (max-width:320px) {
    .claim-page .group-headline {
        padding-right: 2rem
    }
}  
.claim-form-receipt {}  
.claim-form-receipt .dotted-divider {
    margin: 4.2rem 0 0 0
}  
.claim-form-receipt .claim-form-headline {
    font-weight: normal;
    font-family: "Georgia", serif, sans-serif;
    margin: 2.4rem 0 .6rem;
    font-size: 2rem
}  
.claim-form-image {
    margin: 8rem 7.7rem 5.2rem 7.7rem
}  
.claim-form-image-img {
    max-width: 100%
}  
.link-in-receipt {
    color: #8ad2f1
}  
@media all and (max-width:920px) {
    .box-medium.claim-form-image-wrapper {
        min-width: auto
    }
    .claim-form-image {
        margin: 0;
        width: 100%
    }
}  
@media all and (max-width:768px) {
    .receipt-content-wrapper .section-headline.small {
        font-size: 3rem
    }
    .box-medium.claim-form-image-wrapper {
        margin-bottom: 0;
        padding-bottom: 4rem
    }
}  
@media all and (max-width:540px) {
    .claim-form-receipt .submit-claim-form {
        margin-bottom: 4rem
    }
    .receipt-content-wrapper {
        padding: 0 2rem
    }
}
.error-container {
    display: inline-block;
    max-width: 26rem;
    vertical-align: middle
}
.error, .search-bankruptcy-error-box {
    font-size: 1.6rem;
    color: #f39600
}
.search-bankruptcy-error-box {
    margin-bottom: .6rem;
    margin-top: -2.4rem
}
.search-bankruptcy-error-box.hidden {
    display: block;
    height: auto
}
.search-bankruptcy-error-box:not(.hidden) + .search-bankruptcy-form .search-field {
    border-color: #f39600
}
.input-zip-group .error {
    left: 0;
    -moz-transform: translate(-13.1rem, -50%);
     -ms-transform: translate(-13.1rem, -50%);
         transform: translate(-13.1rem, -50%)
}
.input-city-group .error {
    -moz-transform: translate(11.7rem, -50%);
     -ms-transform: translate(11.7rem, -50%);
         transform: translate(11.7rem, -50%)
}
.validation-fail .error {
    display: block
}
.validation-fail .input-field {
    color: #f39600;
    border: .2rem solid #f39600
}
.tooltip {
    display: inline-block;
    position: relative;
    cursor: pointer;
    z-index: 1;
    -moz-transform: translateZ(0);
         transform: translateZ(0)
}
.tooltip:before {
    content: "";
    background-color: #eae7e0;
    width: 2.1rem;
    height: 2.1rem;
    -moz-border-radius: 50%;
         border-radius: 50%;
    display: block;
    position: relative;
    -moz-transform: translateZ(0);
         transform: translateZ(0)
}
.tooltip:after {
    content: "i";
    font-family: 'Times New Roman', Times, serif;
    color: rgba(0,0,0, .5);
    position: absolute;
    font-size: 1.6rem;
    left: 50%;
    top: 50%;
    margin-top: -.8rem;
    line-height: 1.6rem;
    margin-left: -.25rem;
    font-weight: bold;
    -moz-transform: translateZ(0);
         transform: translateZ(0)
}
.tooltip-text {
    min-width: 20rem;
    position: absolute;
    padding: 1.2rem 1.8rem;
    left: 1.1rem;
    color: #000000;
    word-wrap: break-word;
    background: #f5f3ee;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    z-index: 0;
    opacity: 0;
    -moz-transition-duration: .4s;
         transition-duration: .4s;
    -moz-transition-property: opacity;
    transition-property: opacity;
    visibility: hidden;
    top: 0;
    font-weight: normal
}
.tooltip-overlay {
    display: none
}
@media all and (max-width:920px) {
    .tooltip-overlay {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        background: #000000;
        color: #fff;
        -moz-transition: opacity .3s;
        transition: opacity .3s
    }
    .tooltip-overlay.active {
        display: block
    }
    .tooltip-overlay.visible {
        opacity: 1;
        visibility: visible
    }
    .tooltip-overlay-text {
        padding: 6rem 15rem;
        color: #fff
    }
    .tooltip-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 3rem;
        height: 3rem;
        cursor: pointer
    }
    .tooltip-close-item {
        height: .2rem;
        width: 2.8rem;
        -moz-border-radius: 0;
             border-radius: 0;
        background-color: #fff;
        -moz-transition: transform .25s, -moz-transform .25s;
        transition: transform .25s;
        transition: transform .25s, -moz-transform .25s
    }
    .tooltip-close-item:first-child {
        -moz-transform: translate3d(0rem, 1.5rem, 0) rotate(45deg);
             transform: translate3d(0rem, 1.5rem, 0) rotate(45deg)
    }
    .tooltip-close-item:last-child {
        -moz-transform: translateY(1.2rem) rotate(-45deg);
         -ms-transform: translateY(1.2rem) rotate(-45deg);
             transform: translateY(1.2rem) rotate(-45deg)
    }
}
@media all and (min-width:921px) {
    .tooltip:hover {
        z-index: 2
    }
    .tooltip:hover:before, .tooltip:hover:after {
        z-index: 1
    }
    .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1
    }
}
@media all and (max-width:920px) {
    .tooltip-text {
        display: none
    }
}
@media all and (max-width:768px) {
    .tooltip-overlay-text {
        padding: 6rem 10rem
    }
}
@media all and (max-width:540px) {
    .tooltip-overlay-text {
        padding: 6rem 5rem
    }
}
.spinner {
    display: none;
    margin: 1rem;
    height: 3rem;
    width: 3rem;
    -moz-border-radius: 50%;
         border-radius: 50%;
    border-top: .6rem solid rgba(0, 0, 0, .2);
    border-right: .6rem solid rgba(0, 0, 0, .1);
    border-left: .6rem solid rgba(0, 0, 0, .1);
    border-bottom: .6rem solid rgba(0, 0, 0, .1);
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -moz-animation: spin .5s infinite linear;
         animation: spin .5s infinite linear
}
.spinner.right {
    float: right
}
.spinner.left {
    float: left
}
.submitting .button {
    opacity: .5;
    color: rgba(0, 0, 0, .5);
    -moz-transition: all .4s;
    transition: all .4s
}
.bankruptcy-details-item:last-child .spinner {
    position: absolute;
    top: -.7rem;
    right: 6rem;
    height: 2rem;
    width: 2rem;
    border-top: .4rem solid rgba(0, 0, 0, .2);
    border-right: .4rem solid rgba(0, 0, 0, .1);
    border-left: .4rem solid rgba(0, 0, 0, .1);
    border-bottom: .4rem solid rgba(0, 0, 0, .1)
}
.submitting .spinner, .bankruptcy-details-item.submitting .spinner {
    display: block
}
.uploading-spinner {
    display: block;
    height: 2rem;
    width: 2rem;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border-top: .3rem solid rgba(0, 0, 0, .2);
    border-right: .3rem solid rgba(0, 0, 0, .1);
    border-left: .3rem solid rgba(0, 0, 0, .1);
    border-bottom: .3rem solid rgba(0, 0, 0, .1);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-animation: spin .5s infinite linear;
    animation: spin .5s infinite linear
}
.spinner-stop {
    display: none
}
.delete-sign:after {
    display: inline-block;
    content: "\00d7"
}
.delete-sign:hover {
    cursor: pointer
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
             transform: rotate(0deg)
    }
    100% {
        -moz-transform: rotate(360deg);
             transform: rotate(360deg)
    }
}
@keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
             transform: rotate(0deg)
    }
    100% {
        -moz-transform: rotate(360deg);
             transform: rotate(360deg)
    }
}
.hero-banner {
    position: absolute;
    top: 13.5rem;
    z-index: -1;
    width: 100%;
    min-height: 50.4rem;
    overflow: hidden
}
.hero-banner.is-small {
    min-height: 35rem;
    position: relative;
    top: 0
}
.hero-image {
    position: absolute;
    left: 50%;
    top: 0;
    -moz-transform: translate(-50%, 0);
     -ms-transform: translate(-50%, 0);
         transform: translate(-50%, 0)
}
.hero-image.grey-bg {
    background-color: rgba(0, 0, 0, 0.1)
}
.hero-information {
    margin-top: 10rem;
    margin-bottom: 8.4rem
}
.hero-headline {
    font-size: 7rem;
    line-height: 1.5;
    color: #000000
}
.hero-headline:before {
    content: "";
    display: block;
    margin-bottom: 1rem;
    left: 0;
    top: 0;
    width: 10rem;
    height: .7rem;
    background-color: #8ad2f1
}
.hero-box-title {
    font-size: 5rem;
    word-break: break-word;
    font-weight: bold;
    line-height: 1.2;
    margin: 2rem 0;
    text-align: left;
    font-family: "Minion W01 Bd"
}
.hero-action {
    text-align: center;
    margin-top: 5rem
}
.hero-information .button.hero {
    padding: 2rem;
    margin: 0 2rem 1rem
}
.hero-container__error {
    color: red
}
.hero-box {
    padding: 6rem 0 6.2rem;
    background-color: #fff;
    margin-top: 9rem;
    border: 1px solid #d8d8d8;
    overflow: hidden
}
.hero-box .content-editor ul li {
    font-size: 2.4rem;
    list-style: none;
    line-height: 1.2;
    margin: 1rem 0;
    padding-left: 5rem;
    position: relative;
    text-align: left
}
.hero-box .content-editor ul li:before {
    content: "";
    width: 2.1rem;
    height: .8rem;
    border-bottom: .3rem solid #000000;
    border-left: .3rem solid #000000;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10%;
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg)
}
.hero-container {
    max-width: 85%;
    width: 80%;
    margin: 0 auto
}
.hero-box ul {
    margin: 3rem 0
}
.hero-form {
    max-width: 40%
}
.hero-form-item {
    margin: 0 0 1.5rem 0
}
a.hero-form-link {
    text-decoration: underline
}
.hero-form-button {
    margin: 0;
    font-size: 2.5rem
}
.page .hero-banner {
    position: relative;
    top: auto
}
.hero-information .box-wide {
    min-width: initial
}
@media all and (min-width:2561px) {
    .hero-image {
        width: 100%
    }
}
@media all and (max-width:768px) {
    .hero-banner {
        background: #FAF9F7
    }
    .hero-banner .hero-banner-picture {
        display: none
    }
    .hero-information {
        margin: 5rem 0 4rem
    }
    .hero-information .content-editor ul {
        margin-left: 0
    }
    .hero-information .button.hero {
        margin: 1rem 0;
        font-size: 2.5rem
    }
    .hero-box {
        margin-top: 5rem
    }
    .hero-form {
        max-width: 100%
    }
    .hero-form-button {
        width: 100%
    }
}
@media (max-width:540px) {
    .hero-banner {
        top: 0;
        background: #FAF9F7
    }
    .page .hero-banner.is-small {
        top: 0;
        min-height: 0
    }
    .hero-information {
        margin-top: 0
    }
    .hero-information .box-wide {
        width: 100%
    }
    .hero-headline {
        margin: 0 2rem;
        font-size: 3rem
    }
    .hero-box {
        padding: 2rem;
        margin-top: 2rem;
        border: none
    }
    .hero-container {
        max-width: 100%;
        width: 100%
    }
    .hero-box-title {
        font-size: 3.5rem
    }
    .hero-information .button.hero {
        width: 100%
    }
}
@media (max-width:320px) {
    .hero-headline {
        font-size: 2.7rem
    }
}
.backoffice-header .box-wide.header-inner, .box-wide.claim-list-container {
    max-width: inherit
}
.backoffice-header .header-inner {
    padding: 2rem
}
.backoffice-header .header-title-text {
    font-size: 2rem
}
/**
* customize select dropdown
*/
.original-select {
    height: 3.2rem;
    border: .1rem solid #7f7f7f;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-size: 1.4rem
}
.original-select-wrapper {
    display: inline-block;
    position: relative
}
.original-select-wrapper:after {
    position: absolute;
    content: " ";
    width: 3px;
    height: 3px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 7px solid;
    border-top-color: black;
    right: 1rem;
    top: 50%;
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%);
    pointer-events: none
}
.claim-list-admin-view {
    width: 92%;
    margin: auto
}
.claim-list-claims-wrapper-top {
    padding: 3rem 0;
    position: relative;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between
}
.claim-list-filter-container {
    width: 66%;
    display: inline-block;
    vertical-align: top
}
.claim-list-filter-container input.checkbox-admin {
    height: 3rem
}
.claim-list-filter-row {
    height: 4rem;
    font-size: 1.4rem;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-align: center;
     -ms-flex-align: center;
         align-items: center
}
.claim-list-filter-row .original-select-wrapper, .claim-list-filter-entry-value {
    display: inline-block;
    position: relative;
    width: 40%;
    height: 3.2rem
}
.claim-list-filter-entry-select {
    width: 100%;
    height: 3.2rem;
    padding-left: 1rem
}
.claim-list-filter-entry-select::-ms-value {
    background: transparent;
    color: black
}
.claim-list-filter-entry-value {
    position: relative;
    margin: 0 1rem
}
.claim-list-filter-entry-value .original-select-wrapper {
    position: absolute;
    width: 100%
}
.claim-list-filter-entry-value .input-field, .claim-list-filter-entry-value .original-select {
    height: 3.2rem;
    width: 100%;
    margin-right: 0;
    padding-left: 1rem;
    font-family: sans-serif
}
.claim-list-filter-entry-value .input-field[type="checkbox"] {
    -webkit-appearance: checkbox;
       -moz-appearance: checkbox;
            appearance: checkbox;
    height: 1.3rem;
    width: 1.3rem;
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%);
    display: inline-block;
    margin: 0
}
.claim-list-filter-entry-value .input-field.datepicker {
    display: inline-block;
    padding: 0;
    overflow: visible
}
/* adding overflow fixes the issue with random datepicker position shift */
.claim-list-filter-entry-value .md-datepicker-input-container {
    height: 3.2rem;
    width: -moz-calc(100% - 2.5rem);
    width: calc(100% - 2.5rem);
    padding: 0 1rem;
    border-bottom: none
}
/* -2.5 is used to let md-datepicker stay aligned with other customized dropdown triangle */
.claim-list-filter-entry-value .md-datepicker-input-container .md-datepicker-input {
    height: 3.2rem;
    width: 100%;
    outline: none;
    padding-bottom: 0
}
.claim-list-filter-entry-remove {
    display: inline-block;
    line-height: 3.2rem;
    font-size: 2.4rem;
    cursor: pointer
}
.claim-list-preset-container {
    display: inline-block;
    position: relative
}
.claim-list-preset-label {
    display: block;
    margin-bottom: 1rem
}
.claim-list-preset-label > .checkbox-align-right {
    position: absolute;
    right: -3px
}
.claim-list-preset-container .original-select-wrapper {
    width: 5rem
}
.claim-list-preset-container .original-select-wrapper:after {
    right: .5rem
}
.select-number-of-result {
    width: 5rem;
    padding-left: .5rem
}
.select-number-of-result::-ms-value {
    background: transparent;
    color: black
}
.claim-list-filter-entry-value .legend {
    color: #817f85
}
.claim-list-preset-container-buttons-with-icons-wrapper {
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-pack: end;
     -ms-flex-pack: end;
         justify-content: flex-end;
    margin-top: 2rem
}
.button-with-icon {
    position: relative;
    display: inline-block;
    height: 3.2rem;
    width: 3.2rem;
    margin-left: 1rem;
    background-color: #4c4c4c;
    -moz-border-radius: 50%;
         border-radius: 50%;
    border: .1rem solid transparent;
    cursor: pointer;
    -moz-transition: border .4s ease-in-out, background-color .4s ease-in-out;
    transition: border .4s ease-in-out, background-color .4s ease-in-out
}
.button-with-icon:hover {
    border: .1rem solid #4c4c4c;
    background-color: #fff
}
.button-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1.5rem;
    -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
    fill: #fff;
    -moz-transition: fill .3s ease-in-out;
    transition: fill .3s ease-in-out
}
.button-with-icon:hover .button-icon {
    fill: #4c4c4c
}
.not-active {
    pointer-events: none
}
.claim-list-table {
    position: relative;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
    min-width: 100%;
    margin-right: 5rem;
    border: .1rem solid #d8d7d9;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -moz-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between;
    background-color: #fff
}
.claim-list-table.claim-list-body {
    margin-bottom: 6rem
}
.claim-list-row {
    position: relative;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
     -ms-flex-flow: row nowrap;
         flex-flow: row nowrap;
    white-space: nowrap;
    -moz-box-align: center;
     -ms-flex-align: center;
         align-items: center;
    font-size: 1.4rem;
    min-height: 3.2rem;
    color: #817f85;
    border-top: .1rem solid #d8d7d9
}
.claim-list-row:nth-child(even) {
    background-color: rgba(0,0,0,.02)
}
.claim-list-row.edited {
    background-color: #d6eae5
}
.claim-list-row.editing {
    border: .1rem solid #817f85
}
.claim-list-row.adding {
    display: none
}
.claim-list-row.adding.show {
    border: .3rem solid #d6eae5;
    -moz-box-ordinal-group: 0;
     -ms-flex-order: -1;
         order: -1;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}
.claim-list-row:not(.editing) {
    cursor: pointer
}
.claim-list-row.head {
    font-weight: 700;
    background-color: #f3f3f5;
    border-top: none;
    cursor: default;
    -moz-box-ordinal-group: -1;
     -ms-flex-order: -2;
         order: -2
}
.claim-list-row:not(.edited):hover {
    background-color: rgba(0,0,0,.04)
}
.claim-list-cell {
    position: relative;
    -moz-box-flex: 1;
     -ms-flex: 1 1 20rem;
         flex: 1 1 20rem;
    margin: auto 0 auto;
    padding: .6rem .8rem .6rem 1rem;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.claim-list-cell:focus, .claim-list-row:focus {
    outline: none
}
.claim-list-cell.with-value {
    margin: 0;
    padding: 0;
    height: 3.2rem;
    background-color: #fff
}
.claim-list-cell:after {
    content: '';
    display: none;
    width: 0;
    height: 0;
    margin-left: .5rem;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    vertical-align: middle
}
.claim-list-cell.up:after {
    display: inline-block;
    border-bottom: .5rem solid #817f85
}
.claim-list-cell.down:after {
    display: inline-block;
    border-top: .5rem solid #817f85
}
.claim-list-row.head .claim-list-cell {
    cursor: pointer
}
.claim-list-cell-value {
    display: block;
    width: 100%;
    height: 100%;
    padding: .6rem .8rem .6rem 1rem;
    border: none;
    background-color: #fff;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.claim-list-cell-value.checkbox {
    position: relative;
    height: 1.5rem;
    width: 1.5rem;
    top: 50%;
    margin-left: 1rem;
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%)
}
.claim-list-row .original-select-wrapper {
    width: 100%
}
.claim-list-row .original-select-wrapper .original-select {
    width: 100%;
    padding: .6rem .8rem .6rem 1rem;
    border: none
}
.claim-list-row .md-datepicker-input-container {
    height: 3.2rem;
    border: none;
    position: relative;
    top: -.4rem
}
.claim-list-row .md-datepicker-input-container .md-datepicker-input {
    height: 3.2rem;
    width: 100%;
    outline: none;
    padding-bottom: 0
}
.first-column {
    color: red
}
.claim-list-footer {
    margin-bottom: 10rem;
    border: .1rem solid #ababab;
    border-top: none;
    background-color: transparent
}
.claim-list-footer .claim-list-row.head {
    background-color: #f3f3f5
}
.claim-list-footer .claim-list-row {
    border-top: .1rem solid #ababab;
    background-color: transparent
}
.claim-list-claims-wrapper.loading {
    text-align: center;
    padding: 1rem
}
.claim-list-pagination-item.claim-list-pagination-icon {
    padding: .5rem;
    margin: 0 1rem;
    border: none;
    border-bottom: .1rem solid transparent;
    -moz-border-radius: initial;
         border-radius: initial
}
.claim-list-pagination-item.claim-list-pagination-icon.active, .claim-list-pagination-item.claim-list-pagination-icon:hover {
    border-bottom: .1rem solid #d8d7d9
}
.claim-list-pagination-icon {
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: .1rem solid transparent;
    padding: .5rem 3rem .5rem 1.5rem;
    -moz-border-radius: .6rem;
         border-radius: .6rem;
    cursor: pointer;
    -moz-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out
}
.claim-list-pagination-icon.not-clickable {
    pointer-events: none;
    opacity: .5
}
.claim-list-pagination-icon:not(.claim-list-pagination-item):hover {
    background-color: #f3f3f5;
    border: .1rem solid #d8d7d9
}
.claim-list-pagination-icon.prev {
    padding: .5rem 1.5rem .5rem 3rem
}
.claim-list-pagination-icon.prev .icon {
    left: -moz-calc(-100% + 3rem);
    left: calc(-100% + 3rem);
    right: 0
}
.claim-list-pagination-icon .icon {
    font-size: 2rem;
    position: absolute;
    top: .5rem;
    right: .5rem;
    color: #474747;
    font-style: normal
}
.icon-right-double-arrow:before {
    content: "\00BB"
}
.icon-left-double-arrow:before {
    content: "\00AB"
}
.claim-list-totals {
    padding-bottom: 4rem
}
.claim-list-totals .claim-list-total-title {
    display: inline-block;
    width: 300px
}
.claim-list-header {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    font-weight: bold;
    padding-bottom: 1.5rem;
    color: #817f85
}
.any-edited-claims {
    background-color: #74b7a5
}
.add-new-claim-button {
    height: 3.2rem;
    padding: 0 2rem;
    border: none;
    background: #4c4c4c;
    color: #fff;
    cursor: pointer;
    min-width: 8rem;
    float: right;
    margin: 1rem 0 3rem
}
/**
* Modal View
*/
.modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,.5)
}
.modal-view {
    position: fixed;
    width: 75rem;
    max-height: -moz-calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    top: 100px;
    left: 50%;
    padding: 4rem;
    -moz-transform: translate(-50%, 0);
     -ms-transform: translate(-50%, 0);
         transform: translate(-50%, 0);
    background: #fff;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    overflow-y: auto;
    -moz-border-radius: 1rem;
         border-radius: 1rem
}
.modal-view button {
    height: 3.2rem;
    padding: 0 2rem;
    border: none;
    background: #4c4c4c;
    color: #fff;
    cursor: pointer;
    min-width: 8rem
}
.modal-content {
    position: relative
}
.modal-column-select-container {
    width: 100%
}
.modal-header {
    font-weight: normal;
    padding-bottom: 2rem
}
.modal-header h3 {
    font-weight: normal;
    font-size: 3rem;
    font-family: "Verdana"
}
.modal-header .close-x {
    position: absolute;
    right: -10px;
    top: 0;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer
}
.modal-header .close-x:hover {
    opacity: 1
}
.modal-header .close-x:before, .modal-header .close-x:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333
}
.modal-header .close-x:before {
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg)
}
.modal-header .close-x:after {
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg)
}
.modal-subheader {
    font-weight: bold;
    line-height: 2
}
.modal-column-list {
    padding-bottom: 6rem
}
.modal-column-select-wrapper {
    position: relative;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -moz-box-pack: justify;
     -ms-flex-pack: justify;
         justify-content: space-between
}
.modal-column-select-wrapper .original-select-wrapper {
    width: 100%
}
.modal-column-select-wrapper .original-select-wrapper:after {
    right: 5px
}
.modal-column-select {
    width: 100%;
    padding-left: 1rem
}
.modal-column-button {
    width: 6rem;
    margin-right: 9rem;
    margin-left: 1rem
}
.modal-footer-button {
    position: absolute;
    bottom: 0;
    right: 0
}
.modal-footer-backbutton {
    position: absolute;
    bottom: 0;
    left: 0
}
.modal-show-file-upload-container {
    padding-bottom: 6rem
}
.modal-show-file-upload-item {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: rgba(0,0,0,.1);
    margin-bottom: .5rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.modal-show-file-upload-input {
    margin-top: 3rem
}
.modal-show-file-upload-input1 {
    margin-top: 0rem
}
.modal-textarea {
    width: 100%;
    height: 25rem;
    padding: 2rem;
    margin-bottom: 6rem;
    border: .1rem solid #d8d7d9;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    resize: none
}
.modal-column-item {
    cursor: all-scroll
}
.modal-column-item.move-to-first-place-placeholder {
    min-height: 1rem
}
.modal-column-item-inner-wrapper {
    background-color: rgba(0,0,0,.1);
    -moz-transition: background-color 1s ease-in-out, border .2s ease-in-out 1s;
    transition: background-color 1s ease-in-out, border .2s ease-in-out 1s
}
.dropped .modal-column-item-inner-wrapper {
    background-color: rgba(0,0,0,.2)
}
.modal-column-item .modal-column-item-separator {
    display: block;
    height: 0;
    width: 100%;
    margin: .25rem 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -moz-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out
}
.modal-column-item.drag-enter .modal-column-item-separator {
    height: 5rem;
    border: .1rem dashed #d8d7d9
}
.modal-column-item .modal-column-item-separator.collapse {
    height: 0;
    border: none
}
.modal-column-item-header {
    display: inline-block;
    width: 80%;
    padding: 1rem 1.5rem
}
.modal-column-item-delete-button {
    font-size: 2.5rem;
    float: right;
    padding: 1rem 1.5rem;
    cursor: pointer
}
.excel-starting-row-container {
    margin-top: 2rem
}
.excel-starting-row-container .label, .modal-show-file-layout-select .label {
    font-family: sans-serif;
    display: block
}
.excel-start-row-input {
    display: block;
    margin: 0 0 2rem 0;
    height: 3.2rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
div.modal-show-file-layout-select {
    display: inline-block;
    width: 49%;
    margin-top: 10px
}
div.modal-show-file-layout-select:first-child {
    padding-right: 9px
}
select.modal-show-file-layout-select, .modal-show-form-type-select {
    width: 100%;
    margin: 0 0 2rem 0;
    height: 3.2rem
}
.modal-import-file-button {
    position: absolute;
    bottom: 0;
    right: 10rem
}
/**
    Modal view import
*/
.modal-view-import {
    position: fixed;
    min-width: 75rem;
    max-width: 250rem;
    max-height: -moz-calc(100vh - 10rem);
    max-height: calc(100vh - 10rem);
    top: 50%;
    left: 50%;
    padding: 4rem;
    -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
    background: #fff;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    overflow-y: auto;
    overflow-x: auto;
    -moz-border-radius: 1rem;
         border-radius: 1rem
}
.modal-view-import button {
    height: 3.2rem;
    padding: 0 2rem;
    border: none;
    background: #4c4c4c;
    color: #fff;
    cursor: pointer;
    min-width: 8rem
}
/**
    Modal view History
*/
.modal-view-history {
    position: fixed;
    min-width: 75rem;
    max-width: 150rem;
    max-height: -moz-calc(100vh - 30rem);
    max-height: calc(100vh - 30rem);
    top: -moz-calc(50% - 7rem);
    top: calc(50% - 7rem);
    left: 50%;
    padding: 4rem;
    -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
    background: #fff;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    overflow-y: auto;
    -moz-border-radius: 1rem;
         border-radius: 1rem
}
.modal-view-history button {
    height: 3.2rem;
    padding: 0 2rem;
    border: none;
    background: #4c4c4c;
    color: #fff;
    cursor: pointer;
    min-width: 8rem
}
.modal-footer-history-button {
    position: absolute;
    bottom: 0;
    text-align: center
}
.modal-footer-history-text {
    position: absolute;
    bottom: 0;
    left: 0
}
/**
* Spinner
*/
.spinner {
    display: none;
    margin: 7rem auto;
    height: 3rem;
    width: 3rem;
    -moz-border-radius: 50%;
         border-radius: 50%;
    border-top: .6rem solid rgba(0, 0, 0, .2);
    border-right: .6rem solid rgba(0, 0, 0, .1);
    border-left: .6rem solid rgba(0, 0, 0, .1);
    border-bottom: .6rem solid rgba(0, 0, 0, .1);
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -moz-animation: spin .5s infinite linear;
         animation: spin .5s infinite linear
}
.loading.spinner {
    display: block
}
@keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
             transform: rotate(0deg)
    }
    100% {
        -moz-transform: rotate(-360deg);
             transform: rotate(-360deg)
    }
}
/**
* Datepicker, change default theme
*/
.md-calendar-day-header th {
    vertical-align: middle
}
.md-datepicker-input-container .md-datepicker-expand-triangle {
    width: 3px;
    height: 3px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 7px solid;
    border-top-color: black;
    top: 45%
}
.md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
    border: 1px solid #817f85
}
.md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator, .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator {
    background: #817f85
}
.md-datepicker-triangle-button.md-button.md-icon-button {
    background: transparent
}
.modal-column-mapping-container table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d8d7d9;
    border-bottom: none;
    color: #817f85;
    font-size: 14px
}
.modal-column-mapping-container table td {
    margin: 0;
    border-bottom: 1px solid #d8d7d9;
    padding: .6rem .8rem .6rem 1rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.modal-column-mapping-container table td:nth-child(1), .modal-column-mapping-container table th:nth-child(1) {
    width: 45%
}
.modal-column-mapping-container table td:nth-child(2), .modal-column-mapping-container table th:nth-child(2) {
    width: 10%
}
.modal-column-mapping-container table td:nth-child(3), .modal-column-mapping-container table th:nth-child(3) {
    width: 45%
}
.modal-column-mapping-container table th {
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    color: #817f85;
    background-color: #f3f3f5;
    padding: .6rem .8rem .6rem 1rem
}
.modal-column-mapping-container table select {
    width: 100%;
    padding: 0;
    border: none;
    -moz-border-radius: 3px;
         border-radius: 3px;
    color: #817f85;
    font-size: 14px;
    background-color: transparent;
    max-width: 282px
}
.modal-column-mapping-container table tr.value-selected select {
    color: black
}
.modal-column-mapping-container table select:focus {
    outline: none
}
.modal-column-mapping-container .column-table {
    border: 1px solid green
}
.modal-column-mapping-container .column-table td {
    border-top: 1px solid green;
    border-bottom: 1px solid green
}
.modal-column-mapping-container .mapping-table {
    max-height: -moz-calc(100vh - 550px);
    max-height: calc(100vh - 550px);
    overflow: auto;
    margin: 0 -27px 0 0
}
.modal-column-mapping-container .mapping-table table {
    width: 670px
}
.modal-column-mapping-container .mapping-table table tr.is-locked td:nth-child(3) {
    position: relative
}
.modal-column-mapping-container .mapping-table table tr.is-locked td:nth-child(3) select:disabled {
    opacity: 0.5
}
.modal-column-mapping-container .mapping-table table tr.is-locked td:nth-child(3):after {
    content: "";
    background-image: url('/dist/images/icons/Lock.svg');
    position: absolute;
    height: 13px;
    width: 9px;
    left: 0;
    top: 11px
}
.modal-column-mapping-container .mapping-table table tr:nth-child(even) {
    background-color: rgba(0,0,0,.02)
}
.modal-column-mapping-container .mapping-table table tr.value-selected {
    color: black
}
.modal-column-mapping-container .mapping-table table .css-arrow-right {
    position: relative;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-right: 9px solid #817f85;
    -moz-transform: rotate(-20deg);
     -ms-transform: rotate(-20deg);
         transform: rotate(-20deg);
    margin-left: 30px
}
.modal-column-mapping-container .mapping-table table .css-arrow-right:after {
    content: "";
    position: absolute;
    border: 0 solid transparent;
    border-top: 3px solid #817f85;
    -moz-border-radius: 20px 0 0 0;
         border-radius: 20px 0 0 0;
    top: -12px;
    left: -9px;
    width: 12px;
    height: 12px;
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg)
}
.modal-column-mapping-container .mapping-table table tr.value-selected .css-arrow-right {
    border-right: 9px solid #00aa00
}
.modal-column-mapping-container .mapping-table table tr.value-selected .css-arrow-right:after {
    border-top: 3px solid #00aa00
}
.modal-column-import-container {
    max-height: -moz-calc(100vh - 580px);
    max-height: calc(100vh - 580px);
    overflow: auto;
    max-width: 90vw;
    font-size: 14px
}
.modal-column-import-container .import-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    color: #817f85;
    font-size: 14px;
    border: 1px solid #d8d7d9
}
.modal-column-import-container .import-table th {
    background-color: #f3f3f5;
    vertical-align: top;
    white-space: nowrap;
    margin: 0;
    border: none;
    border-bottom: 1px solid #d8d7d9;
    padding: .6rem .8rem .6rem 1rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    font-weight: bold;
    text-align: left
}
.modal-column-import-container .import-table td {
    vertical-align: top;
    white-space: nowrap;
    margin: 0;
    border: none;
    border-bottom: 1px solid #d8d7d9;
    padding: .6rem .8rem .6rem 1rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box
}
.modal-column-import-container .import-table tr:nth-child(even) {
    background-color: rgba(0,0,0,.02)
}
.modal-column-import-container .import-table tr.value-selected {
    color: black
}
.modal-column-import-container .import-table .css-arrow-right {
    position: relative;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-right: 9px solid #817f85;
    -moz-transform: rotate(-20deg);
     -ms-transform: rotate(-20deg);
         transform: rotate(-20deg);
    margin-left: 30px
}
.modal-column-import-container .import-table .css-arrow-right:after {
    content: "";
    position: absolute;
    border: 0 solid transparent;
    border-top: 3px solid #817f85;
    -moz-border-radius: 20px 0 0 0;
         border-radius: 20px 0 0 0;
    top: -12px;
    left: -9px;
    width: 12px;
    height: 12px;
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg)
}
.modal-column-import-container .import-table tr.value-selected .css-arrow-right {
    border-right: 9px solid #00aa00
}
.modal-column-import-container .import-table tr.value-selected .css-arrow-right:after {
    border-top: 3px solid #00aa00
}
.modal-footer-button-buttons {
    clear: both;
    position: relative;
    padding-top: 20px
}
.modal-footer-button-buttons .modal-footer-button {
    float: right;
    position: relative
}
.modal-footer-button-buttons .modal-footer-backbutton {
    position: relative
}
.modal-footer-backbutton a {
    border: 1px solid #817f85;
    padding: 3px 11px 3px 26px
}
.modal-footer-backbutton a:before {
    content: "";
    position: absolute;
    border: solid #817f85;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -moz-transform: rotate(135deg);
     -ms-transform: rotate(135deg);
         transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    top: 12px;
    left: 11px
}
.import-select .import-step {
    padding: 50px;
    display: inline-block;
    width: 34%;
    text-align: center
}
.import-select .import-step a {
    display: block;
    cursor: pointer
}
.import-select .import-step a:hover .link-text {
    text-decoration: underline
}
.import-select .button-icon {
    fill: #817f85;
    height: 5rem;
    width: 5rem
}
.import-select .button-with-icon {
    background-color: transparent;
    height: 5rem;
    width: 5rem
}
.import-select .button-with-icon:hover {
    border: 1px solid transparent
}
.center-link {
    text-align: center
}
.center-link:hover {
    text-decoration: underline
}
.excel-info {
    position: relative;
    padding-bottom: 10px
}
.history-info .history-info-text {
    padding-bottom: 10px;
    font-size: 12px
}
.history-info .history-info-text .title {
    font-weight: bold;
    font-size: 16px
}
.paging {
    text-align: center;
    position: absolute;
    width: 100%
}
.paging a {
    cursor: pointer;
    text-decoration: underline;
    padding: 0 10px
}
.modal-confirm-title {
    text-align: center;
    font-weight: bold
}
.modal-confirm-body {
    text-align: center
}
.excel-info-text {
    position: absolute;
    top: 0;
    padding-left: 50px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600
}
.excel-info-text div {
    color: #969696;
    font-weight: normal
}
.excel-info-text .import-type {
    display: inline-block;
    text-transform: uppercase;
    color: #000000;
    padding-left: 30px
}
.excel-info-text .import-type:before {
    position: absolute;
    content: "";
    display: inline-block;
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg);
    height: 12px;
    width: 6px;
    border-bottom: 3px solid #00aa00;
    border-right: 3px solid #00aa00;
    margin-left: -15px;
    margin-top: -2px
}
.signature {
    float: right;
    font-size: 14px;
    padding-left: 15px
}
.signature a {
    padding: 5px;
    line-height: 20px;
    vertical-align: middle;
    display: inline-block
}
.signature-info {
    font-size: 14px;
    padding: 3px 0 0 0
}
.modal-column-list {
    max-height: -moz-calc(100vh - 580px);
    max-height: calc(100vh - 580px);
    overflow: auto;
    max-width: 90vw;
    font-size: 14px
}
.modal-column-list {
    padding-bottom: 0;
    border: 1px solid #eeeeee;
    padding: 15px;
    margin: 0 -15px 15px -15px
}
.column-nav {
    cursor: pointer
}
.lock-columns .column-nav {
    text-align: right
}
.dragbox {
    padding-left: 15px;
    vertical-align: middle
}
.modal-column-list .historylist {
    padding-left: 35px
}
.modal-column-list .historylist li {
    position: relative
}
.modal-column-list .historylist li:before {
    content: "";
    position: absolute;
    height: 21px;
    width: 21px;
    -moz-border-radius: 50%;
         border-radius: 50%;
    background-color: red;
    left: -35px;
    top: 5px
}
.modal-column-list .historylist li:after {
    content: "";
    position: absolute;
    height: 125%;
    width: 1px;
    background-color: red;
    left: -25px;
    top: 5px
}
.modal-column-list .historylist li:last-child:after {
    display: none
}
.modal-import-progress-container .progress-container {
    height: 50px;
    background-color: #e9e9e9;
    margin-bottom: 20px
}
.modal-import-progress-container .progress-container .progress-bar {
    background-color: #3aaf78;
    height: 37px;
    padding-top: 12px;
    padding-right: 20px
}
.modal-import-progress-container .progress-container .progress-bar .progress-percentage {
    color: #ffffff;
    float: right
}
.modal-import-progress-container .modal-footer-button {
    position: relative
}
@charset "UTF-8";
/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}
/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before, .pika-single:after {
    content: " ";
    display: table
}
.pika-single:after {
    clear: both
}
.pika-single {
    zoom: 1
}
.pika-single.is-hidden {
    display: none
}
.pika-single.is-bound {
    position: absolute;
    -moz-box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
         box-shadow: 0 5px 15px -5px rgba(0,0,0,.5)
}
.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px
}
.pika-title {
    position: relative;
    text-align: center
}
.pika-label {
    display: inline-block;
    display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0
}
.pika-prev, .pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    -moz-background-size: 75% 75%;
         background-size: 75% 75%;
    opacity: .5;
    position: absolute;
    top: 0
}
.pika-prev:hover, .pika-next:hover {
    opacity: 1
}
.pika-prev, .is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    left: 0
}
.pika-next, .is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    right: 0
}
.pika-prev.is-disabled, .pika-next.is-disabled {
    cursor: default;
    opacity: .2
}
.pika-select {
    display: inline-block;
    display: inline
}
.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0
}
.pika-table th, .pika-table td {
    width: 14.285714285714286%;
    padding: 0
}
.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center
}
.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5
}
.pika-week {
    font-size: 11px;
    color: #999
}
.is-today .pika-button {
    color: #33aaff;
    font-weight: bold
}
.is-selected .pika-button, .has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    -moz-box-shadow: inset 0 1px 3px #178fe5;
         box-shadow: inset 0 1px 3px #178fe5;
    -moz-border-radius: 3px;
         border-radius: 3px
}
.has-event .pika-button {
    background: #005da9;
    -moz-box-shadow: inset 0 1px 3px #0076c9;
         box-shadow: inset 0 1px 3px #0076c9
}
.is-disabled .pika-button, .is-inrange .pika-button {
    background: #D5E9F7
}
.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    -moz-box-shadow: none;
         box-shadow: none;
    -moz-border-radius: 3px;
         border-radius: 3px
}
.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    -moz-box-shadow: none;
         box-shadow: none;
    -moz-border-radius: 3px;
         border-radius: 3px
}
.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3
}
.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3
}
.is-selection-disabled {
    pointer-events: none;
    cursor: default
}
.pika-button:hover, .pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    -moz-box-shadow: none;
         box-shadow: none;
    -moz-border-radius: 3px;
         border-radius: 3px
}
/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help
}
.expired-text p {
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-bottom: 0
}
.expired-text .expired-header {
    padding-top: 0
}
sup {
    vertical-align: super;
    font-size: smaller
}
ins {
    text-decoration: underline
}
b {
    font-weight: bold
}
