:root {
    --event-height: 100px;
    --color-gold: rgba(220,110,20,1);
    --color-petrol: rgba(0,130,140,1);
    --color-blau: rgba(0,70,140,1);
    --color-light: rgba(247,247,247,1);
    --color-logo: rgba(178,178,178,1);
}



/* =============================================================================
 * fonts
 * ========================================================================== */
/* quicksand-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/quicksand-v31-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/quicksand-v31-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* quicksand-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/quicksand-v31-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/quicksand-v31-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* quicksand-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/quicksand-v31-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/quicksand-v31-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* quicksand-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/quicksand-v31-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/quicksand-v31-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


/* =============================================================================
 * basics
 * ========================================================================== */

html, body {
/*   font-weight: 600 !important; */
    font-family: 'Quicksand', Verdana, sans-serif !important;
}

@media only screen and (max-width: 767px) {
    html, body {
        font-size: 18px;
    }
}
@media only screen and (min-width: 768px) {
    body.mobile {
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    body {
      line-height: 1.3rem;
    }
}

@media only screen and (min-width: 768px) {
    body.mobile {
      line-height: 1.3rem;
    }
}


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.font_headline {
    font-family: 'Quicksand', Verdana, sans-serif !important;
    font-weight: 100 !important;
}

@media only screen and (min-width: 768px) {
    body.mobile h1,
    body.mobile .h1,
    body.mobile .h1 p {
      font-size: 1.733rem;
      margin-bottom: 15px;
    }
}


@media only screen and (min-width: 768px) {
    body.mobile h3,
    body.mobile .h3,
    body.mobile .h3 p {
        font-size: 1.467rem;
    }
}

@media only screen and (min-width: 768px) {
    body.mobile .mod_article.article-pt-s > .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .mod_article.article-pt-s > .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.ce_text_extented ul {
    margin-bottom: 10px;
}
.ce_text_extented ul li {
    padding-left: 20px;
    position: relative;
}

.ce_text_extented ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--color-petrol);
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 15px;
}

.ce_divider_extended.version5 {
    background-color: var(--color-petrol) !important;
}

.ce_text_imagebox.imagebox_version4 .inside {
    background: rgba(255,255,255,.8) !important;
}

.ce_text_imagebox_image .ce_headline {
    color: var(--color-petrol) !important;
    font-weight: 500;
    font-size: 1.15em !important;
}

.mod_langswitcher span {
    display: inline-block;
    font-size: 16px !important;
    font-family: 'Quicksand', Verdana, sans-serif;
    font-weight: 500;
    height: 20px;
    position: relative;
    top: 6px;
}

.mod_langswitcher .mod_langswitcher_inside::after {
    position: relative;
    top: 3px;
}

.mod_langswitcher img {
    display: none;
}

.mod_langswitcher .mod_langswitcher_inside {
    padding: 11px 10px;
    display: inline-block;
    cursor: pointer;
    line-height: 0;
    position: relative;
    top: -6px;
}

@media only screen and (max-width: 1023px) {
    .mod_langswitcher .mod_langswitcher_inside {
        top: -3px;
    }
}

.fixed-header .mod_langswitcher .mod_langswitcher_inside {
    top: -8px;
}

.mod_langswitcher ul {
    display: none;
    position: absolute;
    border: none;
    left: 0;
    top: 85%;
    background: rgb(255,255,255);
    width: 56px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    font-size: 16px !important;
    font-family: 'Quicksand', Verdana, sans-serif;
    font-weight: 700;
}
.mod_langswitcher ul li {
    text-align: left;
}
.mod_langswitcher ul li a {
    padding: 8px 11px;
}

.mod_changelanguage .lang-de {
/*
    background-image: url('../img/flags/de.svg') !important;
    background-repeat: no-repeat !important;
    text-indent: -9999px;
    background-position: center center !important;
*/
}
.mod_changelanguage .lang-en {
/*
    background-image: url('../img/flags/gb.svg') !important;
    background-repeat: no-repeat !important;
    text-indent: -9999px;
    background-position: center center !important;
*/
}
.mod_changelanguage .active {
    display: none;
}

.ce_hyperlink a,
a.btn {
  background: var(--color-petrol) !important;
  border-color: var(--color-petrol) !important;
  height: 60px !important;
  padding: 10px 30px !important;
}

@media only screen and (max-width: 767px) {
    .ce_hyperlink a,
    a.btn {
      background: var(--color-petrol) !important;
      border-color: var(--color-petrol) !important;
      height: 45px !important;
      padding: 10px 20px !important;
      line-height: 22px;
      font-size: 14px;
    }
}


/* =============================================================================
 * header
 * ========================================================================== */

#fix-wrapper {
    position: absolute;
}
.header {
    background-color: rgba(0,0,0,0.6) !important;
}
.header.cloned {
    background-color: rgba(0,0,0,0.85) !important;
}

.logo a {
    margin-left: 25px;
    background-image: url('../img/logo_mk_petrol.svg') !important;
    background-size: 120px;
/*     background-position: left center; */
}

