﻿.payment_method_wc-creative-kids > label img {
    width: auto !important;
    max-width: none !important;
}

/**
 * Voucher input form
 */

.ck-voucher-form:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1em;
    margin-bottom: 1em;
}

/* Red Pill */
.ck-voucher-id {
    display: inline-block;
    padding: 0.5em 0.75em;
    background: #de2b52;
    color: #fff;
    border-radius: 2em;
    font-size: 0.8em;
    margin-bottom: 1em;
}

.ck-voucher-form h6 {
    margin: 0 0 0.5em 0;
    font-size: 1em;
}

.ck-voucher-input {
    display: flex;
    gap: 0.5rem;
}

.ck-voucher-input:not(:last-child) {
    margin-bottom: 1rem;
}

.ck-voucher-input label,
.checkoutwc .ck-voucher-input label {
    margin-bottom: 0.5em;
    display: block;
}

.ck-voucher-input input {
    /*flex: 1;*/
    width: 100%;
    min-width: 0 !important;
    /*text-align: center;*/
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgb(220, 220, 220);
}

.ck-voucher-input input:focus {
    border-color: hsla(210, 96%, 45%, 50%);
    outline: none;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), 0 0 0 3px hsla(210, 96%, 45%, 25%), 0 1px 1px 0 rgba(0, 0, 0, 0.08);
}

/**
 * DOB Input
 */
.ck-dob-input {
    display: block;
    flex-direction: column;
    flex: 1;
}

/**
 * Clear button
 */
.ck-btn-clear-container {
    margin-top: -15px;
    display: none;
    justify-content: flex-end;
}

.ck-btn-clear-container.visible {
    display: flex;
}

.ck-clear-voucher {
    display: inline-flex;
    align-items: center;
    cursor: pointer;

    /* Size & Spacing */
    width: auto;
    padding: 4px 10px;
    margin: 2px 1%;

    /* Text */
    font-size: 1em;
    line-height: 1.2;

    /* Background & Border */
    background-color: #eee;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.ck-clear-voucher svg {
    margin-right: 5px;
    margin-top: -1px;
}

.ck-clear-voucher:hover {
    opacity: 0.8;
}

.ck-clear-voucher:active {
    opacity: 0.5;
}