Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7091 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

.overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
}

/* ========== login_register ========== */

.break-ellipsis {
    max-width: 15ch;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.user-account {
    border-left: 1px solid #dd3e2b;
    border-right: 1px solid #dd3e2b;
    box-sizing: border-box;
    position: relative;
    padding: 0 1rem;
}

/* =================== main-section ================= */

main {
    width: 100%;

    @media (min-width: 768px) {
        padding: 0 1rem;
    }

    @media (min-width: 1024px) {
        padding: 0 5%;
    }
}

.members-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.empty-section {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 50vmin;
    width: 100%;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--light-shadow);
    border: 1px solid var(--border-primary);

    .notification-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .notification-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.5rem;

            a,
            span {
                color: $font-color;
            }

            a {
                position: relative;

                &::before {
                    content: "";
                    width: 15px;
                    height: 15px;
                    border-radius: 100px;
                    background-color: var(--background-gray);
                    position: absolute;
                    top: 50%;
                    left: -1.2rem;
                    transform: translateY(-50%);
                }
            }
        }
    }
}

.full-width {
    float: left;
    width: 100%;
    background-color: #fff;
    margin-bottom: 20px;
}

/* ============= Suggestions ============ */

.sd-title {
    width: 100%;
    position: relative;
    display: grid;
    background-color: transparent;
    padding: 0 5px 20px;

    h3,
    a,
    label {
        color: $title-color;
    }

    h4 {
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }

    h3 {
        font-size: 1.1rem;
        font-weight: 700;
    }

    a,
    label {
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
    }

    i {
        color: $icons-color;
        font-size: 24px;
        position: absolute;
        right: 5px;
        top: 18px;
    }
}

.suggestion-usd {
    width: 100%;
    padding: 15px 20px;

    img {
        border-radius: 100px;
        background: #fff;
    }

    &>span {
        margin-top: 4px;
        position: relative;
        margin-left: 1rem;

        i {
            color: #b2b2b2;
            width: 25px;
            height: 25px;
            border-radius: 3px;
            cursor: pointer;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;

            &:hover {
                background-color: #0961bf !important;
                color: #fff;
                border-radius: 3px;
            }
        }
    }
}

.sgt-text {
    padding-left: 10px;

    h4 {
        color: $font-color;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 4px;
    }

    span {
        color: #686868;
        font-size: 14px;
    }
}

.icon-button {
    color: #b2b2b2;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: center;

    &:hover {
        background-color: #0961bf !important;
        color: #fff;
    }
}

/* =================== main-ws-sec ================== */

.main-ws-sec {
    width: 100%;
}

/* ================ posts-section ================== */

.posts-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.post-bar {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    border-radius: $border-radius;
    border-bottom: solid 1px $border-primary;
    border-top: solid 1px $border-primary;
    box-shadow: $light-shadow;
    background-color: $bg-color;
    gap: 0.5rem;
    box-shadow: $shadow;
}

.post_topbar {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    color: $subtitle-color;
}

.header-options {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.feed-options,
.comments-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0.5rem;
    z-index: 100;
    height: fit-content;
    min-width: 150px;
    padding: 0.5rem;
    background-color: $bg-color;
    border: 1px solid $border-primary;
    border-radius: $border-radius;
    border-start-end-radius: 0;
    box-shadow: $shadow;

    &.active {
        display: block;
    }

    .option-btn {
        cursor: pointer;
        color: $font-color;
        white-space: nowrap;
        transition: all 0.2s;
        width: 100%;

        &:hover {
            text-shadow: 0 0 1px $font-color;
        }
    }
}

.comments-options {
    top: 15px;
}

.usy-dt {
    display: flex;
    gap: 0.5rem;

    img {
        border-radius: 100px;
        background-color: #fff;
    }
}

.ed-opts {
    position: relative;

    &>a {
        color: #b2b2b2;
        font-size: 24px;
        position: relative;

        &:hover {
            color: #e44d3a;
        }
    }
}

.ed-options {
    position: absolute;
    top: 100%;
    right: 0;
    width: 130px;
    background-color: $bg-color;
    box-shadow: $light-shadow;
    padding: 20px;
    visibility: hidden;
    z-index: 5;

    &.active {
        visibility: visible;
    }

    li {
        width: 100%;
        margin-bottom: 15px;

        &:last-child {
            margin-bottom: 0;
        }

        a {
            color: #686868;
            font-size: 14px;
            font-weight: 600;
        }
    }
}

.usy-name {
    display: flex;
    flex-direction: column;
    justify-content: center;

    h3 {
        color: $subtitle-color;
        font-size: 18px;
        text-transform: capitalize;
        font-weight: 600;
    }

    span {
        color: $subtitle-color;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    img {
        margin-top: 4px;
        margin-right: 6px;
    }
}

.job_descp {
    width: 100%;
    display: grid;
    gap: 0.5rem;

    h3 {
        color: $subtitle-color;
        font-size: 16px;
        font-weight: 600;
    }

    &>p {
        color: $font-color;
        font-size: 15px;
        line-height: 24px;
    }

    &>video,
    &>img {
        width: 100%;
        max-height: 500px;
        border-radius: $border-radius;
        object-fit: cover;
        background-color: $white;
    }
}

.inmail_contacts {
    max-height: 80vh;
    display: grid;
    grid-template-rows: auto 1fr;
}

.reactions-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 10px;
    border-bottom: 1px solid #cdd2e1;

    li a,
    li button {
        color: $subtitle-color;
        font-size: 1rem;
    }

    @media (min-width: 768px) {
        justify-content: flex-start;
        gap: 1.5rem;

        li a,
        li button {
            font-size: 1rem;
        }
    }
}

.img-icon {
    height: 1rem;
    width: 1rem;

    &.lg {
        height: 1.5rem;
        width: 1.5rem;
    }

    &.options {
        height: 1.5rem;
        width: auto;
    }

    &.options-sm {
        height: 1rem;
        width: auto;
    }

    &.options-lg {
        height: 1.5rem;
        width: auto;
    }
}

.like-com {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 1rem;

    li {
        color: $font-color;

        a {
            color: $subtitle-color;

            &:hover,
            &.active {
                color: #e44d3a;
            }

            i {
                margin-right: 2px;
                font-size: 14px;
                position: relative;
                top: 2px;
            }
        }

        span {
            color: #ffffff;
            font-size: 13px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            border-radius: 30px;
            text-align: center;
            font-weight: 600;
            margin-left: -25px;
        }

        .com {
            position: relative;

            img {
                margin-right: 10px;
            }
        }
    }
}

.comment {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    padding-left: 10px;

    h3 {
        color: #000000;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    span {
        color: #b2b2b2;
        font-size: 14px;
        display: block;
        margin-bottom: 14px;
    }

    p {
        color: #686868;
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 20px;
    }

    &>a {
        display: inline-block;
        color: #b2b2b2;
        font-size: 14px;
        font-weight: 600;

        &.active,
        &:hover {
            color: #e44d3a;

            i {
                font-weight: 600;
                margin-right: 6px;
            }
        }
    }
}

.process-comm {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #b2b2b2;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #b2b2b2;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #b2b2b2;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #b2b2b2;
}

select {
    appearance: none;
    appearance: none;
}

/* ================= sign-in ================ */

.sign-in {
    background-color: #e75348;
}

.sign-in-page {
    width: 100%;
    padding: 2rem 1rem;

    .row {
        row-gap: 1rem;
    }

    @media (min-width: 768px) {
        padding: 2rem 0 0;
    }
}

.signin-popup {
    margin: 0 auto;
    position: relative;
}

.signin-popup:before {
    content: "";
    position: absolute;
    top: -16px;
    left: 56px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.signin-popup:after {
    content: "";
    position: absolute;
    top: -37px;
    left: 43px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.signin-pop {
    width: 100%;
    background-color: #fff;
    position: relative;
}

.signin-pop:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 1px;
    background-color: #f0f0f0;
}

.cmp-info {
    width: 100%;
    display: grid;
    place-items: center;
    height: 100%;

    .cm-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 100%;

        img {
            margin-bottom: 0.5rem;
            width: 100%;
            object-fit: scale-down;
        }
    }

    @media (min-width: 721px) {
        .cm-logo {
            padding: 0 3rem;
        }
    }
}

/* =============== login-sec ============= */

.login-sec,
.sign_in_sec,
.sign_in_sec form {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}


.login-sec {
    width: 100%;

    @media (min-width: 768px) {
        padding: 0 3rem;
    }
}

.sign-control {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;

    li {
        display: inline-block;

        a {
            font-size: 14px;
            padding: 7px 10px;
            background-color: $button-bg-tertiary;
        }
    }
}

