/*
 *************************************
 * rte.less
 * Eigenschaften des rich-text editors
 *************************************
 */
body,
textarea,
input,
select,
button {
    /*color: #1d1d1b;*/
    color: var(--typo3-text-color-base, #1d1d1b);
    font-size: 16px;
    /* nur BE */
    line-height: 1.5em;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

/*************************************
 * Placeholders
 */
/* used in upload field */
button {
    color: #666;
}

/* WebKit browsers */
::-webkit-input-placeholder {
    color: #666;
}

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
    color: #666;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder {
    color: #666;
    opacity: 1;
}

/* Internet Explorer 10+ */
:-ms-input-placeholder {
    color: #666;
}

/*************************************
 * Headers
 */
/* Linkfarbe auf Titel Deaktivieren*/
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
a h1,
a h2,
a h3,
a h4,
a h5,
a h6 {
    color: inherit;
}

/* Titel normalisieren */
h1,
h2,
h3,
h4,
h5,
h6,
.subtitle {
    padding: 0;
    margin: 0;
    line-height: 120%;
}
h1 {
    color: #fff;
}
h1,
h2,
h3,
h4,
h6 {
    font-weight: 600;
}

h1,
h2,
h3,
h4 {
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
/* Subtitle */
.subtitle {
    display: block;
    /* color:#333; */
}

.headline .subtitle {
    font-size: 21px;
    font-weight: 300;
    text-align: left;
    color: #fff;
}

/* ACHTUNG!!! font-size Header Definitionen NUR BE*/
h1 {
    font-size: 32px;
}

.headline h1 {
    text-align: left;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 16px;
    text-transform: uppercase;
}

b,
strong {
    font-weight: bold;
}

/*************************************
 * Absätze
 */
p+p,
p+ul,
p+ol,
p+dl,
div ul+p,
ol+p,
dl+p,
table+p,
div ul+div,
ol+div,
dl+div,
div ul+ul,
ol+ul,
ul+ol,
dl+ul,
div ul+span,
ol+span,
dl+span {
    margin-top: 1em;
}

p.Teaser+p {
    margin-top: 0.5em;
}

p+h1,
ul+h1,
ol+h1,
p+h2,
ul+h2,
ol+h2,
p+h3,
ul+h3,
ol+h3,
p+h4,
ul+h4,
ol+h4,
p+h5,
ul+h5,
ol+h5,
p+h6,
ul+h6,
ol+h6 {
    margin-top: 1.5em;
}

div.indent {
    margin-left: 2em;
}

p.align-right {
    text-align: right;
}

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

p.align-left {
    text-align: left;
}

p.justify {
    text-align: justify;
}
/** justify ab 10.4**/
.text-left {
        text-align: left;
}
.text-center {
        text-align: center;
}
.text-right {
        text-align: right;
}
.text-justify {
        text-align: justify;
}

/*************************************
 * Spezial Text Elemente Styles
 */
p.Teaser {
    font-weight: normal;
    color: #373737;
}

/*************************************
 * Listen
 */
ul,
ol,
dl {
    margin-left: 0.3em;
    /* Margin-top und bottom nicht setzten da diese in abhänigkeit von p + ul / ul + p gesetzt werden */
}

/*************************************
 * Links
 */
a {
    color: #d4af79;
    text-decoration: none;
}
a:focus{
}

a:hover,
.loginButton:hover {
    outline: 0;
    color: #a6824d;
}

/* created by Internetgalerie link + passive looking links */
a.link-without-highlight,
.footer a.link-without-highlight{
    color: #fff;
}
a.link-without-highlight:hover,
.footer a.link-without-highlight:hover{
    color: #b4d1dc;
}
/*************************************
 * Links-button
 */
a.link-button {
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
    display: inline-block;
}

a.link-button:hover {
    text-decoration: none;
}

/* Button Animation */
a.link-button {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