.fixed-header .logo a {
    background-size: 70px;
}

.logo {
    position: relative;
}

.logo::after {
    content: 'MASSA KONZERTMANAGEMENT';
    font-size: 18px;
    color: var(--color-petrol) !important;
    color: #fff;
    position: absolute;
    left: 150px;
    top: 25px;
    width: 100%;
}

@media only screen and (max-width: 1280px) {
    .logo::after {
        font-size: 14px;
    }
}
@media only screen and (max-width: 1199px) {
    .logo::after {
        font-size: 11px;
    }
}
@media only screen and (max-width: 1023px) {
    .logo::after {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .logo::after {
        left: 90px;
        top: 14px;
    }
}
@media only screen and (max-width: 579px) {
    .logo::after {
        font-size: 12px;
    }
}
@media only screen and (max-width: 520px) {
    .logo::after {
        display: none;
    }
}
/*
@media only screen and (max-width: 500px) {
    .logo::after {
        font-size: 10px;
    }
}
*/
/*
@media only screen and (max-width: 1199px) {
    .logo::after {
        font-size: 10px;
    }
}
@media only screen and (max-width: 1023px) {
    .logo::after {
        font-size: 14px;
    }
}
*/


.fixed-header .logo::after {
    left: 110px;
    font-size: 14px;
}

.fixed-header .logo::after {
    top: 13px;
}
@media only screen and (max-width: 767px) {
    .logo a {
        margin-left: 5px;
        background-size: 70px;
    }
    .header .logo {
        height: 108px !important;
        width: 220px !important;
    }
    .fixed-header .logo {
        height: 70px !important;
    }
    .fixed-header .logo::after {
        left: 90px;
        top: -17px;
    }
}
@media only screen and (max-width: 520px) {
    .header .logo {
        width: 80px !important;
    }
}



@media only screen and (min-width: 768px) {
    #header.original {
        line-height: 108px;
    }
    .header.original .logo {
        height: 108px !important;
        width: 420px !important;
    }

}


#header.original {
    line-height: 108px !important;
}

.fixed-header .header {
    min-height: 70px;
    max-height: 70px;
    height: 70px;
}

/*
.logo a {
    background-image: url('../img/MassaKM-Logo_trasparent1.png') !important;
}

.header.original .logo {
    width: 80px !important;
    height: 83px !important;
}

.header.original .logo a {
    padding-top: 120px;
}
*/


/* =============================================================================
 * menu
 * ========================================================================== */
.mainmenu ul li {
    margin-left: 15px !important;
    margin-right: 15px !important;
}
@media only screen and (max-width: 1280px) {
    .mainmenu ul li {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}
.mainmenu ul li a {
  font-size: 16px !important;
  font-family: 'Quicksand', Verdana, sans-serif !important;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
}

.mainmenu ul li a:hover {
  opacity: 1 !important;
  color: var(--color-petrol) !important;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
}

.header .mainmenu ul li a.a-level_1.trail,
.header .mainmenu ul li a.a-level_1.active {
    background-color: transparent !important;
}

.header .mainmenu ul li a.a-level_1.trail:after,
.header .mainmenu ul li a.a-level_1.active:after {
    content: '';
    background-color: #fff;
    height: 100%;
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
}
.header.original .mainmenu ul li a.trail,
.header.original .mainmenu ul li a.active,
.header.cloned .mainmenu ul li a.trail,
.header.cloned .mainmenu ul li a.active,
.mod_pct_megamenu .mod_navigation a.active {
    color: var(--color-petrol) !important;
    font-weight: 600 !important;
}


@media only screen and (max-width: 1023px) {
    .smartmenu {
        display: block;
        margin-top: 23px;
    }
}
@media only screen and (max-width: 767px) {
    .smartmenu {
        margin-top: 4px;
    }
}


.fixed-header .smartmenu {
    margin-top: 11px;
}

@media only screen and (max-width: 1023px) {


    .header .mod_langswitcher {
        display: block !important;
        position: relative !important;
        right: unset !important;
        top: 38px !important;
        margin-left: 25px !important;
        margin-top: 0px;
        line-height: normal !important;
    }
    .mmenu_trigger {
        display: none !important;
    }

    .fixed-header .header .mod_langswitcher {
        top: 24px !important;
    }
    .fixed-header .smartmenu {
        margin-top: 4px;
    }
}

@media only screen and (max-width: 767px) {
    .fixed-header .smartmenu {
        margin-top: 0px;
    }
}


.mmenu_trigger {
    color: #fff !important;
}
.mmenu_trigger .burger .burger_lines,
.mmenu_trigger .burger .burger_lines::after,
.mmenu_trigger .burger .burger_lines::before {
    background: #fff !important;
}
.mmenu_trigger .burger.transform.open .burger_lines {
  background-color: transparent !important;
}
#mmenu {
    top: 55px !important;
    transform: translateY(calc(-100% - 70px)) !important;
    height: calc(100% - 55px) !important;
}
#mmenu .mod_search {
    display: none;
}
#mmenu #mmenu_top {
    height: 100px;
}
#mmenu_middle .mod_navigation {
    margin-top: -100px;
}


