.buttons button{
    border: none;
    background: transparent;
    outline: none;
    
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    cursor: pointer;
    transition: .3s;
    background: linear-gradient(45deg, #13C1EC 0%, #2E82E4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 18px;
    font-weight: 500;
    width: 100%;
    white-space: nowrap;
}

.buttons{
    display: flex;
    background: #f8f8f8;
    border-radius: 18px;
    width: 100%;
    padding: 2px;
    box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.05);
    height:28px
}

.buttons button.active--chps, .buttons button.active--chbr{
    background: #ffffff;
    color: #254E5F;
    transition: .3s;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: #254E5F;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1), inset 0px 1px 4px rgba(255, 255, 255, 0.3), inset 0px -1px 4px rgba(248, 248, 248, 0.3);
}

@media (max-width: 768px) {
    .buttons, .buttons button {
        width: 100%;
    }
}