.sign_in_sec {
    width: 100%;
    display: none;

    &.current {
        display: flex;
    }

    h3 {
        font-size: 18px;
        font-weight: 600;
        position: relative;
        width: fit-content;
        padding-bottom: 0.5rem;

        &:before {
            content: "";
            position: absolute;
            background-color: #0961bf;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
        }
    }

    form {
        width: 100%;

        input,
        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        select:-webkit-autofill,
        select {
            box-shadow: 0 0 0px 1000px $bg-color inset;
            height: 40px;
            color: $font-color;
            background-color: $bg-color !important;
            border: 1px solid $border-primary;
            font-size: 14px;
            padding: 0 15px 0 40px;
            width: 100%;
        }

        select {
            line-height: 40px;
            height: 40px;
        }

        button {
            color: $button-text-color-secondary;
            border: 1px solid $border-primary;
            font-size: 16px;
            background-color: $button-bg-secondary;
            padding: 12px 27px;
            font-weight: 500;
            cursor: pointer;

            &:disabled {
                background-color: #dddddd;
                color: #a3a1a1;
            }
        }
    }
}

.sign_in_sec_button {
    color: #ffffff;
    font-size: 16px;
    background-color: #66a7dd;
    padding: 12px 27px;
    border: 0;
    font-weight: 500;
    cursor: pointer;
}

/* ============= sign_in_sec ============= */

