
.va-button-standard {
    background: rgba(169, 137, 112, 0);
    border: 1px solid rgb(240, 201, 139);
    color: #1c1c1c;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1.2em;
    min-width: 180px;
    padding: 12px 20px;
    position: relative;
    text-align: center;
    transition: all .3s ease;

    text-decoration: none;
}
.va-button-standard::before {
    top: 2px;
    left: -4px;
    right: -4px;
    bottom: 2px;
    border: 1px solid rgba(240, 201, 139, .7);
	/** border: 1px solid #f0c98b; */
}
.va-button-standard::before, 
.va-button-standard::after {
    content: '';
    position: absolute;
}
.va-button-standard::after {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0;
    height: 100%;
}

.va-button-standard:hover,
.va-button-standard:hover::before,
.va-button-standard:hover::after {
    background: rgba(240, 201, 139, 0.3);
    text-decoration: none;
}

.va-button-standard::after {
	background: rgba(240, 201, 139, 0.3);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
}

/** Button - gold **/
.va-button-gold {
    background: rgba(169, 137, 112, 0);
    border: 1px solid rgb(240, 201, 139);
    color: #1c1c1c !important;
}
.va-button-gold::before {
    border: 1px solid rgba(240, 201, 139, .7);
}

.va-button-gold:hover,
.va-button-gold:hover::before,
.va-button-gold:hover::after {
    background: rgba(240, 201, 139, 0.3);
}

.va-button-gold::after {
	background: rgba(240, 201, 139, 0.3);
}


/** Button - light **/
.va-button-light,
.section-background-color-alt .va-button-standard {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgb(255, 255, 255);
    color: #ffffff !important;
}
.va-button-light::before,
.section-background-color-alt .va-button-standard::before {
    border: 1px solid rgba(255, 255, 255, .7);
}

.va-button-light:hover,
.va-button-light:hover::before,
.va-button-light:hover::after,
.section-background-color-alt .va-button-standard:hover,
.section-background-color-alt .va-button-standard:hover::before,
.section-background-color-alt .va-button-standard:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.va-button-light::after,
.section-background-color-alt .va-button-standard::after {
	background: rgba(0, 0, 0, 0.3);
}