.widget.position_dex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
    margin: var(--base-margin);
    width: calc(10 * var(--base-width) - 2 * var(--base-margin));
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.75) 0%, rgba(113, 113, 113, 0.9) 100%);
    color: #FFF;
    position: relative;
}

.widget.position_dex > .caption {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
}

.widget.position_dex > .caption > .title {
    font-size: 1.2em;
}

.widget.position_dex > .caption > .subtitle {
    font-size: 0.6em;
}

.widget.position_dex > .pointer {
    position: absolute;
    top: -3px;
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    padding: 0;
    margin: 0;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    transform: rotate(45deg);
}

.widget.position_dex > .position {
    width: 140px;
    flex: none;
}

.widget.position_dex > .ts {
    position: absolute;
    top: 68px;
    left: calc(50% - 60px);
    font-size: 9px;
    width: 120px;
    text-align: center;
}