/* =============================================================================
 * footer
 * ========================================================================== */

#footer,
#bottom {
/*     background-color: #eaeaea; */
        color: #fff !important;
/*     border-top: 1px solid #ccc; */

}
#footer *,
#bottom * {
/*     color: #000 !important; */
}

#footer {
    display: flex !important;
}

#footer .inside {
    padding: 0px 0px !important;
}

#footer .totop {
    display: none;
}

#footer .col_12 .image_container img {
    max-width: 135px !important;
}

@media only screen and (max-width: 768px) {
    #footer .col_12 .image_container img {
        max-width: 100px !important;
    }
}


#footer .image_container .caption {
    display: block;
    background-color: transparent !important;
    margin-top: 0px !important;
    padding: 4px 0px !important;
    font-size: .725rem !important;
    color: rgba(0,0,0,1) !important;
}

#footer .column p {
    margin-bottom: 0px;
}

#footer .iama .image_container img {
    background-color: #fff;
    padding: 20px;
}

#footer ul > li::before {
    content: none !important;
    display: none !important;
}
#footer ul > li::after {
    content: none !important;
    display: none !important;
    border: none !important;
}
#footer ul > li:first-child {
    margin-bottom: 0px !important;
}

#footer .social_media {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    max-width: 338px;
    min-width: 320px;
    justify-content: space-between;
    margin: auto;
    margin-top: 40px;
}

/*
@media only screen and (min-width: 768px) {
    #footer .social_media {
        min-width: 338px;
    }
}
*/

#footer a:hover,
#bottom .inside a:hover {
    color: var(--color-petrol) !important;
}

#footer a:hover {
    text-decoration: underline;
}

.fa-tiktok {
    height: 35px;
    width: 35px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 3018 3018' enable-background='new 0 0 3018 3018' xml:space='preserve'%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23a8a8a8' d='M1508.7,0.5C675.4,0.5-0.2,676-0.2,1509.4c0,833.3,675.5,1508.9,1508.9,1508.9 c833.3,0,1508.9-675.6,1508.9-1508.9C3017.6,676,2342.1,0.5,1508.7,0.5L1508.7,0.5z M1859.4,1101.7l0,48.6h-0.1V1803 c0,155.6-61.3,303.6-171.3,413.7c-110,110-258.1,171.3-413.6,171.3c-155.6,0-303.6-61.3-413.6-171.3 c-110-110-171.3-258.1-171.3-413.7c0-155.6,61.3-303.6,171.3-413.6c110-110,258-171.3,413.6-171.3h108.6v307.5h-108.6 c-73.9,0-144,29-196.2,81.3c-52.2,52.2-81.2,122.3-81.2,196.2c0,73.9,29,144,81.2,196.2c52.2,52.2,122.3,81.3,196.2,81.3 c73.9,0,144-29.1,196.2-81.3c52.2-52.2,81.2-122.3,81.2-195.6v-1173H1858l15.3,28.4c47.7,88.4,112,172.1,191.7,234 c61.7,47.8,131.5,81.5,208.6,95.1l54.5,9.6l-58.5,296.5l-52.4-9.4c-62.4-11.2-123.6-30.1-181-57.1 C1970.4,1196.6,1909.4,1154.7,1859.4,1101.7z'/%3E%3C/g%3E%3C/svg%3E%0A");
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}

