.button {
    position: relative;
    display: inline-block;
    padding: 7px 12px;
    margin: 0;
    width: auto;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    letter-spacing: 2px;
}

.button.fullbutton {
    width: 100%;
}

.button.fullbutton span {
    float: right;
}

.button:after {
    content: '';
    position: absolute;
    z-index: -1;
}

/** Colours **/

.button {
    background: none;
    border: 2px solid #A71E2E;
    color: #A71E2E !important;
}

.button:hover {
    background: #A71E2E;
    color: #FFF !important;
}

.button:active {
    top: 2px;
}


