.btn-danger {
    background-color: rgb(111, 38, 61);
    background-image: none;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition: color 0.4s ease, background-color 0.4s ease;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #666;
    color: rgb(255, 255, 255);
}
