.followers-pg {
    .white-wrap {
        flex-direction: column;
        border-radius: 3px;

        .cover-post {
            height: 311px;
            width: 100%;
            flex: 0 0 100%;
            object-fit: contain;
            overflow: hidden;
            position: relative;

            &>img {
                width: 100%;
            }

            &>label {
                position: absolute;
                width: auto;
                height: auto;
                object-fit: contain;
                bottom: 12px;
                right: 12px;
                z-index: 9;
                background: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 5px;
                padding: 10px 6px;

                input {
                    display: none;
                }

                label {
                    cursor: pointer;
                    font-size: 12px;
                    font-weight: bold;
                    color: $text-primary;
                }
            }
        }

        .user-details {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .user-left {
                display: flex;

                .editprofile {
                    position: relative;

                    #editUserav {
                        display: none;

                        &+label {
                            width: 24px;
                            height: 24px;
                            border-radius: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            position: absolute;
                            top: -60px;
                            background: #fff;
                            right: 0px;


                            img {
                                width: 12px;
                                height: 12px;
                                object-fit: contain;
                                cursor: pointer;
                            }
                        }
                    }
                }

                figure {
                    width: 145px;
                    height: 145px;
                    display: inline-block;
                    margin: -50px 10px 20px 30px;
                    position: relative;

                    img {
                        width: 100%;
                    }
                }

                .userDetails {
                    h5 {
                        font-size: $f17;
                        color: $text-primary;
                        margin-bottom: 5px;
                        margin-top: 10px;
                    }

                    ul {
                        list-style-type: none;
                        padding: 0;
                        margin: 0;

                        li {
                            font-size: $f12;
                            // font-weight: bold;
                            color: $text-color-sec;
                        }
                    }
                }
            }

            .user-right {
                .btn-primary {
                    margin: 0px 8px;

                    &:last-child {
                        margin-right: 30px;
                    }
                }
            }
        }

        .skills {
            ul {
                li {
                    display: inline-block;
                    margin-bottom: 20px;

                    &>span {
                        &:first-child {
                            min-width: 100px;
                            display: inline-block;
                        }

                        &>span {
                            background-color: rgba(208, 200, 221, 0.5);
                            padding: 7px 15px;
                            border-radius: 25px;
                            color: $text-primary;
                            font-weight: bold;
                        }
                    }
                }
            }
        }

        .cardwrap {
            border: 1px solid rgba($color: #000000, $alpha: 0.11);
            box-shadow: 0px 4px 4px 0px rgba($color: #000000, $alpha: 0.04);

            .card-header {
                padding: 16px 30px;
                border-bottom: 1px solid rgba($color: #000000, $alpha: 0.11);
                // box-shadow: 0px 4px 4px 0px rgba($color: #000000, $alpha: 0.04);

                h5 {
                    margin: 0;
                    text-transform: uppercase;
                    font-size: $f16;
                    color: $text-primary;
                }
            }

            .card-body {
                padding: 16px 30px 16px;

                h6 {
                    font-size: $f14;
                    font-weight: bold;
                    margin: 0;
                }

                p {
                    font-size: $f13;
                }

                ul {
                    padding: 20px 0;
                    margin: 0;
                    border-top: 1px solid rgba($color: #96A5C4, $alpha: 0.11);

                    &:first-child {
                        border: none;
                    }

                    &:last-child {
                        border-bottom: 1px solid rgba($color: #96A5C4, $alpha: 0.11);
                    }

                    &.per-detail {
                        list-style-type: none;
                        display: flex;
                        flex-wrap: wrap;

                        &>li {
                            flex: 1;
                            display: flex;
                            justify-content: space-between;
                            margin-right: 40px;

                            span {
                                font-size: $f12;
                                flex-basis: 50%;
                                text-align: left;

                                &:first-child {
                                    font-weight: bold;
                                }
                            }
                        }
                    }
                }

                .skills {
                    ul {
                        display: flex;

                        li {
                            margin: 0;
                            flex-basis: 47%;
                            text-align: left;
                            display: flex;
                            margin-right: 40px;

                            span {
                                font-size: $f12;
                                font-weight: bold;
                                flex-basis: 50%;
                                text-align: left;

                                &.badge {
                                    font-size: $f11;
                                }
                            }
                        }
                    }
                }

                .edu-card {
                    display: flex;
                    padding: 20px 0px;
                    border-top: 1px solid rgba($color: #96A5C4, $alpha: 0.11);

                    &:first-child {
                        border: none;
                    }

                    &>span {
                        background: #D0C8DD;
                        border-radius: 5px;
                        display: flex;
                        width: 65px;
                        height: 65px;
                        align-items: center;
                        justify-content: center;
                        text-transform: uppercase;
                        font-size: $f13;
                        color: $text-primary;
                        font-weight: bold;
                    }

                    .edu-details {
                        margin-left: 20px;

                        &>* {
                            display: block;
                            font-size: $f13;
                        }

                        h6 {
                            color: $text-primary;
                            margin-bottom: 8px;
                        }

                        span {
                            margin-bottom: 8px;

                            b {
                                font-size: inherit;
                            }
                        }
                    }
                }

                .exp-card {
                    display: flex;
                    padding: 20px 0px;
                    border-top: 1px solid rgba($color: #96A5C4, $alpha: 0.11);
                    flex-direction: column;

                    &:first-child {
                        border: none;
                    }

                    .exp-details {
                        h6 {
                            font-size: $f13;
                            margin-bottom: 8px;
                        }

                        span {
                            display: block;
                            font-size: $f12;
                            color: $text-primary;
                            margin-bottom: 8px;
                            font-weight: bold;
                        }

                        p {
                            font-size: $f14;
                        }
                    }
                }
            }
        }
    }
}

.userProfile {

    .tabs {
        margin-top: 10px;

        ul {
            border-bottom: 1px solid $border-color;
            display: inline-block;
            width: 100%;
            padding: 0px;
            margin: 20px 0;
            list-style-type: none;

            li {
                float: left;
                margin-right: 10px;

                &.active {
                    a {
                        color: $text-primary;
                        border-bottom: 3px solid $text-primary;
                        font-weight: bold;
                    }
                }

                a {
                    color: #555;
                    text-decoration: none;
                    border-bottom: 3px solid transparent;
                    position: relative;
                    bottom: 10px;
                    padding-left: 10px;
                    padding-right: 10px;
                    font-size: $f14;
                    font-weight: 400;
                    padding-bottom: 8px;
                }
            }
        }

        .jobcards-list {
            margin-bottom: 10px !important;
        }

        .upwrapper {
            display: flex;
            justify-content: flex-start;
            align-items: center;

            .upleft {
                margin-right: 40px;
            }

            .per-detail {
                border-bottom: 0px solid;

                li {
                    &>span {
                        display: flex;
                        align-items: center;

                    }
                }
            }

            span.conic {
                margin-right: 10px;
                width: 35px;
                height: 35px;
                border: 1px solid rgba($color: #96A5C4, $alpha: 0.11);
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                flex-basis: auto !important;

                i {
                    color: #96A5C4;
                    font-size: 16px;
                }
            }
        }
    }
}

.stickyWrapper {
    height: 570px;
    overflow-y: auto;
    position: relative;

    .formArea {
        padding: 10px 15px;
        background-color: #fff;
    }

    .formActions {
        position: sticky;
        bottom: -1px;
        left: 0px;
        right: 0px;
        width: calc(100% - 40px);
        background-color: #fff;
        padding: 20px;
        text-align: center;

        button {
            margin-right: 15px;

            &:last-child {
                margin: 0;
            }
        }
    }

    .postWrap {
        background-color: #fff;
    }

    .edit-formWrapper {
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 25px;
        border: 1px solid rgba($color: #000000, $alpha: 0.11);
        box-shadow: 0px 4px 4px 0px rgba($color: #000000, $alpha: 0.04);
        background-color: rgba(34, 0, 99, 0.02);
    }

    .postWrap,
    .white-wrap {
        font-weight: normal;

        .input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;

            input,
            select {
                padding-right: 10px !important;
                width: calc(100% - 22px);
            }
        }

        .form-group {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;

            &>div {
                flex: 1;
            }

            input,
            select {
                padding-right: 10px !important;
                width: calc(100% - 22px);
                margin-bottom: 7px;
            }
        }
    }


}

.user-filterbox {
    max-width: 100%;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;

    form,
    .titleSec {
        width: calc(100% - 120px);
        padding: 10px 60px;
    }

    input[type=checkbox] {
        width: 18px;
        height: 18px;
        border-radius: 0px;
        margin-right: 8px;
        margin-bottom: 0 !important;

        &+input {
            pointer-events: none;
            // opacity: 0.7;
        }

        &:checked {
            &+input {
                pointer-events: all;
                opacity: 1;
            }
        }
    }

    input {
        margin-bottom: 0px !important;
    }

    .button-group {
        text-align: center;
        margin: 20px 0px;
    }

    .input-group.d-flex-jc-sp {
        gap: 20px;

        &>span {
            margin-bottom: 20px;
        }
    }



    .input-full {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        flex: 1;

        input[type=checkbox] {
            width: 18px;
            height: 18px;
            border-radius: 0px;
            margin-right: 8px;

            &+label {
                pointer-events: none;
                // opacity: 0.7;
                display: flex;
                flex: 1;
                align-items: center;

                .switch {
                    position: relative;
                    display: inline-block;
                    width: calc(45px + 16px);
                    height: 22px;
                    margin-left: 8px;
                    margin-right: 8px;
                }

                .switch input {
                    width: 0;
                    height: 0;
                }

                &>input {
                    margin-bottom: 0 !important;
                    margin-right: 0px;
                }

                &>label+span {
                    margin-right: 10px;
                }
            }

            &:checked {
                &+label {
                    pointer-events: all;
                    opacity: 1;
                }
            }
        }

    }

    .input-half {
        display: flex;
        flex: 1;
        align-items: center;
        margin-bottom: 20px;
        flex: 0 0 49%;

        &>label {
            display: flex;

        }

        input[type=checkbox] {
            width: 18px;
            height: 18px;
            border-radius: 0px;
            margin-right: 8px;

            &+label {
                pointer-events: none;
                // opacity: 0.7;
                display: flex;
                flex: 1;
                align-items: center;

                .switch {
                    position: relative;
                    display: inline-block;
                    width: calc(45px + 16px);
                    height: 22px;
                    margin-left: 8px;
                    margin-right: 8px;
                }

                .switch input {
                    width: 0;
                    height: 0;
                }

                &>input {
                    margin-bottom: 0 !important;
                    margin-right: 0px;
                }

                &>label+span {
                    margin-right: 10px;
                }
            }

            &:checked {
                &+label {
                    pointer-events: all;
                    opacity: 1;
                }
            }
        }
    }

   
}

.videoWrapper{
    display: flex;
    justify-content: flex-start;
    flex: auto !important;
    input{
        width: auto !important;
    }
    video{
        width: 400px;
    }
}

.selfReport-wrap {
    display: none;

    &.open {
        display: flex;
    }
}

 .dsort-by-wrap {
        position: relative;
        &.filterbySR{
            margin-right: 15px;
        }

        &>span {
            color: #9DA6B7;
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
        }

        .drop-head {
            background-color: $white;
            border: none;
            border-radius: 4px;
            padding: 8px 15px;
            color: $text-black;

            &>span {
                color: #9DA6B7;
            }

            i {
                margin-left: 10px;
            }
        }

        .dropdown_wrap {
            position: absolute;
            width: 150px;
            background: white;
            right: 20px;
            top: 40px;
            box-shadow: 0px 3px 19px 0px #AFB1B4;
            display: none;
            z-index: 9;

            .text-right {
                margin: 10px 15px 15px;
            }

            .btn-primary {
                font-size: 10px;
                padding: 7px 12px;
                height: auto;
            }

            &.show {
                display: block;
            }

            ul {
                display: inline-block;
                width: 100%;
                padding: 0;
                margin-bottom: 0;
                margin-top: 0;

                li {
                    display: block;
                    width: 100%;
                    color: $text-card;

                    input {
                        display: none;

                        &:checked {
                            &+label {
                                position: relative;
                                color: $white;
                                background-color: $primary;

                                &:after {
                                    content: "\f00c";
                                    font-family: $font-awesome;
                                    display: inline-block;
                                    font-size: 14px;
                                    font-weight: 900;
                                    position: absolute;
                                    right: 10px;
                                }
                            }
                        }
                    }

                    label {
                        background-color: transparent;
                        border: none;
                        width: calc(100% - 50px);
                        font-size: $f13;
                        color: $text-card;
                        padding: 10px 30px 10px 20px;
                        text-align: left;
                        display: inline-block;
                        cursor: pointer;

                        &:hover {
                            background-color: $text-primary;
                            color: $white;
                        }
                    }
                }
            }
        }

    }