.contacts-categories {
    display: flex;
    background-color: #fff;
    margin-bottom: 30px;
}

.contacts-categories__btn {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #3E3E3F;
    margin-right: 30px;
    background-color: transparent;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contacts-categories__btn.active {
    font-weight: 900;
    border-bottom: 1px solid #3E3E3F;
}

.contacts-categories__btn:hover {
    font-weight: 900;
    border-bottom: 1px solid #3E3E3F;
}

.contacts__store.store-contacts {
    display: none;
}

.contacts__store.store-contacts.active {
    display: block;
}

.list-store-contacts__column_full {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc((100% - 30px ));
    flex: 0 0 calc((100% - 30px ));
    background-color: #eeeeee;
    border-radius: 10px;
    padding: 25px;
}

@media only screen and (max-width: 576px){
    .contacts-categories__btn {
        font-weight: 500;
        font-size: 14px;
    }
}