/*
 *************************************
 * rte.less
 * Eigenschaften des rich-text editors
 *************************************
 */
body,
textarea,
input,
select,
button {
    color: #666666;
    color: var(--typo3-form-section-color, #666666);
    font-size: 16px;
    /* nur BE */
    line-height: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

/*************************************
 * 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%;
    color: #333;
    color: var(--typo3-form-section-color, #333);
    hyphens: auto;
}

h1,
h2,
h3,
h4 {
    font-weight: normal;
}

h5,
h6 {
    font-weight: normal;
}

/* Subtitle */
.subtitle {
    display: block;
    /* color:#333; */
}

.headline .subtitle {
    font-size: 21px;
    font-weight: normal;
    text-align: left;
    /* color: #333; */
}

/* 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;
}
p.text-center {
    margin-left: auto;
    margin-right: auto;
}
.text-right {
    text-align: right;
    margin-left: auto;
}

.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 */
}
.ce-bodytext li{
    padding-bottom: 8px;
}

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

a:focus,
input[type="submit"]:focus {
    outline-style: solid;
    outline-color: #f60;
    outline-offset: 2px;
}

a:hover,
.loginButton:hover {
    outline: 0;
    text-decoration: underline;
}

/* created by Internetgalerie link + passive looking links */
a.link-without-highlight,
.footer a.link-without-highlight {
    color: #666;
}

/*************************************
 * Links-button
 */
a.link-button {
    border: 1px solid #000;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
    display: inline-block;
}

a.link-button:hover,
a.link-button:focus {
    color: #fff;
    background-color: #000;
    text-decoration: none;
}

/* Button Animation */
a.link-button,
button,
input[type='submit'] {
    -webkit-transition: background-color 0.5s, color 0.5s, border-color 0.5s;
    -moz-transition: background-color 0.5s, color 0.5s, border-color 0.5s;
    -ms-transition: background-color 0.5s, color 0.5s, border-color 0.5s;
    -o-transition: background-color 0.5s, color 0.5s, border-color 0.5s;
    transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
