@import url("https://fonts.verwaltungsportal.de/css/?family=Poppins:400,600,700,400i,600i,700i");
@import url("https://fonts.verwaltungsportal.de/css/?family=Oleo+Script:400,700");

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #e9e8eb;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #cc2424 #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #282828;
    background: #ffffff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #cc2424;
}

a:is(:hover, :focus) {
    color: #cc2424;
}

b,
strong {
    font-weight: 600;
}

:is(header, #tab26, #termin) {
    overflow: hidden;
    position: relative;
}

/* #region --------------------------------- buttonStyle ---------------------------------------- */

#aktuelles .tab_link_mehr a,
:is(.buttonStyle, .buttonStyleNeutral) a:not(.has-image):not([rel]):not(.nivo-directionNav > a) {
    background: #cc2424;
    border-radius: 8px;
    color: #ffffff;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 16px 20px;
    transition: all 300ms;
    position: relative;
    line-height: 1.2;
}

.buttonStyle a:not(.has-image):not([rel]):not(.nivo-directionNav > a):is(:focus, :hover) {
    background: #181d4a;
}

#aktuelles .tab_link_mehr a,
.buttonStyleNeutral a:not(.has-image):not([rel]):not(.nivo-directionNav > a) {
    background: #ffffff;
    color: #181d4a;
}

#aktuelles .tab_link_mehr a:is(:focus, :hover),
.buttonStyleNeutral a:not(.has-image):not([rel]):not(.nivo-directionNav > a):is(:focus, :hover) {
    background: transparent;
    color: #ffffff;
}

/* specific buttons */

#aktuelles .tab_link_mehr {
    font-size: 0;
}

#termin .buttonStyleNeutral a:not(.has-image):not([rel]) {
    font-size: inherit;
}

/* border on hover */

#aktuelles .tab_link_mehr a::after,
.buttonStyleNeutral a:not(.has-image):not([rel])::after {
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: scale(1.2);
    transition: all 0.3s;
    width: 100%;
    z-index: 1;
}

#aktuelles .tab_link_mehr a:is(:focus, :hover)::after,
.buttonStyleNeutral a:not(.has-image):not([rel]):is(:focus, :hover)::after {
    opacity: 1;
    transform: scale(1);
}

/* #endregion ------------------------------ buttonStyle ---------------------------------------- */

/* --------------------------------------------- logo ------------------------------------------- */

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (max-width: 991px) {
    #logo img {
        max-width: 155px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        top: -67px;
        z-index: 55;
        transition: top 300ms linear, padding 300ms linear;
    }

    .is-sticky #logo {
        top: -35px;
    }

    #logo img {
        background-color: #fff;
        border-radius: 0 0 20px 20px;
        padding: 17px 19px;
        box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
        transition: max-width 300ms linear, padding 300ms linear;
    }

    .is-sticky #logo img {
        max-width: 105px;
        padding: 2px 10px;
    }
}

/* #region ----------------------------------- options ------------------------------------------ */

#options {
    font-size: 0.875rem;
    line-height: 1.2;
    gap: 20px;
    border-bottom: 1px solid #b4b7ba;
    padding-bottom: 10px;
}

.is-sticky #options {
    display: none !important;
}

#optionsMobil {
    font-size: 0.875rem;
    padding: 30px 0;
    display: block;
}

/* #endregion -------------------------------- options ------------------------------------------ */

/* #region ---------------------------------- navigation ---------------------------------------- */

nav.horizontally {
    background: #ffffff;
}

nav.horizontally>.row {
    row-gap: 20px;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 8px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #cc2424;
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #ffffff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"]::before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton::before {
        top: 24px;
        content: "";
    }

    #burgerButton::after {
        top: 32px;
        content: "";
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 101;
    }

    .dropdown-toggle-button-wrapper {
        top: 7px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 3px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        padding: 20px 0 25px 0;
        transition: padding 200ms linear;
    }

    .is-sticky nav.horizontally {
        padding: 10px 0 10px 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 2px;
        margin-top: 26px;
        transition: margin-top 200ms linear;
    }

    .is-sticky nav.horizontally .navbar-nav {
        margin-top: 12px;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav li.open:focus-within>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

@media (min-width: 1200px) {
    nav.horizontally>.row {
        max-width: 1440px;
        width: 100%;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #181d4a;
    font-weight: 500;
    padding: 12px 15px;
    position: relative;
    text-align: left;
    border-radius: 8px;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
}

nav.horizontally a[class*="toplevel"].dropdown-toggle {
    padding-right: 32px;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"] {
        padding: 9px 12px;
    }

    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 5px;
    }

    nav.horizontally a[class*="toplevel"].dropdown-toggle::after {
        content: "";
        border-bottom: 1px solid #181d4a;
        border-left: 1px solid #181d4a;
        border-radius: 1px;
        display: block;
        position: absolute;
        right: 13px;
        top: calc(50% - 5px);
        transform: rotate(-45deg);
        height: 6px;
        width: 6px;
        transition: border 300ms linear;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    background: #fefdf3;
    color: #cc2424;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"] ul {
        margin: 10px 0;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        padding: 15px;
    }
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"] ul {
        border-radius: 20px;
    }

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 40px;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -15px;
        margin-left: 35px;
    }

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
        content: "";
        display: block;
        position: absolute;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 40px;
        left: 0;
        right: 0;
        top: -40px;
    }

    nav.horizontally [class*="secondlevel"]>ul::before {
        bottom: 0;
        left: -40px;
        top: 0;
        width: 50px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #181d4a;
    font-weight: normal;
    text-align: left;
    padding: 9px 15px;
    font-size: 0.875rem;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 8px;
}

