.ticker {
    padding: 0 7% 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticker .description {
    font-size: 70%;
    line-height: 1.3;
}

.ticker .value {
    font-size: 150%;
}

.tippy-box {
    font-size: 70%;
    background-color: rgb(124, 124, 129);
}

.tippy-box[data-placement^='top'] > .tippy-arrow::before {
    border-top-color: rgb(124, 124, 129);
}
.tippy-box[data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: rgb(124, 124, 129);
}
.tippy-box[data-placement^='left'] > .tippy-arrow::before {
    border-left-color: rgb(124, 124, 129);
}
.tippy-box[data-placement^='right'] > .tippy-arrow::before {
    border-right-color: rgb(124, 124, 129);
}

@media (max-width: 1024px) {

    .navigation a.visible-mobile {
        background: rgb(223,213,190);
        color: rgb(30,67,83);
        margin-bottom: 4px;
    }

    .ticker .value {
        font-size: 120%;

    }

    .ticker .title {
        font-size: 100%;
    }
    .ticker {
        padding-left: 0;
    }
}