.sn-field {
    width: 100%;
    position: relative;

    &>i {
        position: absolute;
        top: 50%;
        left: 15px;
        color: #666666;
        font-size: 16px;
        transform: translateY(-50%);
    }

    &>span {
        position: absolute;
        top: 50%;
        right: 15px;
        font-weight: 700;
        color: #666666;
        font-size: 15px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.checky-sec {
    width: 100%;
    margin-top: 10px;
}

.checky-sec.st2 small {
    font-size: 13px;
    width: 90%;
    line-height: 20px;
}

.checky-sec.st2 .fgt-sec input[type="checkbox"]+label span {
    margin-top: 3px;
}

.fgt-sec * {
    cursor: pointer;
}

.fgt-sec input[type="checkbox"] {
    display: none;
}

.fgt-sec label {
    float: left;
}

.fgt-sec input[type="checkbox"]+label span {
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.fgt-sec input[type="checkbox"]+label span:before {
    content: "";
    width: 7px;
    height: 7px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    font-size: 8px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    background-color: #e44d3a;
    position: absolute;
    font-family: fontawesome;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.fgt-sec input[type="checkbox"]:checked+label span:before {
    opacity: 1;
    visibility: visible;
}

.fgt-sec small {
    /* float: left; */
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding-left: 10px;
}

.checky-sec>a {
    float: right;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

/* ======= Radio Button Styles ======= */

.fgt-sec input[type="radio"] {
    display: none;
}

.fgt-sec label {
    float: left;
}

.fgt-sec input[type="radio"]+label span {
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.fgt-sec input[type="radio"]+label span:before {
    content: "";
    width: 7px;
    height: 7px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    font-size: 8px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    background-color: #e44d3a;
    position: absolute;
    font-family: fontawesome;
    top: 49%;
    left: 49%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.fgt-sec input[type="radio"]:checked+label span:before {
    opacity: 1;
    visibility: visible;
}

/* =============== signup-tab ============== */

.signup-tab {
    float: left;
    width: 100%;
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
    position: relative;
    margin-top: -30px;
}

.signup-tab>i {
    position: absolute;
    top: 15px;
    left: 13px;
    color: #000;
    font-size: 14px;
}

.signup-tab h2 {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.signup-tab ul {
    float: left;
    width: 100%;
}

.signup-tab ul li {
    display: inline-block;
    margin-right: -4px;
}

.signup-tab ul li a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    background-color: #e5e5e5;
    padding: 10px 15px;
    -webkit-border-radius: 3px 0px 0px 3px;
    -moz-border-radius: 3px 0px 0px 3px;
    -ms-border-radius: 3px 0px 0px 3px;
    -o-border-radius: 3px 0px 0px 3px;
    border-radius: 3px 0px 0px 3px;
    display: inline-block;
}

.signup-tab ul li.current a {
    background-color: #e44d3a;
    color: #fff;
}

.signup-tab ul li:last-child a {
    -webkit-border-radius: 0px 3px 3px 0px;
    -moz-border-radius: 0px 3px 3px 0px;
    -ms-border-radius: 0px 3px 3px 0px;
    -o-border-radius: 0px 3px 3px 0px;
    border-radius: 0px 3px 3px 0px;
}

/* ============ login-resources ============= */

.login-resources {
    h4 {
        color: $title-color;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    &,
    ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;

        li {
            width: 100%;

            a {
                display: block;
                padding: 10px;

                i {
                    margin-right: 15px;
                }
            }
        }
    }
}

.fb {
    background-color: #3b5998;
}

.tw {
    background-color: #4099ff;
}

.tw .fa-twitter {
    color: #fff;
}

/* =============== footy-sec ============= */

.footy-sec {
    width: 100%;
    padding: 2rem 0;

    &.container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;

        .row {
            gap: 1rem;
            width: 94% !important;
            display: flex;
            justify-content: space-evenly;
        }
    }

    p {
        font-size: 14px;
        font-weight: 500;
        order: 3;

        img {
            padding-right: 5px;
            position: relative;
            top: 6px;
        }
    }

    ul {
        margin-top: 5px;

        li {
            display: inline-block;
            padding: 0 10px;
            border-right: 1px solid #ffffff;

            &:last-child {
                border-right: none;
            }

            a {
                display: inline-block;
                color: #3b5998;
                font-size: 14px;
                font-weight: 500;
            }
        }
    }
}

footer {
    width: 100%;
    display: none;

    a {
        color: $font-color;
    }

    &.footer-row {
        display: grid;
        gap: 5px;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    @media (min-width: 768px) {
        display: block;
    }
}

.footy-sec.mn {
    p {
        color: #b2b2b2;
    }

    ul {
        padding: 30px 0;

        li {
            border-color: #b2b2b2;

            a {
                color: $subtitle-color;

                &:hover {
                    color: #e44d3a;
                }
            }
        }
    }
}

.fl-rgt {
    max-width: 40px;
    display: inline-flex;
}

/* ================== USER PROFILE =================== */



.cover-sec {
    background-color: #fff;
    margin-bottom: 1.5rem;
    max-height: 280px;
    overflow: hidden;

    img {
        width: 100%;
    }

    &>a {
        display: inline-block;
        color: #e44d3a;
        font-size: 16px;
        background-color: #fff;
        border: 1px solid #e44d3a;
        position: absolute;
        top: 30px;
        right: 0;
        padding: 10px 15px;
        font-weight: 600;
        margin-right: 15px;

        i {
            padding-right: 5px;
        }
    }
}

.horizontal-list .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;

    .btn {
        padding: 0.2rem 0.6rem;
    }
}

/* ============= user_profile ============= */

.user_profile {
    width: 100%;
    background-color: $bg-color;
    padding: 1rem 0.25rem;
    border-radius: $border-radius;
    border-top: 1px solid $border-primary;
    border-bottom: 1px solid $border-primary;
    text-align: center;
    box-shadow: $shadow;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-top: 120px;

    @media (min-width: 768px) {
        padding-top: 1rem;
    }
}

.user-pro-img {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 50%;

    @media (min-width: 768px) {
        bottom: auto;
        position: relative;
    }

    .add-dp {
        position: absolute;
        top: 10px;
        left: 60%;
    }

    img {
        width: 160px;
        border-radius: 100px;
        background: #fff;
        box-shadow: $light-shadow;
        border: 1px solid $border-primary;
    }
}

.add-dp {
    margin: -16px;
    padding: 0;

    i {
        bottom: 0;
        font-size: 14px;
        box-shadow: none;
        position: relative;
        border-radius: 50px;
        width: 40px;
        height: 40px;
        background: #0961bf;
        padding: 12px;
        color: #ffff;
        left: 0;
        top: -5px;

        &:hover {
            font-size: 14px;
            border: 2px solid #fff;
            background: #1dac98;
            padding: 11px;
        }
    }

    input[type="file"] {
        opacity: 0;
        padding: 10px 0px 9px;
        display: none;
    }
}

.user_pro_status {
    width: 100%;
}

.flw-hr {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.flw-hr li {
    display: inline-block;
    margin-right: 17px;
}

.flw-hr li:last-child {
    margin-right: 0;
}

.flw-hr li a {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 11px 15px;
}

.flw-hr li a i {
    padding-right: 5px;
}

.flww {
    background-color: #53d690;
}

.hre {
    background-color: #51a5fb;
}

/* =============== flw-status ============ */

.flw-status {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;

    li {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;

        span,
        b {
            color: $font-color;
        }

        b {
            font-weight: 600;
        }
    }
}

/* ================== social_links ============= */

@media (min-width: 721px) {
    .group-view-tab {
        margin-left: 3.5rem;
    }

    .group-view-tab span {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (max-width: 720px) {
    .group-view-tab {
        margin-left: 3.5rem;
    }
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.la-globe {
    color: #51a5fb;
}

/* ================= user-tab-sec ============== */

.notifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;

    .main-left-sidebar {
        grid-area: auto;
    }

    @media (min-width: 768px) {
        grid-template-columns: 30% 70%;
    }
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.show_filters {
    display: block;
}

.hidden_filters {
    display: none !important;
}

@media (min-width: 768px) {
    .show_filters {
        display: none;
    }

    .hidden_filters {
        display: block !important;
    }
}

/* ================= user-tab-sec ============== */

.user-tab-sec {
    width: 100%;

    h3 {
        color: $title-color;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize;
    }
}

.star-descp {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.star-descp ul li {
    margin-right: 5px !important;
}

.star-descp>a {
    float: left;
    color: #51a5fb;
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
    text-decoration: underline;
}

.star-descp>a:hover {
    color: #51a5fb;
}

.star-descp span {
    float: left;
    color: #686868;
    font-size: 18px;
    font-weight: 600;
    margin-right: 20px;
}

.star-descp>ul {
    float: left;
}

.star-descp ul li {
    display: inline-block;
}

.star-descp ul li i {
    color: #b7ce1f;
    font-size: 16px;
}

.tab-feed {
    float: left;
    width: 100%;
    margin-bottom: 45px;
    margin-top: 20px;
}

.tab-feed ul {
    float: left;
    width: 100%;
}

.tab-feed ul li {
    display: inline-block;
    margin-right: 35px;
    text-align: center;
}

.savetext ul {
    border-bottom: none !important;
}

.tab-feed.st2 ul li {
    margin-right: 17px;
}

.tab-feed ul li:last-child {
    margin-right: 0;
}

.tab-feed ul li.active img {
    filter: grayscale(0);
}

.tab-feed ul li.active span {
    color: #e44d3a;
}

.tab-feed ul li img {
    float: none;
    margin-bottom: 5px;
    filter: grayscale(100%);
}

.tab-feed ul li span {
    display: block;
    color: #b2b2b2;
    font-weight: 400;
    font-size: 16px;
}

.tab-feed ul li:last-child {
    margin-right: 0;
}

/* ================ message-btn ============= */

.message-btn a {
    display: inline-block;
    font-size: 16px;
    padding: 12px;
    font-weight: 500;
}

.message-btn a i {
    padding-right: 5px;
}

/* ============== widget-portfolio ============== */

.wd-heady {
    float: left;
    width: 100%;
    padding: 20px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.wd-heady h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    float: left;
}

.wd-heady img {
    float: right;
}

.pf-gallery {
    float: left;
    width: 100%;
    padding: 15px 15px;
}

.pf-gallery ul {
    float: left;
    width: 100%;
}

.pf-gallery ul li {
    float: left;
    width: 33.33%;
    padding: 5px;
    overflow: hidden;
}

.pf-gallery ul li:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.pf-gallery img {
    width: 100%;
}

.product-feed-tab {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-feed-tab.current {
    display: block;
}

/* ==================== portfolio-gallery-sec ==================== */

.row {
    margin: 0;
}

/* ============== overview-box ============= */

.close-box {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #fff;
    border-radius: 100px;
    font-weight: 600;
}

.close-box:hover {
    color: #fff;
}

.save {
    background-color: #e44d3a;
    color: #fff;
    border-color: transparent;
}

.save-add {
    background-color: #fff;
    padding: 13px 13px !important;
}

.cancel {
    background-color: #fff;
    color: #000;
}

.datepicky {
    float: left;
    width: 100%;
}

.no-left-pd {
    padding: 0;
}

.no-righ-pd {
    padding-right: 0;
}

.datefm {
    width: 100%;
    position: relative;

    i {
        position: absolute;
        top: 11px;
        right: 15px;
        font-size: 18px;
        color: #b2b2b2;
    }
}

.close-skl {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #b2b2b2;
    font-size: 14px;
}

.file-submit {
    border: 1px solid #e5e5e5;
    position: relative;
    padding: 0px;
    height: 40px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.file-submit [type="file"] {
    height: 40px;
    overflow: hidden;
    width: 100%;
    float: left;
    position: absolute;
    padding: 10px 4px 0px 12px;
    font-size: 14px;
    opacity: 0;
    display: none;
}

.file-submit [type="file"]+label {
    background: #e44d3a;
    border: none;
    float: left;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    color: #fff;
    cursor: pointer;
    /* display: inline-block; */
    font-size: 14px;
    font-weight: 500;
    outline: none;
    padding: 12px 15px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
    margin: 0;
}

.file-submit.nomg {
    border: 0;
    margin-bottom: 20px;
}

.file-submit.nomg input {
    margin-bottom: 0;
    padding-top: 0;
}

.daty {
    float: left;
    width: 100%;
    position: relative;
}

.daty>i {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #b2b2b2;
    font-size: 20px;
}

.pf-img {
    float: left;
    width: 100%;
    background-color: #f2f2f2;
    padding: 15px;
    margin-bottom: 20px;
}

/* ================= billing-method ============== */

.billing-method {
    float: left;
    width: 100%;
    background-color: #fff;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 20px;
}

.billing-method ul {
    float: left;
    width: 100%;
}

.billing-method ul li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 20px;
}

.billing-method ul li h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    float: left;
}

.billing-method ul li a,
.billing-method ul li span {
    float: right;
    color: #000000;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 3px;
}

.billing-method ul li i {
    font-size: 13px;
    color: #e44d3a;
}

.lt-sec {
    float: left;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.lt-sec img {
    float: none;
    margin-bottom: 15px;
}

.lt-sec h4 {
    color: #686868;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.lt-sec>a {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    background-color: #e44d3a;
    padding: 10px 25px;
}

/* ============== add-billing-method ============== */

.add-billing-method {
    float: left;
    width: 100%;
    background-color: #fff;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}

.add-billing-method h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.add-billing-method>h4 {
    color: #686868;
    font-size: 13px;
    font-weight: 500;
    padding: 20px 20px;
    border-bottom: 1px solid #e5e5e5;
    float: left;
    width: 100%;
}

.add-billing-method img {
    margin-right: 10px;
}

.add-billing-method span {
    margin-top: 4px;
    float: left;
}

/* ============= payment_methods ============ */

.payment_methods {
    float: left;
    width: 100%;
}

.payment_methods>h4 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 25px 20px 25px 45px;
    float: left;
    width: 100%;
}

.rowwy {
    float: left;
    width: 100%;
}

.pd-left-none {
    padding-left: 0;
}

.pd-right-none {
    padding-right: 0;
}

.payment_methods h4:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    width: 15px;
    height: 15px;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.payment_methods h4:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 24px;
    width: 7px;
    height: 7px;
    background-color: #e44d3a;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.payment_methods form {
    float: left;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.payment_methods form button {
    color: #ffffff;
    font-size: 16px;
    background-color: #e44d3a;
    padding: 10px 15px;
    border: 0;
    cursor: pointer;
}

.payment_methods form input {
    width: 100%;
    height: 40px;
    border: 1px solid #e5e5e5;
    padding: 0 12px;
}

.cc-head {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.cc-head h5 {
    float: left;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}

.cc-head h5 i {
    color: #b2b2b2;
    font-size: 14px;
}

.cc-head ul {
    float: right;
}

.cc-head ul li {
    display: inline-block;
}

.inpt-field {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.no-pdd {
    padding: 0;
}

.inpt-field.pd-moree input {
    padding-left: 40px !important;
}

.inpt-field i {
    color: #b2b2b2;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

/* ============== companies-info ============== */

.companies-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title {
    font-size: 1.1rem;
    font-weight: 600;
}

.company-title {
    display: flex;
    justify-content: space-between;

    h3 {
        color: $title-color;
        font-size: 20px;
        font-weight: 600;
    }
}

.default-link {
    color: #0860bf;
}

.default-link:hover {
    font-weight: bold;
    color: #0860bf;
    transition: all 0.5s;
}

.companies-list {
    width: 100%;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    position: relative;
}

.company_profile_info {
    /* float: left; */
    width: 100%;
    background-color: #fff;
    text-align: center;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 30px;
}

// INMAIL 

.messages-line {
    display: flex;
    flex-direction: column-reverse;
    flex: 1;
    overflow: auto;
}

// END INMAIL

.marketplace_card {
    background: $bg-color;
    border-radius: $border-radius;
    display: flex;
    flex-direction: column;
    max-width: 250px;
    overflow: hidden;
    transition: all 200ms;
    margin: auto;

    img {
        object-fit: cover;
        aspect-ratio: 4/2.5;
    }

    &:hover {
        transform: translateY(-1rem);
        box-shadow: $light-shadow;
    }

    .microlearning-up-info {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        padding: 1rem .5rem;

        h3 {
            color: $title-color;
            font-size: 1.1rem;
            font-weight: 600;
        }

        h4 {
            color: $subtitle-color;
            font-size: .9rem;
            font-weight: 500;
        }

        ul {
            display: flex;
            gap: 1rem;

            a {
                display: inline-block;
                padding: 0 12px;
                color: $font-color;
                height: 35px;
                line-height: 35px;

                i {
                    font-size: 24px;
                    position: relative;
                    top: 3px;
                }
            }
        }
    }
}

.company-up-info {
    /* float: left; */
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.company-up-info .description {
    margin-bottom: 10px;
}

.company-up-info img {
    float: none;
    margin-bottom: 10px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    height: 90px;
    object-fit: cover;
}

.company-up-info h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.company-up-info h4 {
    color: #686868;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 21px;
}

.company-up-info h6 {
    color: #686868;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.company-up-info ul {
    /* float: left; */
    width: 100%;
}

.company-up-info ul li {
    display: inline-block;
    margin-right: 6px;
}

.company-up-info ul li a i {
    font-size: 24px;
    position: relative;
    top: 3px;
}

.follow {
    background-color: #53d690;
}

.message-us {
    background-color: #e44d3a;
}

.hire-us {
    background-color: #51a5fb;
}

.company_profile_info .cancelButton {
    display: inline-block;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin: 18px 0;
}

/* ============= search-sec ============= */

.list-col {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.search-sec {
    width: 100%;
    margin-top: 15px;
}

.search-box {
    width: 100%;
    position: relative;
    background-color: $bg-color;

    input,
    input:focus {
        background: $bg-color;
        color: $font-color;
        width: 100%;
        height: 40px;
        padding: 0 15px;
        background: var(--background-light-gray);
        color: var(--font-color);
        font-weight: 600;
        font-size: 14px;
        border: solid 1px $border-primary;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    button {
        position: absolute;
        top: 0;
        right: 0;
        border: solid 1px $border-primary;
        color: var(--gray);
        font-size: 16px;
        font-weight: 500;
        height: 100%;
        padding: 0 28px;
        cursor: pointer;
        border-radius: 0 4px 4px 0;
    }
}

/* =========== Range Slider ========== */

.rg-slider {
    float: left;
    width: 100%;
}

.slider-container {
    width: 100% !important;
    padding-top: 50px;
    position: relative;
}

.theme-green .back-bar {
    height: 5px;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.theme-green .back-bar .pointer {
    width: 17px;
    height: 17px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    background-color: #e44d3a;
    border: 2px solid #e3e3e3;
    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
    -ms-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
    -o-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
}

.theme-green .back-bar .pointer {
    top: -7px;
}

.slider-container .back-bar .pointer-label {
    top: -50px;
    height: 26px;
    background-color: #e5e5e5;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    line-height: 26px;
    width: 50px;
}

.pointer-label.low {
    left: 0 !important;
}

.pointer-label.high {
    left: 70px !important;
}

.pointer-label.low:before {
    content: "";
    position: absolute;
    top: 13px;
    right: -14px;
    width: 8px;
    height: 1px;
    background-color: #e5e5e5;
}

.rg-limit {
    float: left;
    width: 100%;
    margin-top: 16px;
}

.rg-limit h4 {
    color: #686868;
    font-size: 15px;
    font-weight: 600;
    float: left;
}

.rg-limit h4:last-child {
    float: right;
}

/* ============== chatbox-list ============== */

.ext_share {
    display: flex;
    position: absolute;
    align-items: center;
    padding: .2rem;
    bottom: calc(100% + 0.5rem);
    gap: 0.5rem;
    left: 50%;
    width: fit-content;
    transform: translateX(-90%);
    border-radius: 20px;
    background-color: $bg-color;
    box-shadow: 0px 4px 4px -2px rgb(0 0 0 / 12%), 0px -4px 4px -2px rgb(0 0 0 / 12%);

    &.post {
        transform: none;
        bottom: 100%;
        right: 1.5rem;
        z-index: 200;
    }

    @media (min-width: 768px) {
        transform: translateX(-50%);
    }
}

.highlighted {
    backdrop-filter: blur(35px);
    animation: droping 1s ease infinite;
}

@keyframes droping {
    0% {
        box-shadow: 0 0 5px #96bde9;
    }

    50% {
        box-shadow: 0 0 12px #96bde9;
    }

    100% {
        box-shadow: 0 0 5px #96bde9;
    }
}

.chat-mg {
    display: inline-block;
    position: relative;
}

.chat-mg img {
    width: 70px;
    height: 70px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.chat-mg span {
    position: absolute;
    top: -5px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: #e44d3a;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 20px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.chat-mg.bx img {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.conversation-box {
    position: absolute;
    bottom: 132%;
    right: 100%;
    width: 350px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
    opacity: 0;
    visibility: hidden;
    z-index: 0;
}

.conversation-box.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.conversation-box:before {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 26px;
    border-top: 15px solid #fff;
    border-right: 15px solid transparent;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

.con-title {
    float: left;
    width: 100%;
    background-color: #e44d3a;
    padding: 15px 25px;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
}

.con-title h3 {
    float: left;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.con-title>a {
    float: right;
    color: #fff;
    font-size: 20px;
}

.chat-list {
    float: left;
    width: 100%;
    min-height: 390px;
}

.conv-list {
    float: left;
    width: 100%;
    display: table;
    padding: 20px 25px;
    position: relative;
}

.conv-list:hover,
.conv-list.active {
    background-color: #efefef;
}

.msg-numbers {
    position: absolute;
    bottom: 18px;
    right: 25px;
    width: 25px;
    height: 25px;
    background-color: #e77667;
    text-align: center;
    line-height: 25px;
    color: #fff;
    font-size: 13px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

.usrr-pic {
    display: table-cell;
    position: relative;
}

.active-status {
    width: 9px;
    height: 9px;
    border: 2px solid #ecf5fb;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    position: absolute;
    top: -3px;
    right: 0;
}

.activee {
    background-color: #e44d3a;
}

.usy-info {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    padding-left: 15px;
}

.usy-info h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.usy-info span {
    color: #686868;
    font-size: 16px;
    float: left;
}

.usy-info span img {
    padding-left: 5px;
    float: right;
}

.ct-time {
    position: absolute;
    top: 20px;
    right: 25px;
}

.ct-time span {
    color: #b2b2b2;
    font-size: 14px;
}

.st-icons {
    float: right;
    margin-top: 7px;
}

.st-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 5px;
}

.chat-hist {
    float: left;
    width: 100%;
    background-color: #fff;
    height: 280px;
}

.chat-msg {
    float: left;
    width: 100%;
    padding-right: 25px;
    margin-bottom: 15px;
}

.chat-msg p {
    color: #ffffff;
    font-size: 14px;
    background-color: #e44d3a;
    line-height: 18px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    padding: 10px 15px;
    width: 80%;
    float: right;
    margin-bottom: 10px;
}

.mg-3 {
    margin-bottom: 3px;
}

.chat-msg span {
    float: right;
    color: #b1b1b1;
    width: 100%;
    font-size: 9px;
    text-align: right;
}

.status-info {
    width: 8px;
    height: 8px;
    background-color: #fff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    margin-left: 7px;
}

.chat-user-info h3 {
    margin-top: 7px;
    margin-left: 10px;
}

.date-nd {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.date-nd:before,
.date-nd:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 15px;
    width: 92px;
    height: 1px;
    background-color: #e5e5e5;
}

.date-nd:after {
    left: auto;
    right: 15px;
}

.date-nd span {
    color: #b1b1b1;
    font-size: 12px;
    text-align: center;
}

.chat-msg.st2 p {
    background-color: #efefef;
    color: #686868;
    float: left;
    width: 55%;
}

.chat-msg.st2 {
    padding-left: 25px;
}

.chat-msg.st2 span {
    float: left;
    text-align: left;
}

/* =========== typing-msg =========== */

.typing-msg {
    float: left;
    width: 100%;
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
}

.typing-msg form {
    float: left;
    width: 100%;
    position: relative;
}

.typing-msg form textarea {
    width: 100%;
    height: 30px;
    background-color: #fff;
    padding: 0 20px;
    color: #b2b2b2;
    font-size: 16px;
    border: 0;
    resize: none;
}

.typing-msg form button {
    color: #e44d3a;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 2px;
    right: 20px;
    background: none;
    border: 0;
    cursor: pointer;
}

.ft-options {
    float: left;
    width: 100%;
    padding: 0 20px 8px 20px;
}

.ft-options li {
    display: inline-block;
    margin-right: 15px;
}

.ft-options li a {
    color: #b2b2b2;
    font-size: 24px;
    display: inline-block;
}

.mCSB_scrollTools {
    right: -5px;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #cccccc;
    width: 5px;
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    opacity: 0;
}

/* ============ Menu Btn =============*/

.menu-btn {
    float: right;
    display: none;
}

.menu-btn a {
    font-size: 24px;
    color: #fff;
    display: inline-block;
    padding-top: 16px;
    padding-left: 20px;
}

/* ============= account-tabs-setting ============ */

/* .profile-account-setting {} */

.account-tabs-setting {
    width: 100%;
}

.account-tabs-setting h1 {
    font-size: 1rem;
    font-weight: 700;
    margin: 2rem auto;
    text-align: center;
    color: $title-color;
}

.acc-leftbar {
    width: 100%;
    background-color: $bg-color;
    border: 1px solid $border-primary;
    border-radius: 10px;
    overflow: hidden;
}

.acc-leftbar .nav-tabs>a {
    border-bottom: 1px solid $border-primary;
    color: $subtitle-color;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto;
    padding: 1rem 0;
    width: 90%;
}

.nav-tabs {
    border-bottom: 0;
}

.acc-leftbar .nav-tabs>a:last-child {
    border-bottom: 0;
}

.acc-leftbar .nav-tabs>a i {
    font-size: 1.5rem;
    position: relative;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    background-color: $bg-color-secondary;
    border-radius: 100px;
    justify-content: center;
    margin-right: 5px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: inherit;
    color: #e44d3a;
    border-color: inherit;
}

/* ============= acc-setting ============ */

.settings-container {
    font-weight: normal;
}

.settings-container h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0.5rem auto;
    color: $subtitle-color;
}

.acc-setting_content {
    padding: 2rem 1rem;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: $bg-color;
    border: 1px solid $border-primary;
    box-shadow: 1px 0 4px var(--background-gray);
}

.acc-setting {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: $border-radius;
    border: 1px solid $border-primary;
    padding: 1rem;
    background-color: #fff;

    form {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    &>h3 {
        color: $subtitle-color;
        font-weight: 600;
        font-size: 18px;
    }

    .notbat {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid $border-primary;
        padding: 0.5rem 1rem;
        width: 100%;

        &>span {
            max-width: 70%;
        }
    }

    .inputs__container {
        display: flex;
        width: 100%;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .cp-field {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    @media (min-width: 768px) {
        .cp-field {
            flex: 1;
        }
    }
}

.toggle-btn {
    position: absolute;
    top: 35px;
    right: 20px;
}

/* =============== Password Update ============ */

.cp-field {
    h5 {
        color: $title-color;
        font-size: 16px;
        font-weight: 600;
    }

    input,
    select,
    .custom-input {
        height: 40px;
        padding: 0 40px;
    }

    input,
    textarea,
    select,
    .custom-input {
        width: 100% !important;
        background-color: $bg-color !important;
        color: $font-color !important;
        box-shadow: 0 0 2px $border-primary !important;
        border-radius: 10px !important;
        border: none !important;
        margin-top: 4px;
    }

    textarea {
        padding: 20px;
        height: 115px;
    }
}

.cpp-fiel {
    width: 100%;
    position: relative;
}

.cpp-fiel i {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #b2b2b2;
    font-size: 16px;
}

/* =============== notifications-list ============= */

.notfication-details {
    float: left;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.notfication-details:last-child {
    border-bottom: 0;
}

.noty-user-img {
    float: left;
    width: 35px;
}

.noty-user-img img {
    width: 100%;
}

.notification-info {
    float: left;
    width: auto;
    padding-left: 10px;
}

.notification-info h3 {
    color: #686868;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    padding: 0;
    margin-bottom: 6px;
}

.notification-info h3 a {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.notification-info>span {
    display: inline-block;
    color: #b2b2b2;
    font-size: 12px;
    font-weight: 600;
}

/* ============== requests-list ============== */

.requests-list {
    float: left;
    width: 100%;
    padding-bottom: 0;
}

.request-details {
    float: left;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.request-details:last-child {
    border-bottom: 0;
}

.request-info {
    float: left;
    padding-left: 10px;
}

.request-info h3 {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    border: 0;
    margin-bottom: 3px;
}

.request-info span {
    color: #686868;
    font-size: 12px;
    display: inline-block;
}

.accept-feat {
    float: right;
}

.accept-feat ul li {
    display: inline-block;
}

.accept-feat ul li button {
    cursor: pointer;
}

.accept-req {
    color: #ffffff;
    font-size: 16px;
    background-color: #51a5fb;
    height: 30px;
    padding: 0 20px;
    font-weight: 600;
    border: 0;
    border: 1px solid #51a5fb;
}

.close-req {
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #e5e5e5;
    background: inherit;
    color: #b2b2b2;
    margin-left: 7px;
}

.close-req i {
    font-weight: 600;
}

/* ============= Profile Sattus =========== */

.profile-bx-details {
    float: left;
    width: 100%;
    padding: 30px 7px 30px 7px;
}

.profile-bx-details .row .col-lg-3 {
    padding: 0 7px;
}

.profile-bx-info {
    float: left;
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
    border: 1px solid #e5e5e5;
}

.pro-bx {
    float: left;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.bx-info {
    float: left;
    margin-top: 7px;
    padding-left: 10px;
}

.bx-info h3 {
    color: #e44d3a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.bx-info h5 {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    border: 0;
}

.pd-left-20 {
    padding-left: 20px;
    padding-right: 0;
}

.pd-left-15 {
    padding-left: 15px;
    padding-right: 0;
}

.pd-left-right {
    padding-left: 15px;
    padding-right: 20px;
}

.profile-bx-info>p {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding-top: 5px;
}

/* =========== pro-work-status ========= */

.pro-work-status {
    float: left;
    width: 100%;
    padding: 0 15px;
}

.pro-work-status h4 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* ============== messages-page ============== */

.chat-page {
    display: flex;
    flex-direction: column;
    width: 100%;

    @media (min-width: 768px) {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 1rem;
    }
}

.msgs-list {
    width: 100%;
}

.inmail_conversations-list {
    border-right: 1px solid #3333;
    padding-left: 0;
    padding-right: 0;
}

.msg-title {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

.date-chat {
    font-size: 0.6rem;
    color: var(--gray);
    padding-top: 5%;
}

.messages-list {
    overflow-y: scroll;

    li {
        cursor: pointer;

        &.active {
            background-color: #efefef;
        }
    }
}

.text-chat-title {
    color: var(--gray) !important;
    font-size: 1rem;
}

.usr-msg-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: $border-radius;

    &:hover,
    &.is_selected {
        background: $light-gray;
    }

    .usr-ms-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;

        img {
            object-fit: cover;
        }
    }

    .usr-mg-info {
        h3 {
            color: $subtitle-color;
            font-size: 18px;
            font-weight: 600;
        }

        p {
            color: $font-color;
            font-size: 16px;
        }
    }
}

.msg-status {
    border-radius: 100px;
    background-color: #e44d3a;
    position: absolute;
    top: -3px;
    right: 0;
    width: 6px;
    height: 6px;
}

.messages-list ul li.active .msg-status {
    border: 2px solid #ecf5fb;
    height: 10px;
    width: 10px;
}

.msg-notifc {
    position: absolute;
    /* bottom: 0;
    right: 0; */
    width: 25px;
    height: 25px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    background-color: #e77667;
    text-align: center;
    line-height: 25px;
    font-size: 13px;
    color: #fff;
}

.posted_time {
    position: absolute;
    top: 2px;
    right: 0;
    color: #b2b2b2;
    font-size: 14px;
}

/* =============== main-message-box ============= */

.main-conversation-box {
    width: 100%;
    background-color: $bg-color;
    position: relative;
    height: 80vh;
    display: grid;
    grid-template-rows: auto 65% auto;
}

.inmail-conversation-container {
    width: 100%;
    background-color: $bg-color;
    position: relative;
    height: 80vh;
    gap: 0.5rem;
    display: grid;
    grid-template-rows: 5% 80% 15%;
}

@media (min-width: 992px) {
    .inmail-conversation-container {
        grid-template-rows: 85% 15%;
    }
}

.inmail-conversation-box {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-rows: auto 85%;
    overflow: hidden;
}

.message-bar-head {
    height: 13vh;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid $border-primary;
}

.message-bar-head .usr-msg-details {
    width: auto;
}

.message-bar-head>a {
    float: right;
    color: #b2b2b2;
    font-size: 20px;
    padding-top: 15px;
}

.main-message-box {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 15.5px;

    .message-inner-dt {
        width: 100%;

        &>img {
            display: inline-block;
            width: auto;
            max-height: 180px;
        }

        &>p {
            font-size: 14px;
        }
    }

    .message-dt {
        border-radius: $border-radius;
        border-top-left-radius: 0;
        width: auto;
        padding: 0.5rem;
        margin-left: 15px;
        background-color: $chat-send;
        color: $chat-color;
        box-shadow: $white-backdrop;
    }

    .messg-usr-img {
        margin-left: 20px;
        width: 50px;
    }

    .message-dt>span {
        color: #b2b2b2;
        font-size: 14px;
        float: left;
        width: 100%;
        margin-top: 7px;
    }

    &.ta-right {
        flex-direction: row-reverse;
    }

    &.ta-right .messg-usr-img {
        margin-left: 0;
        margin-right: 20px;
    }

    &.ta-right .message-dt {
        border-top-left-radius: $border-radius;
        border-top-right-radius: 0;
        margin-right: 15px;
        background-color: $chat-received;
    }

    &.ta-right .message-dt>span {
        float: right;
        width: auto;
    }
}

.messg-usr-img img {
    width: 100%;
    background: #fff;
    border-radius: 100px;
}

.img-bx {
    background-color: #efefef;
    padding: 20px;
}

.message-dt.st3 .message-inner-dt {
    &>p {
        background-color: #efefef;
        color: #686868;
        width: auto;
        padding: 10px 15px;
        float: left;
    }

    &>img {
        float: right;
        position: relative;
        top: 3px;
        padding-left: 5px;
    }
}

.main-message-box.st3 .messg-usr-img {
    bottom: 13px;
}

/* ============== Calendar ============ */

.calendar-event {
    display: flex;
    flex-direction: column;
    border-radius: $border-radius;
    padding: 0.5rem;
}

/* ============== message-send-area ============ */

.inmail-submit-btn {
    width: 6%;
}

.chat-header a {
    text-decoration: none;
    color: var(--dark);
}

.chat-header h2 {
    font-weight: 700;
    text-align: center;
}

.chat_contacts {
    background-color: $bg-color;
    border-radius: $border-radius;
    border: 1px solid $border-primary;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    max-height: 80vh;

    h1 {
        font-size: 1.3rem;
    }

    .header {
        margin-top: 1rem;
        margin-right: .5rem;
    }
}

.tabs {
    display: flex;
    align-items: center;

    .btn {
        flex: 1;
        outline: none;
        box-shadow: none;

        &.active-tab {
            border-bottom: 1px solid $border-primary;
        }
    }
}

.contact__search,
.group__search {
    display: flex;
    align-items: center;
    border-radius: 30px;
    height: 1.5rem;
    color: gray;
    cursor: pointer;
    transition: all 0.2s;

    &:hover {
        color: #000;
    }

    &>input {
        display: none;
        border: none;
        outline: none;
        background: none;
    }

    &.show {
        padding: 0.5rem;
        background-color: #eef3f0;
        width: -webkit-fill-available;

        &>input {
            display: initial;
        }
    }
}

.group__search {
    flex: initial;
    margin: 0 1rem;

    input {
        display: initial;
    }
}

/* ============== forum-links ============= */

.forum-sec {
    background-color: #fff;
}

.forum-links {
    float: left;
    width: 100%;
}

.forum-links.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.forum-links ul li {
    display: inline-block;
    padding: 20px 0;
    margin-right: 45px;
    border-bottom: 2px solid transparent;
}

.forum-links ul li.active {
    border-color: #e44d3a;
}

.forum-links ul li.active a {
    color: #e44d3a;
}

.forum-links ul li a {
    display: inline-block;
    color: #b2b2b2;
    font-size: 14px;
    font-weight: 600;
}

.forum-links-btn {
    float: left;
    width: 100%;
    text-align: center;
    display: none;
    padding: 20px 0;
}

.forum-links-btn a {
    color: #000;
    font-size: 30px;
    display: inline-block;
}

/* ================ forum-page =============== */

.forum-page {
    padding: 50px 0;
}

.forum-questions-sec {
    float: left;
    width: 100%;
}

.forum-questions {
    float: left;
    width: 100%;
    background-color: #fff;
}

.usr-question {
    float: left;
    width: 100%;
    position: relative;
    padding: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.usr_img {
    float: left;
    width: 60px;
}

.usr_img img {
    width: 100%;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
}

/* ============= quest-tags ============ */

.quest-tags {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.quest-tags li {
    display: inline-block;
    margin-right: 10px;
}

.quest-tags li a {
    display: inline-block;
    color: #ffffff;
    background-color: #53d690;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 7px 25px;
}

.quest-posted-time {
    position: absolute;
    bottom: 30px;
    right: 20px;
    color: #b2b2b2;
    font-size: 14px;
}

.quest-posted-time i {
    padding-right: 5px;
}

.pd-right-none {
    padding-right: 0;
}

/* =========== navigation ============ */

.pagination {
    float: left;
    width: 100%;
    /* background-color: #fff; */
    padding: 13px 25px;
}

.full-pagi {
    float: left;
    width: 100%;
    padding-right: 0;
    text-align: inherit;
    margin-top: 20px;
}

.pagination li {
    padding: 0;
    margin-right: 10px;
}

.pagination li .page-link {
    /* background-color: #e5e5e5; */
    color: #b2b2b2;
}

.pagination li .page-link.active {
    background-color: #e44d3a;
    color: #fff;
    border-color: transparent;
}

.pvr {
    padding: 0.5rem 30px;
}

/* ======== next-prev ========*/

.next-prev {
    float: left;
    width: 100%;
    background-color: #fff;
    margin-top: 20px;
    padding: 12px 25px;
}

.next-prev>a {
    width: 90px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: #b2b2b2;
    font-size: 14px;
    background-color: #e5e5e5;
}

.next-prev>a:hover {
    color: #fff;
    background-color: #e44d3a;
}

.fl-left {
    float: left;
}

.fl-right {
    float: right;
}

/* ========== widget-feat ========= */

.widget-feat {
    padding: 25px 20px;
}

.widget-feat ul {
    float: left;
    width: 100%;
}

.widget-feat ul li {
    float: left;
    width: 25%;
    text-align: center;
}

.widget-feat ul li i {
    display: block;
    font-size: 18px;
    margin-bottom: 9px;
}

.widget-feat ul li span {
    display: block;
    color: #686868;
    font-size: 16px;
    font-weight: 500;
}

.widget-feat ul li i.fa-heart {
    color: #53d690;
}

.widget-feat ul li i.fa-comment {
    color: #e44d3a;
}

.widget-feat ul li i.fa-share-alt {
    color: #51a5fb;
}

.widget-feat ul li i.fa-eye {
    color: #00b540;
}

/* =============== ANIMATION LOADER =============== */

.spinner {
    margin: 0 auto 0;
    width: 80px;
    text-align: center;
    height: 80px;
    border-radius: 100px;
    background-color: #fff;
    line-height: 80px;
    border: 1px solid #e1e1e1;
    cursor: pointer;

    &>div {
        width: 15px;
        height: 15px;
        background-color: #b9b9b9;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

    @keyframes sk-bouncedelay {

        0%,
        80%,
        100% {
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        40% {
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    }
}


.wordpressdevlp {
    background-color: #fff;
}

.bgclr {
    background-color: #fff;
    margin-bottom: 15px;
}

.cadidatesbtn {
    position: absolute;
    left: 0;
    padding-top: 5px;
}

.cadidatesbtn button {
    background-color: #e44d3a;
    border: none;
    margin-top: -3px;
}

.cadidatesbtn button:hover {
    background-color: #e44d3a;
}

.cadidatesbtn span {
    background-color: #bd2e1c;
    color: #fff;
    margin-right: 10px;
    padding: 0.25em 0.5em;
    font-weight: 600;
    font-size: 12px;
}

.wordpressdevlp i {
    color: #e86554;
    font-size: 18px;
    font-weight: bold;
    padding-right: 5px;
}

.wordpressdevlp h2 {
    font-size: 18px;
    font-weight: 600;
}

.cadidatesbtn i {
    color: #b2b2b2;
    border: 1px solid #b2b2b2;
    font-size: 14px;
    text-align: center;
    margin-left: 7px;
    border-radius: 3px;
    padding: 10px;
}

.cadidatesbtn i:hover {
    background-color: #e44d3a;
    color: #fff;
    border: 1px solid #e44d3a;
}

.inner {
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
}

.inner li a:hover {
    color: #e44d3a;
    border-bottom: 2px solid #e44d3a;
    padding-bottom: 9px;
}

.inner li a {
    color: #000000;
}

.posttext {
    position: absolute;
    left: 0;
}

.deatile h3 {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 5px;
}

.clrbtn a {
    background-color: #e44d3a;
    color: #fff;
    padding: 5px 10px 5px 10px;
    margin-right: 15px;
}

.transpairentbtn a {
    color: #222;
    border: 2px solid #f1f1f1;
    padding: 5px 10px 5px 10px;
}

.savetext h3 {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 5px;
}

.devepbtn .clrbtn {
    padding: 7px 20px;
}

.devepbtn a {
    color: #666666;
    border: 1px solid #b2b2b2;
    padding: 7px 10px 7px 10px;
    border-radius: 3px;
    margin-right: 5px;
}

.devepbtn a:hover i {
    color: #fff;
}

.devepbtn a:hover {
    background-color: #e44d3a;
    color: #fff;
}

.rew-reply hr {
    margin-left: -20px;
    margin-right: -20px;
}

.rew-reply p {
    padding-left: 20px;
}

.rew-reply ul {
    padding-left: 20px;
}

.devepbtn {
    margin-top: 30px;
    padding-left: 20px;
}

.rep-thanks hr {
    margin-right: -20px;
    margin-left: -20px;
}

.profilecnd {
    margin-bottom: 0px;
}

.devepbtn i {
    color: #b2b2b2;
    font-size: 14px;
}

.appliedinfo {
    padding-left: 0;
    padding-top: 20px !important;
    padding-bottom: 10px;
}

.epi2 {
    padding: 0;
}

.review a {
    line-height: 16px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 15px;
}

.add-pic-box {
    display: inline-block;
    color: #e44d3a;
    font-size: 16px;
    position: absolute;
    top: 30px;
    right: 0;
    font-weight: 600;
    margin-right: 0;
    width: 100%;
}

.add-pic-box [type="file"] {
    height: 0;
    overflow: hidden;
    width: 0;
    float: left;
}

.add-pic-box [type="file"]+label {
    background: #fff;
    border: 2px solid #e44d3a;
    border-radius: 3px;
    color: #e44d3a;
    cursor: pointer;
    /* display: inline-block; */
    font-size: 15px;
    font-weight: 600;
    outline: none;
    padding: 12px 20px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
    margin: 0;
    float: right;
    text-transform: uppercase;
}

.add-pic-box [type="file"]+label:hover {
    background: #e44d3a;
    color: #fff;
}

.noreview li i {
    color: #b2b2b2;
}

.review-tb {
    margin: 0 0 10px;
    padding-left: 20px;
}

.noreview ul li i {
    color: #b2b2b2;
}

.mngdetl {
    border-bottom: none;
}

.post-reply {
    padding-top: 0;
    padding-bottom: 0;
}

.activebidbtn i:hover {
    background-color: #e44d3a;
    color: #fff;
    border: none;
}

.reviewtitle h2 {
    font-size: 17px;
    font-weight: 600;
}

.horiline {
    width: 118%;
    position: relative;
    left: -40px;
}

.tahnks {
    font-weight: 500;
    margin-top: 5px;
}

/*about-page*/

.banner span {
    position: absolute;
    display: flex;
    background-color: #222;
    width: 100%;
    opacity: 0.9;
    justify-content: center;
    padding: 10px;
    margin-top: 0;
    color: #fff;
}

.innertitle {
    margin-top: 130px;
}

.Company-overview {
    padding-bottom: 50px;
}

.bennertext {
    position: absolute;
    left: 20%;
    right: 20%;
    text-align: center;
}

.bannerimage img {
    height: 100%;
}

.innertitle h2 {
    color: #fff;
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.innertitle p {
    color: #fff;
    font-size: 16px;
}

.Company-overview h2 {
    padding-top: 100px;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 12px;
}

.Company-overview p {
    font-size: 15px;
    font-weight: 500;
}

.Company-overview img {
    float: right;
    padding-top: 25px;
}

.blog {
    text-align: center;
    display: inline-block;
    margin-bottom: 50px;
}

.blog img {
    padding-bottom: 30px;
}

.blog h2 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 30px;
}

.blog a {
    background-color: #ff4500;
    color: #fff;
    padding: 7px 25px 7px 25px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
}

.services {
    padding-top: 80px;
    padding-bottom: 80px;
}

.video {
    padding-bottom: 40px;
}

.search-container {
    text-align: center;
}

.search-container input[type="text"] {
    padding: 6px 15px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
    height: 50px;
    width: 50%;
    margin-bottom: 25px;
    border-top-left-radius: 3px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 0px;
}

.searchtitle {
    text-align: center;
}

.searchtitle h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    padding-bottom: 10px;
}

.search-container button {
    padding: 8px 10px;
    text-align: center;
    margin-top: 8px;
    margin-left: -3px;
    margin-right: 18px;
    background: #efefef;
    font-size: 17px;
    border: none;
    cursor: pointer;
    height: 50px;
    width: 6%;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.topsearch i {
    color: #e44d3a;
}

.dropdown-toggle::after {
    position: absolute;
    right: 15px;
    color: #b2b2b2;
    top: 7px;
}

.help-paddy {
    padding: 0 !important;
}

.paddy {
    padding: 20px;
    float: left;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    width: 100%;
    background-clip: padding-box;
    border: none;
    border-radius: 0.25rem;
}

.radio-form p {
    display: -webkit-inline-box;
}

.dropdown a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
}

.accountnone {
    border: none;
}

.helpforum {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px #c6c6c6;
}

.helpforum h3 {
    font-size: 18px;
    font-weight: 600;
}

.helpforum a {
    background-color: #e44d3a;
    color: #fff;
    padding: 10px 15px 10px 15px;
    line-height: 4;
    border-radius: 3px;
}

.helpforum p {
    line-height: 3;
}

.actionstitle h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    padding-top: 30px;
}

.actionstitle img {
    padding-right: 10px;
}

.actionstext a {
    font-size: 16px;
    font-weight: 500;
    color: #e44d3a;
    line-height: 2;
    display: block;
}

.helpform {
    text-align: center;
    padding-top: 70px;
}

.helpform h3 {
    font-size: 18px;
    font-weight: 400;
    color: #e44d3a;
    margin-bottom: 10px;
}

.helpform a {
    background-color: #e44d3a;
    color: #fff;
    padding: 10px 15px 10px 15px;
    border-radius: 3px;
}

.helpform p {
    margin-bottom: 30px;
}

.helpform img {
    float: unset;
    padding-bottom: 10px;
}

.bookingsideber h3 {
    color: #000;
}

.bookingsideber h3:active {
    color: #e44d3a;
}

.helpforum h4 {
    font-size: 16px;
    font-weight: 600;
}

.bloktext {
    padding-left: 25px;
}

.privacy {
    background-color: #fff;
    height: 850px;
}

.privacydropd .dropdown-toggle::after {
    float: right;
    vertical-align: 0.255em;
}

/* .checkbox {} */

.form-check {
    padding-left: 0;
}

.btns a {
    color: #000;
    border: 1px solid #e5e5e5;
    padding: 10px 25px 10px 25px;
    margin-left: 15px;
    border-radius: 5px;
    font-weight: 600;
}

.btns {
    padding-top: 20px;
}

.btns a:hover {
    background-color: #e44d3a;
    color: #fff;
}

.privacy h3 {
    font-size: 18px;
    font-weight: 600;
    padding-top: 18px;
    margin-bottom: 10px;
}

.privacy p {
    padding-top: 0px;
    display: inline-block;
}

.form-group {
    margin-bottom: 1rem;
    padding-top: 0px;
}

.privacy i {
    float: right;
    color: #e44d3a;
    font-size: 20px;
    font-weight: 600;
}

.dropdown-menu input {
    margin-right: 10px;
    margin-top: 15px;
}

.dropdown-menu a {
    padding: 10px 0 10px 40px;
    margin-bottom: 10px;
}

.dropdown-menu form {
    margin-bottom: 10px;
    margin-top: 10px;
}

.privacydropd p {
    margin-left: 20px;
    margin-top: 5px;
}

.privabtns {
    margin-top: 20px;
}

.privabtns {
    padding-bottom: 15px;
}

.privabtns a {
    margin-right: 15px;
    padding: 8px 25px;
    color: #000000;
    border: 1px solid #e5e5e5;
}

.privabtns a:hover {
    color: #fff;
    background-color: #e44d3a;
}

.privac {
    background-color: #fff;
    height: 560px;
    padding-top: 20px;
}

.privac h3 {
    font-size: 18px;
    font-weight: 600;
}

.bids-detail ul {
    display: -webkit-inline-box;
}

.bids-detail ul li {
    margin-right: 30px;
}

.bids-detail h3 {
    font-size: 16px;
    font-weight: 400;
}

.bids-detail {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0px 2px #e4e4e4;
}

.dropdown-menu.show {
    display: contents;
}

.postpaid:checked:after {
    content: "\f17b";
    font: normal normal normal 16px/1 "LineAwesome";
    font-weight: 600;
    border: 1px solid #fff;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    width: 100%;
    height: 100%;
    background: #e44d3a;
    display: block;
    border-radius: 50%;
    padding-top: 3px;
}

.postpaid:focus {
    border: 1px solid #fff;
    width: 25px;
    height: 25px;
}

.postpaid {
    appearance: none;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #5e5e5e;
    outline: 0;
    margin-right: 5px;
}

/* .main-ws-sec .job-status-bar {} */

.main-ws-sec .btm-line {
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e5e5e5 !important;
    margin-bottom: 20px;
}

.job-status-bar hr {
    margin: 0 -40px;
}

.reply-area {
    padding-left: 55px;
}

.reply-rply1 {
    margin: 24px 0;
}

.reply-area p {
    padding-bottom: 10px;
}

.reply-area span {
    cursor: pointer;
}

.reply-area span:hover {
    color: #e44d3a;
}

.reply-area i {
    font-size: 16px;
    font-weight: 600;
    padding-right: 8px;
}

.comment-area .la-plus-circle {
    display: block;
    text-align: center;
    font-size: 40px;
    color: #b2b2b2;
}

.reply-area span {
    padding-top: 5px;
    color: #b2b2b2;
}

.comt span {
    font-size: 16px;
    color: #666666;
}

.comt i {
    padding-right: 8px;
}

.postcomment .form-control {
    width: 112%;
    margin-left: -50px;
    background-color: #efefef;
    border-radius: 3px;
}

.postcomment a {
    background-color: #e44d3a;
    color: #fff;
    padding: 9px 25px 8px 25px;
    line-height: 37px;
    border-radius: 3px;
}

.postcomment {
    padding-top: 30px;
}

.widget-projectid {
    padding: 15px;
}

.widget-projectid h3 {
    padding-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
}

.paymethd p {
    color: #e44d3a;
}

.copylink p {
    background-color: #efefef;
    padding: 7px 0 8px 10px;
}

.copylink a {
    background-color: #e44d3a;
    color: #fff;
    padding: 10px 15px 10px 15px;
    border-radius: 4px;
}

.copylink span {
    padding: 30px 0 20px;
}

.copylink i {
    float: unset;
    position: unset;
}

.copylink .la-facebook {
    background-color: #3b5998;
    color: #fff;
}

.copylink .la-twitter {
    color: #1da1f2;
}

.copylink .la-pinterest-p {
    background-color: #fff;
    color: #c11628;
    border-radius: 50%;
}

.copylink img {
    padding-right: 10px;
}

.freelancerbiding {
    background-color: #fff;
    padding-top: 20px;
}

.freelancerbiding h3 {
    font-size: 18px;
    font-weight: 400;
}

.repcent {
    text-align: left;
}

.bidrit {
    float: right;
}

.repcent i {
    padding-left: 5px;
}

.star {
    display: inline-flex;
    padding: 5px 0;
}

.star li i {
    color: #bfd337;
}

.repcent span {
    color: #51a5fb;
}

.repcent p {
    padding-left: 7px;
}

.noreview ul li i {
    color: #b2b2b2;
}

.paymethd .star li i {
    position: unset;
    font-size: 14px;
}

.paymethd .star a {
    color: #51a5fb;
    padding-left: 12px;
}

.notice {
    background-color: #ddf3ff;
    padding: 15px;
}

.notice span {
    font-weight: 500;
    padding-right: 5px;
}

.delivery .input-group select {
    width: 150px;
    height: 50px !important;
    font-size: 19px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

.place-bid-btn {
    font-size: 15px;
    font-weight: 500;
    color: #fff !important;
    background-color: #e44d3a !important;
    border: none;
    padding: 10px;
    border: 1px solid #e44d3a;
    border-radius: 3px;
}

.usy-dt .reply {
    margin: 3px 0 0 10px;
    width: 360px;
    height: 40px;
    background-color: #efefef;
    border: 1px solid #e5e5e5;
    padding-left: 10px;
    border-radius: 3px;
}

.replybtn {
    background-color: #e44d3a;
    color: #fff;
    padding: 10px;
    margin-left: 15px;
    border-radius: 3px;
}

.replybtn:hover {
    color: #fff;
}

.rewivew ul li {
    margin-right: 5px !important;
}

.security hr {
    margin-right: -15px;
    margin-left: -15px;
}

.privacy .la-check {
    float: left;
    font-size: 12px;
    margin: 5px 5px 0 0;
    padding: 3px;
    background-color: #e44d3a;
    color: #fff;
    border-radius: 50%;
}

ul#myTab {
    border-bottom: 1px solid #e5e5e5;
}

.nav-tabs .nav-link {
    border: none;
}

.noborder {
    border-bottom: none;
}

.manbids {
    margin-bottom: 0 !important;
}

.noreply {
    padding-top: 30px;
}

#my-bids .nav-tabs {
    margin-bottom: 20px;
    margin-top: 7px;
    padding-bottom: 0;
}

#my-bids ul {
    margin-bottom: 15px;
    margin-top: 7px;
    padding-bottom: 0;
}

.savedjob-info p {
    color: #666666;
    margin-top: 5px;
}

#my-bids ul li a {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

#my-bids li a:hover {
    color: #e44d3a;
}

#saved-jobs ul {
    margin-bottom: 20px;
}

#saved-jobs ul li a {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

#saved-jobs li a:hover {
    color: #e44d3a;
}

.wordpressdevlp h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

#saved-jobs .nav-tabs .nav-item.show .nav-link,
#saved-jobs .nav-tabs .nav-link.active {
    background-color: inherit;
    color: #e44d3a !important;
    padding-bottom: 9px;
    border-bottom: 2px solid #e44d3a !important;
}

#my-bids .nav-tabs .nav-item.show .nav-link,
#my-bids .nav-tabs .nav-link.active {
    background-color: inherit;
    color: #e44d3a !important;
    padding-bottom: 9px;
    border-bottom: 2px solid #e44d3a !important;
}

.descptab li img {
    float: left !important;
    filter: inherit !important;
}

.bklink {
    border-bottom: none !important;
    width: unset !important;
    float: right !important;
}

.bklik {
    border-bottom: none !important;
}

/*////////////////////////////////////////My css//////////////////////////////// //////////////////////////////////////////////////////////////////////////////*/

.savedjob-info li {
    display: inline-block;
    padding-left: 25px;
}

.savedjob-info h3 {
    font-size: 14px;
    font-weight: 500;
}

.settingjb ul li {
    margin-right: 25px !important;
}

.mangebid li {
    padding-left: 0;
    padding-right: 20px;
    padding-top: 10px;
}

.bk-links.bklink li {
    padding-right: 0;
}

.bidsbtn {
    position: relative;
}

.biddersinfo li {
    padding-left: 0;
    padding-right: 20px;
}

#review {
    background-color: #fff;
    margin-bottom: 40px;
}

.starreview {
    padding-left: 20px;
}

.replytext {
    padding-bottom: 20px;
}

.starrevi {
    padding-left: 20px;
}

.apply-jobbox {
    text-align: center;
}

.apply-jobbox form input {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    color: #222;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 14px;
}

.apply-jobbox h3 {
    margin: 20px 0;
}

.select-files {
    border: 1px solid #e5e5e5;
    margin-top: 20px;
    padding: 30px;
    background: #efefef;
}

.select-files button {
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.select-files button:hover {
    background-color: #e44d3a;
    color: #fff;
}

.close {
    position: absolute;
    right: 0px;
    top: 0px;
    color: #929292;
    border: 1px solid;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

.mapouter iframe {
    width: 100%;
    height: 400px;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 500px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
}

.video-iframe {
    width: 100%;
    height: 400px;
}

.custom-file-input {
    color: transparent;
    opacity: 1;
    /* margin-left: 140px; */
    margin-bottom: 10px;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: "Select Files";
    color: #fff;
    display: inline-block;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    background: #e44d3a;
    font-weight: 500;
    padding: 10px 15px;
    outline: none;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
}

.custom-file-input:hover::before {
    background-color: #e44d3a;
    color: #fff;
}

.custom-file-input:active {
    outline: 0;
}

.custom-file-input:active::before {
    background: #e44d3a;
    color: #fff;
}

.bids-time {
    float: right;
}

.saved-post {
    padding: 0;
}

.saved-post p {
    padding-bottom: 20px;
}

.saved-info li {
    padding-right: 25px;
    padding-left: 0;
}

.saved-btn {
    padding: 0;
    margin-bottom: -12px;
}

.applied-post {
    padding: 0;
}

.post-bid {
    padding: 0 !important;
}

.bidsbtn {
    padding-top: 0 !important;
}

.active-bids {
    padding: 0;
}

.activ-bidinfo li {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 25px;
}

.activebtn {
    padding-left: 0;
}

.p-all {
    padding: 0px;
    float: left;
    width: 100%;
    position: relative;
}

.toggle-btn .custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 70px;
    pointer-events: all;
    border-radius: 100px;
    height: 30px;
    top: -1px;
    box-shadow: none;
}

.toggle-btn .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #e1e1e1 solid 2px;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #e44d3a;
    background-color: #e44d3a;
    box-shadow: none;
    outline: none;
}

.toggle-btn .custom-switch .custom-control-label::after {
    top: calc(-1px + 2px);
    left: calc(-36px + 2px);
    width: calc(30px - 4px);
    height: calc(30px - 4px);
    background-color: #e1e1e1;
    border-radius: 100%;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

.toggle-btn .custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 0;
    height: 0;
    content: "";
    background: no-repeat 50%/50% 50%;
}

.toggle-btn .custom-control-label {
    position: initial;
    margin-bottom: 0;
    vertical-align: top;
}

.toggle-btn .custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(2.5rem);
    transform: translateX(2.5rem);
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    line-height: 24px;
    font-size: 14px;
    color: #666666;
}

.small-text-children p,
.small-text-children span {
    font-size: 0.8rem;
}

.search-item-selected {
    padding: 1px 10px;
    background: var(--background-gray);
    line-height: 1;
    border-radius: 10px;
    font-weight: bold;
}

.row .sc-dkzDqf {
    margin: 0 auto;
}

.test-section .title,
.test-section .description {
    margin-bottom: 10px;
}

.test-section .btn-danger {
    margin-right: 10px;
}

.test-section .panel-body {
    padding: 20px 0px;
}

.test-section .panel {
    margin-top: 20px;
    padding-bottom: 10px;
}

.test-section .np-padding {
    padding: 0px;
}

.test-section .checkbox {
    display: flex;
    margin: 20px 0px;
}

.test-section .option {
    margin-left: 10px;
}

.checkbox input[type="checkbox"],
input[type="radio"] {
    margin-top: 5px !important;
}

.test-section h6 {
    margin-bottom: 10px;
    color: #0860bf;
}

.wizard {
    display: flex;
    margin-top: 10px;
}

.wizard li {
    width: 50%;
    display: inline-block;
}

.previous {
    text-align: left;
}

.next {
    text-align: right;
}

.test-section .close {
    border: none !important;
    border-radius: 0px !important;
}

.ratin-range {
    display: block;
}

.ratin-range li {
    display: inline-block;
    width: 6%;
}

.ratin-range li .option {
    margin-top: 2px !important;
}

#react-self-evaluation .company-up-info ul {
    width: 100%;
    position: absolute;
    float: left;
    left: 0px;
    bottom: 4vw;
}

#react-self-evaluation .company-up-info {
    padding: 30px 10px;
    min-height: 20vw;
    border: 1px solid #e5e5e5;
}

#react-self-evaluation .company-up-info h3 {
    width: 90%;
    margin: 5px auto;
}

// Alert notification
.alert-danger {
    background-color: $danger !important;

    &:hover {
        background-color: $danger-hover !important;
    }
}