
.tipbar {
    background-color: #f2f3f6;
}
.tipbar__wrapper {
    border-bottom: 1px solid #dadcde;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    overflow: scroll;
    -ms-overflow-style: none;
    padding: 0 1rem 16px;
    scrollbar-width: none;
}
.tipbar__wrapper::-webkit-scrollbar {
    display: none;
}
.tipbar__item {
    display: -ms-grid;
    display: grid;
    grid-gap: 0;
    -ms-grid-columns: 48px 0 -webkit-max-content;
    -ms-grid-columns: 48px 0 max-content;
    grid-template-columns: 48px -webkit-max-content;
    grid-template-columns: 48px max-content;
}
.tipbar__item:not(:last-child) {
    margin-right: 36px;
}
.tipbar__icon {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    margin-right: 1rem;
}
.tipbar__title {
    font-size: 14px;
    font-weight: 600;
    -ms-grid-row: 1;
    grid-row: 1;
    line-height: 20px;
    margin-bottom: 4px;
}
.tipbar__info,
.tipbar__title {
    -ms-grid-column: 2;
    grid-column: 2;
    max-width: 240px;
}
.tipbar__info {
    color: #97989b;
    font-size: 12px;
    font-weight: 400;
    -ms-grid-row: 2;
    grid-row: 2;
    line-height: 16px;
    margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
    .tipbar__wrapper {
        border-bottom: 1px solid #dadcde;
        -ms-flex-pack: center;
        justify-content: center;
        margin: -30px auto 30px;
        max-width: 1216px;
      
    }
    .tipbar__title {
        font-size: 16px;
        line-height: 24px;
    }
    .tipbar__info {
        font-size: 14px;
        line-height: 20px;
    }
}