.fa-tiktok:hover {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 3018 3018' enable-background='new 0 0 3018 3018' xml:space='preserve'%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%2300828c' d='M1508.7,0.5C675.4,0.5-0.2,676-0.2,1509.4c0,833.3,675.5,1508.9,1508.9,1508.9 c833.3,0,1508.9-675.6,1508.9-1508.9C3017.6,676,2342.1,0.5,1508.7,0.5L1508.7,0.5z M1859.4,1101.7l0,48.6h-0.1V1803 c0,155.6-61.3,303.6-171.3,413.7c-110,110-258.1,171.3-413.6,171.3c-155.6,0-303.6-61.3-413.6-171.3 c-110-110-171.3-258.1-171.3-413.7c0-155.6,61.3-303.6,171.3-413.6c110-110,258-171.3,413.6-171.3h108.6v307.5h-108.6 c-73.9,0-144,29-196.2,81.3c-52.2,52.2-81.2,122.3-81.2,196.2c0,73.9,29,144,81.2,196.2c52.2,52.2,122.3,81.3,196.2,81.3 c73.9,0,144-29.1,196.2-81.3c52.2-52.2,81.2-122.3,81.2-195.6v-1173H1858l15.3,28.4c47.7,88.4,112,172.1,191.7,234 c61.7,47.8,131.5,81.5,208.6,95.1l54.5,9.6l-58.5,296.5l-52.4-9.4c-62.4-11.2-123.6-30.1-181-57.1 C1970.4,1196.6,1909.4,1154.7,1859.4,1101.7z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.label_page .fa-tiktok:hover {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 3018 3018' enable-background='new 0 0 3018 3018' xml:space='preserve'%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%2300468c' d='M1508.7,0.5C675.4,0.5-0.2,676-0.2,1509.4c0,833.3,675.5,1508.9,1508.9,1508.9 c833.3,0,1508.9-675.6,1508.9-1508.9C3017.6,676,2342.1,0.5,1508.7,0.5L1508.7,0.5z M1859.4,1101.7l0,48.6h-0.1V1803 c0,155.6-61.3,303.6-171.3,413.7c-110,110-258.1,171.3-413.6,171.3c-155.6,0-303.6-61.3-413.6-171.3 c-110-110-171.3-258.1-171.3-413.7c0-155.6,61.3-303.6,171.3-413.6c110-110,258-171.3,413.6-171.3h108.6v307.5h-108.6 c-73.9,0-144,29-196.2,81.3c-52.2,52.2-81.2,122.3-81.2,196.2c0,73.9,29,144,81.2,196.2c52.2,52.2,122.3,81.3,196.2,81.3 c73.9,0,144-29.1,196.2-81.3c52.2-52.2,81.2-122.3,81.2-195.6v-1173H1858l15.3,28.4c47.7,88.4,112,172.1,191.7,234 c61.7,47.8,131.5,81.5,208.6,95.1l54.5,9.6l-58.5,296.5l-52.4-9.4c-62.4-11.2-123.6-30.1-181-57.1 C1970.4,1196.6,1909.4,1154.7,1859.4,1101.7z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

/* =============================================================================
 * SLIDER
 * ========================================================================== */


#slider .ce_revolutionslider {
    height: 100vh;
}

/*
@media only screen and (max-width: 767px) {
    .ce_revolutionslider .slide:nth-child(-n + 12) {
        display: none;
    }
}
*/

.ce_revolutionslider_hyperlink {
    background: var(--color-petrol) !important;
    border-color: var(--color-petrol) !important;
    border-radius: 6px;
    font-size: 16px !important;
}

.ce_revolutionslider_text {
/*     text-shadow: 1px 1px 1px var(--color-petrol); */
    text-shadow: 1px 1px 1px #000;
}

/*
.ce_revolutionslider .tp-parallax-wrap {
    top: 90% !important;
}
*/

