/***** RTE - Start *****/
.button-arrow-primary {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 8px 20px 11px 64px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    background-color: rgb(var(--color-bg-gray));
}
.button-arrow-primary::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 31px;
    height: 31px;
    background: url("../Images/bg-arrow-circle-red.svg") no-repeat;
    background-size: contain;
    z-index: 1;

    transition: all var(--transition-t1);
}
.button-arrow-primary:hover::before {
    left: 20px;
}
.content a.button-arrow-primary {
    text-decoration: none;
}

.button-arrow-secondary {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 8px 20px 11px 64px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    background-color: rgb(var(--color-bg-gray));
}
.content a.button-arrow-secondary {
    text-decoration: none;
}
.button-arrow-secondary::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 31px;
    height: 31px;
    background: url("../Images/bg-arrow-circle-blue.svg") no-repeat;
    background-size: contain;
    z-index: 1;

    transition: all var(--transition-t1);
}
.button-arrow-secondary:hover::before {
    left: 20px;
}

.button-icon-primary {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 8px 20px 11px 64px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    background-color: rgb(var(--color-bg-gray));
}
.content a.button-icon-primary {
    text-decoration: none;
}
.button-icon-primary::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 24px;
    height: 32px;
    background: url("../Images/bg-icon-pdf-red.svg") no-repeat;
    background-size: contain;
    z-index: 1;

    transition: all var(--transition-t1);
}
.button-icon-primary:hover::before {
    top: 14px;
}

.button-icon-secondary {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 8px 20px 11px 64px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    background-color: rgb(var(--color-bg-gray));
}
.content a.button-icon-secondary {
    text-decoration: none;
}
.button-icon-secondary::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 24px;
    height: 32px;
    background: url("../Images/bg-icon-pdf-blue.svg") no-repeat;
    background-size: contain;
    z-index: 1;

    transition: all var(--transition-t1);
}
.button-icon-secondary:hover::before {
    top: 14px;
}

.link-arrow {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 0 0 0 42px;
    line-height: 35px;
    font-weight: 400;
    text-decoration: none;
}
.content a.link-arrow {
    text-decoration: none;
}
.link-arrow::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 31px;
    height: 31px;
    background: url("../Images/bg-arrow-circle-red.svg") no-repeat;
    background-size: contain;

    transition: all var(--transition-t1);
}
.link-arrow:hover::before {
    left: 4px;
}
.link-arrow.back::before {
    transform: rotate(180deg);
}
.link-arrow.back:hover::before {
    left: -4px;
}
strong a.link-arrow {
    font-weight: 600;
}

.button-bg-secondary-arrow {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 8px 20px 11px 64px;
    line-height: 36px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    background-color: rgb(var(--color-secondary));
}
.content a.button-bg-secondary-arrow {
    text-decoration: none;
    color: #fff;
}
.button-bg-secondary-arrow::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 31px;
    height: 31px;
    background: url("../Images/bg-arrow-circle-white.svg") no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    z-index: 1;
    transition: all var(--transition-t1);
}
.button-bg-secondary-arrow:hover::before {
    left: 20px;
}
/***** RTE - End *****/

/***** Headlines - Start *****/
.headline-outer h2 {
    position: relative;
    margin: 0 0 40px;
    padding: 0 0 0 20px;
}
.headline-outer h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 4px solid rgb(var(--color-primary));
}
.headline-outer h3 {
    position: relative;
    margin: 0 0 28px;
    padding: 0 0 0 18px;
}
.headline-outer h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 4px solid rgb(var(--color-primary));
}
.headline-outer h4 {
    position: relative;
    margin: 0 0 44px;
    padding: 0 0 0 12px;
}
.headline-outer h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 3px solid rgb(var(--color-font));
}
.headline-outer.center h2 {
    padding: 0;
    font-size: 46px;
}
.headline-outer.center h2::before {
    display: none;
}
.headline-outer.center h3 {
    padding: 0;
}
.headline-outer.center h3::before {
    display: none;
}

