/**
 * @file
 * Styles for VakantieInAgde buttons.
 */

.button {
    /*
    display: inline-block;
    padding: 0.25em 1.063em;
    cursor: pointer;
    text-align: center;
    color: #3a3a3a;
    border: 1px solid #e4e4e4;
    border-right-color: #d2d2d2;
    border-bottom-color: #b4b4b4;
    border-left-color: #d2d2d2;
    border-radius: 1em;
    background-color: #fff;
    background-image: -webkit-linear-gradient(top, #f3f3f3, #e8e8e8);
    background-image: linear-gradient(to bottom, #f3f3f3, #e8e8e8);
    font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
    font-size: 0.929em;
    font-weight: normal;
    line-height: normal;
    */
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 9px 24px 9px;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 1px solid #002e5b;
    background: #002e5b;
    color: #fff;
    margin-top: 15px;
    border-radius: .25rem;
}

.button:hover,
.button:active,
.button:focus {
    /*
    text-decoration: none;
    color: #5a5a5a;
    background: #dedede;*/
    background: #fff;
    color: #002e5b;
    text-decoration: none;
}

.button.is-disabled:hover,
.button.is-disabled:active,
.button.is-disabled:focus,
.button.is-disabled {
    cursor: default;
    color: #717171;
    border-color: #bbb;
    background: #ededed;
}
