@import '../../common';

.rs-panel-notice {
    line-height: 20px;
    background-color: #fdf8c0;
    color: #8a6822;
    padding: 10px;
    border-radius: 3px;
}
.rs-panel-notice-info {
    line-height: 20px;
    background-color: #53a8e0;
    padding: 10px;
    color: #fff;
    border-radius: 3px;
}
.rs-control-type-heading {
    .elementor-control-title {
        position: relative;
        padding: 2px 5px 2px 8px;
        &:after {
            position: absolute;
            content: '';
            height: 100%;
            top: 0;
            left: 0;
            width: 3px;
            background: $primaryColor;
        }
    }
}


/* Assgin RS Badge On Our Addon */
#elementor-panel-content-wrapper {
    #elementor-panel-elements-wrapper {
        .elementor-element-wrapper {
            .elementor-element {
                .rs-badge {
                    display:block;
                    padding-top: 20px;
                    padding-bottom: 5px;
                    position: relative;
                    &:after {
                        position: absolute;
                        top: 0;
                        left: 50%;
                        transform: translateX(-50%);
                        content: "RS";
                        font-size: 9px;
                        height: 18px;
                        font-weight: 600;
                        width: 20px;
                        border-radius: 4px;
                        justify-content: center;
                        text-align: center;
                        display: flex;
                        align-items: center;
                        background: $primaryColor;
                        color: #fff;
                        font-family: Roboto, sans-serif;
                    }
                }
            }
        }
    }
}