.headline-outer h2 + h3 {
    margin-top: -18px;
}
/***** Headlines - End *****/

/***** TYPO3 - Start *****/
/*.ce-bodytext a,
.article p a {
    color: inherit;
    text-decoration: underline;
}
.ce-bodytext a:hover,
.article p a:hover {
    text-decoration: none;
}*/
.content a {
    color: inherit;
    text-decoration: underline;
}
.content a:hover {
    text-decoration: none;
}

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

.image-caption {
    position: relative;
    margin: 10px 0 0;
    padding: 0 0 0 18px;
    font-size: var(--fsmaller);
}
.image-caption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    border-left: 3px solid rgb(var(--color-primary));
}

/*.ce-bodytext {
    margin-top: -10px;
}*/
.ce-bodytext span[style*="font-weight: bold"],
.ce-bodytext b {
    font-weight: 600 !important;
}
.ce-bodytext p:last-child {
    margin-bottom: 0;
}
.content .ce-bodytext ul:last-child {
    margin-bottom: 18px;
}

.mb76,
.frame-type-textmedia,
.frame-type-text,
.frame-type-textpic,
.frame-type-table,
.frame-type-uploads,
.frame-type-bullets,
.frame-type-html,
.frame-type-menu_subpages,
.frame-type-menu_sitemap_pages {
    margin: 0 0 76px;
}
.content .frame-space-after-none {
    margin-bottom: 0;
}
.content .frame-space-after-small {
    margin-bottom: 20px;
}
.content .frame-space-after-medium {
    margin-bottom: 40px;
}
.content .frame-space-after-large {
    margin-bottom: 102px;
}

.frame-type-html .inner {
    position: relative;
}

.frame-type-header h1 {
    margin-bottom: 40px;
}
.frame-type-textmedia h4 {
    margin-bottom: 44px;
}
.ce-bodytext h4 {
    margin-top: 44px;
}
.headline-outer h4 {
    margin-top: -32px;
}

.frame-type-list .news {
    /*margin: 0 0 76px;*/
    margin: 0;
    padding: 0;
}


.header-layout-110 h1 {
    color: rgb(var(--color-font-secondary));
}
.header-layout-120 h1 {
    color: rgb(var(--color-font-secondary));
}
.header-layout-120 h2 {
    color: rgb(var(--color-font-secondary));
}
.header-layout-120 .headline-outer h2::before,
.header-layout-120 .headline-outer h3::before {
    border-left-color: rgb(var(--color-font-secondary));
}

.header-layout-130 h2 {
    color: rgb(var(--color-red));
}
.header-layout-130 .headline-outer h2::before {
    border-bottom-color: rgb(var(--color-red));
}
.header-layout-140 h2 {
    color: rgb(var(--color-font-secondary));
}
.header-layout-140 .headline-outer h2::before {
    border-bottom-color: rgb(var(--color-secondary));
}
.header-layout-150 h2 {
    margin: 0 0 24px;
    font: 400 52px/1.19231 var(--font-1);
    color: rgb(var(--color-primary));
}
.header-layout-150 .headline-outer h2::before {
    border-bottom: none;
}
.header-layout-160 h2 {
    margin: 0 0 24px;
    font: 400 52px/1.19231 var(--font-1);
    color: rgb(var(--color-red));
}
.header-layout-160 .headline-outer h2::before {
    border-bottom: none;
}
.header-layout-170 h2 {
    margin: 0 0 24px;
    font: 400 52px/1.19231 var(--font-1);
    color: rgb(var(--color-font-secondary));
}
.header-layout-170 .headline-outer h2::before {
    border-bottom: none;
}

