﻿.button {
    position: relative;
    background: transparent;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    text-decoration:none;
    padding: 20px 30px;
    cursor: pointer;
    display: inline-block;
    width: auto;
    -webkit-appearance: none;
    -webkit-transition: background 0.25s ease 0s, color 0.25s ease 0s;
    transition: background 0.25s ease 0s, color 0.25s ease 0s;
}

.btn-border {
    background-color: transparent !important;
    border: 2px solid #1B1B1B;
    color: #1B1B1B !important;
}

    .btn-border:hover {
        background-color: #1B1B1B !important;
        color: #FFFFFF !important;
    }




.btn-border-dark, .btn-border-dark:visited {
    font-family: 'Montserrat', sans-serif !important;
    display: inline-block !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 38px;
    letter-spacing: 1px;
    padding: 10px 30px !important;
    text-decoration: none;
    border: 2px solid #fff;
    margin: 10px 0;
    background-color: transparent;
    -webkit-transition: background 0.25s ease 0s, color 0.25s ease 0s;
    transition: background 0.25s ease 0s, color 0.25s ease 0s;
    color: #fff !important;
    text-align:center;
}
    .btn-border-dark:hover {
        background-color: #ffffff;
        color: #1B1B1B !important;
    }


.button-mini {
    font-size: 12px;
    display: inline-table;
    padding: 10px 14px;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    margin: 2px;
    background: #a29061 !important;
    transition: background .3s;
    cursor: pointer;
    font-weight: normal;
}

    .button-mini:hover {
        color: #fff !important;
        background: #000 !important;
    }


.button-mini-tag {
    font-size: 12px;
    display: inline-table;
    padding: 10px 14px;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    margin: 2px;
    background: #999 !important;
    transition: background .3s;
    cursor: pointer;
    font-weight: normal;
}

    .button-mini-tag:hover {
        color: #fff !important;
        background: #000 !important;
    }


.button-white {
    color: #a29061 !important;
    background-color: #fff !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

    .button-white:hover {
        color: #fff !important;
        background-color: #a29061 !important;
    }


.button-outline {
    color: #a29061 !important;
    background-color: #fff !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: 1px solid #a29061;
}

    .button-outline:hover {
        color: #fff !important;
        background-color: #1e92a5 !important
    }


.button-outline-inverted {
    color: #fff !important;
    background-color: #1e92a5 !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: 1px solid #a29061;
}

    .button-outline-inverted:hover {
        color: #a29061 !important;
        background-color: #000 !important;
    }