.elementor-widget-promo-code {
    --accent-color: var(--e-global-color-accent, #364151);
    --title-color: var(--e-global-color-primary, #364151);
    --text-color: var(--e-global-color-text, #0F172A);

    width: 100%;
    display: flex;
    justify-content: center;

    .coupon {
        background: white;
        display: flex;
        flex-direction: column;
        padding: 20px;
        max-width: 400px;
        position: relative;
        overflow: hidden;
        cursor: pointer;

        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
        transition: 500ms all;
        border-radius: 8px;
        width: 100%;

        &:hover {
            box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
        }
    }

    .coupon-top {
        display: flex;

        .left {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .left img {
            width: 100%;
            height: auto;
        }

        .divider {
            width: 1px;
            height: auto;
            margin: 0 15px;
            border-left: 2px dotted var(--accent-color);
        }

        .right {
            flex: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .title {
            margin: 0;
            color: var(--accent-color);
            font-weight: 700 !important;
            text-transform: uppercase;
            font-size: 18px !important;
        }

        .subtitle {
            margin: 0;
            font-weight: 800;
            height: auto;
            line-height: 30px;
            color: var(--accent-color);

            strong {
                font-size: 30px;
                font-weight: 800;
            }
        }

        .expiration {
            margin: 0;
            opacity: 0.8;
            line-height: 14px;
            font-size: 14px;
            color: var(--accent-color);
        }
    }

    .code-container {
        margin-top: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .code {
        flex: 1;
        background: #f5f5f5;
        padding: 8px 12px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 14px;
        line-height: normal;
    }

    .copy-btn {
        background: var(--accent-color);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 3px;
        cursor: pointer;
        font-size: 14px;
        line-height: normal;
    }

    @media (max-width: 1024px) {

        .coupon {
            max-width: 100% !important;
        }
    }
}