.content .frame-type-uploads ul li {
    min-height: 52px;
    margin: 0 0 22px;
    padding: 4px 0 0 64px;
}
.content .frame-type-uploads ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 37px;
    height: 47px;
    background: url("../Images/bg-icon-pdf-red.svg") no-repeat;
    background-size: contain;

    transition: all var(--transition-t1);
}
.content .frame-type-uploads ul li:hover::before {
    top: 4px;
}
.content .frame-type-uploads span {
    display: inline;
}
.content .frame-type-uploads a {
    text-decoration: underline;
}
.content .frame-type-uploads a:hover {
    text-decoration: none;
}

.ce-row {
    overflow: visible;
}
.ce-row::after {
    content: '';
    clear: both;
    display: table;
}
a[data-fancybox] {
    display: block;
    position: relative;
    cursor: zoom-in;
}
a[data-fancybox]::before {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 11px;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .66);
    z-index: 2;

    transition: all var(--transition-t1);
}
a[data-fancybox]:hover::before {
    bottom: 6px;
    right: 9px;
    width: 53px;
    height: 53px;
}
a[data-fancybox]::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 11px;
    width: 49px;
    height: 49px;
    background: url("../Images/bg-icon-lens-plus.svg") no-repeat center;
    background-size: 30px auto;
    z-index: 3;

    transition: all var(--transition-t1);
}
a[data-fancybox]:hover::after {
    background-size: 34px auto;
}
.ce-intext.ce-right .ce-gallery {
    margin-left: 28px;
}
.ce-intext.ce-left .ce-gallery {
    margin-right: 28px;
}
.ce-intext.ce-right .ce-gallery,
.ce-intext.ce-left .ce-gallery,
.ce-above .ce-gallery {
    margin-bottom: 28px;
}

.ce-image.ce-center.ce-above .ce-gallery img {
    max-width: 1280px;
}

picture {
    display: block;
    position: relative;
}

.video-embed,
.video-code {
    position: relative;
    /*width: 1296px;*/
    margin: 0 auto 28px;
    padding-bottom: 56.25%;
    height: 0;
}
.video-embed.council-tv {
    padding-bottom: 60%;
}
.video-code {
    width: 100%;
}
.video-embed iframe,
.video-code iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.social-gdpr-youtube-iframe {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .1);
}
.social-gdpr-youtube-iframe-disarmed {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content .social-gdpr-youtube-video img.videostub,
.content .social-gdpr-vimeo-video img.videostub,
.content .social-gdpr-google-maps img.mapstub,
.content .social-gdpr-osm-map img.mapstub {
    position: relative;
    height: 100px;
    width: 100px;
    top: auto;
    left: auto;
    transform: translate(0, 0);
}
.content .social-gdpr-youtube-iframe-notice,
.content .social-gdpr-vimeo-iframe-notice,
.content .social-gdpr-google-maps-iframe-notice,
.content .social-gdpr-osm-iframe-notice {
    position: relative;
    bottom: auto;
}
.content .social-gdpr-youtube-video,
.content .social-gdpr-vimeo-video,
.content .social-gdpr-google-maps,
.content .social-gdpr-osm-map {
    width: auto !important;
}
.social-gdpr-youtube-iframe-notice p,
.social-gdpr-vimeo-iframe-notice p,
.social-gdpr-google-maps-iframe-notice p,
.social-gdpr-osm-iframe-notice p {
    margin: 0;
}

/** Kasten blau - Start **/
.frame-layout-110 {
    /*margin: 110px 0 76px;*/
    margin: 0 0 76px;
}
.frame-layout-110 .inner {
    position: relative;
    padding: 56px 78px 46px;
    background-color: rgba(var(--color-secondary-light), .25);
}
.frame-layout-110 .header .inner {
    padding-bottom: 1px;
}
.frame-layout-110 h1,
.frame-layout-110 h2,
.frame-layout-110 h3,
.frame-layout-110 h4 {
    color: rgb(var(--color-secondary));
}
.frame-layout-110 h2::before,
.frame-layout-110 h3::before,
.frame-layout-110 h4::before {
    border-left-color: rgb(var(--color-secondary));
}
.frame-layout-110 .header .inner .headline-outer h2 {
    margin-bottom: 44px;

}
.frame-layout-110 .header + .container .inner,
.frame-layout-110 .header + .tx-powermail .container .inner {
    padding-top: 0;
    border-bottom: 8px solid rgb(var(--color-secondary));
}
.content .frame-layout-110 .header + .container .inner ul li::before {
    background-color: rgb(var(--color-secondary));
}
.frame-layout-110 .inner a.link-arrow::before {
    background: url("../Images/bg-arrow-circle-blue.svg") no-repeat;
    background-size: contain;
}
[class*="frame-space-after-"] + .frame-layout-110 {
    margin-top: 0;
}
.frame-layout-110 .tx-powermail .inner {
    border-bottom: 8px solid rgb(var(--color-secondary));
}
/** Kasten blau - Start **/

/** Infokasten rot - Start **/
.frame-layout-120 {
    margin: 0 0 76px;
}
.frame-layout-120 .inner {
    padding: 44px 98px 46px;
    background-color: rgb(var(--color-bg-gray));
}
.frame-layout-120 .header .inner {
    padding-bottom: 1px;
}
.frame-layout-120 .header .inner .headline-outer h2 {
    margin-bottom: 68px;
    padding: 16px 0 0 48px;
}
.frame-layout-120 .header .inner .headline-outer h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -58px;
    width: 74px;
    height: 74px;
    background: rgb(var(--color-primary)) url("../Images/bg-icon-info.svg") no-repeat calc(50% + 1px) calc(50% - 1px);
    background-size: 41px auto;
    border: none;
    border-radius: 50%;
}
.frame-layout-120 .header + .container .inner {
    padding-top: 0;
    border-bottom: 8px solid rgb(var(--color-primary));
}
/** Infokasten rot - Start **/

