<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.zuzu-coupons-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-block: 1.5em;

    .coupon-title {
        font-weight: bold;
    }

    .coupon-category {
        display: flex;
        flex-direction: column;
        gap: 0.4em;
    }

    .coupons-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4em;
    }
}

.scissor-coupon {
    display: inline-block;
    font-size: 13px;
    cursor: pointer;
    line-height: 1;
    border: 1px dashed #dfb5c5;
    padding: 2px;
}

.scissor-coupon:hover {
    background: #faebd7;
    border: 1px dashed #faebd7;
}

.scissor-coupon i,
.scissor-coupon code {
    line-height: 0;
    color: #e23173;
}

.scissor-coupon i.rhi-check,
.scissor-coupon i.rhi-check + code {
    color: #009688;
}

.scissor-coupon code {
    display: inline-block;
    margin: 0 1px;
    white-space: nowrap;
    font-weight: bold;
}

.coupons-list-container {
    margin-block: 1.2em;

    p {
        line-height: 1.5;
    }

    .coupons-list {
        line-height: 1.2;
        border: 1px dashed rgb(227 227 227);
        padding: 8px;
        font-size: small;

        p {
            margin-bottom: 0 !important;
        }
    }

    .coupons-list-title {
        cursor: pointer;
        font-size: medium;
        font-weight: bold;
        color: red;
        display: flex;
        align-items: center;
        gap: 0.3em;
    }

    button.edit-coupons-list {
        font-size: small;
        border: none;
        background: none;
        color: #006699;
        text-decoration: underline;
        cursor: pointer;
        padding: 0 5px;
    }

    aside {
        max-height: 140px;
        position: relative;
        overflow: hidden;
    }

    .read-more {
        text-align: center;
        margin-top: -9px;
        color: #333;
        font-weight: bold;
        cursor: pointer;
    }

    .read-more-hide {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        text-align: center;
        margin: 0;
        background-image: linear-gradient(to bottom, rgb(255 255 255 / 70%), white);
    }
}

[data-elementor-device-mode="mobile"] .coupons-list-container {
    text-align: center;
    margin-left: unset;
}</pre></body></html>