﻿.button {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: 20px 30px;
    margin: 40px 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    border: 1px solid #fff;
    font-family: 'Raleway', sans-serif !important;

    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: background 0.25s ease 0s, color 0.25s ease 0s;
    transition: background 0.25s ease 0s, color 0.25s ease 0s;
}
    .button:hover {
        background-color: #000;
        color: #ffffff;
    }

.button-negative {
    background-color: transparent;
    color: #b20000;
    text-decoration: none;
    display: inline-block;
    padding: 20px 30px;
    margin: 40px 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    border: 1px solid #b20000;
    font-family: 'Raleway', sans-serif !important;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: background 0.25s ease 0s, color 0.25s ease 0s;
    transition: background 0.25s ease 0s, color 0.25s ease 0s;
}

    .button-negative:hover {
        background-color: #000;
        color: #ffffff;
    }



.btn-full {
    width:100%;
}
.btn-dist {
    width:calc( 100% - 10px);
    margin-right:10px;
}
