/*#region Defaults*/
:root {
    --font-family: Montserrat, Tahoma, Geneva, sans-serif;
    /*colors*/
    --color-primary: #c42026;
    --color-secondary: #008540;
    --color-tertiary: #ff4c4d;
    --color-text-grey: #242424;
    --color-dark-grey: #3d3d3d;
    --color-medium-grey: #5f6a72;
    --color-grey: #7c7c7c;
    --color-light-grey: #d6d6d6;
    --color-white: #fff;
    --color-white-transparent: rgba(255, 255, 255, 0.8);
    --color-shadow-white: #f3f3f3;
    --color-premium-gold: #eab222;
    --color-premium-black: #0b0b0b;
    --color-light-secondary: #e0f0e9;
    --gradient-primary: radial-gradient(circle, rgba(255, 76, 77, 1) 0%, var(--color-primary) 100%);
    --gradient-primary-linear: linear-gradient(90deg, var(--color-primary), #FF4C4D);
    --gradient-secondary: radial-gradient(circle, rgba(212, 241, 226, 1) 0%, var(--color-secondary) 100%);
    --gradient-premium: radial-gradient(circle, rgba(254, 231, 172, 1) 0%, var(--color-premium-gold) 100%);
    /* default layout variables */
    --default-border-radius: 0.5rem;
    --default-padding: 0.5rem;
    --default-margin: 0.5rem;
    /* default box shadow */
    --default-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

html, body {
    width: 100%;
}

body {
    color: #4d4d4d;
    background-color: var(--color-white);
    cursor: auto !important;
}

body, pre {
    font-family: var(--font-family);
    font-size: 14px;
    padding: 0;
    margin: 0;
}

pre {
    white-space: pre-wrap;
}

.contblock {
    margin: 0 auto;
    width: 1088px;
    box-sizing: border-box;
}

    .contblock.old {
        width: 988px;
    }
/*#endregion*/

/*wichtiger! stylefix f�r Mailjet Popup Widget*/
#mj-w-overlay {
    z-index: 999999 !important;
}

/* https://www.tjvantoll.com/2013/09/12/building-custom-text-strikethroughs-with-css/ */
.strike {
    position: relative;
    display: inline-block;
}

    .strike::after {
        content: '';
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
        border-bottom: 1px solid #747778;
        -webkit-transform: skewY(10deg);
        -moz-transform: skewY(10deg);
        -ms-transform: skewY(10deg);
        -o-transform: skewY(10deg);
        transform: skewY(10deg);
    }

.verify-hint {
    max-width: 400px;
}

@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-display: block;
    src: url("/css/fonts/material-symbols-rounded.woff2") format('woff2');
}

/*material symbols config*/
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
    font-size: 20px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

.material-symbols-rounded.no-fill {
    font-variation-settings: 'FILL' 0;
}

