.buttn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 7px 25px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 8px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}
.buttn:hover {
    text-decoration: none;
}

.buttn-red {
    background: #BC1A19;
    color: white;
}
.buttn-red:hover {
    background: #921110;
    color: white;
}

/* RED BUTTON */
.buttn-primary {
    /*background: #5CB1E7;*/
    background-color: #d40000;
    color: white;
    text-decoration: none;
}
.buttn-primary:hover {
    background: #288ac7;
    color: white;
    text-decoration: none;
}

/* GRAY BUTTON */
.buttn-second {
    background: #B4B4B4;
    color: white;
    text-decoration: none;
}
.buttn-second:hover {
    background: #9b9b9b;
    color: white;
    text-decoration: none;
}