@media only screen and (min-width: 768px) {
    .ce_revolutionslider .tp-parallax-wrap:nth-child(2) * {
        font-size: 50px !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(3) * {
        font-size: 42px !important;
    }
}

@media only screen and (max-width: 767px) {
    .ce_revolutionslider .tp-parallax-wrap:nth-child(2) {
        top: 75% !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(2) * {
        font-size: 30px !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(3) {
        top: 80% !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(3) * {
        font-size: 22px !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(4) {
        top: 88% !important;
    }
    .ce_revolutionslider_hyperlink {
        padding: 0px 20px !important;
        font-size: 14px !important;
        line-height: 45px !important;
    }
}

@media only screen and (max-height: 450px) {
    .ce_revolutionslider .tp-parallax-wrap:nth-child(2) {
        top: 72% !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(3) {
        top: 78% !important;
    }
    .ce_revolutionslider .tp-parallax-wrap:nth-child(4) {
        top: 88% !important;
    }
}


@media only screen and (min-width: 768px) {
    body.mobile .ce_revolutionslider .tp-parallax-wrap:nth-child(2) {
        top: 65% !important;
        left: 30px !important;
    }
    body.mobile .ce_revolutionslider .tp-parallax-wrap:nth-child(2) * {
        font-size: 30px !important;
    }
    body.mobile .ce_revolutionslider .tp-parallax-wrap:nth-child(3) {
        top: 75% !important;
        left: 30px !important;
    }
    body.mobile .ce_revolutionslider .tp-parallax-wrap:nth-child(3) * {
        font-size: 22px !important;
    }
    body.mobile .ce_revolutionslider .tp-parallax-wrap:nth-child(4) {
        top: 85% !important;
        left: 30px !important;
    }
    body.mobile .ce_revolutionslider_hyperlink {
        padding: 0px 20px !important;
        font-size: 14px !important;
        line-height: 45px !important;
    }
}


/* =============================================================================
 * HEADER IMAGE
 * ========================================================================== */

.ce_headerimage {

}

.ce_headerimage .subline {
  font-weight: 500 !important;
}

.ce_headerimage::before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0,130,140,.8);
/*
    background-image: url('../img/logo_mk_petrol.svg') !important;
    background-size: cover;
    background-position: 90%;
    background-repeat: no-repeat;
*/
}

@media only screen and (max-width: 767px) {
    .ce_headerimage_inside {
        top: 80% !important;
    }
}

@media only screen and (min-width: 768px) {
    body.mobile .ce_headerimage {
        height: 100vh !important;
    }
}

/* =============================================================================
 * portfolio
 * ========================================================================== */

.ce_headline_extended span {
    display: block;
}

.portfolio-col3 .grid-sizer {
  width: calc(100% / 4) !important;
}
@media only screen and (max-width: 1024px) {
    .portfolio-col3 .grid-sizer {
        width: calc(100% / 3) !important;
    }
}
@media only screen and (max-width: 768px) {
    .portfolio-col3 .grid-sizer {
        width: calc(100% / 2) !important;
    }
}
@media only screen and (max-width: 580px) {
    .portfolio-col3 .grid-sizer {
        width: calc(100% / 1) !important;
    }
}

.mod_portfoliolist_v3 {
  margin-left: -2px !important;
  margin-right: -2px !important;
}

.mod_article.portfoliolist,
.portfoliolist .mod_newslist {
    background-color: var(--color-light) !important;
}

.ce_portfoliofilter.default a {
    background-color: #fff !important;
}

.ce_portfoliofilter.default a.selected,
.ce_portfoliofilter.default a:hover {
    background-color: var(--color-petrol) !important;
}

.mod_portfoliolist_v3 .item {
    width: calc(100% / 4) !important;
/*     border: none !important; */
    border: 2px solid transparent !important;
    transform: rotate(0.0012345deg);
}

@media only screen and (max-width: 1024px) {
    .mod_portfoliolist_v3 .item {
        width: calc(100% / 3) !important;
    }
}
@media only screen and (max-width: 767px) {
    .mod_portfoliolist_v3 .item {
        width: calc(100% / 2) !important;
    }
}
@media only screen and (max-width: 580px) {
    .mod_portfoliolist_v3 .item {
        width: calc(100% / 1) !important;
    }
}

.mod_portfoliolist_v3 .item .content {
    background: rgba(255,255,255, 0.85);
    bottom: 10px;
    margin: 0 10px;
}

.mod_portfoliolist_v3 .item .info {
    padding: 12px 10px 8px 10px;
}
.mod_portfoliolist_v3 .item .info .title,
.mod_portfoliolist_v3 .item .info .subline {
    font-size: 16px;
    font-weight: 400 !important;
}

.mod_portfoliolist_v3 .item .content .info * {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}
.mod_portfoliolist_v3 .item:hover .content .info * {
    color: var(--color-petrol);
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}
.mod_portfoliolist_v3 .item:hover img {
  -webkit-filter: none !important;
  filter: none !important;
}

.mobile-filter-trigger::after {
    content: 'Filter';
    font-family: 'Quicksand', Verdana, sans-serif;
    font-weight: 500;
    margin-left: 10px;
    top: 3px;
    position: relative;
}

html[lang=en] .mobile-filter-trigger::after {
    content: 'Filters';
}

.portfolio_page .mod_newslist {
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
    .portfolioreader .col_4 .ce_headline_extended {
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }
}

/* =============================================================================
 * portfolio - details
 * ========================================================================== */

.ce_artists_event .title {
    margin-bottom: 0px !important;
    color: var(--color-petrol);
}
.ce_artists_event.event.layout_full:not(:last-child) {
    margin-bottom: 25px;
}


.ce_tabs {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.ce_tabs .tabs.classic ul li.active,
.ce_tabs .tabs.classic ul li:hover {
    border-color: var(--color-petrol) !important;
}

.label_page .ce_tabs .tabs.classic ul li.active,
.label_page .ce_tabs .tabs.classic ul li:hover {
    border-color: var(--color-blau) !important;
}

.label_page .ce_tabs {
    max-width: 100%;
    margin-left: unset;
    margin-right: unset;
    padding-left: 0px;
    padding-right: 0px;
}

.label_page p a {
  color: var(--color-blau) !important;
}

.label_page .ce_tabs .tabs.classic ul li {
  background: #fff;
}

.label_page .ce_tabs .tabs.classic ul li:not(.active) {
    opacity: 0.8;
    box-shadow: 0 0 inset,0 -1px 1px rgba(0,0,0,.03) inset,0 0 inset,0 0 inset !important;
}

.label_page .ce_tabs .panes.classic {
    background: #fff;
}

.ce_label_cd_links_stream_download .link_wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px;
}

.ce_label_cd_links_stream_download .ce_tabs .panes .section span {
}

.ce_label_cd_links_stream_download .ce_tabs .panes .section span a {
    display: inline-block;
/*     background-color: var(--color-blau); */
/*     background-color: rgba(0,70,140,0.7); */
    background-color: rgba(0,0,0,0.6);
    padding: 12px 24px;
    color: #fff;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 5px;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}
.ce_label_cd_links_stream_download .ce_tabs .panes .section span a:hover {
    background-color: rgba(0,0,0,1);
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}
.ce_label_cd_links_stream_download .ce_tabs .panes .section span a {
    width: 138px;
    height: 48px;
    text-indent: -9999px;
/*     background-size: 138px; */
    background-size: 90%;
    background-position: center center;
    background-repeat: no-repeat;
}
.ce_label_cd_links_stream_download a.apple_music {
    background-image: url('../img/icons_stream/applemusic_w_en.svg') !important;
}
.ce_label_cd_links_stream_download a.spotify {
    background-image: url('../img/icons_stream/spotify_w.svg') !important;
}
.ce_label_cd_links_stream_download a.deezer {
    background-image: url('../img/icons_stream/deezer_w.svg') !important;
}
.ce_label_cd_links_stream_download a.amazon_music {
    background-image: url('../img/icons_stream/amazonmusic_w.svg') !important;
}
.ce_label_cd_links_stream_download a.tidal {
    background-image: url('../img/icons_stream/tidal_w.svg') !important;
}
.ce_label_cd_links_stream_download a.youtube_music {
    background-image: url('../img/icons_stream/youtubemusic_w.svg') !important;
}
.ce_label_cd_links_stream_download a.idagio {
    background-image: url('../img/icons_stream/idagio_w.svg') !important;
}
.ce_label_cd_links_stream_download a.qobuz {
    background-image: url('../img/icons_stream/qobuz_w.svg') !important;
}
.ce_label_cd_links_stream_download a.napster {
    background-image: url('../img/icons_stream/napster_w.svg') !important;
/*     background-size: 120px !important; */
}
.ce_label_cd_links_stream_download a.itunes_store {
    background-image: url('../img/icons_stream/itunes_w_en.svg') !important;
}

.label_page #footer a:hover {
    color: var(--color-blau) !important;
    text-decoration: underline;
}

.label_page #bottom .inside a:hover {
    color: var(--color-blau) !important;
}


.label_page .logo::after {
    content: 'MYRICAE CLASSICS';
    color: var(--color-blau) !important;
    top: 22px;
    left: 160px;
}
@media only screen and (max-width: 1280px) {
    .label_page .logo::after {
        font-size: 14px;
        top: 24px;
    }
}
@media only screen and (max-width: 1199px) {
    .label_page .logo::after {
        font-size: 11px;
        top: 26px;
    }
}
@media only screen and (max-width: 1023px) {
    .label_page .label_page .logo::after {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .label_page .logo::after {
        left: 90px;
        top: 13px;
    }
}
@media only screen and (max-width: 579px) {
    .label_page .logo::after {
        font-size: 12px;
    }
}
@media only screen and (max-width: 500px) {
    .label_page .logo::after {
        font-size: 10px;
    }
}
.label_page.fixed-header .logo::after {
    left: 110px;
    top: 14px;
}

@media only screen and (max-width: 767px) {
    .label_page.fixed-header .logo::after {
        left: 90px;
        top: -16px;
    }
}

/* =============================================================================
 * gallery
 * ========================================================================== */


.ce_gallery li:hover .content {
    opacity: 0.75;
}
.ce_gallery .content {
    background-color: var(--color-petrol) !important;;
}


/* =============================================================================
 * news
 * ========================================================================== */

.mod_newslist_infinite_scroll {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1%;
    margin-right: -1%;
}

.inf-scr-loading-in-process-container {
    width: 100%;
    text-align: center;
}

.inf-scr-load-more-btn-container {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.newslist-v4 .content * {
    color: var(--color-petrol);
    font-weight: 500;
}
.newslist-v4 .content .teaser * {
    color: #000;
    font-weight: 300;
}

.newslist-v4 .date {
    bottom: 0px;
    padding: 0px 11px 0px 11px !important;
    top: unset !important;
    width: auto;
}

.newslist-v4 .date .day,
.newslist-v4 .date .month,
.newslist-v4 .date .year {
    width: auto !important;
    display: inline-block !important;
    font-size: .7333rem !important;
}

.newslist-v4 .info {
    display: none !important;
}

.newslist-v4.featured .date {
    display: none !important;
}

.mod_newsreader .back {
    max-width: 1210px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    width: calc(100% - 30px);
/*
    padding-left: 30px;
    padding-right: 30px;
*/
}

/*
@media only screen and (max-width: 1239px) {
    .mod_newsreader .back {
        padding-left: 15px;
        padding-right: 15px;
    }
}
*/

.mod_newsreader .back a {
    font-size: 1rem !important;
}

.back {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mod_newsreader h1 {
    color: var(--color-petrol) !important;
}

@media only screen and (min-width: 768px) {
    font-size: 2.5rem;
}

.mod_newsreader > .portfolioreader > div:not(.ce_headerimage),
.mod_newsreader > .newsreader > div:not(.ce_headerimage) {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.mod_newsreader .portfolioreader .autogrid_row {
    margin-top: 40px;
}

.mod_newsreader > .portfolioreader > div:not(.ce_headerimage) .max_width_full,
.mod_newsreader > .newsreader > div:not(.ce_headerimage) .max_width_full {
    margin-left: calc((-100% - 1250px) / 2);
    margin-right: calc((-100% - 1250px) / 2);
}

.mod_newsreader > .portfolioreader > div:not(.ce_headerimage) .max_width_full .ce_bgimage-inside,
.mod_newsreader > .newsreader > div:not(.ce_headerimage) .max_width_full .ce_bgimage-inside {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

@media only screen and (max-width: 1239px) {
    .mod_newsreader > .portfolioreader > div:not(.ce_headerimage) .max_width_full,
    .mod_newsreader > .newsreader > div:not(.ce_headerimage) .max_width_full {
        margin-left: -35px;
        margin-right: -35px;
    }
}
@media only screen and (max-width: 767px) {
    .mod_newsreader > .portfolioreader > div:not(.ce_headerimage) .max_width_full,
    .mod_newsreader > .newsreader > div:not(.ce_headerimage) .max_width_full {
        margin-left: -20px;
        margin-right: -20px;
    }
}


.newslist-v4 {
    flex: 0 0 33.3333%;
}



@media only screen and (max-width: 1023px) {
    .content_page .newslist-v4 {
        flex: 0 0 50%;
    }
}


/* =============================================================================
 * label
 * ========================================================================== */

.ce_label_cd_praesentation {
    margin-top: 80px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.04),0 4px 8px 0 rgba(0,0,0,.03);
}

.ce_label_cd_praesentation .column.col_4 {
    align-self: center;
}
.ce_label_cd_praesentation .column h4,
.ce_label_cd_praesentation .column h5,
.ce_label_cd_praesentation .column h6 {
    margin: 0px;
}

.ce_label_cd_praesentation .column h4 {
    color: var(--color-blau);
    margin-bottom: 10px;
}
.ce_label_cd_praesentation .column h6 {
    font-size: 16px;
    font-weight: 600;
}

.ce_label_cd_praesentation .column h5 {
    margin-bottom: 10px;
    opacity: 0.7;
}

.ce_label_cd_praesentation .column .link_button {
    background-color: var(--color-blau);
    padding: 12px 24px;
    color: #fff;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 5px;
}

@media only screen and (max-width: 767px) {
    .ce_label_cd_praesentation .column .link_button {
        padding: 12px 17px;
    }
    .ce_label_cd_praesentation .column .link_button:nth-child(3) {
        margin-right: 0px;
    }
}


.ce_label_cd_praesentation .link_wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px;
}

.ce_label_cd_praesentation .col_8 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.ce_label_cd_praesentation .ce_image_extended {
    border: 1px solid var(--color-blau);
}

.ce_label_cd_praesentation:nth-child(even) .col_8 {
    order: 2;
}

.ce_label_cd_praesentation:nth-child(even) .col_4 {
    order: 1;
}

@media only screen and (max-width: 767px) {
    .ce_label_cd_praesentation .col_8 {
        order: 2;
    }

    .ce_label_cd_praesentation .col_4 {
        order: 1;
    }
}


/* =============================================================================
 * events
 * ========================================================================== */

/*
.mod_eventlist_v3 .date {
    bottom: 0px;
    padding: 0px 11px 0px 11px !important;
    top: unset !important;
    width: auto;
}
.mod_eventlist_v3 .date .day,
.mod_eventlist_v3 .date .month,
.mod_eventlist_v3 .date .year {
    width: auto !important;
    display: inline-block !important;
    font-size: .7333rem !important;
}

.mod_eventlist_v3 .info {
    display: none !important;

}

.mod_eventlist_v2 .three_sixth {
    flex: 0 0 calc((100% / 6) * 5) !important;
}

.mod_eventlist_v2 .location,
.mod_eventlist_v2 .time {
    display: none;
}
*/

.mod_eventlist {
    overflow: visible;
}

.event.layout_full {
    position: relative;
    overflow: visible;
    background-color: rgb(255,255,255);
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}

.event.layout_full:hover {
/*     background-color: var(--color-light); */
    background-color: #fbfbfb;
    cursor: pointer;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}

.event_wrapper {
    width: 100%;
    min-height: 130px;
    display: inline-block;
    position: relative;
    padding: 20px;
    padding-left: 300px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.04),0 4px 8px 0 rgba(0,0,0,.03);
}

.event.layout_full .title.h1 {
    color: var(--color-petrol);
    font-size: 1.3rem !important;
    margin-bottom: 0px !important;
    font-weight: 500;
}

.event.layout_full .image_container {
    position: absolute;
    left: 175px;
    top: 50%;
    transform: translateY(-50%);
    height: var(--event-height);
    width: var(--event-height);
    border-radius: var(--event-height);
    background-color: var(--color-light);
}
.event.layout_full .image_container img {
    height: var(--event-height);
    object-fit: cover;
    width: var(--event-height);
    border-radius: var(--event-height);
}



.event.layout_full .ce_text {
/*     height: 100px; */
/*
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
*/
}
.event.layout_full .ce_text p:last-child {
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.event.layout_full .button-more {
    background-color: var(--color-petrol);
    color: #fff;
    padding-left: 20px;
    padding-right: 40px;
    width: auto;
    display: inline-block;
    float: right;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 1;
    position: relative;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}
.event.layout_full .button-more:hover {
    opacity: 0.8;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
}
.event.layout_full .button-more::before {
    content: " >";
    color: #fff;
    display: block;
    text-align: center;
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 0%;
}

.date-top {
    position: absolute;
    left: 0px;
    top: 0px;
    border-right: 1px solid var(--color-light);
    background-color: #fff;
/*
    background-color: var(--color-petrol);
    color: #fff;
*/
/*     background-color: var(--color-light); */
    color: #000;
    padding: 10px;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    height: 100%;
    width: 150px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .date-top {
        width: 100px;
    }
    .event_wrapper {
        padding-left: 250px;
    }
    .event.layout_full .image_container {
        left: 125px;
        top: 20px;
        transform: translateY(0%);
    }
}
@media only screen and (max-width: 580px) {
    .date-top {
        position: relative;
        width: 100%;
    }
    .event.layout_full .image_container {
        left: 20px;
        top: -80px;
        transform: translateY(0%);
        height: 70px;
        width: 70px;
        border-radius: 70px;
    }
    .event.layout_full .image_container img {
        height: 70px;
        width: 70px;
    }
/*
    .event.layout_full .image_container {
        display: none;
    }
*/
    .event_wrapper {
        padding-left: 20px;
    }
}

.date-top span {
    display: block;
}
.date-top .day {
    font-size: 28px;
    color: var(--color-petrol);
    font-weight: 600;
}


.pagination {
    margin-top: 40px;
    text-align: center;
}
.pagination p {
    display: none;
}
.pagination ul {
    float: none;
    display: inline-block;
}


/* =============================================================================
 * PAGE - LABEL
 * ========================================================================== */

.label_page .header.original .mainmenu ul li a.trail,
.label_page .header.original .mainmenu ul li a.active,
.label_page .header.cloned .mainmenu ul li a.trail,
.label_page .header.cloned .mainmenu ul li a.active {
	color: var(--color-blau) !important;
}
/*
.label_page .header .mainmenu ul li a.a-level_1.trail,
.label_page .header .mainmenu ul li a.a-level_1.active {
  background: #fff !important;
}
*/

.label_page .mainmenu ul li a:hover {
  opacity: 1 !important;
  color: var(--color-blau) !important;
}

.label_page .logo a {
    background-image: url('../img/logo_label.svg') !important;
}

.label_page .ce_text_extented ul li:before {
    background-color: var(--color-blau) !important;
}

.label_page .ce_text_imagebox_image .ce_headline {
    color: var(--color-blau) !important;
}
.label_page .date-top {
    background-color: var(--color-blau) !important;
}
.label_page .ce_label_cd_praesentation .column .link_button {
    background-color: var(--color-blau) !important;
}

.label_page span.color-accent {
    color: var(--color-blau) !important;
}
.label_page .ce_divider_extended.version5 {
    background-color: var(--color-blau) !important;
}
.label_page .ce_headerimage::before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0,70,140,.8)
/*
    background-image: url('../img/logo_mk_petrol.svg') !important;
    background-size: cover;
    background-position: 90%;
    background-repeat: no-repeat;
*/
}

.label_page #footer .column.col_6 .ce_image_text_box:first-child {
    text-align: right;
}
.label_page #footer .column.col_6 .ce_image_text_box img {
    max-height: 100px;
}
@media only screen and (max-width: 767px) {
    .label_page #footer .column.col_6 .ce_image_text_box:first-child {
        text-align: left;
    }
    .label_page #footer .column.col_6 {
        margin-bottom: 0px;
    }
}

