.button {
    color: var(--wp--preset--color--br-blue-900);
    padding: 15px 24px 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -1.1%;
    width: fit-content;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid currentColor;
    padding-left: 12px;
    color: inherit;
}

.button__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* FILL BUTTON STYLES */
.button--fill-blue {
    background-color: var(--wp--preset--color--br-blue-900);
    color: var(--wp--preset--color--white);
}

.button--fill-blue:hover {
    background-color: var(--wp--preset--color--br-blue-800);
    color: var(--wp--preset--color--br-orange-100);
}

.button--fill-white {
    background-color: var(--wp--preset--color--white);
}

.button--fill-sand:hover {
    background-color: var(--wp--preset--color--ac-salmon-100);
}

.button--fill-salmon {
    background-color: var(--wp--preset--color--ac-salmon-100);
}

.button--fill-salmon:hover {
    background-color: var(--wp--preset--color--nt-sand-100);
}

.button--fill-orange {
    background-color: var(--wp--preset--color--br-orange-100);
}

.button--fill-orange:hover {
    background-color: var(--wp--preset--color--br-orange-200);
}


/* OUTLINE BUTTON STYLES */
.button--outline-white {
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--br-blue-900);
    border: 1px solid var(--wp--preset--color--br-blue-900);
}

.button--outline-white:hover {
    background-color: var(--wp--preset--color--br-salmon-100);
}

.button--outline-blue {
    background-color: transparent;
    color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--br-blue-900);
}

.button--outline-blue:hover {
    background-color: var(--wp--preset--color--ac-salmon-100);
    color: var(--wp--preset--color--br-blue-900);
}

/* TEXT ARROW BUTTON STYLES */
.button--text-arrow-orange {
    color: var(--wp--preset--color--br-orange-500);
    padding-left: 0;
    padding-right: 0;
}

.button--arrow {
    display: flex !important;
    justify-content: center;
}

.button--arrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../img/icons/arrow-right-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    border-left: 1px solid #fff;
    padding-left: 8px;
}

button.forminator-button-submit:hover {
    box-shadow: unset !important;
}


@media (max-width: 90rem) {}

@media (max-width: 64rem) {}

@media (max-width: 48rem) {
    .button {
        padding: 8px 8px 8px 16px;
        font-size: 0.938rem;
    }

    /* .button--arrow::after {
        width: 32px;
        height: 24px;
    }

    .button--download::after {
        width: 32px;
        height: 24px;
    }

    .button--fill-blue.button--arrow::after {
        width: 32px;
        height: 24px;
    } */
}