/** globals */

* {
    /*margin: 0;*/
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

*:focus:not(:focus-visible),
body a:focus:not(:focus-visible) {
    outline: none;
}

html,
body {
    min-height: 100vh;
}

html {
    overflow-y: scroll;
    font-size: 10px;
}

body {
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/* ipad - portrait */
@media screen and (max-width: 768px) {
    html {
        overflow-y: auto;
    }

    html,
    body {
        min-height: 100%;
    }
}

#outer-wrapper {
    min-height: 100vh;
}

/* smaller than iPhone6 - portrait */
@media screen and (max-width: 374px) {
    #root {
        min-width: 300px;
    }
}

/* t3 deletes nbsp in p */
p:empty:before {
    content: "\00a0";
}

img {
    max-width: 100%;
    -ms-interpolation-mode: bicubic;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul:after {
    content: "";
    clear: both;
    display: block;
    width: 100%;
}

/* a:tel */
a[href^="tel:"] {
    color: inherit;
    cursor: text;
}

a[href^="tel:"] {
    text-decoration: underline;
}
,
a[href^="tel:"]:hover {
    text-decoration: none !important;
}

/* iphone 6+ - landscape OR pointing device of limited accuracy (e.g. finger) */
@media screen and (max-width: 736px), (pointer: coarse) {
    a[href^="tel:"] {
        text-decoration: underline !important;
    }
}

/* detect scrollbar width */
#scrollbar-measure--outer {
    width: 100px;
    overflow-y: scroll;
    position: absolute;
    top: -9999px;
}

#scrollbar-measure--inner {
    height: 50px;
}

/** overlay background */
#overlay-bg {
    display: none;
    background: #000;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10003;
    opacity: 0.5;
}

#overlay-bg.loading {
    background-image: url("../img/loading.svg");
    background-size: 50px 50px;
    background-position: center;
    background-repeat: no-repeat;
}

#overlay-bg.ajax-bg {
}

html.overlay-visible {
    overflow-y: hidden;
}

html.overlay-visible #overlay-bg {
    overflow-y: scroll;
}

html.overlay-visible body {
    overflow-y: scroll;
}

/** ajax layer */
@keyframes ajaxSlideDown {
    0% {
        transform: translateY(-5vh);
    }
    100% {
        transform: translateY(0);
    }
}

#ajaxLayerAdd {
    display: none;
    margin: 10vh auto 0;
    width: 90%;
    min-width: 300px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20001;
    animation: ajaxSlideDown 0.8s;
    transition: margin 0.5s ease;
}

#ajaxCloseLayerAdd {
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px 1px #555;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    height: 26px;
    width: 26px;
    position: absolute;
    top: -13px;
    right: -13px;
    z-index: 10;
    transition: all 0.3s ease;
}

#ajaxCloseLayerAdd:hover {
    border-radius: 5px;
}

#ajaxCloseLayerAdd i {
    color: #fff;
    font-size: 16px;
    margin: 2px 0 0;
    width: 22px;
}

#ajax-content {
    height: 85vh;
    position: relative;
}

#ajax-content .content-wrapper-outer {
    background: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    box-shadow: 0 0 15px 1px #555;
    display: flex;
    margin: 0 auto;
    padding: 20px 5px;
    max-height: 100%;
    overflow: hidden;
}

#ajax-content .content-wrapper-inner {
    max-height: 100%;
    overflow: auto;
    padding: 0 15px;
    position: relative;
}

@media screen and (max-width: 767px) {
    #ajaxLayerAdd {
        margin-top: 5vh;
    }

    #ajax-content {
        height: 90vh;
    }
}

@media screen and (max-width: 329px) {
    #ajaxCloseLayerAdd {
        top: -5px;
        right: -5px;
    }
}

@media screen and (max-width: 319px) {
    #ajaxCloseLayerAdd {
        margin-top: -13px;
        position: fixed;
        top: 5vh;
        right: 13px;
    }
}

/** cookie hint */
@keyframes slideUp {
    0% {
        transform: translateY(66px);
    }
    100% {
        transform: translateY(0);
    }
}

