
a {
    color: #537DC4;
}
body {
    background-color: #E2E2E2;
}

.row {
    max-width: 70rem !important;
}

.tooltip {

    word-wrap: break-word;
    max-width: 20rem;
}

.header_logo {

    z-index: 1;
    position: absolute;
}
.curtain-menu {
    z-index: 11;
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.curtain-menu-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    transition-delay: 0.5s;
    visibility: hidden;
}

.curtain-menu-wrapper .curtain-menu-list li {
    width: 100%;
    font-weight: 100;
    font-size: 2.8125rem;
    min-height: 2.8125rem;
    padding: 1rem;
    text-align: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.2s ease-in;
    border-radius: 5px;
}

.curtain-menu-wrapper .curtain-menu-list li:hover {
    background: rgba(254, 254, 254, 0.7);
}

.curtain-menu-wrapper .curtain-menu-list li:hover a {
    color: #1779ba;
}

.curtain-menu-wrapper .curtain-menu-list li a {
    color: #fefefe;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.curtain-menu .curtain {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: -webkit-flex 0.45s;
    transition: flex 0.45s;
    transition: flex 0.45s, -webkit-flex 0.45s, -ms-flex 0.45s;
}

.curtain-menu .curtain:nth-child(2) {
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    background: transparent;
}

.curtain-menu .curtain:nth-child(odd) {
    background: #0c3e5f;
    opacity: 0.9;
}

.curtain-menu-button {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 5;
}

.curtain-menu-button-toggle {
    width: 2.5rem;
    height: 2.5rem;
    /*border-radius: 5000px;*/
    border-radius: 5px;
    background: #fefefe;
    position: relative;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.curtain-menu-button-toggle div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 3px;
    background: #1779ba;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    transition-delay: 0.5s;
}

.curtain-menu-button-toggle .bar1 {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

.curtain-menu-button-toggle .bar2 {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-180deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-180deg);
    transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}

.curtain-menu-button-toggle:hover {
    background: #1779ba;
}

.curtain-menu-button-toggle:hover div {
    background: #fefefe;
}

.curtain-menu-button-toggle:active {
    box-shadow: none;
}

.curtain-menu-open {
    overflow: hidden;
}

.curtain-menu-open .curtain:nth-child(2) {
    -webkit-flex: 0 0 0%;
    -ms-flex: 0 0 0%;
    flex: 0 0 0%;
}

.curtain-menu-open .curtain-menu-wrapper {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
    pointer-events: all;
}

