.fancify-core-sp-widget-header-container {
    .fancify-core-sp-widget-title {
        //border-bottom: 1px solid rgba($black-color, 0.10);
        color: black;
        @include font-family-quicksand;
        @include font-size(28);
        @include font-weight(bold);
        font-style: normal;
        position: relative;

        @include for-small-phone {
            line-height: initial;
        }

        &:before {
            content: "";
            background-color: #6a11cb;
            width: 60px;
            height: 3px;
            box-shadow: 0px 3px 20px 0px #6a11cb;
            position: absolute;
            top: 50%;
            left: 0;
        }

        &:after {
            width: 0px !important;
        }
    }

    &.fancify-core-clear-style {
        .fancify-core-sp-widget-title {
            padding-left: 75px;
        }
    }

    &.fancify-core-modern-style {
        .fancify-core-sp-widget-title {
            padding: 0px 0px 0px 61px;
            margin-bottom: 55px;

            @include for-small-phone {
                padding: 0px 0px 0px 43px;
                margin-bottom: 45px;
            }

            &:before {
                width: 46px;
                height: 5px;
                border-radius: 10px;
                box-shadow: 0 3px 10px rgba($default-green, 0.45);
                background-image: linear-gradient(87deg, $default-green, $default-light-green);

                @include for-small-phone {
                    width: 30px;
                }
            }
        }
    }

    &.fancify-core-modern-2-style {
        position: relative;
        text-align: center;
        margin-bottom: 40px;
        z-index: 1;

        .fancify-core-sp-widget-title {
            @include font-family-quicksand;
            @include font-size(20);
            @include font-weight(semi-bold);
            position: unset;
            background: linear-gradient(73deg, $default-green, $default-light-green);
            display: inline;
            border-radius: 61px;
            color: $white-color;
            padding: 13px 30px;
            z-index: 1;
            text-transform: uppercase;

            &::before {
                content: "";
                background-color: $default-dark-blue;
                width: 100%;
                height: 2px;
                position: absolute;
                top: 50%;
                left: 0px;
                right: 0px;
                z-index: -1;
                box-shadow: unset;
            }
        }
    }

    &.fancify-core-modern-linear-style {
        position: relative;
        text-align: center;
        margin-bottom: 40px;
        z-index: 1;
        padding-bottom: 11px;

        .fancify-core-sp-widget-title {
            @include font-family-quicksand;
            @include font-size(24);
            @include font-weight(bold);
            position: unset;
            display: inline;
            border-radius: 61px;
            color: $default-dark-blue;
            padding: 0px;
            z-index: 1;
            text-transform: uppercase;

            &::before {
                content: "";
                background: rgb(196, 196, 196);
                background: linear-gradient(90deg, rgba(196, 196, 196, 1) 36%, $default-green 36%, $default-light-green 64%, rgba(196, 196, 196, 1) 64%);
                width: 100%;
                height: 3px;
                position: absolute;
                top: 100%;
                left: 0px;
                right: 0px;
                z-index: -1;
                box-shadow: unset;
            }
        }
    }
}