.cc_container,
.cc_message,
.cc_btn {
    animation-duration: 0.8s;
    animation-name: slideUp;
}

.cc_spacer {
}

.cc_banner-wrapper {
    display: none;
    position: absolute;
    z-index: 9001;
}

@media print {
    .cc_banner-wrapper {
        display: none !important;
    }
}

.cc_banner-wrapper .cc_container {
    align-items: center;
    background: #fff;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    color: #999;
    font-size: 14px;
    overflow: hidden;
    margin: 0;
    padding: 10px;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
}

.cc_banner-wrapper .cc_container-content {
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.cc_banner-wrapper .cc_btn {
    cursor: pointer;
    border-radius: 5px;
    display: block;
    text-align: center;
    margin-left: 10px;
    padding: 8px 10px;
    text-decoration: none;
    width: 100%;
    max-width: 120px;
    transition: all 0.2s ease-in-out;
    order: 1;
}

.cc_container .cc_btn,
.cc_container .cc_btn:visited {
    color: #000;
    background-color: #c8c8c8;
}

.cc_container .cc_btn:hover,
.cc_container .cc_btn:active {
    color: #888;
    background-color: #d3d3d3;
}

.cc_container .cc_message {
    display: block;
    color: #888;
    margin: 0 auto 0 0;
    padding: 0;
    width: 100%;
    max-width: calc(100% - 150px);
}

@media screen and (max-width: 767px) {
    .cc_banner-wrapper .row {
        align-items: start;
    }
}

@media screen and (max-width: 414px) {
    .cc_container .cc_message {
        max-width: 100%;
    }

    .cc_banner-wrapper .cc_btn {
        margin: 10px 0 0 auto;
        max-width: 100%;
    }
}

/** headline */
header {
}

@media screen and (max-width: 666px) {
    header * {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

/* headline positions */
header .center,
header .ce-headline-center {
    text-align: center;
}

header .right,
header .ce-headline-right {
    text-align: right;
}

header .left,
header .ce-headline-left {
    text-align: left;
}

/** zweispaltiger Text */
.frame-layout-1 {
}

.frame-layout-1 > ul, /* frame-type-bullets */
.frame-layout-1 .ce-bodytext {
    column-count: 2;
    column-gap: 40px;
}

/* reset for text in grid */
.frame-layout-1 .row .ce-bodytext {
    column-count: auto;
}

.frame-layout-1 .ce-bodytext p {
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    -moz-column-break-inside: avoid; /* Mozilla */
    -mx-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid; /* Firefox */
    break-inside: avoid; /* IE 10+ */
}

.frame-layout-1 .ce-bodytext p:first-of-type:last-of-type {
    display: inline-block;
}

/* Chrome, Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .frame-layout-1 .ce-bodytext p {
        margin-bottom: 0;
    }

    .frame-layout-1 .ce-bodytext p:after {
        content: "";
        display: block;
        height: 20px; /* height of bottom-margin */
    }

    .frame-layout-1 .ce-bodytext p:last-child:after {
        height: 0;
    }
}

/* Internet Explorer 10+, Microsoft Edge Browser */
_:-ms-lang(x),
.frame-layout-1 .ce-bodytext p {
    margin-bottom: 20px;
}

_:-ms-lang(x),
.frame-layout-1 .ce-bodytext p:after {
    display: none;
}

/* ipad - landscape */
@media screen and (min-width: 1024px) {
    .sidebar .frame-layout-1 > ul,
    .sidebar .frame-layout-1 .ce-bodytext {
        column-count: auto;
    }
}

@media screen and (max-width: 992px) {
    .frame-layout-1 > ul,
    .frame-layout-1 .ce-bodytext {
        column-gap: 20px;
    }
}

/* smaller than ipad - portrait */
@media screen and (max-width: 767px) {
    .frame-layout-1 > ul,
    .frame-layout-1 .ce-bodytext {
        column-count: auto;
    }
}

@media print {
    .frame-layout-1 > ul,
    .frame-layout-1 .ce-bodytext {
        column-count: auto;
    }
}

/** iframes */
iframe {
    border: none;
    max-width: 100%;
}

/* youtube iframes */
.iframe-outer-wrapper {
    max-width: 100%;
}

.align-left .iframe-outer-wrapper {
    margin: 0 auto 0 0;
}

.align-center .iframe-outer-wrapper {
    margin: 0 auto;
}

.align-right .iframe-outer-wrapper {
    margin: 0 0 0 auto;
}

.iframe-inner-wrapper {
    height: auto;
    width: 100%;
    overflow: hidden;
    padding: 56.25% 0 0; /* padding -> ratio 16x9 */
    position: relative;
}

.iframe-inner-wrapper iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

video {
    max-width: 100%;
}

/** maps */
div.tapToEnable {
    display: block;
    cursor: pointer;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 300;
}

@media print {
    div.tapToEnable {
        display: none !important;
    }
}

div.tapToEnable.open {
    height: auto;
}

div.tapToEnable span {
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    height: 36px;
    width: 36px;
    position: absolute;
    top: 0;
    right: 0;
}

div.tapToEnable span:before,
div.tapToEnable span:after {
    box-sizing: initial;
    content: "";
    position: absolute;
}

div.tapToEnable span:before {
    border: 4px solid #fff;
    border-radius: 50%;
    clip: rect(auto, auto, auto, 5px);
    height: 8px;
    width: 6px;
    top: 7px;
    left: 11px;
    transform: rotate(-90deg);
    transition: 0.1s ease-out;
}

div.tapToEnable span:after {
    background: #fff;
    border-radius: 2px;
    height: 12px;
    width: 18px;
    bottom: 7px;
    left: 9px;
}

div.tapToEnable.open span:before {
    top: 5px;
    left: 13px;
    transform: rotate(-60deg);
}

/* Internet Explorer 10+, Microsoft Edge Browser */
_:-ms-lang(x),
div.tapToEnable span:before {
    height: 15px;
    width: 15px;
    left: 10px;
}

/** img in text */
p img[style*="float: right;"],
p img[style*="float:right;"] {
    padding-left: 20px;
}

p img[style*="float: left;"],
p img[style*="float:left;"] {
    padding-right: 20px;
}

/* smaller than iPhone5 - landscape */
@media screen and (max-width: 567px) {
    p img[style*="float: right;"],
    p img[style*="float:right;"] {
        float: none !important;
        padding-left: 0;
    }

    p img[style*="float: left;"],
    p img[style*="float:left;"] {
        float: none !important;
        padding-right: 0;
    }
}

/** media */
div.ce-textpic {
}

div.ce-gallery {
}

div.ce-textpic:empty,
div.ce-gallery:empty {
    display: none;
}

div.ce-textpic:after,
div.ce-gallery:after {
    content: "";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

div.ce-gallery img {
    /*background: url("../img/loading.svg") no-repeat center;*/
    background-size: 30px 30px;
    display: block;
    height: auto;
    /*width: auto;*/
    max-width: 100%;
    margin: 0 auto;
}

/* border */
.ce-border .ce-media,
.ce-border figure img,
.ce-border iframe {
    border: 1px solid #ccc;
    padding: 5px;
}

/* position */
div.ce-above .ce-bodytext {
    clear: both;
}

div.ce-below .ce-bodytext {
}

div.ce-below .ce-gallery {
}

div.ce-below .ce-bodytext + .ce-gallery {
    margin-top: 20px;
}

div.ce-right .ce-gallery,
div.ce-left .ce-gallery {
    max-width: calc(50% + 15px);
    z-index: 1;
}

div.ce-right .ce-gallery {
    float: right;
    margin-left: 0;
    padding-left: 30px;
}

div.ce-right .ce-gallery .ce-media {
    text-align: right;
}

div.ce-left .ce-gallery {
    float: left;
    margin-right: 0;
    padding-right: 30px;
}

div.ce-left .ce-gallery .ce-media {
    text-align: left;
}

div.ce-center .ce-gallery {
    margin: 0 auto;
    text-align: center;
}

div.ce-center .ce-gallery img {
    margin: 0 auto;
}

/* desc */
div.ce-gallery .ce-column figure {
    display: block;
    margin: 0;
}

div.ce-gallery .ce-column figure figcaption {
    display: block;
    font-size: 90%;
    text-align: left;
    margin: 5px 0 0;
}

/* in text */
div.csc-textpic .csc-textpic-image:last-child {
    margin-bottom: 0;
}

div.ce-intext .ce-gallery {
    margin-bottom: 10px;
}

div.ce-intext .ce-gallery[data-ce-columns="1"] img {
}

div.ce-intext.ce-right .ce-gallery {
}

div.ce-intext.ce-left .ce-gallery {
}

div.ce-intext .ce-gallery .ce-row {
    width: auto;
}

/* smaller than iPhone5 - landscape */
@media screen and (max-width: 567px) {
    div.ce-right .ce-gallery,
    div.ce-left .ce-gallery {
        float: none;
        max-width: 100%;
    }

    div.ce-intext.ce-right .ce-gallery {
        padding-left: 0;
    }

    div.ce-intext.ce-left .ce-gallery {
        padding-right: 0;
    }

    div.ce-textpic .ce-gallery + .ce-bodytext,
    div.ce-textpic .ce-bodytext + .ce-gallery {
        margin-top: 40px;
    }

    .ce-gallery .ce-row:last-child .ce-column:last-child {
        margin-bottom: 0;
    }
}

/* beside text */
@media screen and (min-width: 667px) {
    div.ce-textpic.ce-intext.ce-nowrap {
        display: flex;
        align-items: start;
        flex: 0 1 auto;
        flex-flow: row wrap;
        justify-content: space-between;
        height: 100%;
    }

    div.ce-textpic.ce-intext.ce-nowrap:after {
        content: "";
        clear: both;
        display: block;
        height: 0;
        visibility: hidden;
    }

    div.ce-textpic.ce-intext.ce-nowrap.ce-right {
        flex-direction: row-reverse;
    }

    div.ce-textpic.ce-intext.ce-nowrap .ce-gallery,
    div.ce-textpic.ce-intext.ce-nowrap .ce-bodytext {
        flex: 0 0 auto;
        flex-wrap: wrap;
        width: 100%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    div.ce-textpic.ce-intext.ce-nowrap .ce-gallery:first-child:last-child,
    div.ce-textpic.ce-intext.ce-nowrap .ce-bodytext:first-child:last-child {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    div.ce-textpic.ce-intext.ce-nowrap .ce-gallery {
        float: none;
        margin-bottom: 0;
    }

    div.ce-textpic.ce-intext.ce-nowrap.ce-right .ce-gallery {
        padding-left: 30px;
    }

    div.ce-textpic.ce-intext.ce-nowrap.ce-left .ce-gallery {
        padding-right: 30px;
    }

    div.ce-textpic.ce-intext.ce-nowrap .ce-bodytext {
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .col > .frame > div.ce-textpic.ce-intext.ce-nowrap {
        display: block;
    }

    .col > .frame > div.ce-textpic.ce-intext.ce-nowrap.ce-right .ce-gallery {
        float: right;
    }

    .col > .frame > div.ce-textpic.ce-intext.ce-nowrap.ce-left .ce-gallery {
        float: left;
    }

    .col > .frame > div.ce-textpic.ce-intext.ce-nowrap .ce-bodytext {
        max-width: 100%;
        overflow: visible;
    }

    .col > .frame > div.ce-textpic.ce-intext.ce-nowrap .ce-bodytext header + * {
        clear: both;
        padding-top: 10px;
    }
}

/* columns */
.ce-gallery .ce-row {
    align-items: stretch;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -ms-flex: 0 1 auto;
    -ms-flex-align: center;
    -ms-flex-direction: row;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;

    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-flex: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: start;
    -webkit-flex-wrap: wrap;

    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -15px;
    margin-left: -15px;
}

.ce-intext .ce-gallery .ce-row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.ce-gallery .ce-row:before,
.ce-gallery .ce-row:after {
    content: "";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.ce-gallery .ce-row + .ce-row {
}

.ce-gallery .ce-column {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    flex-wrap: wrap;

    margin: 0 0 20px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    width: 100%;
}

.ce-gallery[data-ce-columns="8"] {
}

.ce-gallery[data-ce-columns="8"] .ce-column {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
}

.ce-gallery[data-ce-columns="7"] {
}

.ce-gallery[data-ce-columns="7"] .ce-column {
    -ms-flex-preferred-size: 14.2857%;
    flex-basis: 14.2857%;
    max-width: 14.2857%;
}

.ce-gallery[data-ce-columns="6"] {
}

.ce-gallery[data-ce-columns="6"] .ce-column {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.ce-gallery[data-ce-columns="5"] {
}

.ce-gallery[data-ce-columns="5"] .ce-column {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
}

.ce-gallery[data-ce-columns="4"] {
}

.ce-gallery[data-ce-columns="4"] .ce-column {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.ce-gallery[data-ce-columns="3"] {
}

.ce-gallery[data-ce-columns="3"] .ce-column {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.ce-gallery[data-ce-columns="2"] {
}

.ce-gallery[data-ce-columns="2"] .ce-column {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.ce-gallery[data-ce-columns="1"] {
}

.ce-gallery[data-ce-columns="1"] .ce-column {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

div.ce-right .ce-gallery[data-ce-columns] .ce-column,
div.ce-left .ce-gallery[data-ce-columns] .ce-column {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.ce-gallery[data-ce-columns="1"] .ce-row:last-child .ce-column:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .ce-gallery[data-ce-columns="8"] .ce-column,
    .ce-gallery[data-ce-columns="7"] .ce-column {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .ce-gallery[data-ce-columns="6"] .ce-column {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }
}

/* ipad - portrait */
@media screen and (max-width: 768px) {
    .ce-gallery[data-ce-columns="8"] .ce-column,
    .ce-gallery[data-ce-columns="7"] .ce-column,
    .ce-gallery[data-ce-columns="5"] .ce-column,
    .ce-gallery[data-ce-columns="4"] .ce-column {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

/* smaller than ipad - portrait */
@media screen and (max-width: 767px) {
    .ce-gallery[data-ce-columns="6"] .ce-column,
    .ce-gallery[data-ce-columns="3"] .ce-column {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

/* iPhone6+ - portrait */
@media screen and (max-width: 414px) {
    .ce-gallery[data-ce-columns="8"] .ce-column,
    .ce-gallery[data-ce-columns="7"] .ce-column,
    .ce-gallery[data-ce-columns="6"] .ce-column,
    .ce-gallery[data-ce-columns="5"] .ce-column,
    .ce-gallery[data-ce-columns="4"] .ce-column,
    .ce-gallery[data-ce-columns="3"] .ce-column,
    .ce-gallery[data-ce-columns="2"] .ce-column {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .ce-gallery .ce-row:last-child .ce-column:last-child {
        margin-bottom: 0;
    }
}

/** tables */
.frame-type-table {
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.frame-type-table table {
    min-width: 280px;
}

table {
}

table caption {
    /*display: none;*/
    caption-side: bottom;
    font-size: 90%;
    text-align: left;
    margin: 5px 0 0;
}

table.contenttable,
table.ce-table {
    border: none;
    border-collapse: collapse;
    margin: 0;
    width: 100%;
}

table.ce-table + .ce-table {
    margin: 20px 0 0;
}

table.contenttable thead td,
table.ce-table th {
    font-weight: bold;
    text-align: left;
    padding: 5px;
    vertical-align: top;
}

table.contenttable td,
table.ce-table td {
    padding: 5px;
    vertical-align: top;
}

table.contenttable td,
table.ce-table-bordered th,
table.ce-table-bordered td {
    border: 1px solid #ccc;
}

table.contenttable thead td,
table.ce-table-bordered th {
    background: #ccc;
    border-color: #ccc #fff;
}

table.ce-table-bordered tbody th {
    border-color: #ccc;
}

table.contenttable thead td:first-child,
table.ce-table-bordered th:first-child {
    border-left-color: #ccc;
}

table.contenttable thead td:last-child,
table.ce-table-borderede th:last-child {
    border-right-color: #ccc;
}

table.contenttable td {
}

table.ce-table-bordered td {
}

table.ce-table-striped {
}

table.contenttable thead td,
table.ce-table-striped thead th {
    background-color: #ccc;
}

table.contenttable tr:nth-of-type(odd),
table.ce-table-striped tr:nth-of-type(odd) {
    background-color: transparent;
}

table.contenttable tr:nth-of-type(even),
table.ce-table-striped tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.03);
}

table.ce-table-striped td {
}

table.ce-table tbody th {
    border: 1px solid #ccc;
}

table.ce-table th ~ td {
    border: 1px solid #ccc;
}

/** ce-uploads */
.ce-uploads {
    list-style: none;
    padding: 0;
}

.ce-uploads li {
    margin: 20px 0 0;
}

.ce-uploads li:first-child {
    margin-top: 0;
}

.ce-uploads li:after {
    content: "";
    clear: both;
    display: block;
}

.ce-uploads .ce-uploads-fileName {
}

/* only name */
.ce-uploads li > div:first-child a {
}

/* preview */
.ce-uploads li > a:first-child {
    display: block;
    float: left;
    margin: 0 20px 0 0;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.ce-uploads li > a:first-child img {
    background: url("../img/loading.svg") no-repeat center;
    background-size: 10px 10px;
    display: block;
    float: none;
    height: auto;
    width: auto;
    padding: 0;
}

.ce-uploads li > a:first-child + div {
    padding-top: 20px;
}

/* icon */
.ce-uploads li > img {
    display: none;
}

.ce-uploads li > img + div a {
    display: inline-block;
    padding-top: 5px;
    position: relative;
}

.ce-uploads li > img + div a:before {
    display: inline-block;
    color: #444;
    font-family: FontAwesome;
    font-size: 18px;
    line-height: 1;
    margin-top: -2px;
    position: absolute;
    left: 0;
}

.ce-uploads li > img + div a[href]:before {
    content: "\f016";
}

.ce-uploads li > img + div a[href$=".jpg" i]:before,
.ce-uploads li > img + div a[href$=".jpeg" i]:before,
.ce-uploads li > img + div a[href$=".ico" i]:before,
.ce-uploads li > img + div a[href$=".gif" i]:before,
.ce-uploads li > img + div a[href$=".png" i]:before {
    content: "\f1c5";
}

.ce-uploads li > img + div a[href$=".csv" i]:before,
.ce-uploads li > img + div a[href$=".xls" i]:before,
.ce-uploads li > img + div a[href$=".xlsx" i]:before,
.ce-uploads li > img + div a[href$=".xlt" i]:before,
.ce-uploads li > img + div a[href$=".xlw" i]:before,
.ce-uploads li > img + div a[href$=".doc" i]:before,
.ce-uploads li > img + div a[href$=".docx" i]:before,
.ce-uploads li > img + div a[href$=".pages" i]:before,
.ce-uploads li > img + div a[href$=".rtf" i]:before,
.ce-uploads li > img + div a[href$=".txt" i]:before {
    content: "\f0f6";
}

.ce-uploads li > img + div a[href$=".pdf" i]:before {
    content: "\f1c1";
}

.ce-uploads li > img + div a[href$=".zip" i]:before,
.ce-uploads li > img + div a[href$=".rar" i]:before,
.ce-uploads li > img + div a[href$=".gzip" i]:before {
    content: "\f1c6";
}

.ce-uploads li > img + div a .ce-uploads-fileName {
    padding-left: 25px;
}

/* description */
.ce-uploads .ce-uploads-description {
    display: block;
}

.ce-uploads .ce-uploads-filesize {
    display: block;
}

/* eof */