/* =============================================================================
 * KONTAKT
 * ========================================================================== */

input.submit[type="submit"], button.submit[type="submit"] {
    background: var(--color-petrol) !important;
}

textarea {
    resize: none;
}


@media only screen and (max-width: 767px) {
    .ce_bgimage.img-leftside-33:not(.bg-hide-mobile) .mobile_image,
    .ce_bgimage.img-leftside-50:not(.bg-hide-mobile) .mobile_image,
    .ce_bgimage.img-rightside-33:not(.bg-hide-mobile) .mobile_image,
    .ce_bgimage.img-rightside-50:not(.bg-hide-mobile) .mobile_image {
      display: none !important;
    }
}


/* =============================================================================
 * One-Page Navigation
 * ========================================================================== */

 .page_navigation {
    position: fixed !important;
    right: 0px !important;
    bottom: 0% !important;
    transform: translateY(0%) !important;
    -webkit-transform: translateY(0%) !important;
    width: 100%;
    top: unset !important;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
}

 .page_navigation.is_in_viewport {
    opacity: 1;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
 }

.page_navigation ul {
    display: flex;
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.page_navigation a.active {
    background-color: var(--color-petrol);
    color: #fff !important;
}

.page_navigation .title {
    font-size: .6667rem;
    font-family: 'Quicksand', Verdana, sans-serif !important;
    font-weight: 700;
    position: relative !important;
    top: 0px !important;
    right: 0px  !important;
    padding: 12px 20px;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 16px !important;
    border-radius: 0px;
    background: transparent !important;
    box-shadow: none !important;
}
.page_navigation .circle,
.page_navigation .glow {
    display: none !important;
}

.page_navigation ul::before,
.page_navigation ul::after {
    display: none;
}