/*#region fonts*/
@font-face {
    font-family: "Montserrat";
    src: url("/css/fonts/montserrat.woff2") format("woff2"), url("/css/fonts/montserrat.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ehorsesfont";
    src: url("/css/fonts/ehorsesfont.woff?v=3") format("woff"), url("/css/fonts/ehorsesfont.ttf?v=3") format("truetype"), url("/css/fonts/ehorsesfont.svg#ehorsesfont") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.iconfont {
    font-family: "ehorsesfont";
    font-size: 24px;
    color: #4D4D4D;
    display: inline-block;
    text-align: center;
    font-weight: normal;
}

    .iconfont.shadow {
        text-shadow: #FFF 0 0 4px;
    }

/* Override class to be used when the browser sets the default font, when a default tag is used e.g. <button> */
.setFont {
    font-family: var(--font-family);
}    
/*#endregion*/

/*#region Breadcrumb*/
.breadcrumb {
    margin: 20px auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.breadcrumb .l {
    float: left;
    width: 48%;
}

.breadcrumb .r {
    float: right;
    text-align: right;
    width: 52%;
}

.breadcrumb::after {
    content: "";
    display: table;
    clear: both;
}

    .breadcrumb .prgLink {
        text-decoration: underline;
    }
/*#endregion*/

/*UTILITY CLASSES*/

/*background color gradients*/
.gradient-primary {
    background: var(--gradient-primary);
}

.gradient-secondary {
    background: var(--gradient-secondary);
}

.gradient-premium {
    background: var(--gradient-premium);
}
/*background colors*/
.bg-primary {
    background: var(--color-primary);
}

.bg-secondary {
    background: var(--color-secondary);
}

.bg-tertiary {
    background: var(--color-tertiary);
}

.bg-text-grey {
    background: var(--color-text-grey);
}

.bg-dark-grey {
    background: var(--color-dark-grey);
}

.bg-grey {
    background: var(--color-grey);
}

.bg-light-grey {
    background: var(--color-light-grey);
}

.bg-premium-gold {
    background: var(--color-premium-gold);
}

.bg-premium-black {
    background: var(--color-premium-black);
}
/*font colors*/
.fc-primary {
    color: var(--color-primary);
}

.fc-secondary {
    color: var(--color-secondary);
}

.fc-tertiary {
    color: var(--color-tertiary);
}

.fc-text-grey {
    color: var(--color-text-grey);
}

.fc-dark-grey {
    color: var(--color-dark-grey);
}

.fc-grey {
    color: var(--color-grey);
}

.fc-light-grey {
    color: var(--color-light-grey);
}

.fc-premium-gold {
    color: var(--color-premium-gold);
}

.fc-premium-black {
    color: var(--color-premium-black);
}

.fc-white {
    color: white;
}
/*#region Shortcuts*/
.grab {
    cursor: pointer;
}

.mauto {
    margin: auto;
}

.mlauto {
    margin-left: auto;
}

.mcenter {
    margin: 0 auto;
}

.t0 {
    top: 0;
}

.t5 {
    top: 5px;
}

.t16pro {
    top: 16% !important;
}

.t33pro {
    top: 33% !important;
}

.r0 {
    right: 0;
}

.r45 {
    right: 45px;
}

.r10 {
    right: 10px;
}

.r20 {
    right: 20px;
}

.b0 {
    bottom: 0;
}

.b10 {
    bottom: 10px;
}

.b20 {
    bottom: 20px;
}

.l0 {
    left: 0;
}

.m0_20 {
    margin: 0 20px;
}

.m0 {
    margin: 0;
}

.m0_auto {
    margin: 0 auto;
}

.m10 {
    margin: 10px;
}

.m10_0 {
    margin: 10px 0;
}

.m15 {
    margin: 15px;
}

.m20 {
    margin: 20px;
}

.m20_0 {
    margin: 20px 0;
}

.m20_40 {
    margin: 20px 40px;
}

.m20_auto {
    margin: 20px auto;
}

.m30 {
    margin: 30px;
}

.mt-5 {
    margin-top: -5px;
}

.mt-10 {
    margin-top: -10px;
}

.mt-30 {
    margin-top: -30px;
}

.mt2 {
    margin-top: 2px;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt34 {
    margin-top: 34px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt57 {
    margin-top: 57px;
}

.mt70 {
    margin-top: 70px;
}

.mt110 {
    margin-top: 110px;
}

.mt140 {
    margin-top: 140px;
}

.mt200 {
    margin-top: 200px;
}

.mr-10 {
    margin-right: -10px;
}

.mr-5 {
    margin-right: -5px !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr20pro {
    margin-right: 1.9%;
}

.mr30 {
    margin-right: 30px;
}

.mr36 {
    margin-right: 36px;
}

.mr40 {
    margin-right: 40px;
}

.mr40pro {
    margin-right: 3.95%;
}

.mr44 {
    margin-right: 44px;
}

.mr50 {
    margin-right: 50px;
}

.mr70 {
    margin-right: 70px;
}

.mr2pro {
    margin-right: 2%;
}

.mr5pro {
    margin-right: 5%;
}

.mb-10 {
    margin-bottom: -10px;
}

.mb0 {
    margin-bottom: 0;
}

.mb0I {
    margin-bottom: 0 !important;
}

.mb3 {
    margin-bottom: 3px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px;
}

.mb25I {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px;
}

.mb35{
    margin-bottom:35px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb50 {
    margin-bottom: 50px;
}

.ml5 {
    margin-left: 5px;
}

.ml9 {
    margin-left: 9px;
}

.ml10 {
    margin-left: 10px;
}

.ml11 {
    margin-left: 11px;
}

.ml12 {
    margin-left: 12px;
}

.ml13 {
    margin-left: 13px;
}

.ml14 {
    margin-left: 14px;
}

.ml15 {
    margin-left: 15px;
}

.ml17 {
    margin-left: 17px;
}

.ml18 {
    margin-left: 18px;
}

.ml20 {
    margin-left: 20px;
}

.ml22 {
    margin-left: 22px;
}

.ml25 {
    margin-left: 25px;
}

.ml28 {
    margin-left: 28px;
}

.ml30 {
    margin-left: 30px;
}

.ml34 {
    margin-left: 34px;
}

.ml32 {
    margin-left: 32px;
}

.ml40 {
    margin-left: 40px;
}

.ml53 {
    margin-left: 53px;
}

.ml60 {
    margin-left: 60px;
}

.ml82 {
    margin-left: 82px;
}

.ml100 {
    margin-left: 100px;
}

.ml250 {
    margin-left: 250px;
}

.ml334 {
    margin-left: 335px;
}

.ml-1 {
    margin-left: -1px;
}

.ml-10 {
    margin-left: -10px;
}

.ml-20 {
    margin-left: -20px
}

.ml-26 {
    margin-left: -26px;
}

.ml-32 {
    margin-left: -32px;
}

.mtb5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.m7 {
    margin: 7px;
}

.mx0 {
    margin-left: 0;
    margin-right: 0;
}

.p0 {
    padding: 0 !important;
}

.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px;
}

.p40 {
    padding: 40px;
}

.p35 {
    padding: 35px;
}

.p5_10 {
    padding: 5px 10px;
}

.p5_20 {
    padding: 5px 20px;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pr20 {
    padding-right: 20px;
}

.pr50 {
    padding-right: 50px;
}

.pr80 {
    padding-right: 80px;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px !important;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px;
}

.pl30 {
    padding-left: 30px;
}

.pl40 {
    padding-left: 40px;
}

.pl50 {
    padding-left: 50px;
}

.pl60 {
    padding-left: 60px;
}

.pl70 {
    padding-left: 70px;
}

.pt3 {
    padding-top: 3px;
}

.pt4 {
    padding-top: 4px;
}

.pt5 {
    padding-top: 5px;
}

.pt7 {
    padding-top: 7px;
}

.pt10 {
    padding-top: 10px;
}

.pt13 {
    padding-top: 13px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt25 {
    padding-top: 25px;
}

.pt30 {
    padding-top: 30px;
}

.pt33 {
    padding-top: 33px;
}

.pt40 {
    padding-top: 40px;
}

.pt42 {
    padding-top: 42px;
}

.pt120 {
    padding-top: 120px;
}

.ptb5 {
    padding: 5px 0;
}

.plr10 {
    padding: 0 10px;
}

.plr20 {
    padding: 0 20px;
}

.plr50 {
    padding: 0 50px;
}

.px35 {
    padding: 0 35px;
}

.plr50I {
    padding: 0 50px !important;
}

.pa10 {
    padding: 10px;
}

.pa15 {
    padding: 15px;
}

.pb0 {
    padding-bottom: 0;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb50 {
    padding-bottom: 50px;
}

.p12e {
    padding: 1em 2em;
}

.w25 {
    width: 25px;
}

.w50 {
    width: 50px;
}

.w60 {
    width: 60px;
}

.w70 {
    width: 70px;
}

.w75 {
    width: 75px;
}

.w80 {
    width: 80px;
}

.w85 {
    width: 85px;
}

.w90 {
    width: 90px;
}

.w95 {
    width: 95px;
}

.w100 {
    width: 100px;
}

.w100I {
    width: 100px !important;
}

.w110 {
    width: 110px;
}

.w120 {
    width: 120px;
}

.w128 {
    width: 128px;
}

.w135 {
    width: 135px;
}

.w150 {
    width: 150px;
}

.w160 {
    width: 160px;
}

.w170 {
    width: 170px;
}

.w180 {
    width: 180px;
}

.w188 {
    width: 188px;
}

.w190 {
    width: 190px;
}

.w200 {
    width: 200px;
}

.w200I {
    width: 200px !important;
}

.w204 {
    width: 204px;
}

.w220 {
    width: 220px;
}

.w235 {
    width: 235px;
}

.w240 {
    width: 240px;
}

.w250 {
    width: 250px;
}

.w260 {
    width: 260px;
}

.w280 {
    width: 280px;
}

.w290 {
    width: 290px;
}

.w300 {
    width: 300px;
}

.w305 {
    width: 305px;
}

.w316 {
    width: 316px;
}

.w318 {
    width: 318px;
}

.w335 {
    width: 335px;
}

.w348 {
    width: 348px;
}

.w350 {
    width: 350px;
}

.w380 {
    width: 380px;
}

.w400 {
    width: 400px;
}

.w420 {
    width: 420px;
}

.w484 {
    width: 484px;
}

.w485 {
    width: 485px;
}

.w500 {
    width: 500px;
}

.w600 {
    width: 600px;
}

.w620 {
    width: 620px;
}

.w668 {
    width: 668px;
}

.w700 {
    width: 700px;
}

.w768 {
    width: 768px;
}

.w856 {
    width: 856px;
}

.w1088 {
    width: 1088px;
}

.w10pro {
    width: 10%;
}

.w20pro {
    width: 20%;
}

.w25pro {
    width: 25%;
}

.w30pro {
    width: 30%;
}

.w32pro {
    width: 32%;
}

.w35pro {
    width: 35%;
}

.w38pro {
    width: 38%;
}

.w40pro {
    width: 40%;
}

.w45pro {
    width: 45%;
}

.w46pro {
    width: 46%;
}

.w48pro {
    width: 48%;
}

.w49pro {
    width: 49%;
}

.w50pro {
    width: 50%;
}

.w56pro {
    width: 56%;
}

.w60pro {
    width: 60%;
}

.w70pro {
    width: 70%;
}

.w75pro {
    width: 75%;
}

.w90pro {
    width: 90%;
}

.w100pro {
    width: 100%;
}

.w100proI {
    width: 100% !important;
}

.wAutoI {
    width: auto !important
}

.hover_underline:hover {
    text-decoration: underline !important;
}

.h1 {
    height: 1px;
}

.h10 {
    height: 10px;
}

.h20 {
    height: 20px;
}

.h25 {
    height: 25px;
}

.h30 {
    height: 30px;
}

.h36 {
    height: 36px !important;
}

.h50 {
    height: 50px;
}

.h56 {
    height: 56px;
}

.h80 {
    height: 80px;
}

.h100 {
    height: 100px;
}

.h120 {
    height: 120px;
}

.h180 {
    height: 180px;
}

.h200 {
    height: 200px;
}

.h240 {
    height: 240px;
}

.h250 {
    height: 250px;
}

.h300 {
    height: 300px;
}

.h318 {
    height: 318px;
}

.h500 {
    height: 500px;
}

.h574 {
    height: 574px;
}

.h600 {
    height: 600px;
}

.h700 {
    height: 700px;
}

.h100pro {
    height: 100%;
}

.hAutoI {
    height: auto !important
}

.lh0 {
    line-height: 0;
}

.lh10 {
    line-height: 10px;
}

.lh12 {
    line-height: 12px;
}

.lh15 {
    line-height: 15px;
}

.lh18 {
    line-height: 18px;
}

.lh20 {
    line-height: 20px;
}

.lh24 {
    line-height: 24px;
}

.lh25 {
    line-height: 25px;
}

.lh26 {
    line-height: 26px;
}

.lh27 {
    line-height: 27px;
}

.lh28 {
    line-height: 28px;
}

.lh30 {
    line-height: 30px;
}

.lh32 {
    line-height: 32px;
}

.lh35 {
    line-height: 35px;
}

.lh36 {
    line-height: 36px !important;
}

.lh45 {
    line-height: 45px;
}

.lh50 {
    line-height: 50px;
}

.lh56 {
    line-height: 56px;
}

.lh60 {
    line-height: 60px;
}

.disp_ib {
    display: inline-block;
}

.disp_bl {
    display: block;
}

.disp_bl_imp {
    display: block !important;
}

.fs9 {
    font-size: 9px !important;
}

.fs10 {
    font-size: 10px !important;
}

.fs11 {
    font-size: 11px !important;
}

.fs12 {
    font-size: 12px !important;
}

.fs13 {
    font-size: 13px !important;
}

.fs14 {
    font-size: 14px !important;
}

.fs15 {
    font-size: 15px !important;
}

.fs16 {
    font-size: 16px !important;
}

.fs18 {
    font-size: 18px !important;
}

.fs20 {
    font-size: 20px !important;
}

.fs24 {
    font-size: 24px !important;
}

.fs30 {
    font-size: 30px !important;
}

.fs32 {
    font-size: 32px !important;
}

.fs34 {
    font-size: 32px !important;
}

.fs44 {
    font-size: 44px !important;
}

.fs56 {
    font-size: 56px !important;
}

.fs64 {
    font-size: 64px !important;
}

.fs86 {
    font-size: 86px !important;
}

.fs120 {
    font-size: 120px !important;
}

.fwnormal {
    font-weight: normal !important;
}

.fwbold {
    font-weight: bold !important;
}

.fwbolder {
    font-weight: bolder !important;
}

.upper {
    text-transform: uppercase;
}

.spacer5 {
    height: 5px;
}

.spacer10 {
    height: 10px;
}

.spacer15 {
    height: 15px;
}

.spacer20 {
    height: 20px;
}

.spacer30 {
    height: 30px;
}

.cr_hl {
    font-size: 1.2em;
}

.noborder {
    border: 0 !important;
}

.nowrap {
    white-space: nowrap;
}

.img_border {
    border: 1px solid #CDCDCD;
}

.posrel {
    position: relative;
}

.posabs {
    position: absolute;
}

.posfix {
    position: fixed;
}

.tajust {
    text-align: justify;
}

.taleft {
    text-align: left;
}

.taright {
    text-align: right;
}

.tacenter {
    text-align: center;
}

.pointer {
    cursor: pointer;
}

.nopointer {
    cursor: default !important;
}

.hover_alpha:hover {
    opacity: 0.8;
}

.of_auto {
    overflow: auto;
}

.inline {
    display: inline-block;
}

.border {
    border: 1px solid #CDCDCD;
}

.borderBtm {
    border-bottom: 1px solid #CDCDCD;
}

.borderBtmDot {
    border-bottom: 1px dotted #CDCDCD;
}

.borderTop {
    border-top: 1px solid #CDCDCD;
}

.border2 {
    border: 2px solid #CDCDCD;
}

.br10I {
    border-radius: 10px !important;
}

.textShadowWhite {
    text-shadow: 1px 1px 0 #F3F3F3;
}

.textShadowBlack {
    text-shadow: 2px 1px 3px #4D4D4D;
}

.textStrokeBlack {
    text-shadow: 1px 1px 1px #4D4D4D, 1px -1px 1px #4D4D4D, -1px 1px 1px #4D4D4D, -1px -1px 1px #4D4D4D;
}

.semitrans {
    opacity: 0.5;
}

.over_hidden {
    overflow: hidden;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z3 {
    z-index: 3;
}

.z4 {
    z-index: 4;
}

.z10 {
    z-index: 10;
}

.z11 {
    z-index: 11;
}

.va_mid {
    vertical-align: middle;
}

.va_top {
    vertical-align: top;
}

.va_btm {
    vertical-align: bottom;
}

.aic {
    align-items: center;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.jc_center {
    justify-content: center;
}

.float_left {
    float: left;
}

.float_right {
    float: right !important;
}

.clear_left {
    clear: left;
}

.clear_both {
    clear: both;
}

.clear_right {
    clear: right;
}

/**end shortcuts*/

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

.nodisplay {
    display: none;
}

.nodisplay_imp {
    display: none !important;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bsbb {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

    .flex .flexItem {
        -ms-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }

.flex-column {
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-row {
    -webkit-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.justify-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.justify-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.justify-space-evenly {
    justify-content: space-evenly;
}

.grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.gap10 {
    gap: 10px;
}

.gap20 {
    gap: 20px;
}

.shadow {
    -moz-box-shadow: 2px 0 5px #CDCDCD;
    -webkit-box-shadow: 2px 0 5px #CDCDCD;
    box-shadow: 2px 0 5px #CDCDCD;
}

.first, .last {
    width: auto !important;
}

.breakword {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.font_outline_black {
    text-shadow: -1px 0 4px black, 0 1px 4px black, 1px 0 4px black, 0 -1px 4px black;
}

.underline {
    text-decoration: underline !important;
}

.hoverInverted:hover {
    color: white;
    background-color: #c42026;
    cursor: pointer;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.truncate-2-lines {
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

a.truncate-2-lines {
    display: block; /* fallback for non-webkit */
    display: -webkit-box;
}

a.truncate {
    display: block;
}

.notruncate {
    white-space: normal;
    overflow: auto;
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: initial;
    text-overflow: initial;
}

.ratio74, .ratio8 {
    height: 0;
    position: relative;
}

    .ratio74 img, .ratio8 img {
        position: absolute;
        top: 0;
        left: 0;
    }

.ratio74 {
    padding-top: 74.93%;
}

.ratio8 {
    padding-top: 80%;
}

/*iconfont green checklist*/
.checklist ul li,
ul.checklist li {
    list-style: none;
}

    .checklist ul li:before,
    ul.checklist li:before {
        font-family: ehorsesfont;
        content: "j";
        color: var(--color-secondary);
        font-size: 20px;
        position: relative;
        top: 5px;
        margin-right: 10px;
    }

/*box*/
.box {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #FFF;
    margin-bottom: 20px;
    position: relative;
    border-radius: 5px;
    border: 1px solid #CDCDCD;
}

    .box .hlWhite, .box .hlGold {
        background-color: #FFF;
        color: #333;
        width: auto !important;
        padding: 5px;
        font-size: 1.2em;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        text-decoration: none;
        text-align: left !important;
        font-weight: bold !important;
    }

    .box .hlWhite {
        border-bottom: 1px solid #CDCDCD;
        margin: 0 20px 10px;
        padding: 5px 0;
    }

    .box .hlGold {
        background-color: #cea500;
        color: #FFF !important;
        padding: 5px 20px 5px;
        margin-bottom: 10px;
    }

        .box .hlGold a {
            color: #FFF;
            text-decoration: none;
            font-weight: normal;
        }

    .box a.hlWhite::after {
        font-family: ehorsesfont;
        content: 'd';
        margin: 0 0 0 5px;
        vertical-align: text-bottom;
    }

    .box .olRed {
        background-color: rgba(196, 32, 38, 0.8);
        color: #FFF;
        width: 100%;
        padding: 5px;
        font-size: 1.3em;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        text-decoration: none;
        text-align: center;
        position: absolute;
        left: 0;
        bottom: 0;
    }

a .olRed::after {
    font-family: ehorsesfont;
    content: 'd';
    margin: 0 0 0 5px;
    vertical-align: sub;
    text-transform: none;
}

.olRed .iconfont {
    color: #fff;
    line-height: 25px;
}

.div_line {
    border-bottom: 1px dotted #CDCDCD;
    width: 100%;
    padding-bottom: 1px;
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 12px;
}

.overlay-box {
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 20;
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

    .overlay-box div {
        margin: 0 auto;
    }

/* ContentBoxen */
#contbox {
    background-color: #F3F3F3;
    position: relative;
    padding: 20px;
    width: 600px;
    height: auto;
    border: 1px solid #CDCDCD;
    text-align: left;
}

#contbox_white {
    position: relative;
    padding: 0 0 0 20px;
    height: auto;
    text-align: left;
}

#contbox_white_1px {
    position: relative;
    padding: 0 10px;
    height: auto;
    text-align: left;
}

    #contbox_white_1px a {
        text-decoration: none;
    }

/* further characteristics */
.menueausbildung {
    position: absolute;
    border: 1px solid #CDCDCD;
    background-color: white;
    padding: 28px 28px 10px 18px;
    display: none;
    z-index: 8;
    top: 0;
    width: 120px;
}

/*advert price info*/
.blend_info {
    display: none;
    left: -5px;
    position: absolute;
    width: auto;
    z-index: 999999;
    bottom: 45px;
}

.blend_info_spitze, .blend_info_spitze_rechts {
    border-color: #FFFFFF transparent transparent transparent;
    border-style: solid;
    border-width: 20px;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 92;
    bottom: -38px;
}

.blend_info_spitze_border, .blend_info_spitze_border_rechts {
    border-color: #CDCDCD transparent transparent transparent;
    border-style: solid;
    border-width: 20px;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 91;
    bottom: -40px;
}

.blend_info_spitze, .blend_info_spitze_border {
    left: 40px;
}

.blend_info_spitze_rechts, .blend_info_spitze_border_rechts {
    right: 40px;
}

.blend_info_cont {
    background-color: #FFFFFF;
    border: 2px solid #CDCDCD;
    box-shadow: 0 0 5px #888888;
    padding: 15px;
    position: relative;
    width: auto;
    z-index: 90;
}

.blend_close {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 13px;
    cursor: pointer;
}

/* Image Centering*/
.imgWrap {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    position: relative;
    height: 100%;
    width: 100%;
}

    .imgWrap img {
        vertical-align: middle;
        display: inline-block;
        max-height: 100%;
        max-width: 100%;
    }

    .imgWrap:before {
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        content: " ";
    }

    /* Image wrapper for switching prev next pic*/
    .imgWrap .infoboxtl, .imgWrap .infoboxbl, .imgWrap .infoboxbr,
    .imgGallery .infoboxtl, .imgGallery .infoboxbr, .imgGallery .infoboxbl {
        position: absolute;
        bottom: 0;
        padding: 5px 20px;
        background-color: rgba(172,172,172,0.6);
        color: #000;
        margin: auto auto;
        z-index: 3;
    }

    .imgWrap .infoboxtl {left: 0; top: 0; bottom: auto;}

        .imgWrap .infoboxtl.gold, .imgGallery .infoboxtl.gold, .infoboxtl.gold {
            background-color: rgba(231,189,65,0.6);
        }

        .imgWrap .infoboxtl.silver, .imgGallery .infoboxtl.silver, .infoboxtl.silver {
            background-color: rgba(202,202,202,0.6);
        }

        .imgWrap .infoboxtl.bronze, .imgGallery .infoboxtl.bronze, .infoboxtl.silver {
            background-color: rgba(205,127,48,0.6);
        }

        .imgWrap .infoboxtl.platin, .imgGallery .infoboxtl.platin, .infoboxtl.platin {
            background: linear-gradient(to right, rgba(53, 125, 122, 0.6), rgba(0, 255, 234, 0.6));
        }

    .imgWrap .infoboxbl, .imgGallery .infoboxbl {left: 0;}
    .imgWrap .infoboxbr, .imgGallery .infoboxbr {right: 0 !important;}

/* gallery with swiper */
.imgGallery .infoboxtl {
    left: 0;
    top: 0;
    bottom: auto;
}

.imgGallery .infoboxbl {
    left: 0;
    bottom: 0;
}
    

.imgGallery .infoboxbr, .imgGallery .infoboxbl {
    width: auto;
    left: inherit;
}

.usr-pic-80, .usr-pic-300 {
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: relative;
}

.usr-pic-80 {
    width: 80px;
    height: 80px;
}

.usr-pic-300 {
    width: 300px;
    max-height: 300px;
}

.ajaxLoading {
    padding: 10px;
    display: block;
    margin: 0 auto;
}
/*#endregion*/

/* Links */
a:link, a:active, a:visited {
    color: #4D4D4D;
}

a:hover, .fakeA:hover {
    color: #c42026;
}

a.noclr:hover {
    color: inherit;
}

a.menue:Link, a.menue:visited, a.menue:hover, a.menue:active {
    text-decoration: none;
    color: #4D4D4D;
}

a.underline {
    text-decoration: underline;
}

a.noline, a.iconfont {
    text-decoration: none !important;
}

a.lb_bold {
    font-weight: bold;
}
/*#endregion*/

/*#region Headlines*/
h1, h2, h3 {
    margin: 0;
}

h1 {
    font-size: 24px;
    margin: 0;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
}
/*#endregion*/

/*#region Font Sizes*/
.sizeXS {
    font-size: 9px;
}

.sizeS {
    font-size: 11px;
}

    .sizeS a {
        font-weight: normal;
    }

.sizeM {
    font-size: 14px;
}

    .sizeM a {
        font-weight: normal;
    }

.sizeL {
    font-size: 16px;
}

    .sizeL a {
        font-weight: normal;
    }

.sizeXL {
    font-size: 18px;
}

    .sizeXL a {
        font-weight: normal;
    }

.sizeXXL {
    font-size: 24px;
}
/*#endregion*/

.publishingService {
    padding: 20px 30px 20px 20px;
    text-decoration: none;
    font-size: 20px;
    display: block;
    line-height: 28px;
}

    .publishingService .btnRedInv {
        position: relative;
        top: 11px;
    }

    .publishingService:hover {
        color: #4D4D4D;
    }

/*#region Custom Scrollbar */
.customScrollbar {
    overflow: hidden;
}

    .customScrollbar .mCSB_inside > .mCSB_container {
        margin-right: 15px;
    }
/*end region*/

/*#region no adverts*/
.noAdverts {
    display: inline-block;
    width: 100%;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
}

    .noAdverts ul {
        text-align: left;
        padding: 0;
    }

        .noAdverts ul li {
            list-style-type: none;
            padding: 0;
            display: flex;
        }

        .noAdverts ul span {
            color: var(--color-secondary);
            font-family: ehorsesFont;
            vertical-align: middle;
            margin: 0 10px 0 0;
        }

    .noAdverts .cont {
        margin: 10px auto;
        max-width: 420px;
    }
/*end region*/

/*#region Responsive*/
h1.content {
    font-size: 13px;
    color: #4D4D4D;
    font-weight: bold;
}

table {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 13px;
}

.sort {
    display: inline-block;
    border: solid 1px #CDCDCD;
    padding: 6px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: -1px;
    text-decoration: none;
    background-color: #FFF;
}

    .sort:hover {
        background-color: #F3F3F3;
        color: #c42026;
    }

p.fail {
    margin-left: 70px;
    margin-top: 0;
}

.hvr-scale:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.hvr-scale {
    transition: all .2s linear;
}

ul.iconfont-bullets {
    list-style: none;
    position: relative;
}

    ul.iconfont-bullets li:before {
        position: absolute;
        left: 10px;
        content: "j";
        font-family: ehorsesfont;
        font-size: 18px;
    }

ul.green-bullets li:before {
    color: var(--color-secondary);
}

#seo-text img {
    max-width: 100%;
}

.responsivePhoneNumber {
    text-decoration: none;
    cursor: pointer;
}

    .responsivePhoneNumber:hover {
        color: #4D4D4D;
    }

/* datenschutz */
#datenschutz {
    padding: 10px;
    word-wrap: break-word;
}

.fab {
    font-size: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 21;
}

.fab:hover{
    transform: scale(1.1);
}

#fake-superchat {
    display: none;
}
    
.close-superchat {
    z-index: 9999;
    position: fixed;
    right: 0;
    bottom: 0;
    padding-bottom: 70px;
    padding-right: 20px;
    display: none;
}
    
.desktop-only, .tablet-only, .mobile-only {
    display: none !important;
}

.advertNow {
    background-color: rgba(255,255,255,0.7);
    padding: 10px;
    font-size: 12px;
    text-align: center;
}

    .advertNow span {
        font-size: 11px;
    }

        .advertNow span:first-child {
            display: inline-block;
            vertical-align: middle;
        }

        .advertNow span a {
            vertical-align: middle;
            color: white;
            font-size: 12px;
            padding: 0 5px;
        }

            .advertNow span a .iconfont {
                color: #fff;
                vertical-align: middle;
            }

/* premiumPlusInfo */
#premiumPlusInfo {
    padding: 20px;
    display: flex;
    align-items: center;
}
    #premiumPlusInfo .cont {
        padding: 0 20px;
        flex: 1;
    }

        #premiumPlusInfo .cont .infoHeadline {
            color: var(--color-secondary);
            font-weight: bold;
            font-size: 18px;
        }

        #premiumPlusInfo.bg_primary_gradient .cont .infoHeadline {
            color: #fff;
        }
        
        #premiumPlusInfo #premium-medal {
            height: 60px;
        }

        #premiumPlusInfo .cont .text {
            margin: 10px 0;
        }

#discount .star:before {
    content: '';
    position: absolute;
    background: transparent url(/grafiken/star_petrol.png) no-repeat;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*#region Slideshow*/
.swiper-lazy {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.swiper-lazy-preloader {
    width: 54px !important;
    height: 55px !important;
    margin-left: -26px !important;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border-radius: 50%;
    border-top-color: transparent
}

    .swiper-lazy-preloader:after {
        font-family: ehorsesfont;
        content: "K" !important;
        font-size: 65px;
        color: #c42026;
        animation: swiper-preloader-spin 1.5s infinite linear;
        display: inline-block !important;
        background: none !important;
        height: auto !important;
        width: auto !important;
    }

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper-slide .overlay {
    background-color: rgba(32,32,32,0.4);
    position: absolute;
    bottom: 0;
    color: #FFF;
    display: block;
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    box-sizing: border-box;
    text-decoration: none;
}

    .swiper-slide .overlay .textTeaser {
        transition: all .3s;
        overflow: hidden;
        height: 0;
        font-size: 12px;
    }

.swiper-slide .readMore {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    margin: 10px 0 0 0;
    display: inline-block;
    border-radius: 4px;
}

.swiper-slide:hover .overlay .textTeaser {
    height: 40px;
    padding: 10px 10px 0 10px;
}

img.fit, img.contain, img.orig {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

img.fit {
    object-fit: cover;
}

img.contain {
    object-fit: contain;
}

img.orig {
    object-fit: none;
}

div .navl, div .navr {
    position: absolute;
    top: 40%;
    padding: 5px;
    background-color: rgba(255,255,255,0.4);
    color: #4D4D4D;
    margin: auto auto;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 1;
}

    div .navl:hover, div .navr:hover {
        background-color: rgba(255,255,255,0.6);
    }

div .navl {
    left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

div .navr {
    right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.swiper-wrapper .gesuch .image {
    background: url('/grafiken/Gesuche_edogs.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.swiper-wrapper .gesuch .overlay {
    background: rgba(32,32,32,0.4);
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
    color: #fff;
    box-sizing: border-box;
    font-size: 16px;
}

.swiper-pagination-bullet-active {
    background: #FF9000 !important;
}

.swiper-container .swiper-pagination-bullet {
    margin: 0 5px;
}

.pnavl, .pnavr {
    font-size: 16px;
    position: relative;
    top: 1px;
    padding: 0 5px;
}
/*#endregion*/

.action .openDataHref, .action .FancyComplainDataHref {
    color: #4D4D4D;
    cursor: pointer;
}

    .openDataHref:hover, .action .FancyComplainDataHref:hover {
        color: #C42026;
    }

a.corner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #c42026;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    border-radius: 5px;
}

.trustpilot-widget {
    min-height: 130px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.opacity60 {
    opacity: 0.6;
}

/* desktop */
@media(min-width: 1088px) {
    .desktop-only {
        display: block !important;
    }

    /* detail pages action bar */
    #mobileActionBar {
        display: none;
    }

    /* error pages*/
    #errorTxt div {
        padding: 25px;
    }

    /* social media */
    .wa {
        display: none;
    }

    /* datenschutz */
    #datenschutz {
        padding: 20px;
    }

        #datenschutz ol, #datenschutz ul {
            margin-bottom: 20px;
        }

        #datenschutz li {
            margin: 10px 0;
        }



    /* regtabs */
    .regWrapDropDown {
        display: none;
    }
}

/* tablet */
@media(min-width: 768px) and (max-width: 1087px) {
    .scrollBlocked {
        overflow: hidden !important;
    }

    .tablet-only {
        display: block !important;
    }

    .breadcrumb {
        display: none;
    }

    .box {
        margin-left: 10px;
        margin-right: 10px;
    }

    /* detail pages action bar */
    #mobileActionBar {
        background: #c42026;
        position: fixed;
        bottom: 0;
        z-index: 5;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        line-height: 40px;
        height: 40px;
    }

        #mobileActionBar a, #mobileActionBar span {
            flex: 1;
            color: #fff;
        }

    /* error pages */
    #errorTxt {
        position: relative;
    }

        #errorTxt div {
            top: 35% !important;
            font-size: 26px !important;
            left: 10px;
        }

        #errorTxt img {
            width: 100%;
            margin: 0;
        }

    .angularFrame {
        border-radius: 0px !important;
    }

    .contblock, .contblock.old {
        width: 100%;
    }

    .box.contblock {
        width: auto;
    }

    .tbox {
        margin: 0;
        border-radius: 0;
        border: 0;
        border-bottom: 10px solid #F3F3F3;
    }

        .tbox::after {
            display: block;
            width: 100%;
            content: ' ';
            background-color: #CDCDCD;
            height: 1px;
            position: absolute;
            left: 0;
            bottom: 0px;
        }
}

/* mobile */
@media(max-width:767px) {

    .scrollBlocked {
        overflow: hidden !important;
    }

    .contblock, .contblock.old {
        width: 100%;
    }

    .box {
        border: none;
        border-radius: 0;
        margin: 0;
    }

    .mbox {
        margin: 0;
        border-radius: 0;
        border: 0;
        border-bottom: 10px solid #F3F3F3;
        position: relative;
    }

        .mbox::after {
            display: block;
            width: 100%;
            content: ' ';
            background-color: #CDCDCD;
            height: 1px;
            position: absolute;
            left: 0;
            bottom: 0px;
        }

    .box.contblock {
        width: auto;
    }

    .mobile-only {
        display: block !important;
    }

    .tooltip.active .box {
        border: 1px solid #cdcdcd;
        border-bottom: none;
    }

    .breadcrumb {
        display: none;
    }

    /* detail pages action bar */
    #mobileActionBar {
        background: #c42026;
        position: fixed;
        bottom: 0;
        z-index: 5;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        line-height: 40px;
        height: 40px;
    }

        #mobileActionBar a, #mobileActionBar span {
            flex: 1;
            color: #fff;
        }

    /* error pages */
    #errorTxt {
        position: relative;
    }

        #errorTxt div {
            top: 30% !important;
            font-size: 5vw !important;
            left: 10px;
        }

        #errorTxt img {
            width: 100%;
            margin: 0;
        }

    .tooltip > .iconfont, .tooltip .content > .iconfont {
        font-size: 18px;
        position: relative;
        top: -1px;
    }

    .angularFrame {
        border-radius: 0px !important;
    }

    /* premiumPlus Infos */
    #premiumPlusInfo {
        display: block;
        text-align: center;
        margin-top: 40px;
        padding: 10px;
        padding-bottom: 30px;
    }

        #premiumPlusInfo .ribbon {
            position: absolute;
            top: -30px;
            left: 0;
            text-align: center;
            width: 100%;
        }

        #premiumPlusInfo .cont {
            padding: 20px 20px 0 20px;
        }
}

@media(max-width:450px) {
    .verify-hint {
        max-width: 200px;
        padding: 20px !important;
    }

        .verify-hint .bg_grey {
            background-color: #fff !important;
            line-height: 14px;
            padding: 0;
        }

            .verify-hint .bg_grey .btnPetrol {
                width: 100%;
                float: none !important;
                font-size: 14px;
            }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /*keine ahnung ob das raus kann, evtl etwas externes*/
    #wc-target {
        height: 340px;
    }
}