/** Infokasten blau - Start **/
.frame-layout-130 {
    margin: 0 0 76px;
}
.frame-layout-130 .inner {
    padding: 44px 98px 46px;
    background-color: rgb(var(--color-bg-gray));
}
.frame-layout-130 .header .inner {
    padding-bottom: 1px;
}
.frame-layout-130 h2 {
    color: rgb(var(--color-secondary));
}
.frame-layout-130 .header .inner .headline-outer h2 {
    margin-bottom: 68px;
    padding: 16px 0 0 48px;
    color: rgb(var(--color-secondary));
}
.frame-layout-130 .header .inner .headline-outer h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -58px;
    width: 74px;
    height: 74px;
    background: rgb(var(--color-secondary)) url("../Images/bg-icon-info.svg") no-repeat calc(50% + 1px) calc(50% - 1px);
    background-size: 41px auto;
    border: none;
    border-radius: 50%;
}
.frame-layout-130 .header + .container .inner {
    padding-top: 0;
    border-bottom: 8px solid rgb(var(--color-secondary));
}
.content .frame-layout-130 ul li::before {
    background-color: rgb(var(--color-secondary));
}
.frame-layout-130 .inner a.link-arrow::before {
    background: url("../Images/bg-arrow-circle-blue.svg") no-repeat;
    background-size: contain;
}
/** Infokasten blau - Start **/

/** Hintergrund blau - Start **/
.frame-layout-140 {
    margin: 0 0 76px;
    padding: 56px 0 98px;
    background-color: rgb(var(--color-secondary-light-2));
}
.frame-layout-140 .headline-outer h2 {
    position: relative;
    margin: 0 0 42px;
    color: rgb(var(--color-font-secondary));
}
.frame-layout-140 .headline-outer h3 {
    color: rgb(var(--color-font-secondary));
}
.frame-layout-140 .headline-outer h2 + h3 {
    margin-bottom: 64px;
}
.frame-space-after-none + .frame-layout-140 .header {
    margin-top: 40px;
}
.frame-layout-140.frame-space-after-none + .frame-layout-140 {
    padding-top: 0;
    margin-top: -42px;
}
.frame-layout-140.frame-space-after-none + .frame-layout-140.folder-wrapper {
    /*padding-top: 56px;*/
}