.curtain-menu-open .curtain-menu-button-toggle .bar1 {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.curtain-menu-open .curtain-menu-button-toggle .bar2 {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
    transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}


.fullscreen-image-slider .orbit-image {
    width: 100%;
    height: 100vh;
}

.fullscreen-image-slider .orbit-caption {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    background: none;
    text-align: center;
    color: #fefefe;
    font-weight: bold;
}

/* FOOTER */

.marketing-site-footer {
    background: #2c3840;
    color: #8aa0ae;
    padding: 2rem 0 0;
}

.marketing-site-footer .marketing-site-footer-menu-social a {
    color: #fefefe;
}

.marketing-site-footer .column-block {
    margin-bottom: 30px;
}

.marketing-site-footer > .row {
    margin-bottom: 1rem;
}

@media screen and (max-width: 39.9375em) {
    .marketing-site-footer .columns {
        margin-bottom: 2rem;
    }
}

.marketing-site-footer-name {
    color: #fefefe;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.marketing-site-footer-title {
    color: #fefefe;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.marketing-site-footer-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
}

.marketing-site-footer-block .fa {
    font-size: 2rem;
    color: #020304;
}

.marketing-site-footer-block p {
    margin-left: 1rem;
    line-height: 1.125rem;
}

.marketing-site-footer-bottom {
    background: #020304;
    padding: 1rem 0;
}

.marketing-site-footer-bottom p,
.marketing-site-footer-bottom .menu {
    margin-bottom: 0;
}

.marketing-site-footer-bottom .marketing-site-footer-bottom-links {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.marketing-site-footer-bottom .marketing-site-footer-bottom-links a {
    color: #8aa0ae;
}

@media screen and (max-width: 63.9375em) {
    .marketing-site-footer-bottom .marketing-site-footer-bottom-links {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 63.9375em) {
    .marketing-site-footer-bottom {
        text-align: center;
    }
}


body {
    background-color: #E5F6FF;
}

body, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Open Sans', sans-serif !important;
}

.icon:before {
    content: '\25CF' !important;
/*    content: '\2B24' !important;
*/
}

a {
}

a:hover {
    color: #000000 !important;
}

.answer {
    font-size: 0.75rem;
}

.answer:hover {
    background-color: lightgrey;
    cursor: pointer;
}

.accordion, .accordion-title {
    border-radius: 3px 3px 3px 3px !important;
}

ul.list-group {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem !important;
    border-radius: 3px 3px 3px 3px;
}

.list-group {
    margin-bottom: 1rem;
    border: 1px solid #ffffff;
    border-radius: 0;
    background: #fefefe;
    box-shadow: none;
    overflow: hidden;
    color: #0a0a0a;
    font-weight: bold;
}

.list-group > :last-child {
    margin-bottom: 0;
}

.list-group-group {
    margin-bottom: 0;
    border: 1px solid #ffffff;
    border-radius: 0;
    background: #fefefe;
    box-shadow: none;
    overflow: hidden;
    color: #0a0a0a;
    font-weight: normal;
}

.list-group-title {
    margin-top: 10px;
    padding: 0.5rem;
    font-weight: bold;
}

.list-group-item {
    padding: 1rem;
    border-bottom: 1px solid #ffffff;
}

.list-group-item > :last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.list-group-item.active {
    color: #fefefe;
    background-color: #1779ba;
    border-color: #1779ba;
}

.list-group-item:hover, .list-group-item:focus {
    background-color: #e6e6e6;
}

.list-group-item:hover.active, .list-group-item:focus.active {
    background-color: #1779ba;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus, .list-group-item[disabled], .list-group-item[disabled]:hover, .list-group-item[disabled]:focus {
    color: #8a8a8a;
    cursor: not-allowed;
    background-color: #fefefe;
}

.list-group-item.hidden, .list-group-item.hidden:hover, .list-group-item.hidden:focus, .list-group-item[hidden], .list-group-item[hidden]:hover, .list-group-item[hidden]:focus {
    display: none;
}

.list-group-group.hidden, .list-group-group.hidden:hover, .list-group-group.hidden:focus, .list-group-group[hidden], .list-group-group[hidden]:hover, .list-group-group[hidden]:focus {
    display: none;
}

.pagination-circular li.current {
    border: 1px solid #1779ba;
    border-radius: 5000px;
    padding: 0.285em 0.8em;
    font-size: 18px;
}

.pagination-circular li.disabled {
    border: 1px solid #cacaca;
    padding: 0.285em 0.8em;
    border-radius: 5000px;
    font-size: 18px;
}

.pagination-circular a {
    border-radius: 5000px;
    padding: 0.285em 0.8em;
    border: 1px solid #1779ba;
    font-size: 18px;
}

.pagination-circular li:not(.disabled):hover a {
    background: #1779ba;
    color: #fefefe;
}

.pagination-circular li a {
    transition: background 0.15s ease-in, color 0.15s ease-in;
}

.accordion-title.moreinfo {
     width: 30%;
 }
.accordion-title.morequestion {
    width: 100%;
}

.morequestion {
    color: #1e70bf;
    font-weight: bold;
    border: none !important;
    content: '' !important;
    background-color: transparent !important;
}

.morequestion:hover {
    color: #000000;
    content: '' !important;
    background-color: transparent !important;
}

.morequestion:link {
    color: #1e70bf;
    content: '' !important;
    background-color: transparent !important;
}

.morequestion:active {
    color: #1e70bf;
    content: '' !important;
    background-color: transparent !important;
}

.morequestion:visited {
    color: #1e70bf;
    content: '' !important;
    background-color: transparent !important;
}

.morequestion_content {
    border: none !important;
    text-align: left;
}

.moreinfo {
    color: #1e70bf;
    font-weight: bold;
    border: none !important;
    content: '' !important;
    background-color: transparent !important;
}

.moreinfo:hover {
    color: #000000;
    content: '' !important;
    background-color: transparent !important;
}

.moreinfo:link {
    color: #1e70bf;
    content: '' !important;
    background-color: transparent !important;
}

.moreinfo:active {
    color: #1e70bf;
    content: '' !important;
    background-color: transparent !important;
}

.moreinfo:visited {
    color: #1e70bf;
    content: '' !important;
    background-color: transparent !important;
}

.moreinfo_content {
    border: none !important;
    text-align: left;
}

.title-bar, .title-bar a {
    background-color: transparent;
    color: #43638A;
    font-weight: bold;
}

.accordion-title::before {
    content: '' !important;
}

.list-group-item {
    background-color: #ECECE1;
    border: 3px solid #ECECE1 !important;
    background-image: url('/images/check_deselected.png');
    background-repeat: no-repeat;
    background-position: 15px 15px;
    padding-left: 70px;
    margin-bottom: 3px;
}

.list-group-item.active {
    background-color: #ECECE1;
    border: 3px solid #ECECE1 !important;
    background-image: url('/images/check_selected.png');
    background-repeat: no-repeat;
    background-position: 15px 15px;
    padding-left: 70px;
    color: #000000;
}

.list-group-item:hover {
    background-color: #ECECE1;
    border: 3px solid #D2D2C1 !important;
}

.list-group-item.active:hover {
    background-color: #ECECE1;
    border: 3px solid #D2D2C1 !important;
}

.list-group, .list-group-group {
    border: 1px solid #ffffff !important;
}

.list-group-group > :last-child {
    margin-bottom: 10px;
}

.list-group-group .list-group-item {
    border: 3px solid #ECECE1 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    background-position: 15px 10px;
}

.list-group-group .list-group-item.active {
    border: 3px solid #ECECE1 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    background-position: 15px 10px;
}

.list-group-group .list-group-item:hover {
    border: 3px solid #D2D2C1 !important;
}

.list-group-group .list-group-item.active:hover {
    border: 3px solid #D2D2C1 !important;
}


/* PAGINATION WITH POINTED BUTTONS
 */


.pagination-pointed .pagination-pointed-button, .pagination-pointed .current, .pagination-pointed .pagination-previous {
    position: relative;
    display: inline-block;
/*    padding: 6px 12px;*/
    padding: 3px 6px;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
/*    border: 1px solid transparent;*/
    border: 1px solid #2c3840 !important;
    border-radius: 4px;
/*    background-color: #2c3840; */
/*    color: #fff;*/
    color: #2c3840;
    outline: 0;
    text-decoration: none;
    transition: all 0.2s linear;
}

.pagination-pointed .pagination-pointed-button:hover, .pagination-pointed .current:hover, .pagination-pointed .pagination-previous:hover {
    background-color: #41525e;
}

.pagination-pointed .current {
    /*background: #1e70bf;*/
    background: #2ba6cb;
    color : #ffffff;
}

.pagination-pointed-button.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.pagination-pointed-button.disabled:hover {
cursor: none;
}

.pagination-pointed-button.empty {

}
.pagination-pointed-button.pflichtfeld {
    background-color: rgba(95, 138, 67, 0.5) !important;
    color : #000000;
}

.pagination-pointed-button.full {
    background-color: #1e70bf;
    color : #ffffff;
}.pagination-pointed-button.spezialbtn {
     background-color: #1e70bf;
     color : #ffffff;
 }

.pagination li:nth-last-child(2) {
    display: inline-block;
}

.selected_value {

    margin-left: -70px !important;
    width: 70px !important;
    text-align: center !important;
    height: 30px !important;
    line-height: 30px !important;
    color: #43638A !important;
    font-weight: bold !important;
    position: absolute !important;

}

@-moz-document url-prefix() {
    .selected_value {
        margin-top: 0 !important;
    }
}

.ui.rating[data-rating='0'] i.icon.active {
    color: #A90000 !important;
}
.ui.rating[data-rating='1'] i.icon.active {
    color: #A90000 !important;
}
.ui.rating[data-rating='2'] i.icon.active {
    color: #B83300 !important;
}
.ui.rating[data-rating='3'] i.icon.active {
    color: #C25600 !important;
}
.ui.rating[data-rating='4'] i.icon.active {
    color: #CD7900 !important;
}
.ui.rating[data-rating='5'] i.icon.active {
    color: #D79A00 !important;
}
.ui.rating[data-rating='6'] i.icon.active {
    color: #E2C200 !important;
}
.ui.rating[data-rating='7'] i.icon.active {
    color: #CFC300 !important;
}
.ui.rating[data-rating='8'] i.icon.active {
    color: #B8C100 !important;
}
.ui.rating[data-rating='9'] i.icon.active {
    color: #A2C000 !important;
}
.ui.rating[data-rating='10'] i.icon.active {
    color: #8ABE00 !important;
}
.ui.rating[data-rating='11'] i.icon.active {
    color: #69BC00 !important;
}
.ui.rating[data-rating] i.icon.active.selected {
    color: #000000 !important;
}

body ::-webkit-scrollbar {
    -webkit-appearance: none;
     width: 0 !important;;
    height: 0!important;;
}