.button,
.button a {
    display: inline-block;
    text-transform: uppercase;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
    position: relative;
    width: 170px;
    line-height: 1;
    letter-spacing: 0.8px;
}
.button:after {
    content: '\f138';
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -8px;
    font-size: 16px;
    pointer-events: none;
}
@media(max-width: 962px) {
    .button,
    .button a {
        width: 150px;
    }
}
.button--grey,
.footer-container a.button--grey  {
    color: #fff;
    background-color: #bfb8af;
}
.button--grey:hover,
.button--grey:focus,
.footer-container a.button--grey:hover,
.footer-container a.button--grey:focus {
    text-decoration: none;
    background-color: #8c857b;
}
.button--light-grey {
    background-color: #f2f1ef;
}
.button--light-grey:hover,
.button--light-grey:focus {
    text-decoration: none;
    background-color: #dedad5;
}
.button--green {
    color: #fff;
    background-color: #64a70b;
}
.button--green a {
    color: #fff;
}
.button--green a:hover,
.button--green a:focus {
    text-decoration: none;
}
.button--blue {
    background-color: #004c97;
    color: white;
}

.button--rounded,
.button--rounded:link,
.button--rounded:visited {
    background: #004c97;
    width: auto;
    border-radius: 25px;
    padding: 5px 14px;
    box-shadow: 3px 3px 5px #555;
    color: white;
    font-size: 11px;
}
.button--rounded:after {
    display: none;
}
.button--rounded:hover,
.button--rounded:focus {
    text-decoration: none;
}
.button--text-blue,
.button--text-blue a{
    color: #004c97;
}
.button--icon-green:after {
    color: #c4d600;
}
.button--icon-green:hover,
.button--icon-green:focus {
    color: #c4d600;
}

.button--pdf {
    width: 100% !important;
    padding: 0;
}
.button--pdf:after {
    content: '\f1c1';
    color: white;
}
.button--pdf a {
    background: #004c97;
    padding: 10px 45px 11px 12px !important;
    color: white;
    width: 100% !important;
    box-sizing: border-box;
}
.button--pdf a:hover,
.button--pdf a:focus {
    text-decoration: none;
    background-color: #e5e3df;
    color: #004c97;
}
.button--pdf:hover:after,
.button--pdf:focus:after {
    color: #004c97;
}


.link-button {
    display: inline-block;
    text-transform: uppercase;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 18px 10px 0;
    position: relative;
    line-height: 1;
    letter-spacing: 0.8px;
}
.link-button:after {
    content: '\f138';
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    font-size: 12px;
    right: 0;
}
.link-button--text-white,
a.link-button--text-white {
    color: white;
}
.link-button--text-green,
a.link-button--text-green {
    color: #64a70b;
}
.link-button--icon-green:after {
    color: #c4d600;
}
.link-button--icon-green:hover,
.link-button--icon-green:focus {
    color: #c4d600;
}