.frame-layout-140 .folder .fold .fold-title {
    color: #fff;
    background-color: rgb(var(--color-secondary));
}
.frame-layout-140 .folder .fold .fold-title::before {
    background-image: url("../Images/bg-arrow-circle-white.svg");
    transform: rotate(0deg);
}
.frame-layout-140 .folder .fold.active .fold-title::before {
    transform: rotate(-180deg);
}
.frame-layout-140.folder-wrapper .headline {
    color: rgb(var(--color-font-secondary));
}
.frame-layout-140.folder-wrapper .headline::before {
    border-left-color: rgb(var(--color-secondary));
}
.frame-layout-140.frame-space-after-none + .frame-layout-140.folder-wrapper .headline {
    font-size: 34px;
}

[class*="frame-type-container_"].frame-layout-140 h2 {
    color: rgb(var(--color-font-secondary));
}
.frame-layout-140 .teaser .image {
    border-bottom-color: rgb(var(--color-secondary));
}
.frame-layout-140 a.link-arrow::before {
    background-image: url("../Images/bg-arrow-circle-blue.svg");
}
/** Hintergrund blau - Start **/

/** Bürgermeistertbild mit Slogan - Start **/
.frame-layout-150 .header h2 {
    font: 400 56px/1.26785 var(--font-2);
}
.frame-layout-150 .ce-gallery {
    overflow: visible;
}
.frame-layout-150 .ce-intext.ce-right .ce-gallery,
.frame-layout-150 .ce-intext.ce-left .ce-gallery,
.frame-layout-150 .ce-above .ce-gallery {
    margin-bottom: 68px;
}
.frame-layout-150 .image {
    position: relative;
}
.frame-layout-150 .image img {
    width: 345px;
}
.frame-layout-150 .image::before {
    content: 'Ihr Dirk Lukrafka';
    display: flex;
    align-items: center;
    text-align: center;
    position: absolute;
    right: 30px;
    bottom: -60px;
    width: 128px;
    height: 128px;
    font: 400 30px/0.9375 var(--font-2);
    color: #fff;
    border-radius: 50%;
    background-color: rgb(var(--color-primary));
    transform: rotate(-10deg);
    z-index: 2;
}
/** Bürgermeistertbild mit Slogan - End **/

/***** TYPO3 - End *****/

/***** Copyright bei Bildern - Start *****/
figure.image {
    position: relative;
}
.image-copyright {
    position: absolute;
    top: 8px;
    left: 8px;
    margin: 0 5px 0 0;
    padding: 0 0 0 19px;
    font-size: 16px;
    color: #fff;
    background-color: rgba(255, 255, 255, .74);
    border-radius: 12px;
    cursor: pointer;
    z-index: 2;
}
.header-image .image-copyright {
    top: 140px;
}
.image-copyright::after {
    content: '.';
    display: block;
    visibility: hidden;
}
.image-copyright.active::after {
    display: none;
}
.image-copyright .source {
    display: none;
    padding: 4px 12px 4px 8px;
    color: rgb(var(--color-primary));
}
.image-copyright .source p {
    margin: 0;
}
.image-copyright.active .source {
    display: block;
}
.image-copyright .source-trigger {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 6px;
    font-size: 15px;
    color: rgb(var(--color-primary));
    opacity: .7;
    user-select: none;

    transition: all .32s ease-in-out;
}
.image-copyright .source-trigger:hover {
    opacity: 1;
}

.header-teaser .image-copyright {
    /*top: 164px;*/
    top: 226px;
}

.image-copyright.right,
.teaser-image-offset.img-pos-left .image-copyright {
    left: auto;
    right: 8px;
    padding: 0 19px 0 0;
}
.image-copyright.right .source-trigger,
.teaser-image-offset.img-pos-left .image-copyright .source-trigger {
    left: auto;
    right: 6px;
}
/***** Copyright bei Bildern - End *****/

