.c-button--primary {
    background: #F4B79E;
    border-radius: 0 ;
    transition: background .2s ease;
    color:#404040;
}

.c-button--primary:hover{
    background:  #ffd5c4;
    transition: background .2s ease;
    color:#666;
}
.c-button--danger {
    background: #ddd;
    border-radius: 0 ;
    color: #333;
    transition: background .2s ease;
}

.c-button--danger:hover {
    background: #999;
    color: #333;
    transition: background .2s ease;
}