.wpfnl-order-bump__template-style7 {
    margin-bottom: 20px;
    position: relative;

    .template-preview-wrapper {
        padding: 15px;
        background: #5a26d1;
        border-radius: 10px;

        .template-content-wrapper {
            padding-right: 15px;
            width: calc(100% - 50px);
        }

        .template-content {
            display: flex;
            flex-flow: row wrap;
            align-items: flex-start;
            justify-content: space-between;

            .template-title {
                margin-bottom: 5px;
                color: #fff;
                font-size: 18px;
                font-weight: 600;
            }
            .description li,
            .description span,
            .description p,
            .description {
                font-size: 16px;
                color: #fff;
                line-height: 1.5;
                font-weight: 400;
                margin: 0;
            }

            .wpfnl-checkbox {
                label {
                    padding: 0;
                    width: 50px;
                    height: 50px;
                    background: #fff;
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    &:after,
                    &:before {
                        display: none;
                    }

                    svg {
                        transition: all 0.3s ease;

                        path {
                            stroke: #fff;
                        }
                    }
                }

                input[type="checkbox"]:checked + label svg {
                    transform: rotate(45deg);
                }
            }

        }
    }
}

//-----RTL style------
body.rtl.et_divi_builder #et_builder_outer_content,
body.rtl {
    .wpfnl-order-bump__template-style7 .template-preview-wrapper .template-content-wrapper {
        padding-right: 0;
        padding-left: 15px;
    }
    
}