a.custom-header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 3rem;
    padding: 0 1rem;
    background-color: var(--default-website-color);
    color: white;
    font-weight: bold;
    white-space: nowrap;
}

a.custom-header-button.border--white {
    border: 1px solid white;
}

a.custom-header-button span {
    text-align: center;
    margin-right: 10px;
}


.nav-item--custom-button.left {
    margin-right: 1rem;
}

.nav-item--custom-button.right {
    margin-left: 1rem;
}

@media (max-width: 991px) {
    .nav-item--custom-button.left {
        margin-right: 0;
    }

    .nav-item--custom-button.right {
        margin-left: 0;
    }
}