@media(max-width:991px) {
    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 35px;
    }
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
    background: #fefdf3;
    color: #cc2424;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* #region ------------------------------------ banner ------------------------------------------ */

#slider {
    max-height: clamp(300px, 42vw, 400px);
    position: relative;
    border-radius: 20px;
}

@media (min-width: 768px) {
    body.index #headerpic .nivo-controlNav {
        bottom: auto !important;
        top: 5px;
    }
}

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 55vw, 530px);
    }

    #headerpic a.nivo-prevNav {
        left: 65px;
    }

    #headerpic a.nivo-nextNav {
        right: 65px;
    }
}

#headerpic {
    padding: 30px 0 clamp(40px, 6vw, 80px) 0;
    z-index: 2;
}

@media (min-width: 992px) {
    #headerpic {
        padding-top: 0;
    }
}

#headerpic>.row:first-child {
    max-width: 1570px;
    width: 100%;
}

@media (min-width: 768px) {
    .slider-mask {
        display: block;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    }
}

#headerpic .theme-nivo {
    height: unset !important;
}

.slogan {
    color: #cc2424;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Oleo Script", serif;
}

.slogan h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
}

/* Banner-Tabs */

#banneroverlay {
    position: relative;
    padding: 30px 0;
}

@media (min-width: 768px) {
    #banneroverlay {
        position: absolute;
        width: 100%;
        z-index: 55;
        bottom: 15%;
        padding: 0;
    }
    
    #bannerTabs {
        margin-top: -60px;
    }
}

#bannerTabs,
#bannerTabs .tab1>.row {
    row-gap: 30px;
}

#bannerTabs a {
    text-decoration: underline;
}

#bannerTabs .tab {
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.75;
    min-height: 100%;
    padding: 40px 50px 30px 30px;
    position: relative;
    z-index: 12;
}

#bannerTabs .tab1 {
    background: #fefbe8;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    #bannerTabs .tab1>.row>*:not(:last-child) {
        padding-right: 30px;
    }

    #bannerTabs .tab1>.row>*+* {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        padding-left: 30px;
    }
}

/* Banner-Tabs icon */

#bannerTabs::before {
    content: "";
    position: absolute;
    pointer-events: none;
    display: block;
    right: -75px;
    top: 25px;
    width: 110px;
    height: 255px;
    background: url('../img/gerste1.png') no-repeat center;
    z-index: 13;
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* ------------------------------------------- content ------------------------------------------ */

#content {
    text-align: left;
    padding-bottom: clamp(40px, 7vw, 100px);
    padding-top: 40px;
}

/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #cc2424;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Oleo Script", serif;
}

h1,
.h1,
.legacy_h1,
:is(#tab26, #termin) :is(h1, h2) {
    font-size: clamp(1.875rem, 4vw, 2.625rem);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.125rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: 1.625rem;
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: 1.5rem;
}

h5,
.h5,
.legacy_h5 {
    font-size: 1.375rem;
}

h6,
.h6,
.legacy_h6 {
    font-size: 1.25rem;
}

#bannerTabs .tab .tabHeadline,
#footer :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.5625rem;
}

main :is(h1, h2) {
    margin-bottom: 25px;
}

:is(h1, h2, h3) :is(i, em) {
    color: #cc2424;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    font-style: normal;
    display: block;
}

:is(#termin .tab, ) :is(h1, h2, h3) {
    color: #282828;
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
}

:is(#termin .tab, ) :is(h1, h2, h3) :is(i, em) {
    color: #cc2424;
    font-family: "Oleo Script", serif;
    font-size: 1.5625rem;
    margin-bottom: 0;
}



/* #region ------------------------------------- termin ----------------------------------------- */

#termin {
    z-index: 1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(204, 36, 36, 1) 50%, rgba(204, 36, 36, 1) 51%, rgba(254, 251, 232, 1) 51%, rgba(254, 251, 232, 1) 51%, rgba(254, 251, 232, 1) 100%);
    padding: 20px 0;
}

#termin>.row {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

#termin>.row::after {
    content: "";
    position: absolute;
    pointer-events: none;
    display: block;
    left: -90px;
    bottom: 5px;
    width: 113px;
    height: 291px;
    background: url('../img/gerste2.png') no-repeat center;
}

