.informationButtonLinks_container {
    padding: 20px 0;    
}

.buttonLinks {
    display: flex;
    gap: 1rem;
    flex-flow: row nowrap;    
}

.buttonLinks a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 12px 7px;
    gap: 10px;
    min-width: 148px;
    height: 34px;
    background: rgba(255, 255, 255, 0.17);
    /* Primary blue/Blue4 */
    border: 1px dashed #B6D8FF;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Noto Sans Hebrew';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height, or 21px */
    text-align: center;
    /* Additional/White */
    color: #FFFFFF;
}

.buttonLinks a:hover {
    color: var(--cbswhite);
    background: var(--blue7);
    transition: 200ms;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {

    .buttonLinks {
        flex-direction: column;
    }
}