/***** Tabellen - Start *****/
.table-responsive {
    overflow-x: auto;
}
.table.rm {
    border-collapse: collapse;
}
[class*="frame-type-container_"] .table.rm {
    width: 100%;
}
.table.rm.th-top {
    border-bottom: 5px solid rgb(var(--color-secondary));
}
.table.rm.ce-table-fullwidth {
    width: 100%;
}
.table.rm th {
    text-align: left;
    font-weight: 500;
    color: #fff;
    background-color: rgb(var(--color-secondary));
}
.table.rm.ce-table-th-red th {
    background-color: rgb(var(--color-primary));
}
.table.rm.ce-table-th-red tbody th {
    width: 1%; /* fit to content, CHL, 2022-08-31 */
}
.table.rm tr {
    border-bottom: 4px solid #fff;
    background-color: rgb(var(--color-bg-gray));
}
.table.rm th,
.table.rm td {
    padding: 20px 20px 16px;
    border-right: 4px solid #fff;
}
.table.rm.th-top th,
.table.rm.th-top td {
    border-right: none;
}
.table.rm th p,
.table.rm td p {
    margin: 0;
}
.table.rm caption {
    /*caption-side: bottom;*/
    padding: 0 0 12px;
    font-size: var(--fsmaller);
    /*color: rgb(var(--color-font-caption));*/
    text-align: left;
}
.table.rm caption p:last-of-type {
    margin: 0;
}

.frame-layout-150 .table.rm th,
.frame-layout-150 .table.rm td {
    border-right-color: rgba(var(--color-primary), .07);
}
.frame-layout-150 .table.rm tr {
    border-bottom-color: rgba(var(--color-primary), .07);
    background-color: #fff;
}
/***** Tabellen - End *****/

/***** Warnmeldung - Start *****/
.site-alert {
    position: fixed;
    top: 126px;
    width: 100%;
    color: #fff;
    border-top: 3px solid #fff;
    background-color: rgb(var(--color-primary));
    z-index: 20;
}
.site-alert a.link-arrow::before {
    background-image: url("../Images/bg-arrow-circle-white.svg");
    transform: rotate(-90deg);
}
.site-alert .inner {
    position: relative;
    padding: 32px 236px 22px 168px;
}
.site-alert .inner::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    width: 75px;
    height: 75px;
    background: url("../Images/bg-icon-alert.svg") no-repeat;
    background-size: contain;
}
.site-alert .inner p {
    margin: 0 0 10px;
}
.site-alert .inner p:last-of-type {
    margin: 0;
}
.site-alert .close {
    position: absolute;
    top: 32px;
    right: 116px;
    padding: 0 40px 0 0;
    cursor: pointer;
}
.site-alert .close::before {
    content: 'Schließen';
}
.site-alert .close::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: url("../Images/bg-icon-close-x-circle-white.svg") no-repeat;
    background-size: contain;
}
/***** Warnmeldung - End *****/

/***** Bite Stellenangebote - Start *****/
.content .bite-container select {
    width: auto;
    padding: 5px 68px 5px 12px;
}
/***** Bite Stellenangebote - End *****/

/***** Rats-TV - Start *****/
#ratstv-player .video {
    position: relative;
    margin: 0 0 40px;
}
#ratstv-player .video .top-left {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, .77);
}
#ratstv-player input.button-arrow-primary {
    font: 400 26px/1.38462 var(--font-1);
    color: rgb(79, 80, 82);
    border: none;
    background: rgb(var(--color-bg-gray)) url("../Images/bg-arrow-circle-red.svg") no-repeat 16px 12px;
    background-size: 31px auto;

    transition: all var(--transition-t1);
}
#ratstv-player input.button-arrow-primary:hover {
    background-position-x: 20px;
}
/***** Rats-TV - End *****/
