button.wcwct-toggle-button,
.wcwct-toggle-button {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #1f1a17 !important;
    background-color: #1f1a17 !important;
    border-color: #1f1a17 !important;
    color: var(--wd-alternative-color, #fff) !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin: 0 0 16px;
    text-decoration: none;
}

button.wcwct-toggle-button:hover,
.wcwct-toggle-button:hover,
button.wcwct-toggle-button:focus,
.wcwct-toggle-button:focus,
button.wcwct-toggle-button:active,
.wcwct-toggle-button:active {
    opacity: 0.92;
    background: #1f1a17 !important;
    background-color: #1f1a17 !important;
    border-color: #1f1a17 !important;
    color: var(--wd-alternative-color, #fff) !important;
}

.wcwct-toggle-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.wcwct-toggle-button.is-below {
    margin: 16px 0 0;
}

.wcwct-target {
    transition: opacity 0.25s ease, max-height 0.3s ease;
}

.wcwct-target.wcwct-ready {
    visibility: visible !important;
}

.wcwct-target.wcwct-hidden-none {
    display: none !important;
}

.wcwct-target.wcwct-hidden-fade {
    display: none !important;
    opacity: 0;
}

.wcwct-target.wcwct-hidden-slide {
    overflow: hidden;
    max-height: 0 !important;
    opacity: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none;
}

.wcwct-target.wcwct-visible-slide {
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
}

button.wcwct-toggle-button,
.wcwct-toggle-button {
    display: flex;
    justify-self: center;
}

@media (max-width: 768px) {
    button.wcwct-toggle-button,
    .wcwct-toggle-button {
        display: flex;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    button.wcwct-toggle-button.is-below,
    .wcwct-toggle-button.is-below {
        margin-left: auto;
        margin-right: auto;
    }
}
