.teamup-chat__bubble-hidden {
    visibility: hidden;
}

.teamup-chat__content-chat--animation {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: chatdots 1s infinite ease-in-out alternate;
    margin-left: 20px;
}

@keyframes chatdots {
    0% {
        box-shadow: 20px 0 #bbb2, -20px 0 #bbb;
        background: #bbb2
    }
    33% {
        box-shadow: 20px 0 #bbb2, -20px 0 #bbb2;
        background: #bbb
    }
    66% {
        box-shadow: 20px 0 #bbb, -20px 0 #bbb2;
        background: #bbb2
    }
    100% {
        box-shadow: 20px 0 #bbb2, -20px 0 #bbb2;
        background: #bbb2
    }
}

/*
    -> Sortable list
 */
.teamup-timeline .card.idea-list-group-item {
    height: 100px;
    transition: box-shadow .1s ease-in-out;
    display: flex;
    justify-content: center;
}

.teamup-timeline__sortable-card {
    max-height: 100px;
    overflow: hidden;
    padding: 10px 10px;
}

.ideaGhost {
    box-shadow: 2px 2px 5px #00000070;
    scale: 1.05;
    transition: box-shadow .1s ease-in-out;
    opacity: .8;
}

.teamup-timeline .sortable-drag.card::before {
    display: none;
}

.teamup-timeline .card-header img.sortDrag {
    object-fit: contain;
    border-radius: unset;
}

/**Image Quiz too wide for full screen**/
.form-radio-img-wrapper {
    max-width: 500px;
    margin: auto;
}

/**Result for value conflicts**/
.teamup-value-conflicts-evaluation .btn--with-counter{
    font-size: 18px;
}

span.btn.btn-secondary.btn--with-counter {
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: baseline;
    font-size: 14px;
    width: 100%;
    margin: 15px 0;
    padding: 10px;
}

.counter-icon {
    width: 1.4375rem;
    height: 1.4375rem;
    display: inline-flex;
    justify-content: center;
    color: var(--teamup-turquoise);
    border-radius: 100%;
    border: 2px solid var(--teamup-blue);
    background-color: var(--teamup-dark-blue);
    font-family: Roboto;
    font-weight: 500;
    font-size: 12px;
    margin-right: 8px;
}

#bubbleCounter {
    display: none;
    position: fixed;
    bottom: 6%;
    right: calc(50% - 170px);
    filter: drop-shadow(1px 1px 1px rgb(0, 0, 0));
    z-index: 1026;
}

#currentBubbleCount {
    background: linear-gradient(3200deg, var(--teamup-blue), var(--teamup-light-green));
    font-size: 34px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
}

#introOverlay {
    position: absolute;
    z-index: 9999;
    max-width: 390px;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

.teamup__intro-image {
    width: 100%;
    height: 250px;
    display: block;
    margin: auto;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2));
    --bs-card-border-radius: 0.375rem;
    border-radius: var(--bs-card-border-radius);
}
#introBackdrop{
    position: absolute;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background: white;
}
@media (min-width: 600px) {
    .teamup {
        max-width: 390px;
        margin: auto;
    }
}

.teamup__content-value-heading{
    font-size: 1.15rem;
    letter-spacing: 0.18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 1.25rem;
    color: var(--teamup-blue-2);
}

.teamup__header-taskname{
    letter-spacing: 0.28px;
    line-height: 1.25;
}

.teamup-title-wrapper{
    margin-left: 4rem;
    margin-right: 4rem;
}

.swiper-button-next {
    right: 0;
}

.teamup-chat__value{
    font-size: 1.15rem;
    letter-spacing: 0.18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: bold;
    color: var(--titleColor);
    display: block;
}

.teamup-chat--color-blue {
    --titleColor: var(--teamup-blue-3);
}

.card-body .section-separator {
    border-bottom-color: #EFEFEF;
}

.teamup__evaluation--swiper .swiper-slide{
    touch-action: pan-y;
}

/***
RANGE INPUT STYLE
***/

/*generated with Input range slider CSS style generator (version 20211225)
https://toughengineer.github.io/demo/slider-styler*/
input[type=range].form-range {
    height: 35px;
    -webkit-appearance: none;
}

/*progress support*/
input[type=range].form-range.slider-progress {
    --range: calc(var(--max) - var(--min));
    --ratio: calc((var(--value) - var(--min)) / var(--range));
    --sx: calc(0.5 * 35px + var(--ratio) * (100% - 35px));
}

input[type=range].form-range:focus {
    outline: none;
}

/*webkit*/
input[type=range].form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 18px;
    background: #002B6F;
    border: 1px solid #1EB4FF;
    box-shadow: 0 0 2px black;
    margin-top: calc(max((6px - 1px - 1px) * 0.5,0px) - max(35px * 0.5,1px));
}

input[type=range].form-range::-webkit-slider-runnable-track {
    height: 6px;
    border: 1px solid #E2E2E2;
    border-radius: 0.5em;
    background: #aeb7c6;
    box-shadow: none;
}

input[type=range].form-range.slider-progress::-webkit-slider-runnable-track {
    background: linear-gradient(#59FFD4,#59FFD4) 0/var(--sx) 100% no-repeat, #aeb7c6;
}

/*mozilla*/
input[type=range].form-range::-moz-range-thumb {
    width: max(calc(35px - 1px - 1px),0px);
    height: max(calc(35px - 1px - 1px),0px);
    border-radius: 18px;
    background: #002B6F;
    border: 1px solid #1EB4FF;
    box-shadow: 0 0 2px black;
}

input[type=range].form-range::-moz-range-track {
    height: max(calc(6px - 1px - 1px),0px);
    border: 1px solid #E2E2E2;
    border-radius: 0.5em;
    background: #aeb7c6;
    box-shadow: none;
}

input[type=range].form-range.slider-progress::-moz-range-track {
    background: linear-gradient(#59FFD4,#59FFD4) 0/var(--sx) 100% no-repeat, #aeb7c6;
}

/*ms*/
input[type=range].form-range::-ms-fill-upper {
    background: transparent;
    border-color: transparent;
}

input[type=range].form-range::-ms-fill-lower {
    background: transparent;
    border-color: transparent;
}

input[type=range].form-range::-ms-thumb {
    width: 35px;
    height: 35px;
    border-radius: 18px;
    background: #002B6F;
    border: 1px solid #1EB4FF;
    box-shadow: 0 0 2px black;
    margin-top: 0;
    box-sizing: border-box;
}

input[type=range].form-range::-ms-track {
    height: 6px;
    border-radius: 0.5em;
    background: #aeb7c6;
    border: 1px solid #E2E2E2;
    box-shadow: none;
    box-sizing: border-box;
}

input[type=range].form-range.slider-progress::-ms-fill-lower {
    height: max(calc(6px - 1px - 1px),0px);
    border-radius: 0.5em 0 0 0.5em;
    margin: -1px 0 -1px -1px;
    background: #59FFD4;
    border: 1px solid #E2E2E2;
    border-right-width: 0;
}

