.exchange-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    position: absolute;
    top: 96px;
    left: 0;
    z-index: 10;
    background: $white;

    button {
        display: inline-block;
        width: 64px;
        height: 33px;
        line-height: 33px;
        font-size: $font_14;
        color: $white;
        background-color: $bg_ccc;
        border: none;
        -webkit-appearance: none;
        border-radius: 3px;

        &.active {
            background-color: $active;
        }
    }
}