.button {
    align-items: center;
    background: transparent;
    border: none;
    display: block;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1;
    text-transform: uppercase
}

@media(min-width:48em) {
    .button {
        display: inline-flex
    }
}

:lang(my) .button {
    font-size: .875rem
}

.button {
    color: #fff;
    cursor: pointer;
    justify-content: center;
    padding: 1rem 1.5rem
}

.button:focus-visible {
    box-shadow: 0 0 4px #0468b1;
    outline: 0
}

button:focus-visible {
    box-shadow: 0 0 4px #0468b1;
    outline: 0
}

.button.button-primary {
    background-color: #d12800
}

.button.button-primary:hover {
    background-color: #ee402d
}

.button.button-primary.button-arrow:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEgMSAxMCA4Ljk5OEwxIDE5IiBzdHJva2U9IiMyMzJFM0QiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==) no-repeat 0;
    content: "";
    height: 20px;
    margin-left: .75rem;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    width: 13px
}

.button.button-primary.button-arrow:hover:after {
    -webkit-transform: translate(70%);
    -moz-transform: translate(70%);
    -ms-transform: translate(70%);
    -o-transform: translate(70%);
    transition: translate(70%, 0)
}

.button.button-primary.button-arrow.disabled:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEgMSAxMCA4Ljk5OEwxIDE5IiBzdHJva2U9IiNFREVGRjAiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==) no-repeat 0;
    content: ""
}

.button.button-secondary {
    background-color: #006eb5
}

.button.button-secondary:hover {
    background-color: #4f95dd
}

.button.disabled {
    background-color: #d4d6d8;
    color: #edeff0;
    pointer-events: none
}

[dir=rtl] .button.button-primary.button-arrow:after {
    margin-left: 0;
    margin-right: .75rem;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transition: rotate(180deg)
}

[dir=rtl] .button.button-primary.button-arrow:hover:after {
    -webkit-transform: translate(-50%) rotate(180deg);
    -moz-transform: translate(-50%) rotate(180deg);
    -ms-transform: translate(-50%) rotate(180deg);
    -o-transform: translate(-50%) rotate(180deg);
    transition: translate(-50%, 0) rotate(180deg)
}