@media (min-width: 768px) {
    #termin>.row::before {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        background: center / cover no-repeat;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

@media (min-width: 1200px) {
    #termin>.row {
        max-width: 1170px;
        width: 100%;
    }
}

#termin .tab {
    padding: clamp(40px, 5vw, 70px) clamp(30px, 4vw, 60px) clamp(40px, 7vw, 100px) clamp(30px, 4vw, 60px);
}

#tabImg {
    background: center / cover no-repeat;
}

/* #endregion ---------------------------------- termin ----------------------------------------- */

/* #region ------------------------------------- footer ----------------------------------------- */

#footer {
    font-size: 1rem;
    padding: clamp(40px, 6vw, 80px) 0;
    background: #fefbe8;
}

#footer>.row {
    row-gap: 30px;
}

#footer :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 20px;
}

#footer .footerTab a {
    text-decoration: underline;
}

#footer hr {
    background: rgba(0, 0, 0, 0.2);
    margin: clamp(30px, 3vw, 38px) 0;
    opacity: 1;
}

#footer .iframeTab {
    min-height: 250px;
}

#footer .iframeTab :is(.row, .row>*) {
    position: static !important;
}

#footer :is(.iframe-wrapper-manual-enabling, iframe) {
    width: 100% !important;
    min-width: 100% !important;
    border-radius: 20px;
}

@media (min-width: 768px) {
    #footer :is(.iframe-wrapper-manual-enabling, iframe) {
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        left: 15px;
        height: 100% !important;
        width: calc(100% - 30px) !important;
        min-width: calc(100% - 30px) !important;
    }
}

@media (min-width: 992px) {
    #innerfooter {
        margin-top: 20px;
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter ul a {
    color: inherit;
    text-decoration: none;
}

#innerfooter ul a:is(:hover, :focus) {
    text-decoration: underline;
    color: #cc2424;
}

@media (min-width: 576px) {
    #innerfooter li {
        display: inline-block;
    }

    #innerfooter li+li::before {
        color: #282828;
        content: "•";
        margin: 0 15px;
    }
}

/* #endregion ---------------------------------- footer ----------------------------------------- */

/* -------------------------------------------- vernetzt ---------------------------------------- */

#footer #vernetzt {
    gap: 15px;
    text-align: left;
    font-size: 0.875rem;
    color: #282828;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
}

#footer #vernetzt span span {
    display: block;
}

#footer #vernetzt b {
    color: #cc2424;
}


/* ------------------------------------------------ @26tab ----------------------------------------------- */

#tab26 {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    row-gap: 30px;
    border-top: 2px solid #cc2424;
    border-bottom: 2px solid #cc2424;
    padding: 30px 0;
}


#tab26 .tab {
    font-size: 1rem;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    height: 100%;
}

#tab26 .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.25rem;
    font-weight: 700;
    color: #444444;
}

#tab26 img {
    display: block;
    max-width: unset;
    position: relative;
    width: 100%;
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#tab26 .slick-slide {
    padding: 15px;
}

#tab26 .slick-dots button,
#tab26 .slick-button {
    background: transparent;
    border: none;
    padding: 5px;
}

#tab26 .slick-button {
    font-size: 0px;
    position: relative;
    top: 4px;
}

#tab26 .slick-prev {
    margin-left: 14px;
}

@media (max-width: 767px) {
    #tab26 .slick-next {
        margin-left: 14px;
    }
}

#tab26 .slick-button::before {
    display: block;
    line-height: 9px;
    height: 20px;
    font-size: 40px;
    color: #000000;
}

#tab26 .slick-button::after {
    content: "";
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.05);
    transition: width 200ms linear, height 200ms linear;
    z-index: -1;
}

#tab26 .slick-button:focus::after,
#tab26 .slick-button:hover::after {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {
    #tab26 .slick-button::after,
    #tab26 .slick-button::after {
        width: 28px;
        height: 28px;
    }
}

#tab26 .slick-dots {
    padding: 0 15px;
    list-style: none;
}

#tab26 .slick-dots>li {
    display: inline-block;
    position: relative;
    top: 50%;
    font-size: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #aaaaaa;
    transform: translateY(-50%);
}

#tab26 .slick-dots,
#tab26 .slick-button {
    display: inline-block !important;
}

@media (max-width: 767px) {
    #tab26 .slick-dots {
        display: none !important;
    }
}

#tab26 .slick-dots>li.slick-active {
    background: #cc2424;
    transition: background 200ms linear;
}

#tab26 .slick-dots>li+li {
    margin-left: 10px;
}

#tab26 .slick-prev::before {
    content: "\2039";
}

#tab26 .slick-next::before {
    content: "\203A";
}

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

#tab26 .slick-animate-control {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: -5px;
    left: 10px;
    border: 1px solid #ffffff;
    background-color: #000;
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}

#tab26 .slick-animate-control.slick-pause {
    background-size: 20px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}
