/* Temporary YCP Checkout button experiment in the cart sidebar. */
.ycp-checkout-button {
    margin-top: 12px;
}

.ycp-checkout-button__button {
    align-items: center;
    background: #fff;
    border: 1px solid #202e35;
    border-radius: 6px;
    color: #202e35;
    cursor: pointer;
    display: flex;
    font: 600 16px/1.2 Circe, Arial, sans-serif;
    justify-content: center;
    min-height: 52px;
    padding: 10px 16px;
    transition: background-color 120ms ease-out, color 120ms ease-out, transform 120ms ease-out;
    width: 100%;
}

.ycp-checkout-button__button:hover {
    background: #202e35;
    color: #fff;
}

.ycp-checkout-button__button:active {
    transform: scale(0.96);
}

.ycp-checkout-button__button:focus-visible {
    outline: 3px solid rgba(93, 170, 65, .45);
    outline-offset: 2px;
}

.ycp-checkout-button__hint,
.ycp-checkout-button__error {
    display: block;
    font: 400 13px/1.35 Circe, Arial, sans-serif;
    margin-top: 7px;
    text-align: center;
}

.ycp-checkout-button__button[hidden],
.ycp-checkout-button__hint[hidden] {
    display: none !important;
}

.ycp-checkout-button__hint {
    color: #5c647a;
}

.ycp-checkout-button__error {
    color: #b42318;
}

.ycp-checkout-button__error[hidden] {
    display: none;
}
