

/**
    BUTTON
 */

button[disabled] {
    display: block;
    opacity: 0.5;
    background-color: rgba(0, 0, 0, 0.3) !important;
    pointer-events: none;
}

.pfi-button {
    width: inherit;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: none;
    border-radius: 3.75rem;
    border-color: transparent;
    border-width: 0;
    padding: 1.35ch 3ch 1.35ch 3ch;
    cursor: pointer;

    span {
        min-height: 24px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: #232225;
        text-transform: uppercase;
        font-size: 1rem;
        font-family: "Gotham", sans-serif;
        font-weight: 500;
        line-height: 1rem;
        white-space: nowrap;

        margin: 0 24px;
    }

    &.primary {
        background-color: var(--primary);
    }

    &.secondary {
        background-color: var(--secondary);
    }

    &.tertiary {
        background-color: var(--tertiary);
    }

    &.outline {
        background-color: transparent;
        border-style: none;
        outline: #fff solid 1px;
        outline-offset: -1px;

        span {
            color: #fff;
        }
    }

    /*@media (max-width: 575px) {*/
    @media (max-width: 991px) {
        width: 100%;
    }
}

/**
    INPUT
 */

input {
    flex: 1;
    width: inherit;
    height: 44px;

    box-shadow: none;

    background-color: #cbcbcb;

    border: none;
    border-radius: 22px;

    padding: 1rem 1rem 1rem 1rem;

    color: #232225;
    font-size: 1rem;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.125rem;
}

/**
    TEXTAREA
 */

textarea {
    flex: 1;
    width: inherit;

    box-shadow: none;

    background-color: #cbcbcb;

    border: none;
    border-radius: 22px;

    padding: 1rem 1rem 1rem 1rem;

    color: #232225;
    font-size: 1rem;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.125rem;
}
