
/* =========================
   LINKE TALK BUBBLE
========================= */
.talk-bubble {
    width: auto !important;
}
.talk-bubble {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-self: flex-start !important;

    width: auto !important;
    max-width: max-content !important;

    position: relative;
	z-index: 99999;
    margin-top: -80px;

    background-color: #50bcbd !important;

    /* DEBUG (optional) */
    box-sizing: border-box;
}

/* Rahmen */
.border {
    border: 8px solid #c4e4e4;
}

/* Rundung */
.round {
    border-radius: 90px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
}

/* =========================
   Sprechblasen-Pfeil
========================= */

/* Außenrand */
.tri-right.border.btm-left-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 70px;
    bottom: -40px;
    border: 20px solid;
    border-color: #c4e4e4 transparent transparent #c4e4e4;
}

/* Innenfarbe */
.tri-right.btm-left-in:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 78px;
    bottom: -20px;
    border: 12px solid;
    border-color: #50bcbd transparent transparent #50bcbd;
}

/* =========================
   TEXT
========================= */

.talktext {
    display: inline-block;
    width: auto;
    padding: 1.5em 1.5em 1.5em 1.5em;
    text-align: center;
    line-height: 1.5em;
}

/* Titel */
.talktext h2 {
    margin: 0;
    padding: 0 20px;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: fit-content;
}


/* =========================
   SPRECHBLASEN-PFEIL
========================= */

/* äußerer Pfeil (Rahmenfarbe) */
.talk-bubble.talk-bubble-right.tri-right.border.btm-left-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 70px;
    left: auto;
    top: auto;
    bottom: -40px;
    border: 20px solid;
    border-color: #f0bcb6 transparent transparent #f0bcb6;
}


/* innerer Pfeil (Bubblefarbe) */
.talk-bubble.talk-bubble-right.tri-right.btm-left-in:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: 78px;
    left: auto;
    top: auto;
    bottom: -20px;
    border: 12px solid;
    border-color: #ee7768 transparent transparent #ee7768;
}


/* =========================
   TEXT
========================= */

.talk-bubble-right .talktext {
    display: inline-block;
    width: auto;
    padding: 2.5em 1.5em 2.5em 1.5em;
    text-align: center;
    line-height: 1.5em;
}
.talk-bubble-right .talktext h2 {
    margin: 0;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}
/* =========================
   RECHTE BUBBLE - OVERRIDE
========================= */

div.talk-bubble.talk-bubble-right {
    background-color: #ee7768 !important;
    border-color: #f0bcb6 !important;
}

/* Pfeil außen */
div.talk-bubble.talk-bubble-right.tri-right.border.btm-left-in::before {
    border-color: #f0bcb6 transparent transparent #f0bcb6 !important;
}

/* Pfeil innen */
div.talk-bubble.talk-bubble-right.tri-right.btm-left-in::after {
    border-color: #ee7768 transparent transparent #ee7768 !important;
}


/* =========================
   RECHTE TALK BUBBLE
========================= */
.parent-container{
    width:100%;
    display:flex !important;
    justify-content:flex-end !important;
}

.talk-bubble.talk-bubble-right {
    position:relative;
    display:block !important;
    width:max-content;
    margin:40px 40px -30px 0 !important;
    background-color: #ee7768;
    border: 8px solid #f0bcb6;
    border-radius: 90px;
    box-sizing: border-box;
}