.pedicare-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1095;
    box-sizing: border-box;
    padding: 14px 20px;
    border-top: 1px solid rgb(0 0 0 / 14%);
    background: #fff;
    color: #222;
    box-shadow: 0 -5px 22px rgb(0 0 0 / 14%);
    line-height: 1.45;
}

.pedicare-consent *,
.pedicare-consent *::before,
.pedicare-consent *::after {
    box-sizing: border-box;
}

.pedicare-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.pedicare-consent__text {
    flex: 1 1 auto;
    min-width: 0;
}

.pedicare-consent__text > :first-child {
    margin-top: 0;
}

.pedicare-consent__text > :last-child {
    margin-bottom: 0;
}

.pedicare-consent__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pedicare-consent__button {
    appearance: none;
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid #1f5f99;
    border-radius: 5px;
    background: #fff;
    color: #174d7c;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.pedicare-consent__button:hover,
.pedicare-consent__button:focus-visible {
    background: #eef5fb;
}

.pedicare-consent__button:focus-visible,
.pedicare-consent__more:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 2px;
}

.pedicare-consent__more {
    padding: 8px 2px;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

@media (max-width: 760px) {
    .pedicare-consent {
        padding: 14px 14px 16px;
    }

    .pedicare-consent__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
    }

    .pedicare-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .pedicare-consent__button {
        width: 100%;
    }

    .pedicare-consent__more {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 420px) {
    .pedicare-consent__actions {
        grid-template-columns: 1fr;
    }

    .pedicare-consent__more {
        grid-column: auto;
    }
}
